/* ==========================================================================
   Aruna Cuisine — design tokens
   ========================================================================== */
:root {
  --bg: #14110D;
  --panel: #1B1712;
  --panel-dark: #0F0D0A;
  --text: #F2EBDF;
  --muted: #CFC5B6;
  --muted-2: #A79C8D;
  --faint: #8C8175;
  --faint-2: #6F675C;
  --gold: #C8A15A;
  --gold-light: #E4C486;
  --border-gold: rgba(200, 161, 90, 0.22);
  --border-gold-strong: rgba(200, 161, 90, 0.35);
  --font-display: 'Marcellus', serif;
  --font-body: 'Karla', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  background-image:
    radial-gradient(rgba(242, 235, 223, 0.04) 0.6px, transparent 0.7px),
    radial-gradient(rgba(242, 235, 223, 0.025) 0.6px, transparent 0.7px);
  background-size: 4px 4px, 7px 7px;
  background-position: 0 0, 2px 3px;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
img { display: block; max-width: 100%; }
input, select, textarea, button { font: inherit; color: inherit; }

@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes slidefade { 0%, 20% { opacity: 1; } 27%, 95% { opacity: 0; } 100% { opacity: 1; } }
@keyframes kenburns { from { transform: scale(1) translate3d(0, 0, 0); } to { transform: scale(1.09) translate3d(-1%, -1%, 0); } }
@keyframes headercondense { from { padding-top: 14px; padding-bottom: 14px; } to { padding-top: 7px; padding-bottom: 7px; } }
@keyframes headershadow { from { box-shadow: 0 1px 0 rgba(0, 0, 0, 0); } to { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); } }
@keyframes headerlogo { from { height: clamp(34px, 5vw, 46px); } to { height: clamp(26px, 3.6vw, 34px); } }

@supports (animation-timeline: scroll()) {
  [data-header-inner] { animation: headercondense linear both; animation-timeline: scroll(root block); animation-range: 0 130px; }
  [data-header] { animation: headershadow linear both; animation-timeline: scroll(root block); animation-range: 0 130px; }
  [data-logo-img] { animation: headerlogo linear both; animation-timeline: scroll(root block); animation-range: 0 130px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(.22, .61, .36, 1), transform 0.9s cubic-bezier(.22, .61, .36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.container { max-width: 1280px; margin: 0 auto; padding-left: clamp(16px, 4vw, 40px); padding-right: clamp(16px, 4vw, 40px); }
.container--narrow { max-width: 1000px; }
.container--tight { max-width: 640px; }
.center { text-align: center; }

.section { padding: clamp(48px, 8vw, 110px) 0; }
.section--panel { background: var(--panel); border-top: 1px solid var(--border-gold); }
.section--quote { padding: clamp(48px, 8vw, 96px) 0; background: var(--panel); }
.section--tight-bottom { padding: clamp(48px, 8vw, 110px) 0 clamp(30px, 5vw, 56px); }
.section--top-tight { padding: 0 0 clamp(48px, 8vw, 110px); }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(28px, 5vw, 64px); align-items: center; }
.split__img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; border-radius: 2px; }
.split--reverse-img { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.split--contact { align-items: start; }
.split--map { align-items: start; }
@media (min-width: 900px) { .split--map { grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); } }

.two-col { margin-top: clamp(24px, 4vw, 40px); display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(24px, 4vw, 52px); }

.label { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.label--tight { margin-bottom: 12px; color: var(--faint); }

.h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 6vw, 66px); line-height: 1.08; margin: 0 0 20px; max-width: 24ch; }
.h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 4.4vw, 48px); line-height: 1.14; margin: 0 0 26px; }
.h2--gold { color: var(--gold); font-size: clamp(24px, 3.4vw, 36px); }
.h2--tight { margin-bottom: 8px; font-size: 24px; }
.h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; margin: 0 0 20px; color: var(--gold); }

.body-text { font-size: clamp(15px, 1.7vw, 17px); line-height: 1.75; color: var(--muted); margin: 0 0 20px; }
.body-text--lg { font-size: clamp(16px, 1.9vw, 19px); color: var(--muted); }
.intro-lead { max-width: 62ch; }

.fine-print { font-size: 15px; line-height: 1.75; color: var(--muted-2); margin: 0; }
.fine-print--italic { font-size: 15px; font-style: italic; }
.fine-print--gold { margin-top: 22px; font-size: 14px; color: var(--gold); }

.text-link { font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; border-bottom: 1px solid var(--border-gold-strong); padding-bottom: 6px; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.page { position: relative; min-height: 100vh; background: transparent; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(20, 17, 13, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gold);
  transition: box-shadow 0.4s ease;
}
.site-header__inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: padding 0.35s ease;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: clamp(34px, 5vw, 46px); width: auto; }

.nav--desktop { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 30px); justify-content: flex-end; }
.nav__links { display: flex; gap: clamp(14px, 2.2vw, 28px); }
.nav__link { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; color: var(--muted); }
.nav__link:hover, .nav__link.is-active { color: var(--gold-light); }

.nav--mobile { display: none; align-items: center; gap: 10px; }
.burger {
  width: 44px; height: 44px; display: grid; gap: 5px; align-content: center; justify-items: center;
  background: transparent; border: 1px solid rgba(242, 235, 223, 0.25); border-radius: 2px; cursor: pointer;
}
.burger span { display: block; width: 20px; height: 1px; background: var(--text); }

.drawer {
  border-top: 1px solid var(--border-gold);
  padding: 8px clamp(16px, 4vw, 40px) 20px;
  display: grid;
  animation: rise 0.25s ease both;
}
.drawer__link {
  display: flex; align-items: center; min-height: 52px;
  font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 1px solid rgba(242, 235, 223, 0.08);
  color: var(--muted);
}
.drawer__link.is-active { color: var(--gold-light); }

@media (max-width: 859px) {
  .nav--desktop { display: none; }
  .nav--mobile { display: flex; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 30px; min-height: 52px;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px; border: 1px solid transparent;
}
.btn--solid { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.btn--solid:hover { background: var(--gold-light); color: var(--bg); }
.btn--outline { background: transparent; border-color: var(--gold); color: var(--gold-light); padding: 12px 20px; }
.btn--outline:hover { background: var(--gold); color: var(--bg); }
.btn--ghost { background: transparent; border-color: rgba(242, 235, 223, 0.4); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--compact { padding: 0 16px; min-height: 44px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.icon-btn {
  background: transparent; border: 1px solid rgba(242, 235, 223, 0.25); color: var(--text);
  width: 44px; height: 44px; flex-shrink: 0; font-size: 18px; cursor: pointer; border-radius: 2px;
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold-light); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: min(88vh, 760px);
  display: grid; align-items: end;
  padding: clamp(40px, 10vw, 120px) clamp(16px, 4vw, 40px) clamp(40px, 7vw, 80px);
  overflow: hidden; background-color: var(--bg);
}
.hero__slides { position: absolute; inset: 0; overflow: hidden; }
.hero__slide {
  position: absolute; inset: -3%;
  background-size: cover; background-position: center;
  animation: slidefade 26s linear infinite, kenburns 26s ease-out infinite;
  opacity: 0;
}
.hero__slide:first-child { opacity: 1; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20, 17, 13, 0.95) 4%, rgba(20, 17, 13, 0.45) 55%, rgba(20, 17, 13, 0.7));
}
.hero__content { position: relative; max-width: 1280px; margin: 0 auto; width: 100%; animation: rise 0.9s ease both; }
.eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); }
.eyebrow__rule { width: clamp(28px, 4vw, 56px); height: 1px; background: var(--gold); }
.hero__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(34px, 6.4vw, 74px); line-height: 1.06; margin: 0 0 22px; max-width: 20ch; }
.hero__title-accent { display: block; color: var(--gold); }
.hero__lead { font-size: clamp(16px, 2vw, 21px); line-height: 1.6; color: var(--muted); max-width: 56ch; margin: 0 0 34px; }

