:root {
  --ink: #1e1f1b;
  --muted: #68665d;
  --paper: #fbfaf5;
  --soft: #f1ede3;
  --olive: #586044;
  --terracotta: #b75f3d;
  --gold: #d3ad68;
  --line: rgba(30, 31, 27, 0.12);
  --shadow: 0 22px 70px rgba(33, 27, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 24px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 23px;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  padding: 8px 0;
}

.nav-cta {
  min-width: 96px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  background: #111;
}

.hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28) 46%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 94svh;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 128px 0 104px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--terracotta);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.03;
}

h1 {
  max-width: 740px;
  font-size: clamp(58px, 10vw, 126px);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
}

h3 {
  font-size: 28px;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 15px;
  font-weight: 800;
}

.button.primary {
  color: #211b12;
  background: var(--gold);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.button.light.secondary {
  color: #fff;
}

.button.outline {
  border: 1px solid var(--line);
  color: var(--olive);
  background: #fff;
}

.quick-info {
  position: absolute;
  right: clamp(18px, 4vw, 52px);
  bottom: 24px;
  z-index: 3;
  display: flex;
  max-width: calc(100% - 36px);
  gap: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.quick-info span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.conversion-strip a {
  display: grid;
  min-height: 116px;
  align-content: center;
  gap: 8px;
  padding: 24px clamp(18px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.conversion-strip a:last-child {
  border-right: 0;
}

.conversion-strip strong {
  color: var(--olive);
  font-size: clamp(20px, 2.3vw, 30px);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

.conversion-strip span {
  max-width: 360px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.menu-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 64px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.menu-copy p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.price-highlight {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 4px 0 14px;
  padding: 10px 14px;
  border: 1px solid rgba(43, 75, 58, 0.22);
  background: #f4f7ed;
  color: var(--olive);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.menu-actions {
  display: grid;
  min-width: min(100%, 300px);
  gap: 12px;
}

.match-section {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(56px, 8vw, 98px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(30, 31, 27, 0.96), rgba(88, 96, 68, 0.92)),
    var(--olive);
}

.match-media {
  overflow: hidden;
  border-radius: 8px;
  min-height: 360px;
  background: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.match-media img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.match-copy h2 {
  max-width: 760px;
}

.match-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.75;
}

.match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.match-section .button.outline {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.intro p:last-child,
.split-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading h2 {
  grid-column: 2;
}

.section-heading .eyebrow {
  grid-column: 1;
  grid-row: 1;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}

.feature-card {
  display: grid;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-card.large {
  grid-row: span 2;
}

.feature-card img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.feature-card div {
  padding: 26px;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.dishes {
  padding-top: 24px;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dish-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.dish-card.wide {
  grid-column: span 2;
}

.dish-card img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.dish-card:hover img {
  transform: scale(1.035);
}

.dish-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 56%;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
}

.dish-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 24px;
  color: #fff;
}

.dish-card h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.dish-card p {
  max-width: 420px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split-media img {
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.highlights {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.highlights div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.highlights dt {
  font-weight: 800;
}

.highlights dd {
  margin: 6px 0 0;
  color: var(--muted);
}

.gallery-section {
  padding-top: 48px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
}

.gallery img {
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery img:nth-child(1) {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery img:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery img:nth-child(3) {
  grid-column: span 3;
  grid-row: span 3;
}

.gallery img:nth-child(4) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery img:nth-child(5),
.gallery img:nth-child(6),
.gallery img:nth-child(7),
.gallery img:nth-child(8) {
  grid-column: span 4;
  grid-row: span 2;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 6vw, 72px);
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.booking-copy {
  align-self: center;
}

.booking-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.booking-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.booking-notes li {
  min-height: 52px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--olive);
  font-size: 14px;
  font-weight: 800;
  background: #fff;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--paper);
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(211, 173, 104, 0.44);
  border-color: var(--gold);
}

.form-wide {
  grid-column: 1 / -1;
}

.booking-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-note a {
  color: var(--terracotta);
  font-weight: 800;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  padding: clamp(72px, 9vw, 110px) clamp(18px, 4vw, 52px);
  color: #fff;
  background: var(--olive);
}

.visit-panel,
.hours {
  border-radius: 8px;
  padding: clamp(28px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.08);
}

.visit p,
.hours p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.7;
}

.hours {
  background: rgba(0, 0, 0, 0.14);
}

.hours h3 {
  margin-bottom: 22px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 4vw, 52px);
  color: var(--muted);
  background: #fff;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 18px;
  }

  .nav {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 21px;
  }

  .nav-cta {
    min-width: 88px;
  }

  .hero,
  .hero-content {
    min-height: 92svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.36)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0) 45%);
  }

  .quick-info {
    left: 18px;
    right: 18px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .intro,
  .section-heading,
  .feature-grid,
  .dish-grid,
  .booking-section,
  .menu-section,
  .match-section,
  .split,
  .visit,
  .conversion-strip {
    grid-template-columns: 1fr;
  }

  .menu-actions {
    min-width: 0;
  }

  .match-media,
  .match-media img {
    min-height: 300px;
  }

  .conversion-strip a {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .conversion-strip a:last-child {
    border-bottom: 0;
  }

  .section-heading h2,
  .section-heading .eyebrow {
    grid-column: auto;
  }

  .feature-card.large {
    grid-row: auto;
  }

  .dish-card,
  .dish-card.wide {
    grid-column: auto;
  }

  .dish-card,
  .dish-card img {
    min-height: 360px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }

  .gallery img,
  .gallery img:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery img:nth-child(1),
  .gallery img:nth-child(3),
  .gallery img:nth-child(8) {
    grid-column: span 2;
  }

  .booking-copy {
    align-self: auto;
  }
}

@media (max-width: 540px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(50px, 18vw, 74px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .quick-info {
    display: none;
  }

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

  .gallery img,
  .gallery img:nth-child(n) {
    grid-column: 1;
  }

  .dish-card,
  .dish-card img {
    min-height: 330px;
  }

  .booking-notes,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 20px;
  }

  .footer {
    flex-direction: column;
  }
}
