:root {
  --ink: #07131f;
  --ink-deep: #030a11;
  --ink-soft: #0d2233;
  --paper: #f4f0e7;
  --paper-bright: #fbf9f4;
  --paper-muted: #e7e1d6;
  --text: #f8f5ee;
  --text-dark: #16222d;
  --muted: #aab4bd;
  --muted-dark: #61707b;
  --gold: #c79b4a;
  --gold-light: #e8cc8c;
  --gold-pale: #f2e1b3;
  --line: rgba(231, 198, 124, 0.22);
  --line-dark: rgba(16, 34, 48, 0.13);
  --shadow: 0 28px 80px rgba(1, 8, 14, 0.2);
  --shadow-soft: 0 18px 48px rgba(1, 8, 14, 0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1240px;
  --header-h: 92px;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink-deep); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 0.18em; }
button, input, textarea { font: inherit; }
::selection { background: var(--gold-light); color: var(--ink-deep); }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 5000;
  padding: 0.7rem 1rem;
  color: #111;
  background: #fff;
  border-radius: 6px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; }
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.eyebrow {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  line-height: 1.35;
  text-transform: uppercase;
}
.gold { color: var(--gold-light); }
.section { position: relative; padding: clamp(5.5rem, 8vw, 8.5rem) 0; }
.section-light { background: var(--paper); color: var(--text-dark); }
.section-dark { background: linear-gradient(180deg, var(--ink), #081a29); }
.section-title {
  max-width: 15ch;
  margin: 0.55rem 0 1.25rem;
  font-size: clamp(2.45rem, 4.5vw, 4.6rem);
}
.lead {
  max-width: 62ch;
  margin: 0;
  color: inherit;
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
  line-height: 1.75;
  opacity: 0.82;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(3, 10, 17, 0.9) 0%, rgba(3, 10, 17, 0.48) 70%, transparent 100%);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.site-header.is-scrolled {
  background: rgba(3, 12, 20, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px) saturate(125%);
}
.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}
.brand img {
  width: 206px;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 3px 14px rgba(0, 0, 0, 0.28));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.05rem, 1.8vw, 1.8rem);
}
.nav-links > a:not(.btn) {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: color 180ms ease;
}
.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 1px;
  background: var(--gold-light);
  transition: right 220ms ease;
}
.nav-links > a:not(.btn):hover,
.nav-links > a[aria-current="page"] { color: var(--gold-pale); }
.nav-links > a:not(.btn):hover::after,
.nav-links > a[aria-current="page"]::after { right: 0; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  cursor: pointer;
}
.nav-toggle-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}
.nav-toggle-icon { position: relative; }
.nav-toggle-icon::before,
.nav-toggle-icon::after { content: ""; position: absolute; left: 0; }
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { transform: translateY(-6px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.015em;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 25px rgba(199, 155, 74, 0.18);
}
.btn-gold:hover { box-shadow: 0 14px 34px rgba(199, 155, 74, 0.28); }
.btn-outline {
  color: #fff;
  background: rgba(4, 12, 20, 0.28);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.6); }
.btn-dark { color: #fff; background: var(--ink-deep); }
.site-header .btn { min-height: 42px; padding-inline: 1.15rem; border-radius: 7px; font-size: 0.84rem; }

/* Homepage hero */
.hero {
  min-height: max(720px, 94svh);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -3; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.012);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 28%, transparent 0 22%, rgba(3, 10, 17, 0.13) 52%, rgba(3, 10, 17, 0.48) 100%),
    linear-gradient(90deg, rgba(2, 9, 16, 0.94) 0%, rgba(2, 9, 16, 0.82) 33%, rgba(2, 9, 16, 0.46) 56%, rgba(2, 9, 16, 0.12) 82%),
    linear-gradient(0deg, rgba(2, 9, 16, 0.8) 0%, rgba(2, 9, 16, 0) 48%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 160px;
  background: linear-gradient(0deg, var(--ink-deep), transparent);
  pointer-events: none;
}
.hero-content {
  padding-top: calc(var(--header-h) + 4.7rem);
  padding-bottom: 5.2rem;
}
.hero-content::before {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin-bottom: 1.5rem;
  background: var(--gold-light);
}
.hero h1 {
  max-width: 930px;
  margin: 0.75rem 0 1.25rem;
  font-size: clamp(3.45rem, 5.8vw, 6.25rem);
  text-wrap: balance;
}
.hero h1 span { display: block; }
.hero h1 .gold { margin-top: 0.05em; }
.hero-content > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1rem, 1.38vw, 1.2rem);
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.65rem; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.79rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill {
  position: relative;
  padding: 0 1.05rem;
  border: 0;
  background: none;
  color: inherit;
  font-size: inherit;
}
.pill:first-child { padding-left: 0; }
.pill:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  transform: translate(50%, -50%);
}