/* ==========================================================================
   Quote / press
   ========================================================================== */
.quote { margin: 0; font-family: var(--font-display); font-size: clamp(22px, 3.6vw, 40px); line-height: 1.34; color: var(--text); }
.quote__attr { margin-top: 26px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.press-row { margin-top: 44px; display: flex; flex-wrap: wrap; gap: clamp(18px, 4vw, 44px); align-items: center; justify-content: center; opacity: 0.78; }
.press-row img { height: 34px; width: auto; border-radius: 2px; }

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background: var(--panel-dark); color: var(--gold); overflow: hidden;
  padding: clamp(14px, 1.8vw, 22px) 0;
  border-top: 1px solid rgba(200, 161, 90, 0.16); border-bottom: 1px solid rgba(200, 161, 90, 0.16);
}
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee__set {
  display: flex; gap: clamp(28px, 4vw, 56px); padding-right: clamp(28px, 4vw, 56px);
  font-family: var(--font-display); font-size: clamp(15px, 1.6vw, 20px); letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
}

/* ==========================================================================
   Story / dish grid
   ========================================================================== */
.story-grid { display: grid; gap: clamp(12px, 2vw, 20px); grid-template-columns: 1fr 1fr; }
.story-grid img { width: 100%; height: 100%; object-fit: cover; min-height: 130px; border-radius: 2px; }
.story-grid__tall { grid-row: span 2; min-height: 260px; }
.story-grid--pair img { min-height: 200px; }

.section-intro { max-width: 60ch; margin-bottom: clamp(30px, 5vw, 58px); }
.section-intro--center { margin-left: auto; margin-right: auto; text-align: center; }

.dish-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr)); gap: clamp(16px, 2.4vw, 28px); }
.dish-card {
  margin: 0; position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--bg); border: 1px solid var(--border-gold); border-radius: 2px;
}
.dish-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s cubic-bezier(.22, .61, .36, 1); }
.dish-card__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 13, 10, 0.94) 0%, rgba(15, 13, 10, 0.5) 38%, rgba(15, 13, 10, 0.06) 70%);
  opacity: 0.85; transition: opacity 0.6s ease;
}
.dish-card__caption { position: absolute; inset: auto 0 0 0; padding: clamp(18px, 2vw, 24px); color: var(--text); }
.dish-card__rule { width: 0; height: 1px; background: var(--gold); margin-bottom: 12px; transition: width 0.6s cubic-bezier(.22, .61, .36, 1); }
.dish-card__name { font-family: var(--font-display); font-size: clamp(19px, 1.6vw, 22px); line-height: 1.2; }
.dish-card__desc {
  max-height: 0; opacity: 0; overflow: hidden; font-size: 14px; line-height: 1.65; color: var(--muted);
  transition: max-height 0.7s cubic-bezier(.22, .61, .36, 1), opacity 0.5s ease 0.1s, margin-top 0.7s cubic-bezier(.22, .61, .36, 1);
}
.dish-card:hover .dish-card__img, .dish-card:focus-within .dish-card__img { transform: scale(1.07); }
.dish-card:hover .dish-card__scrim, .dish-card:focus-within .dish-card__scrim { opacity: 1; }
.dish-card:hover .dish-card__desc, .dish-card:focus-within .dish-card__desc { max-height: 9em; opacity: 1; margin-top: 12px; }
.dish-card:hover .dish-card__rule, .dish-card:focus-within .dish-card__rule { width: 46px; }

/* ==========================================================================
   An Extraordinary Taste Sensation — dish carousel
   ========================================================================== */
.taste {
  --gut: clamp(16px, 4vw, 40px);
  --edge: max(var(--gut), calc((100% - 1280px) / 2 + var(--gut)));
  --slide-w: clamp(248px, 26vw, 358px);
  background: var(--panel);
  border-top: 1px solid var(--border-gold);
  overflow: hidden;
}

.taste__head { display: grid; gap: clamp(22px, 3vw, 40px); align-items: end; margin-bottom: clamp(28px, 4vw, 46px); }
.taste__intro { max-width: 62ch; }
.taste__intro .h2 { margin-bottom: 20px; }
.taste__intro .body-text { margin-bottom: 0; }

.taste__nav { display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 3vw, 34px); }
.taste__count { display: flex; align-items: center; gap: 14px; font-family: var(--font-display); font-size: 15px; letter-spacing: 0.14em; color: var(--faint); }
.taste__count b { font-weight: 400; font-size: 21px; color: var(--gold); font-variant-numeric: tabular-nums; }
.taste__count-rule { width: 32px; height: 1px; background: var(--border-gold-strong); }
.taste__buttons { display: flex; gap: 10px; }
.taste__btn {
  width: 48px; height: 48px; flex-shrink: 0; display: grid; place-items: center;
  background: transparent; color: var(--gold); border: 1px solid var(--border-gold-strong); border-radius: 50%; cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.taste__btn svg { width: 17px; height: 17px; }
.taste__btn:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.taste__btn:focus-visible { outline: 1px solid var(--gold-light); outline-offset: 3px; }

/* Shared horizontal-carousel mechanics: edge-bleeding, snapping, drag-scroll.
   --edge aligns the first slide with the container gutter while the track runs
   off the viewport edge. Used by .taste__viewport and .voices__viewport. */
.hcarousel {
  --gut: clamp(16px, 4vw, 40px);
  --edge: max(var(--gut), calc((100% - 1280px) / 2 + var(--gut)));
  display: flex; gap: clamp(14px, 1.8vw, 26px);
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-left: var(--edge);
  padding-inline: var(--edge); padding-bottom: 4px;
  cursor: grab; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.hcarousel::-webkit-scrollbar { display: none; }
.hcarousel:focus-visible { outline: 1px solid var(--border-gold-strong); outline-offset: 6px; }
.hcarousel.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.hcarousel.is-dragging > * { pointer-events: none; }

.taste-slide { flex: 0 0 var(--slide-w); margin: 0; scroll-snap-align: start; opacity: 0.4; transition: opacity 0.8s ease; }
.taste-slide.is-in { opacity: 1; }
.taste-slide__frame {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  background: var(--bg); border: 1px solid var(--border-gold); border-radius: 2px;
}
.taste-slide__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s cubic-bezier(.22, .61, .36, 1); }
.taste-slide__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 13, 10, 0.7) 0%, rgba(15, 13, 10, 0.14) 44%, rgba(15, 13, 10, 0) 72%);
}
.taste-slide__index {
  position: absolute; top: 16px; left: 18px;
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.22em; color: var(--gold-light);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.75);
}
.taste-slide__caption { padding-top: 20px; }
.taste-slide__rule { width: 24px; height: 1px; background: var(--border-gold-strong); margin-bottom: 15px; transition: width 0.7s cubic-bezier(.22, .61, .36, 1), background-color 0.5s ease; }
.taste-slide__name { font-family: var(--font-display); font-weight: 400; font-size: clamp(20px, 1.8vw, 24px); line-height: 1.22; margin: 0 0 10px; }
.taste-slide__desc {
  margin: 0; font-size: 14px; line-height: 1.7; color: var(--muted-2);
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden;
}
.taste-slide:hover .taste-slide__img { transform: scale(1.06); }
.taste-slide:hover .taste-slide__rule { width: 58px; background-color: var(--gold); }

