:root {
  --wine: #10100f;
  --wine-dark: #050505;
  --cream: #f4efe5;
  --cream-2: #e8e0d2;
  --butter: #efd8b6;
  --tomato: #c90d19;
  --gold: #d49b24;
  --gold-soft: #f0c96b;
  --taupe: #806847;
  --olive: #292a26;
  --ink: #171614;
  --muted: #6e675f;
  --white: #fffdf8;
  --line: rgba(23, 22, 20, 0.18);
  --line-light: rgba(255, 250, 241, 0.22);
  --sans: "Bricolage Grotesque", sans-serif;
  --serif: "Barlow Condensed", sans-serif;
  --pad: clamp(1.2rem, 4vw, 4.8rem);
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 4.5rem; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}
html.menu-open, body.menu-open { overflow: hidden; overscroll-behavior: none; }
body.is-page-ready { animation: page-focus-in 240ms ease-out; }
body.is-page-leaving { pointer-events: none; animation: page-focus-out 190ms ease-in both; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { border: 0; }
::selection { background: var(--butter); color: var(--wine); }
:focus-visible { outline: 2px solid var(--tomato); outline-offset: 4px; }

.skip-link {
  position: fixed; z-index: 10000; top: .6rem; left: .6rem;
  padding: .8rem 1rem; background: var(--butter); color: var(--wine);
  font-weight: 800; transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
.wrap { width: min(calc(100% - (2 * var(--pad))), var(--max)); margin-inline: auto; }
.section { padding-block: clamp(5.5rem, 10vw, 10rem); }
.eyebrow {
  margin: 0 0 1rem; color: var(--tomato); font-size: .68rem;
  font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
.eyebrow.light { color: var(--gold-soft); }
.display {
  margin: 0; font-family: var(--serif); font-size: clamp(3.7rem, 7.4vw, 7.7rem);
  font-weight: 800; letter-spacing: -.035em; line-height: .84;
}
.display em { color: var(--tomato); font-style: normal; font-weight: 800; }
.display-light { color: var(--white); }
.display-light em { color: var(--gold-soft); }
.lead { max-width: 38rem; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.lead-light { color: rgba(255,250,241,.72); }

.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem;
  min-width: 12rem; padding: 1rem 1.2rem; border: 1px solid transparent;
  border-radius: .25rem; font-size: .69rem; font-weight: 800; letter-spacing: .11em;
  line-height: 1; text-transform: uppercase; cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button span { transition: transform 220ms cubic-bezier(.22,1,.36,1); }
.button:hover span { transform: translate(3px, -2px); }
.css-arrow, .has-css-arrow::after { display: inline-block; flex: 0 0 auto; width: .92em; height: .92em; background: currentColor; content: ""; vertical-align: -.08em; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M9 5h10v10' fill='none' stroke='black' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19 19 5M9 5h10v10' fill='none' stroke='black' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E") center / contain no-repeat; }
.has-css-arrow { display: inline-flex; align-items: center; gap: .48rem; }
.button-wine { background: var(--wine); color: var(--white); }
.button-wine:hover { background: var(--tomato); }
.button-butter { background: var(--butter); color: var(--wine); }
.button-butter:hover { background: var(--white); }
.button-outline { border-color: currentColor; background: transparent; }
.button-small { min-width: 9rem; padding: .85rem 1rem; }
.text-link {
  display: inline-flex; align-items: center; gap: .6rem; padding-bottom: .28rem;
  border-bottom: 1px solid currentColor; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
}

.announcement {
  position: relative; z-index: 1002; overflow: hidden;
  border-bottom: 1px solid rgba(212,155,36,.45); background: #090909; color: var(--white);
  font-size: .63rem; font-weight: 700; letter-spacing: .15em; text-align: center; text-transform: uppercase;
}
.announcement-track { display: flex; width: max-content; min-width: 100%; justify-content: center; }
.announcement-set { display: flex; flex: 0 0 auto; align-items: center; justify-content: center; gap: 1.2rem; padding: .55rem var(--pad); white-space: nowrap; }
.announcement-set[aria-hidden="true"] { display: none; }
.announcement i { color: var(--gold); font-style: normal; }
.site-header {
  position: relative; z-index: 1000; display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 5.5rem;
  padding-inline: var(--pad); border-bottom: 1px solid rgba(212,155,36,.42);
  background: rgba(23,21,22,.97); color: var(--white); backdrop-filter: blur(14px);
  transition: min-height 220ms ease, box-shadow 220ms ease, background 280ms ease, color 280ms ease, border-color 280ms ease;
}
.site-header.is-scrolled { min-height: 4.7rem; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
[data-site-header].desktop-header-floating { padding-bottom: 5.5rem; }
.site-header.is-floating-desktop { position: fixed; z-index: 2050; top: 1rem; left: 50%; display: flex; width: max-content; max-width: calc(100vw - 2rem); min-height: 3.65rem; gap: 1.5rem; padding: .42rem .48rem .42rem 1.25rem; border: 1px solid rgba(212,155,36,.55); border-radius: 999px; background: rgba(23,21,22,.9); color: var(--white); box-shadow: 0 1rem 3rem rgba(0,0,0,.16); transform: translateX(-50%); backdrop-filter: blur(15px); animation: desktop-menu-in 560ms cubic-bezier(.22,1,.36,1) both; }
.site-header.is-floating-desktop .brand { display: none; }
.site-header.is-floating-desktop .brand-logo-crop { width: 3.35rem; height: 1.75rem; }
.site-header.is-floating-desktop .brand-logo { filter: brightness(0) invert(1); transition: filter 280ms ease, transform 420ms cubic-bezier(.22,1,.36,1); }
.site-header.is-floating-desktop .brand:hover .brand-logo { transform: rotate(-5deg) scale(1.08); }
.site-header.is-floating-desktop .desktop-nav { gap: 1.35rem; }
.site-header.is-floating-desktop .desktop-nav a { font-size: .63rem; }
.site-header.is-floating-desktop .button-small { min-width: 8.3rem; padding: .8rem .9rem; border-radius: 999px; }
.site-header.is-floating-desktop.is-on-dark { border-color: rgba(212,155,36,.72); background: rgba(244,239,229,.92); color: var(--wine); }
.site-header.is-floating-desktop.is-on-dark .brand-logo { filter: brightness(0); }
.site-header.is-floating-desktop.is-on-dark .button-wine { border-color: var(--taupe); background: var(--taupe); color: var(--white); }
.site-header.is-floating-desktop.is-on-dark .button-wine:hover { border-color: #685238; background: #685238; }
.site-header.is-floating-desktop.has-docked-subnav { width: max-content; justify-content: center; border-radius: 999px; box-shadow: 0 .65rem 1.8rem rgba(0,0,0,.12); }
.brand { display: block; width: max-content; line-height: 0; }
.brand-logo-crop { display: block; width: 7rem; height: 3.45rem; overflow: hidden; }
.brand-logo { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.6rem); }
.desktop-nav a {
  position: relative; padding-block: .4rem; font-size: .7rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase; white-space: nowrap;
}
.desktop-nav a::after {
  position: absolute; right: 0; bottom: -.35rem; left: 0; height: 2px;
  background: var(--tomato); content: ""; transform: scaleX(0); transition: transform 180ms ease;
}
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); }
.nav-with-icon { display: inline-flex; align-items: center; gap: .42rem; }
.stair-icon { width: 1.05rem; height: 1.05rem; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: square; stroke-linejoin: miter; }
.header-actions { justify-self: end; }
.site-header .button-wine { border-color: var(--wine); background: var(--wine); color: var(--white); }
.site-header .button-wine:hover { border-color: var(--tomato); background: var(--tomato); }
.menu-toggle { display: none; width: 2.8rem; height: 2.8rem; padding: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 1.7rem; height: 1px; margin: .42rem auto; background: var(--white); transform-origin: center; transition: width 300ms ease, background 220ms ease, transform 420ms cubic-bezier(.22,1,.36,1); }
.menu-toggle[aria-expanded="true"] span:first-child { width: 1.9rem; transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { width: 1.9rem; transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: fixed; z-index: 999; inset: 0; display: none; padding: 9rem var(--pad) 2rem;
  background: #171516; color: var(--white); opacity: 0; clip-path: circle(0 at calc(100% - 2.7rem) 2.7rem); pointer-events: none; visibility: hidden; transition: opacity 260ms ease, clip-path 620ms cubic-bezier(.77,0,.18,1), visibility 0s 620ms;
}
.mobile-menu.is-open { opacity: 1; clip-path: circle(150% at calc(100% - 2.7rem) 2.7rem); pointer-events: auto; visibility: visible; transition: opacity 220ms ease, clip-path 680ms cubic-bezier(.22,1,.36,1), visibility 0s; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { position: relative; display: flex; justify-content: space-between; padding: .75rem 0; border-bottom: 1px solid rgba(212,155,36,.28); font-family: var(--serif); font-size: clamp(2.2rem, 12vw, 4.8rem); letter-spacing: -.06em; line-height: 1; opacity: 0; transform: translateY(1.1rem) skewY(1.8deg); transition: color 180ms ease, padding 240ms cubic-bezier(.22,1,.36,1), background 180ms ease, opacity 320ms ease, transform 520ms cubic-bezier(.22,1,.36,1); }
.mobile-menu.is-open nav a { opacity: 1; transform: translateY(0) skewY(0); transition-delay: calc(180ms + var(--menu-i) * 45ms); }
.mobile-menu nav a.is-active { margin-inline: calc(-1 * var(--pad)); padding-inline: calc(var(--pad) + .8rem) var(--pad); background: linear-gradient(90deg, rgba(212,155,36,.16), rgba(212,155,36,.04) 72%, transparent); color: var(--gold-soft); }
.mobile-menu nav a.is-active::before { position: absolute; top: 18%; bottom: 18%; left: 0; width: 3px; background: var(--tomato); content: ""; transform: scaleY(1); transform-origin: center; }
.mobile-menu .nav-with-icon { gap: .8rem; }
.mobile-menu .stair-icon { width: .8em; height: .8em; stroke-width: 1.4; }
.mobile-menu .nav-index { align-self: center; font-family: var(--sans); font-size: .6rem; font-weight: 800; letter-spacing: .1em; }
.mobile-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: auto; font-size: .72rem; font-weight: 800; }
.mobile-floating-brand { display: none; }

.checker { height: .45rem; background: var(--tomato); }
.home-hero { min-height: calc(100svh - 7.7rem); padding: clamp(2rem, 4vw, 4.5rem) var(--pad); }
.home-hero-inner { display: grid; grid-template-columns: minmax(0, .92fr) minmax(22rem, 1.08fr); align-items: stretch; gap: clamp(2rem, 5vw, 6rem); min-height: calc(100svh - 12rem); }
.home-copy { display: flex; flex-direction: column; justify-content: center; padding-block: 3rem; }
.home-copy > * { opacity: 0; transform: translateY(1.4rem); }
.is-ready .home-copy > * { animation: hero-rise 760ms cubic-bezier(.22,1,.36,1) forwards; }
.is-ready .home-copy > :nth-child(1) { animation-delay: 80ms; }
.is-ready .home-copy > :nth-child(2) { animation-delay: 160ms; }
.is-ready .home-copy > :nth-child(3) { animation-delay: 260ms; }
.is-ready .home-copy > :nth-child(4) { animation-delay: 340ms; }
.home-copy h1 { max-width: 49rem; font-size: clamp(4.2rem, 8.3vw, 8.9rem); }
.home-copy .lead { margin: 2rem 0 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.home-photo { position: relative; min-height: 40rem; overflow: hidden; border-radius: .3rem; background: var(--cream-2); }
.home-photo::before { position: absolute; z-index: 4; inset: 0; background: linear-gradient(180deg, var(--cream-2), #d8cbb9); content: ""; transform-origin: top; }
.is-ready .home-photo.is-visible::before { animation: image-curtain 950ms 120ms cubic-bezier(.77,0,.18,1) forwards; }
.home-photo img { height: 100%; object-fit: cover; object-position: 51% center; transform: scale(1.11); filter: saturate(.88); }
.is-ready .home-photo.is-visible img { animation: image-settle 1.6s 120ms cubic-bezier(.22,1,.36,1) both; }
.photo-label { position: absolute; z-index: 5; right: 1.2rem; bottom: 1.2rem; max-width: 11rem; padding: .85rem 1rem; border-radius: .15rem; background: var(--tomato); color: var(--white); font-family: var(--sans); font-size: .64rem; font-style: normal; font-weight: 800; letter-spacing: .08em; line-height: 1.25; text-align: left; text-transform: uppercase; }
.open-stamp { position: absolute; z-index: 5; top: 1.2rem; left: 1.2rem; display: grid; place-items: center; width: 6.5rem; height: 6.5rem; padding: 1rem; border-radius: 50%; background: var(--tomato); color: var(--white); font-size: .62rem; font-weight: 800; letter-spacing: .11em; line-height: 1.4; text-align: center; text-transform: uppercase; }

.intro-band { position: relative; overflow: hidden; background: linear-gradient(120deg, #111 0%, #242021 100%); color: var(--white); }
.intro-band::after { position: absolute; right: -7rem; bottom: -12rem; width: 30rem; height: 30rem; border: 1px solid rgba(212,155,36,.35); border-radius: 50%; content: ""; }
.intro-grid { display: grid; grid-template-columns: .65fr 1.35fr .7fr; align-items: end; gap: 3rem; }
.intro-grid .display { font-size: clamp(3.5rem, 7vw, 7rem); }
.intro-grid .lead { margin: 0; }
.scribble { align-self: start; color: var(--tomato); font-family: var(--sans); font-size: .7rem; font-style: normal; font-weight: 800; letter-spacing: .14em; line-height: 1; text-transform: uppercase; }

.concepts { background: var(--cream); }
.section-head { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3.5rem; padding-bottom: 1.2rem; }
.section-head::after { position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(212,155,36,.08)); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 900ms 160ms cubic-bezier(.22,1,.36,1); }
.section-head.is-visible::after { transform: scaleX(1); }
.section-head > .text-link { margin-top: 1.15rem; }
.section-head .display { max-width: 55rem; font-size: clamp(3.4rem, 6.5vw, 6.8rem); }
.section-head .lead { margin: 0; }
.concept-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 1.4rem; }
.concept-card { position: relative; min-height: 42rem; overflow: hidden; border-radius: .3rem; color: var(--white); }
.concept-card img { height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 650ms ease; }
.concept-card:nth-child(1) img { object-position: center; }
.concept-card:nth-child(2) img { object-position: center 46%; }
.concept-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 22%, rgba(10,10,10,.94)); content: ""; }
.concept-secondary { border: 1px solid rgba(212,155,36,.45); }
.concept-card:hover img { transform: scale(1.14); }
.concept-copy { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; left: 2rem; }
.concept-copy > span { color: var(--gold-soft); font-family: var(--sans); font-size: .65rem; font-style: normal; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.concept-copy h3 { margin: .3rem 0 1rem; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 800; letter-spacing: -.025em; line-height: .86; }
.concept-copy p { max-width: 28rem; color: rgba(255,250,241,.75); }

.dayhap-feature { position: relative; overflow: hidden; padding-block: clamp(5.5rem, 10vw, 10rem); background: #171516; color: var(--white); border-block: 1px solid rgba(212,155,36,.42); }
.dayhap-feature::after { position: absolute; right: -9rem; bottom: -13rem; width: 31rem; height: 31rem; border: 1px solid rgba(212,155,36,.25); border-radius: 50%; content: ""; }
.dayhap-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2.5rem, 7vw, 8rem); align-items: stretch; }
.dayhap-photo { position: relative; height: clamp(38rem, 48vw, 50rem); min-height: 0; margin: 0; overflow: hidden; border: 1px solid rgba(212,155,36,.45); }
.dayhap-photo img { position: absolute; top: -8%; left: 0; width: 100%; height: 116%; object-fit: cover; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035); transition: transform 180ms linear, filter 600ms ease; will-change: transform; }
.dayhap-photo:hover img { filter: saturate(1.08); }
.dayhap-copy { align-self: center; }
.dayhap-copy .display { font-size: clamp(4rem, 7vw, 7.5rem); }
.dayhap-intro { max-width: 36rem; margin: 1.6rem 0 2rem; color: rgba(255,250,241,.68); }
.dayhap-price { display: inline-grid; place-items: center; width: 7.2rem; height: 7.2rem; margin-bottom: 1.8rem; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-soft); font-family: var(--serif); font-size: 2.7rem; font-weight: 800; line-height: 1; transform: rotate(-5deg); animation: price-float 4.8s ease-in-out infinite; }
.dayhap-list { margin: 0 0 2rem; padding: 0; list-style: none; }
.dayhap-list li { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: .85rem 0; border-top: 1px solid rgba(212,155,36,.42); }
.dayhap-list span { color: var(--gold-soft); font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.dayhap-list strong { font-family: var(--serif); font-size: 1.5rem; line-height: 1; }
.dayhap-note { margin: 1rem 0 0; color: rgba(255,250,241,.5); font-size: .72rem; }

.local-section { background: var(--white); }
.local-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.local-copy { display: grid; gap: 1rem; max-width: 44rem; }
.local-copy p { margin: 0; color: var(--muted); font-size: 1.03rem; }
.local-points { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.5rem; border-block: 1px solid var(--line); }
.local-points div { padding: 1.4rem; border-right: 1px solid var(--line); }
.local-points div:last-child { border-right: 0; }
.local-points strong { display: block; color: var(--tomato); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.local-points span { display: block; margin-top: .5rem; font-family: var(--serif); font-size: 1.4rem; font-weight: 600; line-height: 1.05; }

.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(3rem, 8vw, 9rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; justify-content: space-between; gap: 2rem; padding: 1.35rem 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 650; line-height: 1; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--tomato); content: "+"; font-family: var(--sans); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 43rem; margin: 0 0 1.4rem; color: var(--muted); }

.menu-tease { background: var(--white); }
.menu-tease-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.menu-tease-grid-four { grid-template-columns: repeat(4, 1fr); }
.menu-tease-card { position: relative; display: flex; min-height: 24rem; flex-direction: column; padding: 2rem; border-right: 1px solid var(--line); transition: background 260ms ease, color 260ms ease, transform 260ms cubic-bezier(.22,1,.36,1); }
.menu-tease-card::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 320ms cubic-bezier(.22,1,.36,1); }
.menu-tease-card:last-child { border-right: 0; }
.menu-tease-card:hover { background: var(--olive); color: var(--white); }
.menu-tease-card:hover::before { transform: scaleX(1); }
.wine-tease { background: #211e1f; color: var(--white); }
.wine-tease > span, .wine-tease .text-link { color: var(--gold-soft); }
.wine-tease:hover { background: #090909; }
.menu-tease-card > span { font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.menu-tease-card h3 { margin: auto 0 1rem; font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4.2rem); font-weight: 550; letter-spacing: -.055em; line-height: .95; }
.menu-tease-card p { margin: 0 0 2rem; opacity: .7; }

.party-cta { padding-block: clamp(5rem, 9vw, 9rem); background: linear-gradient(120deg, #121112 0%, #2b2524 100%); color: var(--white); border-block: 1px solid rgba(212,155,36,.45); }
.party-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 4rem; }
.party-grid .display { font-size: clamp(4rem, 7.5vw, 8rem); }
.party-card { padding: 2.2rem; border: 1px solid rgba(255,250,241,.35); border-radius: .25rem; }
.party-card strong { display: block; color: var(--butter); font-family: var(--serif); font-size: 5rem; font-weight: 800; letter-spacing: -.035em; line-height: .8; }
.party-card p { margin-bottom: 2rem; }

.quote-strip { display: grid; grid-template-columns: .72fr 1.28fr; min-height: 38rem; background: var(--olive); color: var(--white); }
.quote-photo { position: relative; min-height: 38rem; margin: 0; overflow: hidden; }
.quote-photo::after { position: absolute; inset: 0; background: var(--olive); content: ""; transform-origin: bottom; transition: transform 1s cubic-bezier(.77,0,.18,1); }
.quote-strip.is-in-view .quote-photo::after { transform: scaleY(0); }
.quote-photo img { position: absolute; top: -8%; left: 0; width: 100%; height: 116%; object-fit: cover; object-position: center 44%; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.07); filter: saturate(.75); transition: transform 180ms linear; will-change: transform; }
.quote-strip blockquote { align-self: center; margin: 0; padding: clamp(3rem, 7vw, 7rem); }
.quote-strip blockquote p { margin: 0; font-family: var(--serif); font-size: clamp(2.5rem, 4.6vw, 5rem); font-style: normal; font-weight: 700; letter-spacing: -.02em; line-height: .95; }
.quote-strip footer { margin-top: 1.5rem; color: var(--butter); font-size: .65rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.quote-strip blockquote.reveal p, .quote-strip blockquote.reveal footer { opacity: 0; transform: translateY(1.4rem); transition: opacity 700ms ease, transform 850ms cubic-bezier(.22,1,.36,1); }
.quote-strip blockquote.reveal.is-visible p, .quote-strip blockquote.reveal.is-visible footer { opacity: 1; transform: translateY(0); }
.quote-strip blockquote.reveal.is-visible footer { transition-delay: 180ms; }

.page-hero { position: relative; min-height: 68svh; overflow: hidden; background: var(--wine); color: var(--white); }
.page-hero img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(.95); transform: scale(1.04); }
.page-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(45,23,26,.94), rgba(45,23,26,.45) 58%, rgba(45,23,26,.12)); content: ""; }
.page-hero-content { position: relative; z-index: 2; display: flex; min-height: 68svh; flex-direction: column; justify-content: end; padding-block: 7rem 4rem; }
.page-hero-content .display { max-width: 62rem; }
.page-hero-content .lead { margin: 1.7rem 0 0; }
.page-hero-badge { position: absolute; z-index: 2; right: var(--pad); bottom: 3rem; display: grid; place-items: center; width: 8rem; height: 8rem; padding: 1rem; border-radius: 50%; background: var(--tomato); color: var(--white); font-family: var(--sans); font-size: .68rem; font-style: normal; font-weight: 800; letter-spacing: .1em; line-height: 1.3; text-align: center; text-transform: uppercase; }
.eetcafe-hero img { object-position: 57% center; }
.steaks-hero img { object-position: 44% 52%; }
.groups-hero img { object-position: center; }

.two-col-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 9rem); align-items: start; }
.two-col-intro .display { font-size: clamp(3.5rem, 6.5vw, 6.8rem); }
.prose { max-width: 39rem; }
.prose p { color: var(--muted); font-size: 1.08rem; }
.prose p:first-child { color: var(--ink); font-family: var(--serif); font-size: 2rem; font-weight: 600; line-height: 1.05; }

.dayparts { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 5rem; border-top: 1px solid var(--line); }
.daypart { min-height: 20rem; padding: 1.7rem; border-right: 1px solid var(--line); }
.daypart:last-child { border-right: 0; }
.daypart span { color: var(--tomato); font-size: .62rem; font-weight: 800; }
.daypart h3 { margin: 5rem 0 1rem; font-family: var(--serif); font-size: 2.7rem; font-weight: 700; letter-spacing: -.02em; }
.daypart p { color: var(--muted); }

.photo-story { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; min-height: 150svh; align-items: start; background: var(--wine); color: var(--white); }
.photo-story figure { position: sticky; top: 0; height: 100svh; margin: 0; overflow: hidden; }
.photo-story img { width: 100%; height: 112%; object-fit: cover; transform: translate3d(0, calc(var(--parallax-y, 0px) - 5%), 0) scale(1.08); filter: saturate(.9); will-change: transform; }
.photo-story-copy { position: sticky; top: 24svh; align-self: start; padding: clamp(3rem, 8vw, 8rem); }
.photo-story-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 6rem); font-weight: 800; letter-spacing: -.025em; line-height: .88; }
.photo-story-copy h2 em { font-style: normal; }
.photo-story-copy h2 em { color: var(--butter); }
.photo-story-copy p { color: rgba(255,250,241,.7); }