/* Homepage content */
.quickbar {
  position: relative;
  z-index: 6;
  margin-top: -1px;
  background: var(--ink-deep);
  border-block: 1px solid var(--line);
}
.quickbar-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quickbar a {
  position: relative;
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.15rem 2rem;
  border-right: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease;
}
.quickbar a:last-child { border-right: 0; }
.quickbar a:hover { background: rgba(255, 255, 255, 0.035); color: var(--gold-pale); }
.quickbar span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.media-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(28, 44, 57, 0.11);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.media-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 800ms cubic-bezier(.2,.7,.2,1); }
.media-card:hover img { transform: scale(1.025); }
.media-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.68rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(3, 12, 20, 0.88);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.checklist { display: grid; gap: 0.85rem; margin: 1.65rem 0 2rem; }
.check { display: flex; gap: 0.85rem; align-items: flex-start; color: #4b5964; }
.check i { color: var(--gold); font-style: normal; font-size: 0.88rem; line-height: 1.8; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(231, 198, 124, 0.46); background: rgba(255, 255, 255, 0.05); }
.section-light .card { background: var(--paper-bright); border-color: var(--line-dark); box-shadow: var(--shadow-soft); }
.icon {
  width: auto;
  height: auto;
  margin-bottom: 2.8rem;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.card h3 { margin: 0 0 0.5rem; font-family: var(--font-display); font-size: 1.75rem; font-weight: 500; letter-spacing: -0.025em; }
.card p { margin: 0 0 1.4rem; opacity: 0.75; }
.card-link { margin-top: auto; color: var(--gold-light); font-size: 0.86rem; font-weight: 650; text-decoration: none; }
.card-link:hover { color: var(--gold-pale); }

.menu-strip { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); min-height: 640px; }
.menu-image { min-height: 640px; background: url('../img/terrasse-les-flocons-montchavin.webp') center / cover no-repeat; }
.menu-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.8rem, 7vw, 7.5rem);
  background: linear-gradient(145deg, #0b2132, #06121d);
}
.menu-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--line);
}
.menu-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.4rem 0 1.9rem; }
.menu-tags span {
  padding: 0.42rem 0.64rem;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.75rem;
}