.taste__rail { position: relative; height: 1px; background: rgba(200, 161, 90, 0.16); margin-top: clamp(28px, 4vw, 46px); }
.taste__rail-thumb { position: absolute; top: -1px; left: 0; height: 3px; width: 24%; background: var(--gold); transition: left 0.4s ease, width 0.4s ease; }
.taste__foot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; }
.taste__hint { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint-2); }

@media (min-width: 900px) {
  .taste__head { grid-template-columns: minmax(0, 1fr) auto; }
  .taste__nav { justify-content: flex-end; }
}

/* ==========================================================================
   Culinary gift — full-bleed highlight band
   ========================================================================== */
.gift {
  position: relative; isolation: isolate;
  padding: clamp(56px, 9vw, 124px) 0;
  background-size: cover; background-position: center 38%; background-repeat: no-repeat;
  border-top: 1px solid var(--border-gold-strong);
  border-bottom: 1px solid var(--border-gold-strong);
}
.gift::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 120% at 12% 20%, rgba(200, 161, 90, 0.13), transparent 58%),
    linear-gradient(100deg, rgba(15, 13, 10, 0.97) 0%, rgba(15, 13, 10, 0.93) 38%, rgba(15, 13, 10, 0.62) 68%, rgba(15, 13, 10, 0.78) 100%),
    linear-gradient(rgba(20, 17, 13, 0.24), rgba(20, 17, 13, 0.24));
}
.gift__card {
  position: relative; max-width: 660px;
  padding: clamp(26px, 4vw, 54px);
  background: rgba(20, 17, 13, 0.7);
  backdrop-filter: blur(7px);
  border: 1px solid var(--border-gold-strong); border-radius: 2px;
}
.gift__card::after {
  content: ''; position: absolute; inset: 9px; pointer-events: none;
  border: 1px solid rgba(200, 161, 90, 0.16);
}
.gift__title { margin-bottom: 20px; }
.gift__card .body-text { margin-bottom: 0; max-width: 52ch; }

.gift__points {
  list-style: none; margin: clamp(26px, 3.4vw, 38px) 0; padding: clamp(22px, 2.8vw, 30px) 0 0;
  border-top: 1px solid var(--border-gold-strong);
  display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 28px);
}
@media (min-width: 620px) { .gift__points { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.gift__points strong {
  display: block; margin-bottom: 9px; font-weight: 400;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold);
}
.gift__points span { font-size: 14px; line-height: 1.6; color: var(--muted); }

.gift__actions { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(16px, 2.4vw, 28px); }
.gift__phone { font-size: 14px; color: var(--muted-2); }

/* ==========================================================================
   Chef portrait — about page intro
   ========================================================================== */
.chef { display: grid; gap: clamp(30px, 5vw, 60px); align-items: center; }
.chef__title { margin-bottom: 0; max-width: 20ch; }

.chef__creds {
  list-style: none; margin: clamp(28px, 4vw, 42px) 0 0; padding: clamp(22px, 2.8vw, 28px) 0 0;
  border-top: 1px solid var(--border-gold-strong);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 118px), 1fr)); gap: clamp(18px, 2.4vw, 30px);
}
.chef__creds strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3vw, 34px); line-height: 1; color: var(--gold); margin-bottom: 10px; }
.chef__creds span { font-size: 13px; line-height: 1.55; color: var(--muted-2); }

.chef__portrait { margin: 0; width: 100%; max-width: 330px; justify-self: start; }
.chef__frame {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border: 1px solid var(--border-gold-strong); border-radius: 2px; background: var(--panel-dark);
}
.chef__frame::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top, rgba(15, 13, 10, 0.5) 0%, rgba(15, 13, 10, 0.06) 42%, rgba(15, 13, 10, 0) 70%),
    radial-gradient(120% 110% at 50% 40%, transparent 42%, rgba(15, 13, 10, 0.42) 100%),
    linear-gradient(rgba(200, 161, 90, 0.07), rgba(200, 161, 90, 0.07));
}
.chef__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  filter: saturate(0.52) sepia(0.16) contrast(1.06) brightness(0.99);
  transition: transform 1.6s cubic-bezier(.22, .61, .36, 1), filter 0.8s ease;
}
.chef__portrait:hover .chef__img { transform: scale(1.04); filter: saturate(0.66) sepia(0.1) contrast(1.06); }

.chef__plate {
  position: relative; margin-top: -1px;
  padding: 16px 18px;
  border: 1px solid var(--border-gold-strong); border-top: 0;
  background: var(--panel);
}
.chef__name { display: block; font-family: var(--font-display); font-size: 19px; line-height: 1.2; }
.chef__role { display: block; margin-top: 6px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

@media (min-width: 880px) {
  .chef { grid-template-columns: minmax(0, 1fr) auto; gap: clamp(40px, 6vw, 90px); }
  .chef__portrait { justify-self: end; }
}

/* ==========================================================================
   Lists / features / visit
   ========================================================================== */
.check-list { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; font-size: 15px; line-height: 1.6; color: var(--muted); }
.check-list li::before { content: '\2713'; color: var(--gold); }
.check-list strong { color: var(--text); font-weight: 600; }

.visit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); gap: clamp(24px, 3.5vw, 44px); margin-top: clamp(28px, 5vw, 52px); }
.dl-rows { margin: 0; display: grid; gap: 12px; font-size: 15px; line-height: 1.5; }
.dl-rows > div { display: flex; flex-wrap: wrap; justify-content: space-between; column-gap: 16px; row-gap: 4px;border-bottom: 1px solid rgba(242, 235, 223, 0.1); padding-bottom: 10px; }
.dl-rows__last { border-bottom: none !important; }
.dl-rows dt { color: var(--muted); }
.dl-rows dd { margin: 0; color: var(--text); }
.dl-rows dd.dl-rows__note { flex-basis: 100%; text-align: right; font-size: 13px; font-style: italic; color: var(--muted); }

/* What we can offer you — editorial amenity ledger */
.offer { display: grid; gap: clamp(30px, 5vw, 72px); align-items: start; }
.offer__intro { max-width: 46ch; }
.offer__intro .body-text { margin-bottom: 26px; }
.offer__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: clamp(24px, 3vw, 34px) clamp(24px, 3vw, 40px); }