.feature-block { background: var(--white); }
.feature-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 5rem; align-items: center; }
.feature-photo { position: relative; min-height: 42rem; overflow: hidden; border-radius: .3rem; }
.feature-photo img { height: 100%; object-fit: cover; object-position: center 48%; transform: scale(1.12); }
.feature-copy .display { font-size: clamp(3.7rem, 6.5vw, 7rem); }
.feature-contact-actions { display: flex; flex-wrap: wrap; gap: .65rem; align-items: center; margin-top: 2.2rem; }
.feature-contact-actions > .button { margin: 0 .2rem 0 0; }
.feature-call-label { color: var(--muted); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.inline-call-button { display: inline-flex; gap: .55rem; align-items: center; min-height: 2.9rem; padding: .7rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.42); transition: border-color 220ms ease, background 220ms ease, transform 220ms cubic-bezier(.22,1,.36,1); }
.inline-call-button small { color: var(--tomato); font-size: .56rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.inline-call-button strong { color: var(--ink); font-family: var(--sans); font-size: .75rem; white-space: nowrap; }
.inline-call-button:hover { border-color: var(--gold); background: var(--white); transform: translateY(-2px); }
.feature-list { margin: 3rem 0; border-top: 1px solid var(--line); }
.feature-list div { display: grid; grid-template-columns: 2rem 1fr; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.feature-list dt { color: var(--tomato); font-size: .65rem; font-weight: 800; }
.feature-list dd { margin: 0; font-family: var(--serif); font-size: 1.55rem; font-weight: 600; }

.menu-page-hero { padding-block: clamp(6rem, 11vw, 11rem); overflow: hidden; background: var(--cream); }
.menu-page-hero .wrap { position: relative; }
.menu-page-hero .display { max-width: 60rem; }
.menu-page-hero .lead { margin-top: 2rem; }
.menu-ornament { display: none; }
.menu-nav { position: sticky; z-index: 1100; top: 0; overflow-x: auto; border-block: 1px solid rgba(212,155,36,.42); background: rgba(19,17,18,.97); color: var(--white); scrollbar-width: none; backdrop-filter: blur(12px); }
.menu-nav::-webkit-scrollbar { display: none; }
.menu-nav-inner { display: flex; width: max-content; min-width: 100%; justify-content: center; }
.menu-nav a { padding: 1rem 1.5rem; border-right: 1px solid rgba(212,155,36,.28); font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.menu-nav a:hover, .menu-nav a.is-active { background: var(--gold); color: var(--wine); }
@media (min-width: 961px) {
  .menu-nav.is-docked-desktop {
    position: sticky; z-index: 2049; top: 5.15rem; width: max-content; max-width: calc(100vw - 2rem); margin-inline: auto;
    border: 1px solid rgba(212,155,36,.55); border-radius: 999px;
    background: rgba(23,21,22,.9); box-shadow: 0 1.25rem 3rem rgba(0,0,0,.17); color: var(--white);
    animation: desktop-subnav-in 220ms ease-out both;
  }
  .menu-nav.is-docked-desktop .menu-nav-inner { width: max-content; min-width: 0; justify-content: center; }
  .menu-nav.is-docked-desktop a { flex: 0 0 auto; padding: .78rem 1.35rem; text-align: center; }
  .menu-nav.is-docked-desktop a:hover { background: rgba(212,155,36,.1); color: var(--gold-soft); }
  .menu-nav.is-docked-desktop a.is-active { background: rgba(212,155,36,.14); box-shadow: inset 0 -2px var(--gold); color: var(--gold-soft); }
  .menu-nav.is-docked-desktop.is-on-dark { border-color: rgba(212,155,36,.72); background: rgba(244,239,229,.92); color: var(--wine); }
  .menu-nav.is-docked-desktop.is-on-dark a:hover { background: rgba(128,104,71,.07); color: var(--taupe); }
  .menu-nav.is-docked-desktop.is-on-dark a.is-active { background: rgba(128,104,71,.1); box-shadow: inset 0 -2px var(--taupe); color: var(--taupe); }
}
.menu-section { padding-block: clamp(5rem, 9vw, 9rem); }
.menu-section:nth-of-type(even) { background: var(--white); }
.menu-section-head { display: grid; grid-template-columns: .5fr 1.5fr .7fr; align-items: end; gap: 2rem; margin-bottom: 4rem; }
.menu-section-head h2 { margin: 0; font-family: var(--serif); font-size: clamp(3.7rem, 7vw, 7.2rem); font-weight: 800; letter-spacing: -.03em; line-height: .84; }
.menu-section-head h2 em { font-style: normal; }
.menu-section-head p:last-child { margin: 0; color: var(--muted); }
.menu-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.menu-card { position: relative; overflow: hidden; padding: clamp(1.7rem, 3vw, 3rem); border: 1px solid var(--line); border-radius: .25rem; background: var(--cream); transition: transform 280ms cubic-bezier(.22,1,.36,1), box-shadow 280ms ease, border-color 280ms ease; }
.menu-card::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 350ms cubic-bezier(.22,1,.36,1); }
.menu-card:hover { border-color: rgba(212,155,36,.62); box-shadow: 0 1.8rem 4rem rgba(26,20,16,.08); transform: translateY(-5px); }
.menu-card:hover::after { transform: scaleX(1); }
.menu-card.wine { background: var(--wine); color: var(--white); }
.menu-card.olive { background: var(--olive); color: var(--white); }
.menu-card h3 { margin: 0 0 1.8rem; font-family: var(--serif); font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 800; letter-spacing: -.025em; line-height: .88; }
.menu-card h3 span { display: block; color: var(--tomato); font-family: var(--sans); font-size: .63rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.menu-card.wine h3 span, .menu-card.olive h3 span { color: var(--butter); }
.dish-list { margin: 0; padding: 0; list-style: none; }
.dish-list li { position: relative; padding: .72rem 0 .72rem 1.3rem; border-top: 1px solid var(--line); }
.wine .dish-list li, .olive .dish-list li { border-color: var(--line-light); }
.dish-list li::before { position: absolute; top: 1.05rem; left: 0; color: var(--tomato); content: "✦"; font-size: .55rem; }
.wine .dish-list li::before, .olive .dish-list li::before { color: var(--butter); }
.menu-note { margin-top: 2.5rem; padding: 1.2rem 1.4rem; border-left: 3px solid var(--tomato); background: var(--cream-2); color: var(--muted); }
.tapas-card { max-width: 60rem; margin-inline: auto; }
.tapas-card .dish-list { columns: 2; column-gap: 3rem; }
.tapas-card .dish-list li { break-inside: avoid; }

.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 4rem; }
.occasion { min-height: 21rem; padding: 2rem; border: 1px solid var(--line); border-radius: .25rem; background: var(--white); transition: transform 280ms cubic-bezier(.22,1,.36,1), border-color 280ms ease, box-shadow 280ms ease; }
.occasion:hover { border-color: rgba(212,155,36,.55); box-shadow: 0 1.5rem 4rem rgba(26,20,16,.08); transform: translateY(-5px); }
.occasion > span { color: var(--tomato); font-size: .62rem; font-weight: 800; }
.occasion h3 { margin: 5rem 0 1rem; font-family: var(--serif); font-size: 2.7rem; font-weight: 700; letter-spacing: -.02em; line-height: .9; }
.occasion p { color: var(--muted); }
.capacity { background: var(--olive); color: var(--white); }
.capacity-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 5rem; align-items: center; }
.capacity-numbers { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line-light); border-radius: .25rem; }
.capacity-numbers div { padding: 2rem; border-right: 1px solid var(--line-light); }
.capacity-numbers div:last-child { border-right: 0; }
.capacity-numbers strong { display: block; color: var(--butter); font-family: var(--serif); font-size: 5rem; font-weight: 800; letter-spacing: -.035em; line-height: .9; }

