:root {
  --ink: #090807;
  --night: #0d0b0a;
  --paper: #f3efe7;
  --paper-soft: #e9e1d5;
  --accent: #7c171d;
  --accent-strong: #9a1d24;
  --gold: #b99b68;
  --gold-light: #dfc79b;
  --muted: #655e56;
  --line: rgba(42, 33, 25, 0.18);
  --line-light: rgba(223, 199, 155, 0.22);
  --serif: "Bodoni Moda", Didot, "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;
  --container: min(1280px, calc(100vw - 8vw));
  --section-space: clamp(5.5rem, 10vw, 10rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.entrance {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: transparent;
  transition: visibility 0s linear 1s;
}

.entrance__dark {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 51%;
  background: #050505;
  transition: transform 1.35s cubic-bezier(.76,0,.24,1) .58s;
}

.entrance__dark--left { left: 0; transform-origin: left; }
.entrance__dark--right { right: 0; transform-origin: right; }

.entrance__mark {
  position: relative;
  z-index: 2;
  width: min(16rem, 52vw);
  opacity: 0;
  transform: translateY(.7rem);
  transition: opacity .7s ease, transform .7s ease;
}

.entrance__mark img { position: relative; z-index: 1; }

.entrance__mark span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18rem;
  height: 18rem;
  transform: translate(-50%,-50%) scale(.25);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,174,103,.22), rgba(224,174,103,0) 66%);
  opacity: 0;
  filter: blur(5px);
  transition: opacity 1s ease .25s, transform 1.35s cubic-bezier(.2,.7,.2,1) .25s;
}

.scene-lit .entrance__mark { opacity: 1; transform: none; }
.scene-lit .entrance__mark span { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.scene-lit .entrance__dark--left { transform: translateX(-100%); }
.scene-lit .entrance__dark--right { transform: translateX(100%); }
.entrance.is-complete { visibility: hidden; }
.entrance.is-complete .entrance__mark { opacity: 0; transition-duration: .3s; }

.page-veil {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  background: #070707;
  transform: translateY(101%);
  transition: transform .62s cubic-bezier(.76,0,.24,1);
}

.page-veil span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #e6b36f;
  box-shadow: 0 0 22px 8px rgba(230,179,111,.42);
  opacity: 0;
  transition: opacity .25s ease .3s;
}

.page-veil.is-active { transform: none; }
.page-veil.is-active span { opacity: 1; }

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

h1 { font-size: clamp(4.3rem, 7.6vw, 8rem); }
h2 { font-size: clamp(3rem, 5vw, 5.4rem); }
h3 { font-size: clamp(1.8rem, 2.5vw, 2.65rem); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4.2vw;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background-color 350ms ease, border-color 350ms ease, min-height 350ms ease;
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  overflow: hidden;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(230,179,111,.9);
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
}

.site-header.is-scrolled {
  min-height: 5rem;
  background: rgba(7, 6, 5, 0.92);
  border-color: var(--line-light);
  backdrop-filter: blur(18px);
}

.brand { position: relative; z-index: 102; display: block; width: 9.4rem; }
.brand img { aspect-ratio: 339 / 104; object-fit: contain; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2.35rem);
  font-size: 0.78rem;
  letter-spacing: .015em;
}

.nav > a:not(.button) {
  position: relative;
  text-decoration: none;
  color: rgba(255,255,255,.76);
  transition: color 220ms ease;
}

.nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.5rem;
  height: 1px;
  background: currentColor;
  transition: right 280ms cubic-bezier(.2,.7,.2,1);
}

.nav > a:hover,
.nav > a[aria-current="page"] { color: #fff; }
.nav > a:hover::after,
.nav > a[aria-current="page"]::after { right: 0; }

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.8rem;
  border: 0;
  background: transparent;
  color: #fff;
}

.menu-toggle span {
  position: absolute;
  left: .75rem;
  right: .75rem;
  height: 1px;
  background: currentColor;
  transition: transform 300ms ease, top 300ms ease;
}