.amenity { position: relative; margin: 0; padding-top: clamp(18px, 2vw, 24px); border-top: 1px solid var(--border-gold); }
.amenity::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.7s cubic-bezier(.22, .61, .36, 1);
}
.amenity:hover::before { width: 100%; }
.amenity__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.amenity__icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold); transition: color 0.4s ease, transform 0.5s cubic-bezier(.22, .61, .36, 1); }
.amenity__icon svg { width: 100%; height: 100%; display: block; }
.amenity:hover .amenity__icon { color: var(--gold-light); transform: translateY(-2px); }
.amenity__title { font-family: var(--font-display); font-weight: 400; font-size: 19px; line-height: 1.25; margin: 0; }
.amenity__text { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted-2); }
.amenity:last-child { grid-column: 1 / -1; }
.amenity:last-child .amenity__text { max-width: 58ch; }

.offer-cta {
  margin-top: clamp(36px, 5.5vw, 64px);
  display: grid; gap: clamp(22px, 3vw, 40px); align-items: center;
  padding: clamp(24px, 3.4vw, 40px);
  background-color: var(--panel);
  background-image: radial-gradient(120% 140% at 88% 0%, rgba(200, 161, 90, 0.13), transparent 62%);
  border: 1px solid var(--border-gold-strong); border-radius: 2px;
}
.offer-cta__body { display: grid; gap: clamp(14px, 2vw, 22px); }
.offer-cta__icon { flex-shrink: 0; width: 30px; height: 30px; margin-top: 2px; color: var(--gold); }
.offer-cta__icon svg { width: 100%; height: 100%; display: block; }
.offer-cta__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(22px, 2.6vw, 28px); line-height: 1.2; margin: 0 0 12px; }
.offer-cta__body .fine-print { max-width: 62ch; }
.offer-cta__action { display: grid; justify-items: start; gap: 12px; }
.offer-cta__phone { font-size: 13px; letter-spacing: 0.14em; color: var(--faint); }

@media (min-width: 980px) {
  .offer { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.4fr); }
  .offer__intro { position: sticky; top: clamp(96px, 13vh, 128px); }
  .offer-cta { grid-template-columns: minmax(0, 1fr) auto; }
  .offer-cta__body { grid-template-columns: auto minmax(0, 1fr); align-items: start; }
  .offer-cta__action { justify-items: end; text-align: right; }
}

/* ==========================================================================
   Page hero (subpages) / heritage timeline / spaces
   ========================================================================== */
.phero {
  position: relative; isolation: isolate; display: flex; align-items: flex-end;
  min-height: clamp(360px, 62vh, 620px);
  padding: clamp(48px, 9vw, 104px) 0;
  background-size: cover; background-position: center 42%; background-repeat: no-repeat;
  border-bottom: 1px solid var(--border-gold-strong);
}
.phero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(15, 13, 10, 0.95) 0%, rgba(15, 13, 10, 0.72) 38%, rgba(15, 13, 10, 0.42) 72%, rgba(15, 13, 10, 0.55) 100%),
    linear-gradient(rgba(20, 17, 13, 0.24), rgba(20, 17, 13, 0.24));
}
.phero__inner { animation: rise 0.9s ease both; }
.phero__title { font-size: clamp(32px, 5.6vw, 62px); margin-bottom: 20px; max-width: 22ch; }
.phero__lead { font-size: clamp(16px, 1.9vw, 20px); line-height: 1.6; color: var(--muted); max-width: 54ch; margin: 0 0 32px; }

.timeline {
  list-style: none; margin: clamp(28px, 5vw, 52px) 0 0; padding: 0; counter-reset: none;
  display: grid; grid-template-columns: 1fr; gap: clamp(22px, 3vw, 34px);
}
@media (min-width: 560px) { .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 940px) { .timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.timeline__item { position: relative; padding-top: clamp(20px, 2.6vw, 26px); border-top: 1px solid var(--border-gold); }
.timeline__item::before {
  content: ''; position: absolute; top: -4px; left: 0; width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
}
.timeline__year { font-family: var(--font-display); font-size: clamp(26px, 3vw, 34px); line-height: 1; color: var(--gold); margin-bottom: 12px; }
.timeline__text { margin: 0; font-size: 15px; line-height: 1.7; color: var(--muted-2); }

.spaces { display: grid; grid-template-columns: 1fr; gap: clamp(20px, 3vw, 34px); }
@media (min-width: 820px) { .spaces { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.space-card {
  display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--border-gold); border-radius: 2px; overflow: hidden;
  transition: border-color 0.5s ease;
}
.space-card:hover { border-color: var(--border-gold-strong); }
.space-card__frame { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--panel-dark); }
.space-card__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s cubic-bezier(.22, .61, .36, 1); }
.space-card:hover .space-card__frame img { transform: scale(1.05); }
.space-card__body { padding: clamp(22px, 2.8vw, 32px); display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.space-card__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(21px, 2.2vw, 26px); line-height: 1.2; margin: 0; }
.space-card__text { margin: 0; font-size: 15px; line-height: 1.72; color: var(--muted-2); }
.space-card__body .text-link { margin-top: 4px; background: transparent; border-left: 0; border-right: 0; border-top: 0; padding-left: 0; padding-right: 0; cursor: pointer; color: var(--gold); }
.space-card__body .text-link:hover { color: var(--gold-light); }

/* ==========================================================================
   Guest reviews — trust strip + voices carousel
   ========================================================================== */
.stars {
  position: relative; display: inline-block; white-space: nowrap;
  font-size: 13px; letter-spacing: 0.12em; line-height: 1;
  color: rgba(200, 161, 90, 0.26);
}
.stars__fill {
  position: absolute; inset: 0; width: var(--stars-fill, 0%);
  overflow: hidden; color: var(--gold);
}
.stars--card { font-size: 15px; }

.trust-strip {
  list-style: none; margin: clamp(26px, 3.4vw, 38px) 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid var(--border-gold);
}
@media (min-width: 620px) { .trust-strip { grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); } }
.trust-badge { border-bottom: 1px solid var(--border-gold); }
@media (min-width: 620px) {
  .trust-badge { border-bottom: 0; border-left: 1px solid var(--border-gold); }
  .trust-badge:first-child { border-left: 0; }
}
.trust-badge__inner {
  display: grid; gap: 8px; padding: clamp(18px, 2.2vw, 22px) clamp(0px, 2vw, 24px);
  color: var(--text); text-decoration: none;
}
@media (min-width: 620px) { .trust-badge:first-child .trust-badge__inner { padding-left: 0; } }
a.trust-badge__inner { transition: background-color 0.4s ease; }
a.trust-badge__inner:hover { background: rgba(200, 161, 90, 0.06); color: var(--text); }
.trust-badge__platform { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.trust-badge__score { display: flex; align-items: center; gap: 10px; }
.trust-badge__number { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 30px); line-height: 1; }
.trust-badge__count { font-size: 12px; letter-spacing: 0.1em; color: var(--faint); }

.voices__head { display: grid; gap: clamp(20px, 3vw, 40px); align-items: end; }
.voices__intro .h2 { margin-bottom: 0; }
@media (min-width: 900px) {
  .voices__head { grid-template-columns: minmax(0, 1fr) auto; }
  .voices__head .taste__nav { justify-content: flex-end; }
}

.voices__viewport { margin-top: clamp(28px, 4vw, 46px); align-items: stretch; }
.voice-slide { flex: 0 0 clamp(276px, 30vw, 400px); margin: 0; scroll-snap-align: start; opacity: 0.4; transition: opacity 0.8s ease; }
.voice-slide.is-in { opacity: 1; }