.contact-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 72svh; }
.contact-photo { position: relative; overflow: hidden; isolation: isolate; clip-path: inset(0 100% 0 0); opacity: .72; transition: clip-path 1.05s cubic-bezier(.77,0,.18,1) 90ms, opacity 520ms ease 90ms; }
.contact-photo::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(105deg, transparent 35%, rgba(255,241,201,.2) 49%, transparent 63%); transform: translateX(-115%); }
.contact-photo img { position: absolute; top: -7%; left: 0; width: 100%; height: 114%; object-fit: cover; object-position: 60% center; filter: saturate(.76) brightness(.88); transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.075); transition: filter 1.1s ease, transform 150ms linear; will-change: transform; }
body.is-page-ready .contact-photo { clip-path: inset(0 0 0 0); opacity: 1; }
body.is-page-ready .contact-photo::after { animation: contact-photo-sheen 1.15s cubic-bezier(.22,1,.36,1) 580ms both; }
body.is-page-ready .contact-photo img { filter: saturate(1) brightness(1); }
.contact-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 8rem); background: var(--wine); color: var(--white); }
.contact-copy .display { font-size: clamp(3.8rem, 7vw, 7.2rem); }
.contact-links { display: grid; gap: .8rem; margin-top: 2rem; }
.contact-links a { width: max-content; border-bottom: 1px solid rgba(255,250,241,.4); font-family: var(--sans); font-size: 1rem; font-weight: 700; }
.contact-details { display: grid; grid-template-columns: .8fr 1fr 1fr; gap: 3rem; }
.contact-details h3 { margin: 0 0 1.5rem; color: var(--tomato); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-details address { font-family: var(--serif); font-size: 1.9rem; font-style: normal; font-weight: 600; line-height: 1.05; }
.hours { margin: 0; }
.hours div { display: flex; justify-content: space-between; gap: 2rem; padding: .45rem 0; border-bottom: 1px solid var(--line); }
.hours dt, .hours dd { margin: 0; font-size: .82rem; }
.hours dd { color: var(--muted); }
.history { background: var(--white); }

.site-footer { padding: 4.5rem var(--pad) 2rem; background: var(--wine-dark); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.25fr .7fr .7fr .7fr; gap: 3rem; align-items: start; }
.footer-brand { display: block; width: min(100%, 10rem); line-height: 0; }
.footer-logo-crop { display: block; width: 10rem; height: 5rem; overflow: hidden; }
.footer-brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.footer-column h3 { margin: 0 0 1.2rem; color: var(--butter); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-column a, .footer-column span { display: block; margin-bottom: .5rem; color: rgba(255,250,241,.72); font-size: .82rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); color: rgba(255,250,241,.5); font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.reservation-dialog { width: min(100% - 2rem, 51rem); max-height: calc(100svh - 2rem); padding: clamp(2rem, 5vw, 4.5rem); border: 0; border-radius: 1rem; background: var(--cream); color: var(--ink); opacity: 0; transform: translateY(2rem); transition: opacity 180ms ease, transform 180ms ease, overlay 180ms allow-discrete, display 180ms allow-discrete; }
.reservation-dialog[open] { opacity: 1; transform: translateY(0); }
@starting-style { .reservation-dialog[open] { opacity: 0; transform: translateY(2rem); } }
.reservation-dialog::backdrop { background: rgba(45,23,26,.78); backdrop-filter: blur(7px); }
.dialog-close { position: absolute; top: 1rem; right: 1rem; display: grid; place-items: center; width: 2.8rem; height: 2.8rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.4rem; cursor: pointer; }
.dialog-intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800; letter-spacing: -.03em; line-height: .85; }
.dialog-intro > p:last-child { max-width: 34rem; color: var(--muted); }
.reservation-form { display: grid; gap: 1rem; margin-top: 2rem; }
.reservation-form label { display: grid; gap: .35rem; }
.reservation-form label > span { font-size: .6rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.reservation-form input, .reservation-form select, .reservation-form textarea { width: 100%; padding: .78rem 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; outline: none; }
.reservation-form input:focus, .reservation-form select:focus, .reservation-form textarea:focus { border-color: var(--tomato); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note, .form-status { margin: 0; color: var(--muted); font-size: .63rem; }
.form-status { min-height: 1em; color: var(--tomato); font-weight: 800; }
.form-status[data-state="loading"] { color: var(--taupe); }
.form-status[data-state="success"] { color: #426648; }
.booking-search-row { align-items: end; }
.booking-check { justify-self: start; min-width: 15.5rem; }
.button.is-loading { opacity: .65; cursor: progress; }
.reservation-times, .booking-details { display: grid; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.reservation-times[hidden], .booking-details[hidden], .booking-confirmation[hidden], .reservation-form[hidden] { display: none; }
.reservation-step-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.reservation-step-heading > span { color: var(--tomato); font-size: .6rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.reservation-step-heading strong { color: var(--muted); font-size: .72rem; }
.time-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .55rem; }
.time-slot { min-height: 2.75rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.45); color: var(--ink); font: 800 .75rem/1 var(--sans); cursor: pointer; transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease; }
.time-slot:hover { border-color: var(--gold); transform: translateY(-2px); }
.time-slot.is-selected { border-color: var(--wine); background: var(--wine); color: var(--white); }
.no-times { grid-column: 1 / -1; margin: 0; padding: 1rem; background: var(--cream-2); color: var(--muted); font-size: .76rem; }
.booking-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.booking-submit { justify-self: start; margin-top: .4rem; }
.form-note a { border-bottom: 1px solid currentColor; color: var(--tomato); font-weight: 800; }
.booking-confirmation { padding-block: 1.5rem .5rem; text-align: center; }
.booking-confirmation-mark { display: grid; width: 4.8rem; height: 4.8rem; margin: 0 auto 1.6rem; place-items: center; border: 1px solid var(--gold); border-radius: 50%; background: var(--wine); color: var(--white); font-size: 1.8rem; }
.booking-confirmation h3 { margin: 0; font-family: var(--serif); font-size: clamp(3.4rem, 8vw, 6rem); font-weight: 800; letter-spacing: -.04em; line-height: .85; }
.booking-confirmation > p:not(.eyebrow) { color: var(--muted); }
.booking-code { font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.booking-confirmation .text-link { margin-top: 1.2rem; cursor: pointer; }
.dialog-call { display: flex; justify-content: space-between; gap: 2rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(2.2rem); transition: opacity 760ms ease, transform 760ms cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.feature-photo.reveal { clip-path: inset(0 0 100% 0); transition: opacity 760ms ease, transform 760ms cubic-bezier(.22,1,.36,1), clip-path 1.05s cubic-bezier(.77,0,.18,1); }
.feature-photo.reveal.is-visible { clip-path: inset(0 0 0 0); }

@keyframes hero-rise { to { opacity: 1; transform: translateY(0); } }
@keyframes image-curtain { to { transform: scaleY(0); } }
@keyframes image-settle { from { transform: scale(1.22); filter: saturate(.7); } to { transform: scale(1.11); filter: saturate(.9); } }
@keyframes price-float { 0%, 100% { transform: translateY(0) rotate(-5deg); } 50% { transform: translateY(-7px) rotate(-2deg); } }

.exclusive-notice { background: var(--tomato); color: var(--white); }
.exclusive-notice .wrap { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; padding-block: 1rem; }
.exclusive-notice strong, .exclusive-notice a { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.exclusive-notice span { font-size: .82rem; }
.service-section { background: var(--cream); }
.wine-atmosphere { position: relative; overflow: hidden; background: radial-gradient(circle at 85% 45%, rgba(212,155,36,.16), transparent 25%), linear-gradient(120deg, #0d0d0d, #292324); color: var(--white); border-block: 1px solid rgba(212,155,36,.35); }
.arrangement-hero { background: radial-gradient(circle at 80% 40%, rgba(212,155,36,.2), transparent 28%), #171516; }
.menu-section.maatwerk-section { background: #171516; color: var(--white); }
.maatwerk-section .menu-section-head p:last-child { color: rgba(255,255,255,.65); }
.occasion.dark { border-color: rgba(212,155,36,.3); background: #211e1f; color: var(--white); }
.occasion.dark p { color: rgba(255,255,255,.65); }
.dark-note { border-color: var(--gold); background: #211e1f; color: rgba(255,255,255,.7); }
.menu-card.dark-gold { border-color: rgba(212,155,36,.5); background: #211e1f; color: var(--white); }
.dark-gold .dish-list li { border-color: rgba(255,255,255,.16); }
.dark-gold .dish-list li::before, .dark-gold h3 span { color: var(--gold-soft); }

.catalog-hero { padding-block: clamp(7rem, 12vw, 12rem); background: radial-gradient(circle at 78% 40%, rgba(212,155,36,.2), transparent 22%), linear-gradient(120deg, #0c0c0c, #282223); color: var(--white); border-bottom: 1px solid rgba(212,155,36,.4); }
.catalog-hero .display { max-width: 64rem; }
.catalog-hero .lead { margin-top: 2rem; }
.catalog-section { padding-block: clamp(5rem, 9vw, 9rem); background: var(--cream); }
.catalog-section-alt { background: var(--white); }
.catalog-heading { display: grid; grid-template-columns: .55fr 1.3fr .8fr; align-items: end; gap: 2rem; margin-bottom: 3.5rem; }
.catalog-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(4.5rem, 8vw, 8rem); font-weight: 800; letter-spacing: -.035em; line-height: .8; }
.catalog-heading > p:last-child { margin: 0; color: var(--muted); }
.menu-board-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-items: start; }
.menu-board { padding: clamp(1.5rem, 3vw, 2.6rem); border: 1px solid var(--line); background: rgba(255,255,255,.42); }
.menu-board h3 { margin: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(2.25rem, 4vw, 3.8rem); font-weight: 800; letter-spacing: -.02em; line-height: .85; text-transform: uppercase; }
.board-note { margin: .5rem 0 1.5rem; color: var(--muted); font-size: .75rem; font-style: italic; }
.price-list { display: grid; }
.priced-item { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 1.2rem; padding: .85rem 0; border-top: 1px solid var(--line); }
.priced-item > div { display: grid; gap: .12rem; }
.priced-item strong { font-size: .92rem; }
.priced-item span { color: var(--muted); font-size: .76rem; }
.priced-item b { align-self: start; color: var(--tomato); font-size: .78rem; white-space: nowrap; }
.board-foot { margin: 1.3rem 0 0; color: var(--muted); font-size: .72rem; font-style: italic; }
.wide-board { grid-column: 1 / -1; }
.dark-board { border-color: rgba(212,155,36,.42); background: #211e1f; color: var(--white); }
.dark-board h3 { color: var(--gold-soft); }
.dark-board .priced-item { border-color: rgba(255,255,255,.14); }
.dark-board .priced-item span, .dark-board .board-foot { color: rgba(255,255,255,.62); }
.dark-board .priced-item b { color: var(--gold-soft); }
.compact .priced-item { padding: .55rem 0; }
.compact .priced-item strong { font-weight: 500; }
.three-col-list { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
.allergy-note, .menu-disclaimer { margin: 2rem 0 0; padding: 1rem 1.2rem; border-left: 3px solid var(--gold); background: var(--cream-2); color: var(--muted); font-size: .76rem; }

.wine-section { padding-block: clamp(6rem, 10vw, 10rem); background: #171516; color: var(--white); }
.wine-heading h2 { color: var(--white); }
.wine-heading > p:last-child { color: rgba(255,255,255,.62); }
.wine-layout { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(212,155,36,.45); }
.wine-panel { padding: clamp(1.7rem, 4vw, 4rem); }
.wine-panel h3 { margin: 0 0 2rem; color: var(--gold); font-family: var(--serif); font-size: clamp(2.7rem, 4vw, 4.5rem); font-weight: 800; line-height: .82; text-transform: uppercase; }
.light-panel { background: var(--white); color: var(--ink); }
.dark-panel { position: relative; overflow: hidden; background: radial-gradient(circle at 70% 82%, rgba(212,155,36,.22), transparent 28%), #211e1f; }
.dark-panel::after { position: absolute; right: -5rem; bottom: -16rem; width: 22rem; height: 30rem; border: 1px solid rgba(212,155,36,.2); border-radius: 50% 50% 10% 10%; content: ""; }
.wine-price-head, .wine-item { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) 4.2rem 4.8rem; gap: 1rem; }
.wine-price-head { padding-bottom: .5rem; color: var(--muted); font-size: .62rem; text-align: right; text-transform: uppercase; }
.wine-item { padding: 1.2rem 0; border-top: 1px solid rgba(212,155,36,.55); }
.wine-item > div { display: grid; gap: .2rem; }
.wine-item strong { text-transform: uppercase; }
.wine-item span { color: var(--muted); font-size: .7rem; font-style: italic; }
.wine-item small { color: var(--muted); font-size: .67rem; }
.wine-item > b { color: var(--tomato); font-size: .72rem; font-weight: 600; text-align: right; }
.dark-panel .wine-price-head, .dark-panel .wine-item span, .dark-panel .wine-item small { color: rgba(255,255,255,.55); }
.dark-panel .wine-item > b { color: var(--gold-soft); }
.wine-subhead { margin-top: 3.5rem !important; }
.wine-item.two-price { grid-template-columns: minmax(0,1fr) 4.2rem; }
.wine-item.bottle-only { grid-template-columns: minmax(0,1fr) 4.8rem; }
.wine-section .menu-disclaimer { border-color: var(--gold); background: #211e1f; color: rgba(255,255,255,.62); }

/* Sfeerimpressie — een doorlopend fotoverhaal, geen standaard tegelgalerij. */
.atmosphere-page { background: #111; }
.atmosphere-hero { position: relative; min-height: calc(100svh - 2rem); overflow: hidden; background: #111; color: var(--white); }
.atmosphere-hero-image, .atmosphere-hero-shade { position: absolute; inset: 0; margin: 0; }
.atmosphere-hero-image { top: -5%; bottom: -5%; }
.atmosphere-hero-image img { width: 100%; height: 110%; object-fit: cover; object-position: center 42%; transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04); will-change: transform; }
.atmosphere-hero-shade { background: linear-gradient(90deg, rgba(8,8,8,.83) 0%, rgba(8,8,8,.26) 60%, rgba(8,8,8,.45) 100%), linear-gradient(0deg, rgba(8,8,8,.78), transparent 48%); }
.atmosphere-hero-copy { position: relative; z-index: 2; display: flex; min-height: calc(100svh - 2rem); flex-direction: column; justify-content: end; padding-block: clamp(8rem, 15vw, 13rem) clamp(3rem, 6vw, 6rem); }
.atmosphere-hero-copy h1 { max-width: 68rem; margin: 0; font-family: var(--serif); font-size: clamp(6rem, 13.5vw, 14rem); font-weight: 800; letter-spacing: -.055em; line-height: .66; }
.atmosphere-hero-copy h1 em { color: var(--gold-soft); font-style: normal; }
.atmosphere-hero-foot { display: grid; grid-template-columns: auto 2rem minmax(15rem, 30rem); align-items: center; gap: 1.2rem; margin-top: clamp(3rem, 6vw, 5.5rem); padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.38); }
.atmosphere-hero-foot > span { font-size: .67rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.atmosphere-hero-foot i { color: var(--gold-soft); font-size: 1.4rem; font-style: normal; animation: atmosphere-arrow 1.8s ease-in-out infinite; }
.atmosphere-hero-foot p { justify-self: end; margin: 0; color: rgba(255,255,255,.72); font-size: .88rem; }
.atmosphere-ticker { overflow: hidden; border-block: 1px solid rgba(212,155,36,.5); background: var(--tomato); color: var(--white); }
.atmosphere-ticker-track { display: flex; width: max-content; align-items: center; animation: atmosphere-ticker 30s linear infinite; }
.atmosphere-ticker-set { display: flex; flex: 0 0 auto; align-items: center; gap: 1.7rem; padding: .95rem 1.7rem .95rem 0; }
.atmosphere-ticker span { font-family: var(--serif); font-size: 1.35rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.atmosphere-ticker i { color: var(--gold-soft); font-style: normal; }
.gallery-chapter { position: relative; overflow: hidden; padding-block: clamp(6rem, 11vw, 11rem); }
.gallery-chapter-light { background: var(--cream); color: var(--ink); }
.gallery-chapter-dark { background: #141313; color: var(--white); }
.gallery-chapter-olive { background: var(--olive); color: var(--white); }
.gallery-chapter-night { background: radial-gradient(circle at 82% 12%, rgba(212,155,36,.13), transparent 26%), #090909; color: var(--white); }
.gallery-chapter-head { display: grid; grid-template-columns: .38fr 1.15fr .62fr; align-items: end; gap: clamp(2rem, 5vw, 5rem); margin-bottom: clamp(4rem, 8vw, 8rem); }
.gallery-chapter-head h2 { margin: 0; font-family: var(--serif); font-size: clamp(4.8rem, 9vw, 9.5rem); font-weight: 800; letter-spacing: -.045em; line-height: .74; }
.gallery-chapter-head h2 em { color: var(--tomato); font-style: normal; }
.gallery-chapter-dark .gallery-chapter-head h2 em, .gallery-chapter-olive .gallery-chapter-head h2 em, .gallery-chapter-night .gallery-chapter-head h2 em { color: var(--gold-soft); }
.gallery-chapter-head > p:last-child { margin: 0; color: var(--muted); font-size: 1rem; }
.gallery-chapter-dark .gallery-chapter-head > p:last-child, .gallery-chapter-olive .gallery-chapter-head > p:last-child, .gallery-chapter-night .gallery-chapter-head > p:last-child { color: rgba(255,255,255,.62); }
.gallery-mosaic { display: block; columns: 2; column-gap: clamp(.8rem, 1.6vw, 1.5rem); }
.gallery-shot { --gallery-rotate: 0deg; position: relative; display: block; width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 3; margin: 0 0 clamp(.8rem, 1.6vw, 1.5rem); overflow: hidden; break-inside: avoid; border: 1px solid rgba(212,155,36,.38); background: #1c1a1a; cursor: zoom-in; transform: rotate(var(--gallery-rotate)); }
.gallery-shot:nth-child(4n+2) { --gallery-rotate: -.45deg; }
.gallery-shot:nth-child(4n+3) { --gallery-rotate: .4deg; }
.gallery-shot.gallery-wide { aspect-ratio: 16 / 10; }
.gallery-shot.gallery-portrait, .gallery-shot.gallery-tall { aspect-ratio: 4 / 5; }
.gallery-shot.gallery-square { aspect-ratio: 1 / 1; }
.gallery-shot img { width: 100%; height: calc(100% + 4rem); object-fit: cover; transform: translate3d(0, calc(var(--parallax-y, 0px) - 2rem), 0) scale(1.035); filter: saturate(.9); transition: filter 550ms ease, scale 750ms cubic-bezier(.22,1,.36,1); will-change: transform; }
.gallery-shot:hover img { filter: saturate(1.08); scale: 1.035; }
.gallery-shot figcaption { position: absolute; right: .8rem; bottom: .8rem; left: .8rem; padding: .8rem .9rem; background: rgba(12,12,12,.75); color: var(--white); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: 0; transform: translateY(.6rem); transition: opacity 220ms ease, transform 300ms cubic-bezier(.22,1,.36,1); backdrop-filter: blur(9px); }
.gallery-shot:hover figcaption, .gallery-shot:focus-visible figcaption { opacity: 1; transform: translateY(0); }
.gallery-shot.reveal { clip-path: inset(0 0 100% 0); opacity: .55; transform: translateY(4rem) rotate(var(--gallery-rotate)); transition: opacity 850ms ease, transform 1s cubic-bezier(.22,1,.36,1), clip-path 1.05s cubic-bezier(.77,0,.18,1); }
.gallery-shot.reveal.is-visible { clip-path: inset(0 0 0 0); opacity: 1; transform: translateY(0) rotate(var(--gallery-rotate)); }
.gallery-mosaic-kitchen { columns: 2; }
.gallery-pullquote { margin-top: clamp(5rem, 11vw, 11rem); color: var(--gold-soft); font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 7.5rem); font-weight: 800; letter-spacing: -.04em; line-height: .82; }
.night-panorama { position: relative; width: min(calc(100% - (2 * var(--pad))), 1780px); height: clamp(31rem, 70vw, 58rem); margin: 0 auto clamp(5rem, 8vw, 8rem); overflow: hidden; border-block: 1px solid var(--gold); cursor: zoom-in; }
.night-panorama img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.22,1,.36,1); }
.night-panorama:hover img { transform: scale(1.035); }
.night-panorama span { position: absolute; right: 1rem; bottom: 1rem; padding: .9rem 1.1rem; background: var(--gold); color: var(--wine); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.atmosphere-cta { padding-block: clamp(7rem, 12vw, 13rem); background: var(--tomato); color: var(--white); }
.atmosphere-cta .wrap { display: grid; grid-template-columns: .35fr 1.2fr .6fr; align-items: end; gap: 3rem; }
.atmosphere-cta h2 { margin: 0; font-family: var(--serif); font-size: clamp(5rem, 10vw, 10rem); font-weight: 800; letter-spacing: -.04em; line-height: .7; }
.atmosphere-cta h2 em { color: var(--gold-soft); font-style: normal; }
.atmosphere-cta .wrap > div p { margin: 0 0 2rem; }
.gallery-lightbox { position: fixed; inset: 0; box-sizing: border-box; width: 100vw; max-width: none; height: 100svh; max-height: none; margin: 0; padding: clamp(.75rem, 2vw, 1.5rem); border: 0; background: #0a0a0a; color: var(--white); overflow: hidden; }
.gallery-lightbox::backdrop { background: rgba(0,0,0,.88); backdrop-filter: blur(16px); }
.gallery-lightbox figure { display: grid; width: 100%; height: 100%; margin: 0; place-items: center; }
.gallery-lightbox img { display: block; width: auto; max-width: 100%; height: auto; max-height: 100%; object-fit: contain; }
.gallery-lightbox figcaption { position: absolute; right: 1rem; bottom: 1rem; padding: .7rem .9rem; background: rgba(0,0,0,.72); font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.gallery-lightbox-close { position: absolute; z-index: 2; top: 1rem; right: 1rem; display: grid; width: 3rem; height: 3rem; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(0,0,0,.68); color: var(--white); font-size: 2rem; line-height: 1; cursor: pointer; backdrop-filter: blur(10px); }

/* Kinetische titels: dezelfde krachtige beweging op iedere grote kop. */
.kinetic-title .title-line { display: inline-block; overflow: hidden; padding: .06em .04em .09em 0; margin: -.06em 0 -.09em; vertical-align: bottom; }
.kinetic-title .title-line > span { display: inline-block; opacity: 0; filter: blur(7px); transform: translateY(118%) rotate(2.5deg); transform-origin: left bottom; transition: opacity 480ms ease, filter 680ms ease, transform 840ms cubic-bezier(.22,1,.36,1); transition-delay: calc(var(--title-line, 0) * 90ms); }
.kinetic-title.is-title-visible .title-line > span { opacity: 1; filter: blur(0); transform: translateY(0) rotate(0); }

@keyframes atmosphere-arrow { 0%, 100% { transform: translateY(-.25rem); } 50% { transform: translateY(.35rem); } }
@keyframes atmosphere-ticker { to { transform: translate3d(-50%, 0, 0); } }

@media (max-width: 1050px) {
  .desktop-nav { gap: 1rem; }
  .desktop-nav a { font-size: .63rem; }
  .intro-grid, .menu-section-head { grid-template-columns: .45fr 1.55fr; }
  .intro-grid .lead, .menu-section-head p:last-child { grid-column: 2; }
  .dayparts { grid-template-columns: 1fr 1fr; }
  .daypart { border-bottom: 1px solid var(--line); }
  .daypart:nth-child(2) { border-right: 0; }
  .menu-tease-grid-four { grid-template-columns: 1fr 1fr; }
  .catalog-heading { grid-template-columns: .45fr 1.55fr; }
  .catalog-heading > p:last-child { grid-column: 2; }
  .gallery-chapter-head { grid-template-columns: .32fr 1.35fr; }
  .gallery-chapter-head > p:last-child { grid-column: 2; }
  .atmosphere-cta .wrap { grid-template-columns: .32fr 1.35fr; }
  .atmosphere-cta .wrap > div { grid-column: 2; }
}

@media (max-width: 960px) {
  :root {
    --pad: 1.2rem;
    --mobile-copy-gap: clamp(1.4rem, 5.5vw, 1.85rem);
  }
  .announcement-track { justify-content: flex-start; animation: announcement-marquee 19s linear infinite; }
  .announcement-set { padding-inline: 1.2rem; }
  .announcement-set[aria-hidden="true"] { display: flex; }
  .site-header { grid-template-columns: 1fr auto; min-height: 4.8rem; backdrop-filter: none; }
  .desktop-nav, .header-actions { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle.is-floating { position: fixed; z-index: 2100; top: 1rem; right: 1rem; width: 3.35rem; height: 3.35rem; border: 1px solid rgba(23,21,22,.22); border-radius: 50%; background: rgba(244,239,229,.88); box-shadow: 0 .7rem 2rem rgba(0,0,0,.14); backdrop-filter: blur(12px); transition: top 360ms cubic-bezier(.22,1,.36,1), background 220ms ease, border-color 220ms ease; animation: floating-menu-in 480ms cubic-bezier(.22,1,.36,1) both; }
  .menu-toggle.is-floating.is-below-subnav { top: 4.45rem; }
  .menu-toggle.is-floating::before { position: absolute; inset: -.28rem; border: 1px solid rgba(212,155,36,.75); border-radius: 50%; content: ""; animation: floating-ring-in 650ms cubic-bezier(.22,1,.36,1) both; }
  .menu-toggle.is-floating span { position: relative; background: var(--wine); }
  .menu-toggle.is-floating.is-on-dark { border-color: rgba(255,255,255,.18); background: rgba(23,21,22,.82); }
  .menu-toggle.is-floating.is-on-dark span { background: var(--white); }
  body.menu-open .menu-toggle.is-floating { border-color: rgba(23,21,22,.22); background: rgba(244,239,229,.96); transform: rotate(180deg); }
  body.menu-open .menu-toggle.is-floating span { background: var(--wine); }
  .brand-logo-crop { width: 5.6rem; height: 2.8rem; }
  .brand-logo { width: 100%; height: 100%; }
  .mobile-floating-brand { position: fixed; z-index: 2250; top: 1rem; left: 50%; display: grid; width: 6.3rem; height: 3.55rem; padding: .48rem .68rem; place-items: center; border: 1px solid rgba(212,155,36,.68); border-radius: 999px; background: rgba(23,21,22,.94); box-shadow: 0 .7rem 2rem rgba(0,0,0,.2); opacity: 0; pointer-events: none; transform: translate(-50%, -1rem) scale(.88); transition: top 360ms cubic-bezier(.22,1,.36,1), opacity 240ms ease, transform 480ms cubic-bezier(.22,1,.36,1); backdrop-filter: blur(12px); }
  .mobile-floating-brand img { width: 100%; height: 100%; object-fit: contain; filter: none; }
  .mobile-floating-brand.is-visible { opacity: 1; pointer-events: auto; transform: translate(-50%, 0) scale(1); }
  .mobile-floating-brand.is-below-subnav { top: 4.45rem; }
  .mobile-floating-brand.is-on-dark { border-color: rgba(212,155,36,.68); background: rgba(23,21,22,.94); }
  body.menu-open .mobile-floating-brand { opacity: 0; pointer-events: none; transform: translate(-50%, -.75rem) scale(.9); }
  .mobile-menu { display: flex; flex-direction: column; }
  .mobile-menu { overflow-y: auto; }
  body.menu-open .mobile-menu { z-index: 2150; }
  body.menu-open .announcement { position: fixed; z-index: 2200; top: 0; right: 0; left: 0; }
  body.menu-open .site-header { position: fixed; z-index: 2200; top: 1.85rem; right: 0; left: 0; min-height: 4.9rem; background: #171516; }
  body.menu-open .menu-toggle { z-index: 2300; }
  body.menu-open .menu-toggle.is-floating { top: 2.6rem; }
  .home-hero { padding-top: 1.5rem; }
  .home-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .home-copy { padding-block: 2rem; }
  .home-photo { min-height: 35rem; border-radius: .3rem; }
  .intro-grid, .section-head, .party-grid, .two-col-intro, .feature-grid, .capacity-grid, .dayhap-grid, .local-grid, .faq-grid { display: block; }
  .display + .lead { margin-top: var(--mobile-copy-gap); }
  .intro-grid > .display + div,
  .section-head > .lead,
  .section-head > div + div,
  .two-col-intro > .prose,
  .local-grid > .local-copy { margin-top: var(--mobile-copy-gap); }
  .section-head > div + div .lead { margin-top: 0; }
  .section-head > div + div .button { margin-top: .55rem; }
  .scribble { margin-top: 2rem; }
  .party-card, .feature-copy, .capacity-numbers { margin-top: 2.5rem; }
  .concept-grid, .menu-columns { grid-template-columns: 1fr; }
  .concept-card { min-height: 35rem; }
  .menu-tease-grid { grid-template-columns: 1fr; }
  .menu-tease-card { min-height: 18rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .quote-strip, .photo-story, .contact-hero { grid-template-columns: 1fr; }
  .quote-photo { height: clamp(28rem, 112vw, 38rem); min-height: 0; }
  .testimonial-photo { min-height: 32rem; }
  .page-hero-badge { display: none; }
  .photo-story { min-height: 0; }
  .photo-story figure { position: relative; top: auto; height: 34rem; min-height: 34rem; }
  .photo-story-copy { position: relative; top: auto; }
  .feature-photo { min-height: 36rem; }
  .menu-nav-inner { justify-content: flex-start; }
  .menu-nav-inner::before, .menu-nav-inner::after { content: ""; flex: 0 0 var(--menu-nav-start-space, 0px); }
  .menu-nav-inner::after { flex-basis: var(--menu-nav-end-space, 0px); }
  .occasion-grid { grid-template-columns: 1fr; }
  .occasion { min-height: 17rem; }
  .contact-photo { min-height: 34rem; }
  .contact-details, .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .exclusive-notice .wrap { grid-template-columns: 1fr auto; }
  .exclusive-notice span { grid-column: 1 / -1; grid-row: 2; }
  .menu-board-grid, .wine-layout { grid-template-columns: 1fr; }
  .wide-board { grid-column: auto; }
  .dayhap-photo { height: 31rem; min-height: 0; margin-bottom: 3rem; }
  .local-points { grid-template-columns: 1fr; }
  .local-points div { border-right: 0; border-bottom: 1px solid var(--line); }
  .local-points div:last-child { border-bottom: 0; }
  .faq-list { margin-top: 2.5rem; }
  .atmosphere-hero-copy { min-height: 92svh; }
  .atmosphere-hero-copy h1 { font-size: clamp(5.5rem, 24vw, 9rem); }
  .atmosphere-hero-foot { grid-template-columns: auto 2rem; }
  .atmosphere-hero-foot p { grid-column: 1 / -1; justify-self: start; }
  .gallery-chapter-head, .atmosphere-cta .wrap { display: block; }
  .gallery-chapter-head h2, .atmosphere-cta h2 { margin-block: 1.5rem 2rem; }
  .gallery-mosaic, .gallery-mosaic-kitchen { columns: 2; column-gap: .75rem; }
  .gallery-shot { margin-bottom: .75rem; }
  .gallery-shot figcaption { opacity: 1; transform: none; }
  .night-panorama { height: 62svh; }
  .atmosphere-cta .wrap > div { margin-top: 2.5rem; }
}

@media (max-width: 560px) {
  .display, .home-copy h1, .page-hero-content .display, .contact-copy .display { font-size: clamp(3.5rem, 16vw, 5.3rem); }
  .home-photo { min-height: 30rem; }
  .dayhap-photo { height: 25rem; min-height: 0; }
  .dayhap-list li { grid-template-columns: 6rem 1fr; }
  .open-stamp { width: 5.8rem; height: 5.8rem; }
  .concept-card { min-height: 30rem; }
  .concept-copy { right: 1.2rem; bottom: 1.2rem; left: 1.2rem; }
  .concept-copy h3 { font-size: 3.1rem; }
  .dayparts { grid-template-columns: 1fr; }
  .daypart, .daypart:nth-child(2) { border-right: 0; }
  .daypart { min-height: 16rem; }
  .daypart h3 { margin-top: 3rem; }
  .page-hero, .page-hero-content { min-height: 72svh; }
  .page-hero::after { background: linear-gradient(0deg, rgba(45,23,26,.94), rgba(45,23,26,.2)); }
  .page-hero-content { justify-content: end; padding-bottom: 3rem; }
  .feature-photo { min-height: 30rem; }
  .menu-section-head { display: block; }
  .menu-section-head p:last-child { margin-top: 1.4rem; }
  .tapas-card .dish-list { columns: 1; }
  .capacity-numbers { grid-template-columns: 1fr; }
  .capacity-numbers div { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .capacity-numbers div:last-child { border-bottom: 0; }
  .contact-details, .footer-top { grid-template-columns: 1fr; }
  .contact-copy { padding: 4rem 1.2rem; }
  .footer-bottom, .dialog-call { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .reservation-dialog { width: 100%; max-width: none; max-height: calc(100svh - .5rem); margin: auto 0 0; border-radius: 1rem 1rem 0 0; padding: 3.8rem 1.2rem 1.5rem; }
  .time-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .reservation-step-heading { display: grid; gap: .25rem; }
  .menu-tease-grid-four { grid-template-columns: 1fr; }
  .catalog-heading { display: block; }
  .catalog-heading > p:last-child { margin-top: 1.2rem; }
  .menu-board { padding: 1.35rem; }
  .three-col-list { grid-template-columns: 1fr; }
  .exclusive-notice .wrap { grid-template-columns: 1fr; gap: .6rem; }
  .exclusive-notice span, .exclusive-notice a { grid-column: auto; grid-row: auto; }
  .wine-price-head, .wine-item { grid-template-columns: minmax(0,1fr) 3.5rem 3.9rem; gap: .55rem; }
  .wine-item.two-price, .wine-item.bottle-only { grid-template-columns: minmax(0,1fr) 3.9rem; }
  .atmosphere-hero-copy { padding-bottom: 3rem; }
  .atmosphere-hero-copy h1 { font-size: clamp(4.9rem, 25vw, 7.4rem); }
  .gallery-chapter-head h2, .atmosphere-cta h2 { font-size: clamp(4rem, 20vw, 6rem); }
  .gallery-mosaic, .gallery-mosaic-kitchen { columns: 1; }
  .gallery-pullquote { font-size: 3.6rem; }
  .night-panorama { width: 100%; height: 50svh; }
  .night-panorama span { right: .6rem; bottom: .6rem; left: .6rem; }
  .gallery-lightbox { width: 100vw; height: 100svh; border: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .announcement { overflow-x: auto; }
  .announcement-track { animation: none; }
  .dayhap-photo img, .quote-photo img, .contact-photo img { transform: scale(1.04); }
  .contact-photo { clip-path: none; opacity: 1; }
  .contact-photo::after { display: none; }
  .gallery-shot img, .atmosphere-hero-image img, .photo-story img { transform: scale(1.04); }
  .kinetic-title .title-line > span { opacity: 1; filter: none; transform: none; }
  .quote-photo::after { display: none; }
  .quote-strip blockquote.reveal p, .quote-strip blockquote.reveal footer { opacity: 1; transform: none; }
  body.is-page-ready, body.is-page-leaving { animation: none; }
}

@keyframes announcement-marquee { to { transform: translateX(-50%); } }
@keyframes floating-menu-in { from { opacity: 0; transform: translateY(-1rem) scale(.72) rotate(-18deg); } to { opacity: 1; transform: translateY(0) scale(1) rotate(0); } }
@keyframes floating-ring-in { from { opacity: 0; transform: scale(.55) rotate(-60deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes desktop-menu-in { from { opacity: 0; transform: translate(-50%, -1.2rem) scale(.88); } to { opacity: 1; transform: translate(-50%, 0) scale(1); } }
@keyframes desktop-subnav-in {
  from { opacity: .72; transform: translateY(-.45rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes page-focus-in { from { opacity: .78; filter: blur(5px); } to { opacity: 1; filter: blur(0); } }
@keyframes page-focus-out { from { opacity: 1; filter: blur(0); } to { opacity: .72; filter: blur(5px); } }
@keyframes contact-photo-sheen { from { transform: translateX(-115%); } to { transform: translateX(115%); } }