.menu-toggle span:first-child { top: 1.15rem; }
.menu-toggle span:last-child { top: 1.78rem; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 1.48rem; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 1.48rem; transform: rotate(-45deg); }

.button {
  display: inline-flex;
  position: relative;
  min-height: 4rem;
  align-items: center;
  justify-content: center;
  padding: .95rem 2rem;
  border: 1px solid rgba(223,199,155,.55);
  border-radius: 0;
  background: var(--accent);
  color: #fff;
  font: 500 .79rem/1 var(--sans);
  letter-spacing: .015em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 44px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform 250ms cubic-bezier(.2,.7,.2,1), background-color 250ms ease, box-shadow 250ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
  box-shadow: 0 22px 54px rgba(0,0,0,.3), 0 0 0 1px rgba(223,199,155,.14);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.button[disabled] { opacity: .5; cursor: not-allowed; transform: none; }
.button--compact { min-height: 3.15rem; padding: .75rem 1.3rem; font-size: .73rem; }
.button--dark { color: var(--gold-light); background: var(--ink); border-color: rgba(185,155,104,.55); }
.button--dark:hover { background: #171310; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
}

.text-link::after { content: "↗"; transition: transform 220ms ease; }
.text-link:hover::after { transform: translate(.18rem, -.18rem); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--ink) var(--hero-image) center / cover no-repeat;
}

.hero--page { min-height: 86svh; }

.hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  filter: saturate(.76) contrast(1.08);
  animation: hero-breathe 20s cubic-bezier(.2,.7,.2,1) both;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(3,3,3,.84) 0%, rgba(4,4,4,.56) 45%, rgba(4,4,4,.28) 72%, rgba(4,4,4,.5) 100%);
}

.hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 47%, rgba(219,178,113,.12), transparent 30%), linear-gradient(180deg, rgba(0,0,0,.26), transparent 34%, rgba(0,0,0,.66));
}

.hero__light,
.reservation-cta__light {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 360px at 72% 48%, rgba(246,207,145,.13), rgba(232,190,126,.035) 38%, transparent 74%);
  mix-blend-mode: screen;
  opacity: .72;
  transition: opacity .35s ease;
}

.hero__coordinates {
  position: absolute;
  z-index: 2;
  left: 3.8vw;
  bottom: 3rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(223,199,155,.62);
  font-size: .56rem;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.hero__coordinates i { width: 3.5rem; height: 1px; background: rgba(185,155,104,.58); }

.hero__content {
  width: min(980px, calc(100vw - 8vw));
  margin: auto auto 0 6.5vw;
  padding: 10rem 0 8.5rem;
  text-align: left;
  opacity: 1;
}

.hero__content h1 { max-width: 900px; margin-bottom: 1.9rem; color: #f7f0e4; text-wrap: balance; text-shadow: 0 12px 50px rgba(0,0,0,.32); }
.hero__content > p:not(.eyebrow) { max-width: 560px; margin: 0 0 2.5rem; color: rgba(247,240,228,.72); font-size: .92rem; letter-spacing: .015em; }

.eyebrow {
  display: inline-block;
  margin-bottom: 1.65rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: .98rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .015em;
  text-transform: none;
}

.eyebrow::before { display: none; }

.hero .eyebrow,
.reservation-cta .eyebrow,
.statement--dark .eyebrow { color: var(--gold-light); }

.section {
  width: var(--container);
  margin-inline: auto;
  padding-block: var(--section-space);
}

.statement {
  position: relative;
  width: 100%;
  max-width: none;
  display: block;
  padding-inline: max(6.5vw, calc((100vw - 1280px) / 2));
  color: #f3eadc;
  background: var(--night);
  text-align: left;
}

.statement::after { display: none; }
.statement .eyebrow { display: none; }
.statement h2 { max-width: 1080px; margin: 0 auto 2.4rem; text-align: center; text-wrap: balance; }
.statement > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 2.2rem; color: rgba(243,234,220,.62); text-align: center; }
.statement .text-link { width: max-content; margin-inline: auto; color: var(--gold-light); }

.statement--dark {
  width: 100%;
  max-width: none;
  padding-inline: max(4vw, calc((100vw - 1280px) / 2));
  color: #fff;
  background: #080706;
}

.statement--dark > p:not(.eyebrow) { color: rgba(255,255,255,.68); }

.feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 780px;
  background: var(--paper);
}