.voice-card {
  position: relative; height: 100%; display: flex; flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background: var(--bg); border: 1px solid var(--border-gold); border-radius: 2px;
  transition: border-color 0.5s ease;
}
.voice-slide:hover .voice-card { border-color: var(--border-gold-strong); }
.voice-card__mark {
  position: absolute; top: clamp(10px, 1.4vw, 16px); right: clamp(16px, 2vw, 24px);
  font-family: var(--font-display); font-size: 72px; line-height: 1;
  color: rgba(200, 161, 90, 0.16); pointer-events: none;
}
.voice-card .stars { margin-bottom: 18px; }
.voice-card__title {
  margin: 0 0 12px; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(17px, 1.6vw, 19px); line-height: 1.3; color: var(--gold-light);
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;
}
/* Cards share a flex row, so one long review would otherwise set the height for
   all of them. Clamp the visible text; the full quote stays in the database and
   the source link goes to the original. */
.voice-card__quote {
  margin: 0 0 auto; padding: 0; border: 0;
  font-family: var(--font-body); font-weight: 400;
  font-size: 14.5px; line-height: 1.72; color: var(--muted);
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 8; overflow: hidden;
}
.voice-card__meta {
  margin-top: clamp(22px, 2.6vw, 30px); padding-top: 18px; border-top: 1px solid var(--border-gold);
  display: flex; align-items: center; gap: 12px;
}
.voice-card__avatar {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--border-gold);
}
.voice-card__by { min-width: 0; }
.voice-card__author { display: block; font-size: 15px; color: var(--muted); }
.voice-card__source { display: block; margin-top: 6px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); }
.voice-card__source a { color: var(--gold); }
.voice-card__dot { margin: 0 8px; }

.voices__foot {
  display: grid; gap: clamp(18px, 2.6vw, 30px); align-items: center;
  margin-top: 22px;
}
.voices__disclosure { margin: 0; max-width: 64ch; font-size: 13px; line-height: 1.7; color: var(--faint-2); }
@media (min-width: 900px) {
  .voices__foot { grid-template-columns: minmax(0, 1fr) auto; }
}
.voices__trustpilot { min-width: min(100%, 300px); }

/* ==========================================================================
   Guest photos — a filmstrip of the shots people attached to their reviews
   ========================================================================== */
.shots__viewport { margin-top: clamp(28px, 4vw, 46px); align-items: stretch; }
.shots__note { margin: 0; max-width: 58ch; font-size: 13px; line-height: 1.7; color: var(--faint-2); }

/* The tiles are buttons, so every browser default has to be undone first. */
.shot-slide {
  position: relative; flex: 0 0 clamp(186px, 21vw, 268px);
  aspect-ratio: 4 / 5; overflow: hidden;
  margin: 0; padding: 0; appearance: none;
  background: var(--panel-dark); border: 1px solid var(--border-gold); border-radius: 2px;
  cursor: zoom-in; scroll-snap-align: start;
  opacity: 0.42; transition: opacity 0.8s ease, border-color 0.5s ease;
}
.shot-slide.is-in { opacity: 1; }
.shot-slide:hover, .shot-slide:focus-visible { border-color: var(--border-gold-strong); }
.shot-slide:focus-visible { outline: 1px solid var(--gold-light); outline-offset: 3px; }

.shot-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s cubic-bezier(.22, .61, .36, 1);
}
.shot-slide__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 13, 10, 0.55) 0%, rgba(15, 13, 10, 0.08) 46%, rgba(15, 13, 10, 0) 74%);
  transition: opacity 0.6s ease;
}
.shot-slide__zoom {
  position: absolute; right: 12px; bottom: 12px;
  display: grid; place-items: center; width: 36px; height: 36px;
  border: 1px solid var(--border-gold-strong); border-radius: 50%;
  background: rgba(15, 13, 10, 0.66); color: var(--gold-light);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.shot-slide__zoom svg { width: 17px; height: 17px; }
.shot-slide:hover img, .shot-slide:focus-visible img { transform: scale(1.07); }
.shot-slide:hover .shot-slide__veil, .shot-slide:focus-visible .shot-slide__veil { opacity: 0.4; }
.shot-slide:hover .shot-slide__zoom, .shot-slide:focus-visible .shot-slide__zoom { opacity: 1; transform: none; }

@media (max-width: 599px) {
  .shot-slide { flex-basis: min(74vw, 300px); }
}

/* ==========================================================================
   Gallery / photo grids
   ========================================================================== */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: clamp(12px, 2vw, 20px); }
.photo-grid--menu { margin: clamp(20px, 3vw, 32px) 0 clamp(36px, 5vw, 56px); grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
.photo-grid__item, .insta-grid__item {
  overflow: hidden; padding: 0; border: 0; background: transparent; cursor: zoom-in; display: block; border-radius: 2px;
}
.photo-grid__item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.2s cubic-bezier(.22, .61, .36, 1); }
.photo-grid__item:hover img { transform: scale(1.06); }

.insta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(45%, 150px), 1fr)); gap: clamp(8px, 1.5vw, 14px); }
.insta-grid__item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.9s cubic-bezier(.22, .61, .36, 1); }
.insta-grid__item:hover img { transform: scale(1.07); }

.video-frame { position: relative; width: 100%; max-width: 100%; aspect-ratio: 16 / 9; border: 1px solid var(--border-gold); border-radius: 2px; overflow: hidden; }
/* aspect-ratio + min-height fight each other and blow out the width on narrow screens,
   so vary the ratio instead of forcing a minimum height. */
.video-frame--wide { aspect-ratio: 4 / 3; }
@media (min-width: 780px) { .video-frame--wide { aspect-ratio: 16 / 7; } }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   Menu page
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(20px, 3vw, 32px); }
.price-card { background: var(--panel); border: 1px solid var(--border-gold); padding: clamp(24px, 3vw, 34px); border-radius: 2px; }
.price-card__title { font-family: var(--font-display); font-weight: 400; font-size: 24px; margin: 0 0 22px; color: var(--gold); }
.price-list { display: grid; gap: 14px; font-size: 15px; }
.price-row { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid rgba(242, 235, 223, 0.1); padding-bottom: 12px; }
.price-row:last-child { border-bottom: none; }
.price-row span:last-child { color: var(--text); white-space: nowrap; }
.price-row--sub { color: var(--muted-2); font-style: italic; border-bottom: none; padding-bottom: 0; }

.menu-category {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
  padding-bottom: 14px; border-bottom: 1px solid var(--border-gold-strong); margin: clamp(36px, 5vw, 56px) 0 26px;
}
.section--panel .menu-category:first-of-type { margin-top: 0; }
.menu-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: clamp(20px, 3vw, 36px); }
.menu-item__head { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; }
.menu-item__head span:first-child { font-family: var(--font-display); font-size: 18px; }
.menu-item__price { color: var(--gold); white-space: nowrap; }
.menu-item p { margin: 8px 0 0; font-size: 14px; line-height: 1.6; color: var(--muted-2); }

/* ==========================================================================
   Contact page
   ========================================================================== */