.faq { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid var(--line-dark); }
.faq details { padding: 1.2rem 0; border: 0; border-bottom: 1px solid var(--line-dark); border-radius: 0; background: transparent; }
.faq summary { position: relative; padding-right: 2.2rem; cursor: pointer; list-style: none; font-size: 1rem; font-weight: 650; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 0; color: var(--gold); font-size: 1.3rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq p { max-width: 70ch; margin: 0.7rem 0 0; color: #53616b; }

.location { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 1rem; }
.location-card {
  padding: clamp(2rem, 4vw, 3.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0a1d2c, #06131f);
}
.map { min-height: 450px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #10283a; }
.map iframe { width: 100%; min-height: 450px; height: 100%; border: 0; filter: saturate(0.78) contrast(1.02); }
.nap { display: grid; gap: 1rem; margin: 1.8rem 0 2rem; color: rgba(255, 255, 255, 0.86); }
.nap strong { display: block; margin-bottom: 0.18rem; color: var(--gold-light); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }

/* Inner pages */
.page-hero {
  min-height: 570px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 6.5rem) 0 5.5rem;
  background:
    linear-gradient(90deg, rgba(3, 12, 20, 0.95) 0%, rgba(3, 12, 20, 0.75) 42%, rgba(3, 12, 20, 0.35) 76%),
    linear-gradient(0deg, rgba(3, 12, 20, 0.76), transparent 50%),
    url('../img/facade-les-flocons-montchavin.webp') center / cover no-repeat;
}
.page-hero .container { width: min(calc(100% - 3rem), var(--max)); }
.page-hero h1 {
  max-width: 20ch;
  margin: 0.6rem 0 1.25rem;
  font-size: clamp(2.85rem, 4.45vw, 4.75rem);
  text-wrap: balance;
}
.page-hero .lead { max-width: 62ch; color: rgba(255, 255, 255, 0.8); }
.breadcrumbs { margin-bottom: 1.5rem; color: rgba(255, 255, 255, 0.62); font-size: 0.77rem; }
.breadcrumbs a { color: var(--gold-pale); text-decoration: none; }
.prose { max-width: 850px; }
.prose h2 {
  margin: 2.8rem 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 2rem 0 0.55rem; font-size: 1.25rem; }
.prose p, .prose li { color: #4d5b66; font-size: 1.02rem; }
.prose a { color: #7d5a1c; font-weight: 650; }
.internal-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.7rem; margin-top: 2.5rem; }
.internal-links a {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: #243440;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}
.internal-links a:hover { background: #fff; border-color: rgba(199, 155, 74, 0.48); }
.cta-band {
  padding: 3.4rem 0;
  color: #fff;
  background: linear-gradient(120deg, #0d2638, #07131f);
  border-block: 1px solid var(--line);
}
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-row h2 { margin: 0.4rem 0 0; font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 3.45rem); font-weight: 500; letter-spacing: -0.035em; }
.cta-band .eyebrow { color: var(--gold-light); }
.cta-band .btn-dark { color: #16120b; background: linear-gradient(135deg, var(--gold-light), var(--gold)); }

/* Footer */
.footer { padding: 5.5rem 0 2rem; background: var(--ink-deep); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.8fr 0.8fr; gap: clamp(2rem, 5vw, 5rem); }
.footer h3 { margin: 0 0 1rem; color: var(--gold-pale); font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; }
.footer p { color: #9dabb5; font-size: 0.9rem; }
.footer a { color: #d7dde1; text-decoration: none; }
.footer a:hover { color: var(--gold-pale); }
.footer-logo { width: min(420px, 100%); height: auto; margin-bottom: 1rem; }
.legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(231, 198, 124, 0.12);
  color: #75848f;
  font-size: 0.73rem;
}
.mobile-cta { display: none; }

/* Motion */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* Full menu */
.menu-hero {
  background:
    linear-gradient(90deg, rgba(3, 12, 20, 0.96), rgba(3, 12, 20, 0.7) 48%, rgba(3, 12, 20, 0.3)),
    linear-gradient(0deg, rgba(3, 12, 20, 0.76), transparent 55%),
    url('../img/menu/couverture-carte-les-flocons-ange-leoni-montchavin.webp') center 42% / cover no-repeat;
}
.menu-hero h1 { max-width: 15ch; }
.menu-anchor-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: rgba(3, 12, 20, 0.94);
  border-block: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.menu-anchor-nav .container { display: flex; gap: 0.35rem; overflow-x: auto; padding: 0.7rem 0; scrollbar-width: thin; }
.menu-anchor-nav a {
  white-space: nowrap;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(231, 198, 124, 0.18);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
}
.menu-anchor-nav a:hover { color: #16120b; background: var(--gold-light); border-color: var(--gold-light); }
.menu-facts { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.4rem; }
.menu-facts span { padding: 0.42rem 0.65rem; border: 1px solid var(--line-dark); border-radius: 5px; background: rgba(255, 255, 255, 0.58); font-size: 0.78rem; font-weight: 600; }
.menu-cover, .menu-poster, .menu-thumb {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(199, 155, 74, 0.28);
  border-radius: 10px;
  background: #040d15;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}
.menu-cover { max-width: 480px; justify-self: end; }
.menu-cover img, .menu-poster img, .menu-thumb img { width: 100%; height: auto; }
.menu-cover figcaption, .menu-poster figcaption, .menu-thumb figcaption { padding: 0.7rem 0.85rem; background: #06131f; color: #cbd2d7; font-size: 0.75rem; }
.poster-brand {
  position: absolute;
  z-index: 2;
  left: 0.7rem;
  right: 0.7rem;
  top: 0.7rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(232, 204, 140, 0.45);
  border-radius: 5px;
  background: rgba(3, 12, 20, 0.92);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.6vw, 1.08rem);
  letter-spacing: 0.01em;
  text-align: center;
  backdrop-filter: blur(10px);
}
.poster-brand small { display: block; margin-top: 0.08rem; color: rgba(255,255,255,.85); font-family: var(--font-sans); font-size: 0.58em; letter-spacing: 0.14em; text-transform: uppercase; }
.poster-brand.compact { left: 0.5rem; right: auto; max-width: calc(100% - 1rem); padding: 0.38rem 0.52rem; font-size: 0.72rem; }
.menu-section { padding: clamp(5rem, 7vw, 7.5rem) 0; scroll-margin-top: calc(var(--header-h) + 58px); }
.menu-section:nth-of-type(even) { background: #071522; }
.menu-section-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr); gap: clamp(2.5rem, 6vw, 6.5rem); align-items: start; }
.menu-section-reverse .menu-text { order: 2; }
.menu-section-reverse .menu-poster { order: 1; }
.menu-text > .display, .menu-heading .display { margin: 0.42rem 0 1rem; font-size: clamp(2.5rem, 4.4vw, 4.45rem); line-height: 1; }
.menu-intro { max-width: 61ch; margin: 0; color: inherit; font-size: 1rem; line-height: 1.75; opacity: 0.77; }
.menu-items { display: grid; gap: 0; margin-top: 1.8rem; border-top: 1px solid rgba(231, 198, 124, 0.18); }
.menu-item { padding: 1rem 0; border: 0; border-bottom: 1px solid rgba(231, 198, 124, 0.18); border-radius: 0; background: transparent; }
.section-light .menu-item { border-color: var(--line-dark); background: transparent; }
.menu-item-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.menu-item h3 { margin: 0; font-family: var(--font-display); font-size: 1.16rem; font-weight: 500; letter-spacing: -0.018em; }
.menu-item strong { color: var(--gold); white-space: nowrap; font-size: 0.92rem; }
.menu-item p { margin: 0.32rem 0 0; font-size: 0.87rem; line-height: 1.55; opacity: 0.66; }
.menu-poster { max-width: 455px; justify-self: end; }
.menu-heading { display: grid; grid-template-columns: 1fr 0.68fr; gap: 2.5rem; align-items: center; margin-bottom: 2.3rem; }
.horizontal-poster { max-width: 340px; }
.flavour-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; }
.flavour { padding: 0.8rem; border: 1px solid var(--line); border-radius: 7px; background: rgba(255, 255, 255, 0.026); }
.flavour strong, .flavour span { display: block; }
.flavour span { margin-top: 0.18rem; color: #b8c3ca; font-size: 0.74rem; }
.subsection-title { margin: 2.2rem 0 0.8rem; color: var(--gold-light); font-family: var(--font-display); font-size: 1.65rem; font-weight: 500; }
.topping-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; padding: 1.25rem; border: 1px solid var(--line); border-radius: 8px; background: rgba(255, 255, 255, 0.026); }
.topping-panel > p { align-self: end; color: #aeb9c1; }
.drink-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.drink-card { padding: 1.15rem; border: 1px solid var(--line-dark); border-radius: 9px; background: rgba(255, 255, 255, 0.6); color: #17232e; }
.section-dark .drink-card { border-color: var(--line); background: rgba(255, 255, 255, 0.026); color: #fff; }
.drink-card h3 { margin: 0.05rem 0 0.8rem; color: var(--gold); font-family: var(--font-display); font-size: 1.28rem; font-weight: 500; }
.price-list { display: grid; gap: 0.45rem; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding-bottom: 0.32rem; border-bottom: 1px dotted rgba(128, 128, 128, 0.3); }
.price-row span { font-size: 0.82rem; }
.price-row strong { color: var(--gold); white-space: nowrap; font-size: 0.84rem; }
.poster-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.poster-pair .menu-poster { max-width: none; }
.wine-posters { max-width: 900px; margin: 2rem auto 0; }
.menu-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 2rem; }
.menu-thumb { border-color: var(--line-dark); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09); }
.menu-thumb img { aspect-ratio: 2 / 3; object-fit: cover; }
.menu-thumb figcaption { min-height: 56px; }
.menu-disclaimer { margin-top: 1.5rem; padding: 1rem 1.1rem; border-left: 2px solid var(--gold); background: rgba(255, 255, 255, 0.62); color: #4c5a65; }
.lightbox { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 3rem 1rem 1rem; background: rgba(0, 0, 0, 0.94); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(100%, 900px); max-height: 86vh; border: 1px solid var(--line); object-fit: contain; box-shadow: var(--shadow); }
.lightbox p { margin: 0.5rem 0; color: #fff; text-align: center; }
.lightbox-close { position: fixed; right: 1rem; top: 1rem; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; background: var(--ink); color: #fff; font-size: 1.8rem; cursor: pointer; }
.lightbox-open { overflow: hidden; }

@media (max-width: 1080px) {
  .nav-links { gap: 1rem; }
  .nav-links > a:not(.btn) { font-size: 0.82rem; }
  .brand img { width: 184px; }
  .flavour-grid { grid-template-columns: repeat(3, 1fr); }
  .drink-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 78px; }
  .container, .page-hero .container { width: min(calc(100% - 2rem), var(--max)); }
  .nav-toggle { display: grid; place-items: center; }
  .brand img { width: 166px; max-height: 58px; }
  .nav-links {
    position: fixed;
    inset: calc(var(--header-h) + 0.5rem) 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - var(--header-h) - 2rem);
    overflow-y: auto;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(4, 15, 25, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
  }
  .nav-links.open { display: flex; }
  .nav-links > a:not(.btn) { padding: 0.85rem 0.75rem; border-bottom: 1px solid rgba(231, 198, 124, 0.1); font-size: 0.94rem; }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-links .btn { width: 100%; margin-top: 0.65rem; }
  .hero { min-height: 760px; align-items: end; }
  .hero-media img { object-position: 58% center; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(2,9,16,.92) 0%, rgba(2,9,16,.72) 58%, rgba(2,9,16,.3) 100%),
      linear-gradient(0deg, rgba(2,9,16,.9) 0%, rgba(2,9,16,.2) 62%);
  }
  .hero-content { padding-top: calc(var(--header-h) + 4rem); padding-bottom: 4rem; }
  .hero h1 { max-width: 720px; font-size: clamp(3.15rem, 10.5vw, 5.4rem); }
  .split, .location, .menu-strip, .menu-section-grid, .menu-heading { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .icon { margin-bottom: 1.8rem; }
  .quickbar-grid { grid-template-columns: 1fr; }
  .quickbar a { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--line); }
  .quickbar a:last-child { border-bottom: 0; }
  .menu-image { min-height: 440px; }
  .menu-copy::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .internal-links { grid-template-columns: 1fr; }
  .cta-row { align-items: flex-start; flex-direction: column; }
  .legal { flex-direction: column; }
  .menu-anchor-nav { top: var(--header-h); }
  .menu-section-reverse .menu-text, .menu-section-reverse .menu-poster { order: initial; }
  .menu-cover, .menu-poster { justify-self: stretch; max-width: 560px; margin-inline: auto; }
  .poster-pair { grid-template-columns: 1fr 1fr; }
  .menu-gallery { grid-template-columns: repeat(2, 1fr); }
  .flavour-grid { grid-template-columns: repeat(2, 1fr); }
  .topping-panel { grid-template-columns: 1fr; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.55rem;
    border-top: 1px solid var(--line);
    background: rgba(3, 12, 20, 0.96);
    backdrop-filter: blur(14px);
  }
  .mobile-cta a { min-height: 44px; display: grid; place-items: center; border-radius: 6px; font-size: 0.85rem; font-weight: 700; text-decoration: none; }
  .mobile-cta .call { color: #17120a; background: var(--gold-light); }
  .mobile-cta .menu { border: 1px solid var(--line); }
  .footer { padding-bottom: 7.5rem; }
}

@media (max-width: 600px) {
  .section { padding: 4.5rem 0; }
  .hero { min-height: 720px; }
  .hero-content::before { width: 40px; margin-bottom: 1.1rem; }
  .hero h1 { margin-top: 0.6rem; font-size: clamp(2.85rem, 14vw, 4.4rem); line-height: 0.96; }
  .hero h1 .gold { margin-top: 0.12em; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { gap: 0.45rem 0; font-size: 0.68rem; line-height: 1.45; }
  .pill { padding: 0 0.72rem; }
  .pill:first-child { padding-left: 0; }
  .page-hero { min-height: 520px; padding: calc(var(--header-h) + 5rem) 0 4rem; }
  .page-hero h1 { font-size: clamp(2.65rem, 12vw, 4.2rem); }
  .section-title { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .menu-strip { min-height: 0; }
  .menu-image { min-height: 340px; }
  .menu-copy { padding: 3rem 1.25rem; }
  .menu-anchor-nav { top: var(--header-h); }
  .menu-introduction .split { gap: 2rem; }
  .menu-item-head { align-items: flex-start; }
  .menu-item h3 { font-size: 1.05rem; }
  .poster-pair, .drink-grid { grid-template-columns: 1fr; }
  .menu-gallery { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .menu-thumb figcaption { min-height: 64px; font-size: 0.68rem; }
  .flavour-grid { grid-template-columns: 1fr 1fr; }
  .poster-brand { font-size: 0.78rem; }
  .menu-section { scroll-margin-top: calc(var(--header-h) + 50px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .media-card img, .card, .nav-links > a::after { transition: none; }
}