.feature::after { display: none; }

.feature--reverse .feature__media { order: 2; }

.feature__media { position: relative; min-height: 680px; overflow: hidden; clip-path: none; }
.feature--reverse .feature__media { clip-path: none; }
.feature__media.is-visible { clip-path: none; }
.feature__media img { height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); transition: transform 1.6s cubic-bezier(.2,.7,.2,1), filter .6s ease; }
.feature:hover .feature__media img { transform: scale(1.025); }

.image-light { display: none; }

.feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8.5rem);
}

.feature .eyebrow,
.section-heading .eyebrow,
.menu-group__intro .eyebrow,
.reservation-moment .eyebrow { display: none; }

.scene-number {
  display: none;
}

.feature__copy h2 { max-width: 620px; margin-bottom: 2rem; }
.feature__copy > p:not(.eyebrow) { max-width: 590px; margin-bottom: 2rem; color: var(--muted); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  align-items: end;
  gap: 4rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: .75rem; color: var(--muted); }

.signatures {
  width: 100%;
  padding-inline: max(6.5vw, calc((100vw - 1280px) / 2));
  color: #f3eadc;
  background: #0a0908;
}

.signatures .section-heading > p,
.signatures .signature p { color: rgba(243,234,220,.55); }

.signatures .eyebrow { color: var(--gold-light); }

.signature-grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr;
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.signature,
.visit-card,
.dish { position: relative; isolation: isolate; }

.signature::before,
.visit-card::before,
.dish::before {
  display: none;
}

.signature:hover::before,
.visit-card:hover::before,
.dish:hover::before { opacity: 1; }

.signature { padding-bottom: 1.5rem; border-bottom: 1px solid rgba(185,155,104,.28); }
.signature__image { position: relative; aspect-ratio: 1 / 1.16; margin-bottom: 2rem; overflow: hidden; background: #15120f; }
.signature:first-child .signature__image { aspect-ratio: 1 / 1.02; }
.signature__image::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(223,199,155,.16); box-shadow: inset 0 0 70px rgba(0,0,0,.12); pointer-events: none; }
.signature__image img { height: 100%; object-fit: cover; filter: saturate(.76) contrast(1.08); transition: transform 1.3s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.signature:hover img { transform: scale(1.035); }
.signature:hover img { filter: saturate(.95) contrast(1.05); }
.signature h3 { margin-bottom: 1rem; color: #f3eadc; }
.signature p { max-width: 28rem; color: var(--muted); }
.center { margin-top: 4rem; text-align: center; }

.gallery { width: 100%; padding-inline: max(6.5vw, calc((100vw - 1280px) / 2)); background: var(--paper-soft); }
.gallery-grid { display: grid; grid-template-columns: 1.35fr .8fr 1fr; gap: 1.2rem; align-items: stretch; }
.gallery-grid figure { min-height: 620px; margin: 0; overflow: hidden; }
.gallery-grid figure:nth-child(2) { min-height: 520px; margin-top: 5rem; }
.gallery-grid img { height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.08); transition: transform 1.4s cubic-bezier(.2,.7,.2,1), filter .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figure:hover img { filter: saturate(.92) contrast(1.04); }

.reservation-cta {
  position: relative;
  min-height: 78svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: var(--ink) var(--hero-image) center / cover no-repeat;
}

.reservation-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  filter: saturate(.72) contrast(1.08);
}

.reservation-cta__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5,4,3,.76), rgba(5,4,3,.42) 50%, rgba(5,4,3,.72)); }
.reservation-cta__light { z-index: -1; background: radial-gradient(circle 320px at var(--light-x, 58%) var(--light-y, 46%), rgba(245,194,118,.21), rgba(245,194,118,.04) 43%, transparent 74%); }
.reservation-cta__content { width: min(920px, calc(100vw - 3rem)); padding: 8rem 0; text-align: center; }
.reservation-cta h2 { margin-bottom: 1.7rem; }
.reservation-cta__content > p:not(.eyebrow) { max-width: 610px; margin: 0 auto 2.2rem; color: rgba(255,255,255,.78); }