/* Contact channels */
.channels { display: grid; gap: 0; margin: clamp(24px, 3.4vw, 34px) 0 clamp(30px, 4vw, 42px); }
.channel {
  position: relative; display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: 2px clamp(14px, 1.8vw, 18px); align-items: center;
  padding: clamp(18px, 2.2vw, 22px) 0; border-top: 1px solid var(--border-gold);
  color: var(--text); text-decoration: none;
}
.channel:last-child { border-bottom: 1px solid var(--border-gold); }
.channel::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.7s cubic-bezier(.22, .61, .36, 1);
}
.channel:hover::before, .channel:focus-visible::before { width: 100%; }
.channel:focus-visible { outline: 1px solid var(--border-gold-strong); outline-offset: 6px; }
.channel__icon {
  grid-row: 1 / span 2; width: 24px; height: 24px; color: var(--gold);
  transition: color 0.4s ease, transform 0.5s cubic-bezier(.22, .61, .36, 1);
}
.channel__icon svg { width: 100%; height: 100%; display: block; }
.channel:hover .channel__icon { color: var(--gold-light); transform: translateY(-2px); }
.channel__label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--faint); }
.channel__value { font-family: var(--font-display); font-size: clamp(17px, 1.7vw, 20px); line-height: 1.3; color: var(--text); }
.channel:hover .channel__value { color: var(--gold-light); }
.channel__hint {
  grid-column: 2; margin-top: 6px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
}

.hours-block { margin-bottom: clamp(28px, 4vw, 38px); max-width: 420px; }
.social-block .social-row { margin-top: 4px; }

.contact-card--form { align-self: start; }
.contact-card--form .fine-print { margin-bottom: 24px; }

.insta-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: clamp(22px, 3vw, 32px);
}
.insta-head .h2 { margin-bottom: 0; }
.social-row { display: flex; gap: 18px; flex-wrap: wrap; }
.social-row a { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; }

.contact-card { background: var(--panel); border: 1px solid var(--border-gold); padding: clamp(22px, 3vw, 34px); border-radius: 2px; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 8px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); }
.field input, .field select, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid rgba(242, 235, 223, 0.28); border-radius: 0;
  padding: 12px 2px; min-height: 48px; font-size: 16px; letter-spacing: normal; text-transform: none; color: var(--text);
}
.field textarea { min-height: unset; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.field select {
  appearance: none; -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: right 8px center, right 3px center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
  padding-right: 24px;
}
/* The browser's own calendar-picker icon defaults to a dark glyph made for
   light backgrounds — invisible-ish here. color-scheme flips it to the
   light variant Chromium/Safari draw for dark UIs. */
.field input[type="date"] { color-scheme: dark; }
.field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer; opacity: 0.8; transition: opacity 0.2s ease;
}
.field input[type="date"]::-webkit-calendar-picker-indicator:hover { opacity: 1; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 16px; }
.field-row--three { grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr)); }

/* Pseudo-dropdown for [data-field-select]. A native <select>'s closed box can
   be themed, but its open options list is drawn by the OS/browser and always
   comes out light — jarring against this dark form. JS (main.js) swaps the
   select for this once it can run; without JS the plain themed select above
   still works, so this only needs to match it when closed. */
.field-select { position: relative; }
.field-select__native { display: none; }
.field-select__toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%;
  font: inherit; text-align: left; cursor: pointer; appearance: none;
  background: transparent; border: 0; border-bottom: 1px solid rgba(242, 235, 223, 0.28); border-radius: 0;
  padding: 12px 2px; min-height: 48px; font-size: 16px; letter-spacing: normal; text-transform: none; color: var(--text);
}
.field-select__toggle:focus-visible { outline: none; border-bottom-color: var(--gold); }
.field-select.is-open .field-select__toggle { border-bottom-color: var(--gold); }
.field-select__chevron { width: 9px; height: 6px; flex-shrink: 0; color: var(--gold); transition: transform 0.2s ease; }
.field-select.is-open .field-select__chevron { transform: rotate(180deg); }

.field-select__menu {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30;
  max-height: 264px; overflow-y: auto;
  background: rgba(20, 17, 13, 0.98); border: 1px solid var(--border-gold); border-radius: 2px;
  padding: 6px 0; margin: 0; list-style: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  scrollbar-width: thin; scrollbar-color: var(--border-gold-strong) transparent;
}
.field-select__menu::-webkit-scrollbar { width: 6px; }
.field-select__menu::-webkit-scrollbar-track { background: transparent; }
.field-select__menu::-webkit-scrollbar-thumb { background: var(--border-gold-strong); border-radius: 3px; }
.field-select__menu::-webkit-scrollbar-thumb:hover { background: var(--gold); }
.field-select__option {
  padding: 10px 14px; font-size: 15px; letter-spacing: normal; text-transform: none;
  color: var(--muted); cursor: pointer; white-space: nowrap;
}
.field-select__option:hover { color: var(--gold-light); background: rgba(200, 161, 90, 0.08); }
.field-select__option.is-active { color: var(--gold); }

/* The time field starts locked until a date is picked (main.js) — clicking
   it shows an alert instead of opening, so it needs to read as unavailable
   rather than merely empty. */
.field-select.is-locked .field-select__toggle { opacity: 0.5; cursor: not-allowed; }

/* Themed calendar dropdown for the reservation date field — same pattern
   as the pseudo-dropdown above, but for [type="date"]. JS (main.js) swaps
   the input for this once it can run; without JS the plain native date
   field above (with its `min` attribute) still works. */
.field-date { position: relative; }
.field-date__native { display: none; }
.field-date__toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%;
  font: inherit; text-align: left; cursor: pointer; appearance: none;
  background: transparent; border: 0; border-bottom: 1px solid rgba(242, 235, 223, 0.28); border-radius: 0;
  padding: 12px 2px; min-height: 48px; font-size: 16px; letter-spacing: normal; text-transform: none; color: var(--text);
}
.field-date__toggle:focus-visible { outline: none; border-bottom-color: var(--gold); }
.field-date.is-open .field-date__toggle { border-bottom-color: var(--gold); }
.field-date__icon { width: 16px; height: 16px; flex-shrink: 0; color: var(--gold); }

.field-date__panel {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 30;
  width: max(260px, 100%);
  background: rgba(20, 17, 13, 0.98); border: 1px solid var(--border-gold); border-radius: 2px;
  padding: 14px; box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}
.field-date__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.field-date__nav-btn {
  background: transparent; border: 1px solid var(--border-gold-strong); border-radius: 4px; color: var(--gold);
  width: 26px; height: 26px; line-height: 1; cursor: pointer; font-size: 16px;
}
.field-date__nav-btn:hover:not(:disabled) { background: rgba(200, 161, 90, 0.1); }
.field-date__nav-btn:disabled { opacity: 0.3; cursor: default; }
.field-date__month { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }

.field-date__weekdays, .field-date__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.field-date__weekdays span { text-align: center; font-size: 11px; color: var(--muted-2); padding-bottom: 6px; }

