:root {
  --ink: #211b17;
  --muted: #6f6259;
  --paper: #fbf7f0;
  --linen: #efe4d5;
  --terracotta: #a74f35;
  --olive: #596a46;
  --charcoal: #171615;
  --white: #fffdf8;
  --border: rgba(33, 27, 23, 0.14);
  --shadow: 0 24px 70px rgba(33, 27, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.35rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a {
  opacity: 0.82;
}

.main-nav a:hover,
.text-link:hover {
  opacity: 1;
}

.header-action {
  justify-self: end;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1514933651103-005eec06c04b?auto=format&fit=crop&w=1800&q=85");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12) 58%),
    linear-gradient(to right, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 160px 0 96px;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero .eyebrow {
  color: #e8bc8b;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  font-weight: 500;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 10vw, 9rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-content p {
  width: min(610px, 100%);
  margin-inline: auto;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  color: var(--white);
  background: var(--terracotta);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.5);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 132px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.intro-grid p,
.section-heading p,
.split-copy p,
.reservation p,
.site-footer p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--border);
  background: var(--white);
}

.feature-band article {
  padding: clamp(26px, 4vw, 48px);
  border-right: 1px solid var(--border);
}

.feature-band article:last-child {
  border-right: 0;
}

.feature-band span {
  color: var(--olive);
  font-weight: 900;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 30px;
  align-items: end;
  margin-bottom: 42px;
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: stretch;
}

.menu-image {
  min-height: 560px;
  border-radius: 8px;
  background-image: url("https://images.unsplash.com/photo-1546069901-ba9599a7e63c?auto=format&fit=crop&w=1000&q=80");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.menu-list {
  display: grid;
  align-content: center;
  gap: 0;
  border-top: 1px solid var(--border);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.menu-item strong {
  color: var(--terracotta);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--terracotta);
  font-weight: 900;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.gallery img {
  min-height: 220px;
  border-radius: 8px;
}

.gallery img:first-child {
  grid-row: span 2;
  min-height: 454px;
}

.events-section {
  border-top: 1px solid var(--border);
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.event-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.event-grid p {
  color: var(--muted);
}

.reservation {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 76px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 10vw, 132px);
  padding: clamp(30px, 5vw, 58px);
  border-radius: 8px;
  color: var(--white);
  background: var(--charcoal);
}

.reservation p {
  color: rgba(255, 253, 248, 0.72);
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reservation-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
}

.reservation-form button {
  grid-column: 1 / -1;
  width: fit-content;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 32px;
  padding: 42px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--border);
  background: var(--white);
}

.site-footer > div {
  display: grid;
  align-content: start;
  gap: 6px;
}

.site-footer .brand small {
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .intro-grid,
  .section-heading,
  .menu-layout,
  .split-section,
  .reservation,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .feature-band article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .menu-image {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .header-action {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery img:first-child,
  .gallery img {
    min-height: 260px;
  }

  .reservation-form {
    grid-template-columns: 1fr;
  }

  .reservation-form button {
    width: 100%;
  }
}