.menu-page { background: var(--paper); }
.menu-group { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); gap: clamp(4rem, 9vw, 10rem); }
.menu-group--tint { width: 100%; padding-inline: max(4vw, calc((100vw - 1280px) / 2)); background: var(--paper-soft); }
.menu-group__intro { align-self: start; position: sticky; top: 8rem; }
.menu-group__intro .scene-number { display: none; }
.menu-group__intro h2 { font-size: clamp(3rem, 4.5vw, 5rem); margin-bottom: 1.4rem; }
.menu-group__intro > p:not(.eyebrow) { color: var(--muted); }

.dish { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; padding: 1.8rem 0 1.9rem; border-top: 1px solid var(--line); }
.dish:last-child { border-bottom: 1px solid var(--line); }
.dish h3 { margin-bottom: .6rem; font-size: clamp(1.65rem, 2vw, 2.35rem); line-height: 1.08; }
.dish p { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.dish > span { padding-top: .25rem; color: #5d4226; font-family: var(--serif); font-size: 1.25rem; }

.reservation-moment { background: var(--paper); }
.visit-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.visit-card { min-height: 320px; padding: 2.4rem; border-right: 1px solid var(--line); }
.visit-card:last-child { border-right: 0; }
.visit-card > span { display: block; margin-bottom: 4rem; color: var(--accent); font-size: .62rem; letter-spacing: .16em; }
.visit-card h3 { margin-bottom: 1.2rem; }
.visit-card p { color: var(--muted); }

.empty-source { min-height: 70svh; background: var(--paper); }

.footer { position: relative; color: #f3eadc; background: #070605; }
.footer::before { content: ""; position: absolute; top: 0; left: 6.5vw; right: 6.5vw; height: 1px; background: linear-gradient(90deg, transparent, rgba(185,155,104,.58), transparent); }
.footer__main { width: var(--container); margin: 0 auto; padding: 7rem 0; display: grid; grid-template-columns: 1.15fr .55fr 1.1fr; gap: clamp(3rem, 7vw, 8rem); }
.footer__brand > img { width: 9.5rem; margin-bottom: 3.5rem; }
.contact-list { display: grid; gap: 1.3rem; margin: 0; }
.contact-list div { display: grid; grid-template-columns: 5rem 1fr; gap: 1.2rem; }
.contact-list dt, .footer__label { color: rgba(223,199,155,.58); font-size: .62rem; text-transform: uppercase; letter-spacing: .18em; }
.contact-list dd { margin: 0; color: rgba(255,255,255,.78); font-size: .85rem; }
.contact-list a { text-decoration: none; }
.footer__nav { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; }
.footer__nav a { color: rgba(255,255,255,.72); font-size: .85rem; text-decoration: none; }
.footer__nav a:hover { color: #fff; }
.footer__cta h2 { margin-bottom: 2.3rem; color: #f3eadc; font-size: clamp(2.5rem, 3.5vw, 4.2rem); }
.footer__legal { width: var(--container); margin: 0 auto; padding: 1.5rem 0 2.2rem; display: flex; gap: 2rem; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.46); font-size: .7rem; }
.footer__legal a { margin-left: auto; text-decoration: none; }
.footer__legal a + a { margin-left: 0; }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(1rem); transition: opacity 720ms ease, transform 900ms cubic-bezier(.22,.65,.28,1); transition-delay: calc(var(--reveal-order, 0) * 24ms); }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }
.reveal--hero { transition-delay: 60ms; }

@keyframes hero-breathe {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

@keyframes threshold-line {
  0% { transform: translateY(-100%); }
  45%, 55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

@keyframes image-light-pass {
  0% { opacity: 0; transform: translateX(-92%); }
  28% { opacity: 1; }
  72% { opacity: .75; }
  100% { opacity: 0; transform: translateX(92%); }
}

@media (max-width: 980px) {
  :root { --container: min(100% - 2.5rem, 800px); }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 7rem 2rem 3rem;
    background: rgba(10,10,10,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-1rem);
    transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.button) { font-family: var(--serif); font-size: 2.4rem; }
  .nav .button { margin-top: 1rem; }
  .statement { grid-template-columns: 1fr; gap: 1.5rem; padding-inline: max(2rem, 6vw); }
  .statement::after { display: none; }
  .statement .eyebrow { grid-row: auto; margin-top: 0; }
  .feature { min-height: 0; grid-template-columns: 1fr; }
  .feature::after { display: none; }
  .feature--reverse .feature__media { order: 0; }
  .feature__media { min-height: auto; aspect-ratio: 4 / 3; }
  .feature__copy { padding: 5rem 1.25rem 6rem; }
  .section-heading { grid-template-columns: 1fr; gap: 1.25rem; }
  .signature-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .signature__image { aspect-ratio: 4 / 3; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure { min-height: 430px; }
  .gallery-grid figure:nth-child(2) { min-height: 430px; margin-top: 0; }
  .gallery-grid figure:last-child { grid-column: 1 / -1; min-height: 520px; }
  .menu-group { grid-template-columns: 1fr; gap: 3rem; }
  .menu-group__intro { position: static; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .visit-card:last-child { border-bottom: 0; }
  .footer__main { grid-template-columns: 1fr 1fr; }
  .footer__cta { grid-column: 1 / -1; }
  .footer__legal { flex-wrap: wrap; }
  .footer__legal a { margin-left: 0; }
}

@media (max-width: 620px) {
  :root { --section-space: 5.2rem; }
  h1 { font-size: clamp(3.45rem, 16vw, 5.4rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .site-header { min-height: 4.8rem; padding-inline: 1.25rem; }
  .brand { width: 8.5rem; }
  .hero--home { min-height: 92svh; }
  .hero--page { min-height: 82svh; }
  .hero__content { width: calc(100vw - 2.5rem); margin-left: 1.25rem; padding: 8rem 0 6rem; }
  .hero__content > p:not(.eyebrow) { font-size: .9rem; }
  .eyebrow { font-size: .58rem; letter-spacing: .16em; }
  .eyebrow::before { width: 1.8rem; }
  .button { min-height: 3.75rem; padding-inline: 1.4rem; font-size: .67rem; }
  .feature__media { aspect-ratio: 1 / 1.05; }
  .feature__copy { padding: 4.5rem 1.25rem 5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure,
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:last-child { min-height: 420px; grid-column: auto; }
  .dish { gap: 1rem; }
  .dish h3 { font-size: 1.65rem; }
  .dish p { font-size: .82rem; }
  .footer__main { grid-template-columns: 1fr; padding: 5rem 0; }
  .footer__cta { grid-column: auto; }
  .footer__legal { flex-direction: column; gap: .7rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
.hero-line { display: block; overflow: visible; padding-bottom: .07em; }
.hero-line > span { display: block; opacity: 0; transform: translateY(.32em); transition: opacity .75s ease, transform 1s cubic-bezier(.22,.65,.28,1); }
.page-ready .hero-line:first-child > span { opacity: 1; transform: none; transition-delay: .08s; }
.page-ready .hero-line:nth-child(2) > span { opacity: 1; transform: none; transition-delay: .16s; }

.hero__threshold {
  position: absolute;
  z-index: 2;
  right: 3.8vw;
  bottom: 2.2rem;
  display: grid;
  justify-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.5);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero__threshold i {
  position: relative;
  width: 1px;
  height: 3.5rem;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}

.hero__threshold i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #e6b36f;
  transform: translateY(-100%);
  animation: threshold-line 2.4s cubic-bezier(.2,.7,.2,1) 1.8s infinite;
}