.field-date__day {
  background: transparent; border: 0; border-radius: 4px; color: var(--muted);
  font-size: 13px; letter-spacing: normal; text-transform: none;
  aspect-ratio: 1; cursor: pointer;
}
.field-date__day:hover:not(:disabled) { color: var(--gold-light); background: rgba(200, 161, 90, 0.08); }
.field-date__day.is-selected { color: #14110D; background: var(--gold); font-weight: 600; }
.field-date__day.is-today:not(.is-selected) { box-shadow: inset 0 0 0 1px var(--border-gold-strong); }
/* The disabled state this whole widget exists for: closed weekdays (and
   anything before `min`) render at low opacity and simply aren't buttons
   you can click — `disabled` on the element handles the "can't click"
   part, this just handles the "look" part. */
.field-date__day.is-disabled { opacity: 0.3; cursor: not-allowed; color: var(--muted-2); }

/* Surfaces the "please pick a date" failure that the browser can't show on
   its own, since the native input it validates is hidden (main.js). */
.field-date.is-invalid .field-date__toggle { border-bottom-color: rgb(179, 67, 43); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--panel-dark); border-top: 1px solid var(--border-gold); padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 40px) 30px; }
.site-footer__grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: clamp(26px, 4vw, 48px); }
.site-footer__logo { height: 46px; width: auto; margin-bottom: 20px; }
.site-footer__hours { font-size: 14px; line-height: 1.8; color: var(--muted-2); }
.site-footer__title { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.site-footer__links { display: grid; gap: 12px; font-size: 15px; }
.site-footer__links--muted { color: var(--muted-2); }
.site-footer__links--muted a { color: var(--gold); }
.site-footer__bottom {
  max-width: 1280px; margin: clamp(30px, 5vw, 50px) auto 0; padding-top: 24px; border-top: 1px solid rgba(242, 235, 223, 0.1);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 13px; color: var(--faint-2);
}
.site-footer__bottom a { color: var(--faint-2); }
.site-footer__bottom a:hover { color: var(--gold); }
.site-footer__meta { display: flex; flex-wrap: wrap; gap: 8px 24px; }

/* ==========================================================================
   Lightbox / booking modal
   ========================================================================== */
.is-lightboxed, .is-lightboxed body { overflow: hidden; }
.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(10, 8, 6, 0.94);
  display: flex; align-items: center; justify-content: center; padding: clamp(12px, 4vw, 56px);
  cursor: zoom-out; animation: rise 0.3s ease both;
}
/* A definite height on the figure is what lets the photo's own max-height:100%
   resolve, so tall shots letterbox instead of running off the screen. */
.lightbox__figure {
  margin: 0; width: 100%; height: 100%; min-width: 0; min-height: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.lightbox img {
  flex: 0 1 auto; min-height: 0;
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain; cursor: default; border-radius: 2px;
}
.lightbox__caption {
  flex-shrink: 0; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--faint); cursor: default;
}
.lightbox__close { position: absolute; top: clamp(12px, 3vw, 28px); right: clamp(12px, 3vw, 28px); }

/* Arrows sit over the backdrop on wide screens and tuck into the bottom
   corners on phones, where the middle of the screen belongs to the photo. */
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: grid; place-items: center; width: 46px; height: 46px; padding: 0;
  border: 1px solid var(--border-gold); border-radius: 50%;
  background: rgba(15, 13, 10, 0.72); color: var(--gold-light);
  cursor: pointer; transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.lightbox__nav svg { width: 19px; height: 19px; }
.lightbox__nav:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.lightbox__nav:focus-visible { outline: 1px solid var(--gold-light); outline-offset: 3px; }
.lightbox__nav--prev { left: clamp(8px, 2.4vw, 30px); }
.lightbox__nav--next { right: clamp(8px, 2.4vw, 30px); }

@media (max-width: 599px) {
  .lightbox__nav { top: auto; bottom: 14px; transform: none; }
  .lightbox__nav--prev { left: 22%; }
  .lightbox__nav--next { right: 22%; }
  .lightbox__figure { padding-bottom: 52px; }
}

.modal {
  position: fixed; inset: 0; z-index: 100; background: rgba(10, 8, 6, 0.78); backdrop-filter: blur(4px);
  display: grid; place-items: start center; padding: clamp(12px, 4vw, 48px); overflow-y: auto;
}
.modal__panel {
  width: 100%; max-width: 560px; background: var(--panel); border: 1px solid var(--border-gold-strong);
  border-radius: 2px; padding: clamp(22px, 4vw, 38px); animation: rise 0.35s ease both;
}
.modal__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 8px; }
.modal__head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 3.4vw, 32px); margin: 0; }
.modal__note { font-size: 14px; color: var(--gold); margin: 0 0 24px; }
.modal__alt { font-size: 13px; color: var(--faint); text-align: center; }

[hidden] { display: none !important; }

/* ==========================================================================
   Menu page — surprise-menu tiers, jump nav, leader-dot dish rows
   ========================================================================== */
.tiers {
  display: grid; grid-template-columns: 1fr; gap: clamp(16px, 2.2vw, 24px);
  margin-bottom: clamp(36px, 5vw, 60px);
}
@media (min-width: 760px) { .tiers { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; } }

.tier {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(24px, 3vw, 34px);
  background: var(--panel); border: 1px solid var(--border-gold); border-radius: 2px;
  transition: border-color 0.5s ease, transform 0.5s cubic-bezier(.22, .61, .36, 1);
}
.tier:hover { border-color: var(--border-gold-strong); transform: translateY(-3px); }
.tier--featured {
  border-color: var(--border-gold-strong);
  background-image: radial-gradient(120% 130% at 82% 0%, rgba(200, 161, 90, 0.14), transparent 62%);
}
.tier__flag {
  position: absolute; top: 0; right: clamp(18px, 2.4vw, 26px); transform: translateY(-50%);
  padding: 5px 12px; background: var(--gold); color: var(--bg);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px;
}
.tier__index {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 0.22em;
  color: var(--gold); margin-bottom: 16px;
}
.tier__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(21px, 2.2vw, 25px); line-height: 1.2; margin: 0 0 10px; }
.tier__price {
  font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 40px); line-height: 1;
  color: var(--gold-light); margin-bottom: 14px;
}
.tier__note { margin: 0 0 auto; font-size: 14px; line-height: 1.7; color: var(--muted-2); }
.tier__cta {
  margin-top: clamp(20px, 2.6vw, 26px); padding: 0 0 6px;
  background: transparent; border: 0; border-bottom: 1px solid var(--border-gold-strong);
  color: var(--gold); cursor: pointer;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.tier__cta:hover { color: var(--gold-light); border-bottom-color: var(--gold); }

.menu-notes { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 4vw, 48px); }
@media (min-width: 860px) { .menu-notes { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); } }
.menu-note .dl-rows { margin-bottom: 16px; }
.menu-note .dl-rows dt em { font-style: italic; color: var(--faint); }

/* Jump nav: sticky under the site header so 36 dishes stay navigable. */
.menu-jump {
  position: sticky; top: clamp(64px, 9vh, 84px); z-index: 20;
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: clamp(30px, 4vw, 46px); padding: 12px 0;
  background: linear-gradient(var(--panel) 82%, rgba(27, 23, 18, 0));
}
.menu-jump__link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px; border: 1px solid var(--border-gold); border-radius: 999px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  transition: border-color 0.4s ease, color 0.4s ease, background-color 0.4s ease;
}
.menu-jump__link:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(200, 161, 90, 0.07); }
.menu-jump__count { font-family: var(--font-display); font-size: 12px; color: var(--faint); }

.course { scroll-margin-top: clamp(120px, 18vh, 170px); }
.course + .course { margin-top: clamp(34px, 5vw, 58px); }

.dish-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: clamp(18px, 2.4vw, 26px); }
@media (min-width: 880px) { .dish-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(30px, 4vw, 56px); } }

.dish-row { margin: 0; }
.dish-row__head { display: flex; align-items: baseline; gap: 10px; }
.dish-row__name { font-family: var(--font-display); font-size: clamp(17px, 1.7vw, 19px); line-height: 1.3; }
/* Dotted leader ties the name to its price the way a printed menu does. */
.dish-row__leader {
  flex: 1 1 auto; min-width: 18px; height: 1px; margin-bottom: 4px;
  background-image: radial-gradient(circle, var(--faint-2) 0.7px, transparent 0.8px);
  background-size: 5px 1px; background-repeat: repeat-x; background-position: 0 100%;
  opacity: 0.75;
}
.dish-row__price { font-family: var(--font-display); font-size: clamp(16px, 1.6vw, 18px); color: var(--gold); white-space: nowrap; }
.dish-row__desc { margin: 8px 0 0; font-size: 14px; line-height: 1.65; color: var(--muted-2); max-width: 54ch; }

.menu-footnote {
  margin: clamp(34px, 5vw, 56px) 0 0; padding-top: clamp(22px, 3vw, 30px);
  border-top: 1px solid var(--border-gold);
  font-size: 14px; line-height: 1.75; color: var(--muted-2); max-width: 78ch;
}

/* ==========================================================================
   Reservation form feedback and the request-received page
   ========================================================================== */
.form__errors {
  padding: 12px 14px; margin-bottom: 16px; border-radius: 2px;
  border: 1px solid rgba(179, 67, 43, 0.5); background: rgba(179, 67, 43, 0.12);
  font-size: 14px; line-height: 1.6;
}
.form__errors p { margin: 0 0 6px; }
.form__errors p:last-child { margin-bottom: 0; }
.form__note { margin: 10px 0 0; font-size: 12px; line-height: 1.6; color: var(--faint); }

/* The honeypot. Off-screen rather than display:none, because some bots skip
   anything explicitly hidden — and aria-hidden plus tabindex keeps it away
   from real people using a keyboard or a screen reader. */
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.received { max-width: 70ch; }
.received__card {
  margin: clamp(24px, 4vw, 36px) 0; padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--border-gold); border-radius: 2px; background: var(--panel);
}
.received__ref { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.received__ref-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.received__ref strong {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0.08em; color: var(--gold-light);
}
/* The separator here divided the facts from the reference above them; the
   facts are now the card's only content, so it would be a stray rule. */
.received__facts { display: grid; gap: 12px; margin: 0; }
.received__facts > div { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 12px; }
.received__facts dt { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.received__facts dd { margin: 0; font-size: 15px; color: var(--muted); }
@media (max-width: 599px) {
  .received__facts > div { grid-template-columns: 1fr; gap: 2px; }
}

.lang-switcher { position: relative; display: inline-flex; }
.lang-switcher__toggle {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  white-space: nowrap; color: var(--muted); background: transparent; border: none;
  padding: 0; margin: 0; cursor: pointer;
}
.lang-switcher__toggle:hover, .lang-switcher.is-open .lang-switcher__toggle { color: var(--gold-light); }
.lang-switcher__chevron { width: 9px; height: 6px; flex-shrink: 0; transition: transform 0.2s ease; }
.lang-switcher.is-open .lang-switcher__chevron { transform: rotate(180deg); }

.lang-switcher__menu {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 90; min-width: 150px;
  background: rgba(20, 17, 13, 0.98); border: 1px solid var(--border-gold); border-radius: 2px;
  padding: 6px 0; margin: 0; list-style: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}
.lang-switcher__option {
  display: block; padding: 10px 18px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); cursor: pointer; white-space: nowrap;
}
.lang-switcher__option:hover { color: var(--gold-light); background: rgba(200, 161, 90, 0.08); }
.lang-switcher__option.is-active { color: var(--gold); }

.drawer .lang-switcher { display: flex; width: 100%; min-height: 52px; align-items: center; border-bottom: 1px solid rgba(242, 235, 223, 0.08); }
.drawer .lang-switcher__toggle { width: 100%; justify-content: space-between; font-size: 15px; }
.drawer .lang-switcher__menu { left: 0; right: 0; top: 100%; }

/* Hides Google's own widget UI (the small gadget it renders inside our
   mount point) — our own dropdown drives it via the googtrans cookie. */
.google-translate-hidden { display: none !important; }

/* Hides the top "Powered by Google Translate" banner iframe Google injects
   during translation, and undoes the inline `top` offset it applies to
   <body> to make room for that banner — translation itself is unaffected,
   only Google's own banner UI is suppressed. Current widget versions give
   the banner an obfuscated class (e.g. "VIpgJd-ZVi9od-ORHb-OEVmcd"), not
   the old "goog-te-banner-frame" name, so target Google's stable
   "skiptranslate" marker (applied to every element it injects) instead. */
iframe.skiptranslate { display: none !important; }
body { top: 0px !important; }

/* ==========================================================================
   Staff shortcut back to the backoffice
   Only rendered for a signed-in user. z-index sits above the page and the
   sticky header (60) but below the language menu (90), the booking modal (100)
   and the lightbox (120), so it can never cover a dialog.
   ========================================================================== */
.admin-jump {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 70;
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 48px; padding: 12px 16px;
  background: var(--gold); color: var(--bg);
  border-radius: 4px 0 0 4px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease, padding-right 0.3s ease;
}
.admin-jump:hover { background: var(--gold-light); color: var(--bg); padding-right: 22px; }
.admin-jump:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
.admin-jump__icon { width: 17px; height: 17px; flex-shrink: 0; }

/* On a phone the label would eat the screen edge, so the icon carries it and
   the accessible name comes from the visually hidden text. */
@media (max-width: 640px) {
  .admin-jump { padding: 12px; min-width: 48px; justify-content: center; }
  .admin-jump__label {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
  }
}

/* Language switcher flags.
   Every flag is in the markup; only the one matching the switcher's data-lang
   is shown. That way the script can change language by setting one attribute
   and never has to rebuild the SVG. */
.lang-switcher__flag {
  display: inline-flex; width: 18px; height: 12px; flex-shrink: 0;
  border-radius: 1px; overflow: hidden;
  /* The Dutch and German flags both end in a pale band, which would otherwise
     bleed into the dark header. */
  box-shadow: inset 0 0 0 1px rgba(242, 235, 223, 0.25);
}
.lang-switcher__flag svg { width: 100%; height: 100%; display: block; }
.lang-switcher__toggle .lang-switcher__flag { display: none; }
.lang-switcher[data-lang="en"] .lang-switcher__toggle .lang-switcher__flag[data-flag="en"],
.lang-switcher[data-lang="nl"] .lang-switcher__toggle .lang-switcher__flag[data-flag="nl"],
.lang-switcher[data-lang="de"] .lang-switcher__toggle .lang-switcher__flag[data-flag="de"] {
  display: inline-flex;
}
.lang-switcher__toggle, .lang-switcher__option { display: flex; align-items: center; gap: 8px; }
