/* ════════════════════════════════════════════════════════════
   VESPERS — design system
   Near-black ground, warm ivory ink, brass accent, thin rules.
   ════════════════════════════════════════════════════════════ */

/* — Fonts (self-hosted) — */
@font-face { font-family: "Cormorant"; src: url("../assets/fonts/cormorant-300.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("../assets/fonts/cormorant-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("../assets/fonts/cormorant-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("../assets/fonts/cormorant-300i.woff2") format("woff2"); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: "Cormorant"; src: url("../assets/fonts/cormorant-400i.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Jost"; src: url("../assets/fonts/jost-300.woff2") format("woff2"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "Jost"; src: url("../assets/fonts/jost-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Jost"; src: url("../assets/fonts/jost-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }

/* — Tokens — */
:root {
  --ink: #0d0c0a;
  --ink-2: #14120f;
  --ink-3: #1c1915;
  --ivory: #ece5d8;
  --ivory-dim: rgba(236, 229, 216, 0.62);
  --ivory-faint: rgba(236, 229, 216, 0.38);
  --brass: #b3915c;
  --brass-dim: rgba(179, 145, 92, 0.55);
  --rule: rgba(179, 145, 92, 0.22);
  --serif: "Cormorant", "Georgia", serif;
  --sans: "Jost", "Futura", "Century Gothic", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --slow: 1.1s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

::selection { background: var(--brass); color: var(--ink); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* Focus — always designed */
:focus { outline: none; }
:focus-visible { outline: 1px solid var(--brass); outline-offset: 4px; }

/* — Shared type — */
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brass);
}
.section { padding: clamp(90px, 14vw, 190px) clamp(24px, 7vw, 120px); position: relative; }
.section-head { max-width: 900px; margin: 0 auto clamp(48px, 7vw, 96px); text-align: center; }
.section-title {
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0.015em;
  margin-top: 26px;
}
.section-sub {
  margin-top: 28px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.14em;
  line-height: 2;
  color: var(--ivory-dim);
}
.lede { font-size: clamp(21px, 2.2vw, 27px); line-height: 1.55; color: var(--ivory); }
.textlink { color: var(--ivory); text-decoration: none; border-bottom: 1px solid var(--brass-dim); transition: color 0.4s var(--ease), border-color 0.4s var(--ease); }
.textlink:hover { color: var(--brass); border-color: var(--brass); }

/* — Buttons — */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 42px 16px 46px;
  border: 1px solid var(--brass);
  cursor: pointer;
  background: transparent;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease), opacity 0.4s var(--ease);
}
.btn-solid { background: var(--brass); color: var(--ink); }
.btn-solid:hover { background: var(--ivory); border-color: var(--ivory); }
.btn-ghost { color: var(--ivory); border-color: rgba(236, 229, 216, 0.35); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn[disabled] { opacity: 0.35; cursor: not-allowed; }

/* — Reveal on scroll — */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
[data-resolve] { filter: blur(14px) brightness(0.7); transform: scale(1.04); transition: filter 1.6s var(--ease), transform 1.6s var(--ease); }
[data-resolve].is-in { filter: blur(0) brightness(1); transform: none; }

/* ═══════════ ARRIVAL ═══════════ */
#arrival {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.4s var(--ease), visibility 0s 1.4s;
}
#arrival.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.arrival-inner { text-align: center; }
.arrival-kicker {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--ivory-faint); margin-bottom: 30px;
  opacity: 0; animation: arrivalFade 1.2s var(--ease) 0.3s forwards;
}
.arrival-name {
  font-weight: 300; font-size: clamp(44px, 9vw, 110px); letter-spacing: 0.3em; margin-left: 0.3em;
}
.arrival-name span { display: inline-block; opacity: 0; transform: translateY(0.4em); animation: arrivalLetter 1.3s var(--ease) forwards; }
.arrival-name span:nth-child(1) { animation-delay: 0.45s; }
.arrival-name span:nth-child(2) { animation-delay: 0.58s; }
.arrival-name span:nth-child(3) { animation-delay: 0.71s; }
.arrival-name span:nth-child(4) { animation-delay: 0.84s; }
.arrival-name span:nth-child(5) { animation-delay: 0.97s; }
.arrival-name span:nth-child(6) { animation-delay: 1.10s; }
.arrival-name span:nth-child(7) { animation-delay: 1.23s; }
.arrival-rule { width: 0; height: 1px; background: var(--brass); margin: 34px auto 26px; animation: arrivalRule 1.2s var(--ease) 1.5s forwards; }
.arrival-sub {
  font-style: italic; font-size: clamp(16px, 2vw, 21px); color: var(--ivory-dim);
  opacity: 0; animation: arrivalFade 1.4s var(--ease) 1.9s forwards;
}
@keyframes arrivalLetter { to { opacity: 1; transform: none; } }
@keyframes arrivalFade { to { opacity: 1; } }
@keyframes arrivalRule { to { width: 120px; } }

/* ═══════════ HEADER ═══════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transform: translateY(-102%);
  transition: transform 0.9s var(--ease), background 0.6s var(--ease), border-color 0.6s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
#site-header.is-visible { transform: none; }
#site-header.is-solid { background: rgba(13, 12, 10, 0.88); backdrop-filter: blur(12px); border-bottom-color: var(--rule); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px); height: 72px;
}
.nav-mark {
  font-family: var(--serif); font-size: 26px; font-weight: 400; color: var(--brass);
  text-decoration: none; line-height: 1;
}
.nav-menu { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); list-style: none; }
.nav-menu a {
  font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory-dim); text-decoration: none; transition: color 0.4s var(--ease);
  padding: 8px 0; position: relative;
}
.nav-menu a::after {
  content: ""; position: absolute; left: 0; bottom: 2px; height: 1px; width: 0;
  background: var(--brass); transition: width 0.5s var(--ease);
}
.nav-menu a:hover, .nav-menu a.is-current { color: var(--ivory); }
.nav-menu a:hover::after, .nav-menu a.is-current::after { width: 100%; }
.nav-cta a { border: 1px solid var(--brass-dim); padding: 11px 22px 9px 26px; color: var(--brass); }
.nav-cta a::after { display: none; }
.nav-cta a:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.nav-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; }
#nav-progress-bar { display: block; height: 1px; width: 0; background: var(--brass); transition: width 0.2s linear; }
.nav-toggle { display: none; }

/* ═══════════ HERO ═══════════ */
.hero { position: relative; height: 100svh; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: -12% 0; z-index: 0; will-change: transform; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(13,12,10,0.94) 0%, rgba(13,12,10,0.35) 45%, rgba(13,12,10,0.55) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 0 clamp(24px, 7vw, 120px) clamp(90px, 12vh, 150px); max-width: 1100px; }
.hero-title {
  font-size: clamp(52px, 8.5vw, 118px);
  font-weight: 300; line-height: 1.02; letter-spacing: 0.01em; margin: 30px 0 34px;
}
.hero-title em { font-style: italic; color: var(--brass); }
.hero-sub { font-size: clamp(16px, 1.6vw, 20px); line-height: 1.8; color: var(--ivory-dim); font-style: italic; }
.hero-actions { display: flex; gap: 20px; margin-top: 46px; flex-wrap: wrap; }
.hero-scrollcue {
  position: absolute; z-index: 2; right: clamp(24px, 6vw, 90px); bottom: 44px;
  display: flex; flex-direction: column; align-items: center; gap: 14px; text-decoration: none;
}
.hero-scrollcue span {
  font-family: var(--sans); font-size: 9px; letter-spacing: 0.44em; text-transform: uppercase;
  color: var(--ivory-faint); writing-mode: vertical-rl;
}
.hero-scrollcue i { width: 1px; height: 64px; background: var(--rule); position: relative; overflow: hidden; }
.hero-scrollcue i::after {
  content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--brass); animation: cueDrop 2.6s var(--ease) infinite;
}
@keyframes cueDrop { 0% { top: -100%; } 55% { top: 0; } 100% { top: 100%; } }

/* ═══════════ MANIFESTO ═══════════ */
.manifesto { text-align: center; max-width: 1000px; margin: 0 auto; }
.manifesto-line {
  font-size: clamp(24px, 3.4vw, 42px); line-height: 1.5; font-weight: 300;
  color: var(--ivory-dim); padding: 0 8px;
}
.manifesto-accent { font-style: italic; color: var(--brass); }

/* ═══════════ CHEF ═══════════ */
.chef { background: var(--ink-2); }
.chef-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 110px); max-width: 1280px; margin: 0 auto; align-items: start;
}
.chef-portrait { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.chef-portrait figcaption, .chef-wide figcaption, .room-fig figcaption, .visit-fig figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 22px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory-dim); background: linear-gradient(to top, rgba(13,12,10,0.85), transparent);
}
.chef-story p + p { margin-top: 26px; color: var(--ivory-dim); }
.tenets { list-style: none; margin-top: 52px; border-top: 1px solid var(--rule); }
.tenets li {
  padding: 20px 0; border-bottom: 1px solid var(--rule);
  font-size: clamp(18px, 1.8vw, 22px); font-style: italic; display: flex; gap: 22px; align-items: baseline;
}
.tenet-no { font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: 0.2em; color: var(--brass); }
.chef-wide { position: relative; overflow: hidden; aspect-ratio: 21/9; max-width: 1280px; margin: clamp(60px, 8vw, 120px) auto 0; }

/* ═══════════ ROOM ═══════════ */
.room-intro { max-width: 760px; margin: 0 auto clamp(48px, 7vw, 90px); text-align: center; }
.room-gallery {
  max-width: 1380px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2.5vw, 36px); align-items: start;
}
.room-fig { position: relative; overflow: hidden; }
.room-fig-a { grid-column: 1 / 8; aspect-ratio: 16/10; }
.room-fig-b { grid-column: 8 / 13; aspect-ratio: 3/4; margin-top: clamp(40px, 6vw, 110px); }
.room-fig-c { grid-column: 1 / 6; aspect-ratio: 4/5; margin-top: clamp(-40px, -3vw, -10px); }
.room-fig-d { grid-column: 6 / 13; aspect-ratio: 16/9; margin-top: clamp(30px, 5vw, 90px); }
.room-facts {
  max-width: 1380px; margin: clamp(56px, 7vw, 100px) auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.room-facts > div { padding: 30px 26px; border-right: 1px solid var(--rule); }
.room-facts > div:last-child { border-right: none; }
.room-facts dt {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--brass); margin-bottom: 12px;
}
.room-facts dd { font-size: 19px; font-style: italic; color: var(--ivory-dim); }

/* ═══════════ TASTING ═══════════ */
.tasting { background: var(--ink-2); }
.course-list { list-style: none; max-width: 1080px; margin: 0 auto; }
.course-item { border-top: 1px solid var(--rule); }
.course-item:last-child { border-bottom: 1px solid var(--rule); }
.course-row {
  display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: clamp(18px, 4vw, 56px);
  width: 100%; padding: clamp(26px, 4vw, 44px) clamp(4px, 1vw, 20px);
  background: none; border: none; cursor: pointer; text-align: left; color: inherit;
  font: inherit; position: relative; transition: background 0.5s var(--ease);
}
.course-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(to right, rgba(179,145,92,0.08), transparent);
  transition: width 0.7s var(--ease);
}
.course-row:hover::before, .course-row:focus-visible::before { width: 100%; }
.course-no {
  font-family: var(--serif); font-size: clamp(22px, 2.6vw, 34px); color: var(--brass);
  font-weight: 300; letter-spacing: 0.08em;
}
.course-name { display: block; font-size: clamp(21px, 2.6vw, 32px); font-weight: 300; letter-spacing: 0.01em; }
.course-brief {
  display: block;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ivory-faint); margin-top: 8px; font-weight: 300;
}
.course-open {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass); white-space: nowrap; display: flex; align-items: center; gap: 12px;
  opacity: 0.6; transition: opacity 0.4s var(--ease), gap 0.4s var(--ease);
}
.course-row:hover .course-open { opacity: 1; gap: 18px; }
.tasting-foot { max-width: 640px; margin: 48px auto 0; text-align: center; font-style: italic; color: var(--ivory-dim); font-size: 17px; }

/* — Course viewer — */
.course-viewer { position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center; }
.course-viewer[hidden] { display: none; }
.viewer-scrim { position: absolute; inset: 0; background: rgba(13,12,10,0.94); backdrop-filter: blur(8px); }
.viewer-stage {
  position: relative; z-index: 1; width: min(1160px, 94vw); max-height: 92svh;
  display: grid; grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  background: var(--ink-2); border: 1px solid var(--rule);
  opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.course-viewer.is-open .viewer-stage { opacity: 1; transform: none; }
.viewer-media { overflow: hidden; min-height: 320px; max-height: 92svh; }
/* a single quiet grade keeps the whole set in one light */
.viewer-media img { transition: opacity 0.7s var(--ease), transform 8s linear; filter: saturate(0.9) brightness(0.93); }
.viewer-body { padding: clamp(28px, 4vw, 64px); display: flex; flex-direction: column; justify-content: center; overflow-y: auto; }
.viewer-course-no { font-size: 15px; letter-spacing: 0.3em; color: var(--brass); margin-bottom: 18px; }
.viewer-name { font-size: clamp(28px, 3.4vw, 44px); font-weight: 300; line-height: 1.1; }
.viewer-desc { margin-top: 20px; font-style: italic; font-size: clamp(17px, 1.6vw, 20px); color: var(--ivory-dim); }
.viewer-detail { margin-top: 24px; font-size: 15.5px; line-height: 1.75; color: var(--ivory-faint); }
.viewer-pour { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--rule); }
.viewer-pour-label { font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--brass); }
.viewer-pour p { margin-top: 10px; font-style: italic; font-size: 16px; color: var(--ivory-dim); }
.viewer-progress { display: flex; gap: 8px; margin-top: 40px; }
.viewer-progress i { height: 1px; flex: 1; background: var(--rule); position: relative; }
.viewer-progress i.is-done::after { content: ""; position: absolute; inset: 0; background: var(--brass); }
.viewer-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--rule); background: rgba(13,12,10,0.7); color: var(--ivory);
  font-size: 20px; cursor: pointer; transition: border-color 0.4s var(--ease), color 0.4s var(--ease), background 0.4s var(--ease);
}
.viewer-nav:hover { border-color: var(--brass); color: var(--brass); }
.viewer-prev { left: -28px; }
.viewer-next { right: -28px; }
.viewer-close {
  position: absolute; top: 14px; right: 18px; z-index: 2;
  background: none; border: none; color: var(--ivory-dim); font-size: 30px; font-weight: 300;
  cursor: pointer; line-height: 1; padding: 8px; transition: color 0.4s var(--ease);
}
.viewer-close:hover { color: var(--brass); }

/* ═══════════ À LA CARTE ═══════════ */
.alc-filters { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: clamp(40px, 5vw, 70px); }
.chip {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ivory-dim); background: none; border: 1px solid var(--rule);
  padding: 11px 20px 9px 23px; cursor: pointer;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.chip:hover { border-color: var(--brass-dim); color: var(--ivory); }
.chip.is-active { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.chip-quiet { border-style: dashed; }
.alc-section { max-width: 900px; margin: 0 auto; }
.alc-section + .alc-section { margin-top: clamp(44px, 6vw, 72px); }
.alc-section-head { display: flex; align-items: baseline; gap: 26px; margin-bottom: 8px; }
.alc-section-head h3 { font-size: clamp(24px, 2.6vw, 32px); font-weight: 300; font-style: italic; white-space: nowrap; }
.alc-section-head .rule { flex: 1; height: 1px; background: var(--rule); }
.alc-item {
  display: grid; grid-template-columns: 1fr auto; gap: 8px 28px;
  padding: 24px 6px; border-bottom: 1px solid rgba(179,145,92,0.12);
  transition: background 0.4s var(--ease), opacity 0.6s var(--ease);
}
.alc-item:hover { background: rgba(179,145,92,0.05); }
.alc-item.is-hidden { display: none; }
.alc-name { font-size: 21px; font-weight: 400; display: flex; align-items: baseline; gap: 14px; }
.alc-tag { font-family: var(--sans); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-dim); }
.alc-desc { grid-column: 1; font-style: italic; color: var(--ivory-dim); font-size: 16.5px; }
.alc-price { grid-column: 2; grid-row: 1 / 3; font-size: 20px; color: var(--brass); align-self: center; }
.alc-foot { max-width: 620px; margin: 56px auto 0; text-align: center; font-style: italic; color: var(--ivory-dim); font-size: 16.5px; }

/* ═══════════ CELLAR ═══════════ */
.cellar { padding-left: 0; padding-right: 0; }
.cellar-hero { position: relative; height: min(78svh, 760px); overflow: hidden; display: flex; align-items: flex-end; }
.cellar-hero img { position: absolute; inset: -12% 0; height: 124%; will-change: transform; }
.cellar-hero-scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,12,10,0.96) 4%, rgba(13,12,10,0.25) 60%, rgba(13,12,10,0.5)); }
.cellar-hero-copy { position: relative; z-index: 1; padding: 0 clamp(24px, 7vw, 120px) clamp(56px, 8vh, 100px); max-width: 1000px; }
.cellar-tools { padding: 0 clamp(24px, 7vw, 120px); margin-top: clamp(48px, 6vw, 80px); }
.cellar-search { position: relative; max-width: 720px; margin: 0 auto 40px; }
.cellar-search input {
  width: 100%; background: none; border: none; border-bottom: 1px solid var(--rule);
  font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2vw, 24px);
  color: var(--ivory); padding: 16px 140px 16px 4px; transition: border-color 0.5s var(--ease);
}
.cellar-search input::placeholder { color: var(--ivory-faint); }
.cellar-search input:focus { border-bottom-color: var(--brass); }
.cellar-count {
  position: absolute; right: 4px; bottom: 20px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ivory-faint);
}
.cellar-filters { max-width: 1080px; margin: 0 auto; }
.filter-row { display: grid; grid-template-columns: 110px 1fr; gap: 20px; align-items: start; padding: 16px 0; border-top: 1px solid rgba(179,145,92,0.12); }
.filter-label {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--brass); padding-top: 13px;
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-row .chip { padding: 9px 16px 7px 18px; font-size: 9.5px; }
.wine-list { max-width: 1080px; margin: clamp(36px, 5vw, 60px) auto 0; padding: 0 clamp(24px, 7vw, 120px); }
.wine-row {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 2fr) auto; gap: 12px 28px;
  width: 100%; align-items: baseline; text-align: left;
  padding: 22px 10px; border: none; border-bottom: 1px solid rgba(179,145,92,0.12);
  background: none; color: inherit; font: inherit; cursor: pointer;
  transition: background 0.4s var(--ease);
}
.wine-row:hover { background: rgba(179,145,92,0.05); }
.wine-row-name { font-size: 20px; font-weight: 400; }
.wine-row-producer { display: block; font-style: italic; color: var(--ivory-dim); font-size: 16px; margin-top: 2px; }
.wine-row-meta { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ivory-faint); line-height: 1.9; }
.wine-row-vintage { font-size: 19px; color: var(--ivory-dim); font-style: italic; }
.wine-row-price { font-size: 19px; color: var(--brass); white-space: nowrap; }
.wine-row-price small { display: block; font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-faint); text-align: right; margin-top: 4px; }
.wine-group-label {
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--brass); margin: 44px 0 6px; padding: 0 10px;
}
.wine-group-label:first-child { margin-top: 0; }
.wine-empty { text-align: center; padding: clamp(60px, 8vw, 110px) 24px; max-width: 560px; margin: 0 auto; }
.wine-empty-line { font-size: clamp(24px, 3vw, 32px); font-style: italic; }
.wine-empty-sub { margin: 22px 0 36px; color: var(--ivory-dim); font-size: 16.5px; }
.cellar-foot { max-width: 680px; margin: clamp(48px, 6vw, 80px) auto 0; padding: 0 24px; text-align: center; font-style: italic; color: var(--ivory-dim); font-size: 16px; }

/* — Wine modal — */
.wine-modal { position: fixed; inset: 0; z-index: 150; display: flex; align-items: center; justify-content: center; padding: 4vw; }
.wine-modal[hidden] { display: none; }
.modal-scrim { position: absolute; inset: 0; background: rgba(13,12,10,0.92); backdrop-filter: blur(8px); }
.modal-card {
  position: relative; z-index: 1; width: min(680px, 100%); max-height: 90svh; overflow-y: auto;
  background: var(--ink-2); border: 1px solid var(--rule); padding: clamp(34px, 5vw, 64px);
  opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.wine-modal.is-open .modal-card { opacity: 1; transform: none; }
.modal-region { font-family: var(--sans); font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--brass); }
.modal-name { font-size: clamp(28px, 3.6vw, 40px); font-weight: 300; line-height: 1.12; margin-top: 18px; }
.modal-producer { font-style: italic; font-size: 20px; color: var(--ivory-dim); margin-top: 8px; }
.modal-desc { margin-top: 26px; font-size: 17px; line-height: 1.8; color: var(--ivory-dim); }
.modal-specs { list-style: none; margin-top: 30px; border-top: 1px solid var(--rule); }
.modal-specs li { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-bottom: 1px solid rgba(179,145,92,0.12); }
.modal-specs dt { font-family: var(--sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ivory-faint); padding-top: 3px; }
.modal-specs dd { font-size: 16.5px; text-align: right; }
.modal-price-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 30px; }
.modal-price { font-size: 30px; color: var(--brass); }
.modal-glass { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ivory-faint); }
.modal-occasions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.modal-close {
  position: absolute; top: 12px; right: 16px; background: none; border: none;
  color: var(--ivory-dim); font-size: 28px; cursor: pointer; padding: 8px; line-height: 1;
  transition: color 0.4s var(--ease);
}
.modal-close:hover { color: var(--brass); }

/* ═══════════ PRIVATE ═══════════ */
.private { background: var(--ink-2); }
.private-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 110px); max-width: 1280px; margin: 0 auto; align-items: center;
}
.private-fig { overflow: hidden; aspect-ratio: 4/3; }
.private-copy .section-title { margin: 22px 0 30px; }
.private-copy .lede { margin-bottom: 34px; }
.private-copy p { color: var(--ivory-dim); }
.private-list { list-style: none; margin-bottom: 34px; border-top: 1px solid var(--rule); }
.private-list li { padding: 20px 0; border-bottom: 1px solid var(--rule); }
.private-list strong { display: block; font-weight: 400; font-size: 20px; }
.private-list span { font-style: italic; color: var(--ivory-dim); font-size: 16px; }

/* ═══════════ RESERVATIONS ═══════════ */
.reserve-flow { max-width: 1080px; margin: 0 auto; border: 1px solid var(--rule); background: var(--ink-2); }
.flow-steps {
  list-style: none; display: flex; border-bottom: 1px solid var(--rule);
}
.flow-step {
  flex: 1; padding: 22px 12px; text-align: center;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ivory-faint); position: relative; transition: color 0.5s var(--ease);
}
.flow-step::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: var(--brass); transform: scaleX(0); transition: transform 0.7s var(--ease); }
.flow-step.is-current { color: var(--brass); }
.flow-step.is-current::after, .flow-step.is-done::after { transform: none; }
.flow-step.is-done { color: var(--ivory-dim); }
.flow-panel { padding: clamp(28px, 5vw, 64px); border: none; }
.flow-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); }
.flow-label { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.flow-label-gap { margin-top: 40px; }
.flow-hint { font-style: italic; font-size: 14.5px; color: var(--ivory-faint); margin-top: 18px; }
.flow-actions { display: flex; justify-content: flex-end; align-items: center; gap: 18px; margin-top: 44px; flex-wrap: wrap; }
.flow-error { font-style: italic; color: #c98a6a; margin-right: auto; }

/* calendar */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cal-month { font-size: 21px; font-style: italic; }
.cal-nav { background: none; border: 1px solid var(--rule); color: var(--ivory-dim); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 15px; transition: border-color 0.4s, color 0.4s; }
.cal-nav:hover:not([disabled]) { border-color: var(--brass); color: var(--brass); }
.cal-nav[disabled] { opacity: 0.25; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { font-family: var(--sans); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-faint); text-align: center; padding: 8px 0; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid transparent; color: var(--ivory);
  font-family: var(--serif); font-size: 17px; cursor: pointer; border-radius: 50%;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
}
.cal-day:hover:not([disabled]) { border-color: var(--brass-dim); }
.cal-day.is-selected { background: var(--brass); color: var(--ink); }
.cal-day[disabled] { color: rgba(236,229,216,0.18); cursor: not-allowed; }
.cal-day.is-today { border-color: var(--rule); }
.cal-day.is-empty { visibility: hidden; }

/* party & seating */
.party-picker { display: flex; flex-wrap: wrap; gap: 10px; }
.party-btn {
  width: 52px; height: 52px; border-radius: 50%; background: none; border: 1px solid var(--rule);
  color: var(--ivory); font-family: var(--serif); font-size: 19px; cursor: pointer;
  transition: all 0.35s var(--ease);
}
.party-btn:hover { border-color: var(--brass-dim); }
.party-btn.is-selected { background: var(--brass); border-color: var(--brass); color: var(--ink); }
.seating-picker { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.seating-btn {
  background: none; border: 1px solid var(--rule); padding: 15px 10px 13px;
  color: var(--ivory); cursor: pointer; text-align: center;
  transition: all 0.35s var(--ease);
}
.seating-btn .st-time { display: block; font-family: var(--serif); font-size: 19px; }
.seating-btn .st-label { display: block; font-family: var(--sans); font-size: 8.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ivory-faint); margin-top: 5px; }
.seating-btn:hover:not([disabled]) { border-color: var(--brass-dim); }
.seating-btn.is-selected { background: var(--brass); border-color: var(--brass); }
.seating-btn.is-selected .st-time, .seating-btn.is-selected .st-label { color: var(--ink); }
.seating-btn[disabled] { opacity: 0.28; cursor: not-allowed; }
.seating-btn[disabled] .st-label { color: #c98a6a; }

/* fields */
.field { display: block; margin-bottom: 26px; }
.field span {
  display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 12px;
}
.field span i { color: var(--ivory-faint); text-transform: none; letter-spacing: 0.06em; font-family: var(--serif); font-size: 13px; }
.field input, .field select, .field textarea {
  width: 100%; background: none; border: none; border-bottom: 1px solid var(--rule);
  font-family: var(--serif); font-size: 19px; color: var(--ivory); padding: 10px 2px 12px;
  transition: border-color 0.4s var(--ease); border-radius: 0;
}
.field textarea { resize: vertical; min-height: 96px; font-size: 17px; font-style: italic; }
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--ink-2); color: var(--ivory); }
.field input::placeholder, .field textarea::placeholder { color: var(--ivory-faint); font-style: italic; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--brass); }
.field.has-error input { border-bottom-color: #c98a6a; }
.field-error { display: block; font-size: 14px; color: #c98a6a; margin-top: 8px; }

/* review + confirmation */
.review-card { border: 1px solid var(--rule); padding: clamp(24px, 4vw, 44px); }
.review-row { display: flex; justify-content: space-between; gap: 24px; padding: 14px 0; border-bottom: 1px solid rgba(179,145,92,0.12); }
.review-row:last-child { border-bottom: none; }
.review-row dt { font-family: var(--sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ivory-faint); padding-top: 5px; white-space: nowrap; }
.review-row dd { font-size: 18px; text-align: right; }
.flow-confirm { text-align: center; padding: clamp(48px, 7vw, 90px) clamp(24px, 5vw, 64px); }
.confirm-kicker { font-family: var(--sans); font-size: 11px; letter-spacing: 0.42em; text-transform: uppercase; color: var(--brass); }
.confirm-title { font-size: clamp(30px, 4vw, 46px); font-weight: 300; margin: 22px 0 40px; }
.confirm-card { max-width: 460px; margin: 0 auto 36px; border: 1px solid var(--rule); padding: 30px; text-align: left; }
.confirm-card .review-row dd { font-size: 17px; }
.confirm-ref { font-family: var(--sans) !important; font-size: 13px !important; letter-spacing: 0.24em; color: var(--brass) !important; }
.confirm-note { max-width: 480px; margin: 0 auto 36px; font-style: italic; color: var(--ivory-dim); font-size: 16px; }

/* ═══════════ VISIT ═══════════ */
.visit { background: var(--ink-2); }
.visit-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--rule);
}
.visit-block { padding: 36px 30px 8px; border-right: 1px solid var(--rule); }
.visit-block:last-child { border-right: none; }
.visit-block h3 {
  font-family: var(--sans); font-size: 10.5px; font-weight: 400; letter-spacing: 0.36em;
  text-transform: uppercase; color: var(--brass); margin-bottom: 22px;
}
.visit-block p { font-size: 17.5px; line-height: 1.8; }
.visit-dim { margin-top: 18px; font-style: italic; font-size: 15px !important; color: var(--ivory-faint); }
.visit-fig { position: relative; overflow: hidden; aspect-ratio: 21/9; max-width: 1280px; margin: clamp(56px, 8vw, 110px) auto 0; }

/* ═══════════ FOOTER ═══════════ */
.footer { padding: clamp(80px, 11vw, 150px) clamp(24px, 7vw, 120px) 48px; text-align: center; }
.footer-mark { font-size: clamp(34px, 5vw, 56px); letter-spacing: 0.42em; margin-left: 0.42em; font-weight: 300; }
.footer-line { font-style: italic; color: var(--ivory-dim); margin-top: 18px; }
.footer-news { max-width: 560px; margin: clamp(56px, 7vw, 90px) auto; }
.footer-news-title { font-size: 20px; font-style: italic; color: var(--ivory-dim); margin-bottom: 30px; }
#news-form { display: flex; gap: 0; border-bottom: 1px solid var(--rule); }
#news-form input {
  flex: 1; background: none; border: none; font-family: var(--serif); font-style: italic;
  font-size: 19px; color: var(--ivory); padding: 14px 4px;
}
#news-form input::placeholder { color: var(--ivory-faint); }
#news-form .btn { border: none; background: none; color: var(--brass); padding: 14px 10px; }
#news-form .btn:hover { color: var(--ivory); }
.news-msg { margin-top: 18px; font-style: italic; font-size: 15px; color: var(--brass); min-height: 24px; }
.news-msg.is-error { color: #c98a6a; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--rule); padding-top: 32px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ivory-faint);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1020px) {
  .room-facts, .visit-grid { grid-template-columns: repeat(2, 1fr); }
  .room-facts > div:nth-child(2) { border-right: none; }
  .room-facts > div:nth-child(1), .room-facts > div:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .visit-block:nth-child(2) { border-right: none; }
  .visit-block:nth-child(1), .visit-block:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .viewer-stage { grid-template-columns: 1fr; max-height: 94svh; overflow-y: auto; }
  .viewer-media { max-height: 38svh; min-height: 240px; }
  .viewer-body { padding-top: 48px; padding-bottom: 92px; }
  .viewer-nav { top: auto; bottom: 22px; transform: none; width: 52px; height: 52px; background: rgba(13,12,10,0.85); }
  .viewer-prev { left: 22px; }
  .viewer-next { right: 22px; }
  .viewer-close { color: var(--ivory); background: rgba(13,12,10,0.6); border-radius: 50%; }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex; align-items: center; gap: 12px; background: none; border: none; cursor: pointer;
    font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ivory);
    padding: 10px 0;
  }
  .nav-toggle-line { display: block; width: 26px; height: 1px; background: var(--brass); transition: transform 0.5s var(--ease), opacity 0.5s; }
  .nav-toggle-line + .nav-toggle-line { margin-top: 7px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: flex-start;
    background: rgba(13,12,10,0.97); backdrop-filter: blur(14px);
    padding: 28px clamp(24px, 7vw, 56px) 40px; gap: 4px;
    border-bottom: 1px solid var(--rule);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0s 0.5s;
  }
  .nav-menu.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; font-size: 13px; padding: 14px 0; }
  .nav-cta a { border: none; padding: 14px 0; }
  .chef-grid, .private-grid, .flow-grid { grid-template-columns: 1fr; }
  .private-fig { order: -1; }
  .room-fig-a { grid-column: 1 / 13; }
  .room-fig-b { grid-column: 1 / 8; margin-top: 0; }
  .room-fig-c { grid-column: 8 / 13; margin-top: 24px; }
  .room-fig-d { grid-column: 1 / 13; margin-top: 0; }
  .course-row { grid-template-columns: 56px 1fr; }
  .course-open { display: none; }
  .filter-row { grid-template-columns: 1fr; gap: 10px; }
  .filter-label { padding-top: 0; }
  .wine-row { grid-template-columns: minmax(0, 1fr) auto; }
  .wine-row-meta { display: none; }
  .wine-row-vintage { display: none; }
  .hero-scrollcue { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
  .seating-picker { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .kicker { letter-spacing: 0.3em; }
  .hero-scrim { background: linear-gradient(to top, rgba(13,12,10,0.97) 0%, rgba(13,12,10,0.55) 55%, rgba(13,12,10,0.6) 100%); }
  .room-facts, .visit-grid { grid-template-columns: 1fr; }
  .room-facts > div, .visit-block { border-right: none; border-bottom: 1px solid var(--rule); }
  .visit-block:last-child { border-bottom: none; }
  .room-facts > div:last-child { border-bottom: none; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .cal-grid { gap: 2px; }
  .cal-day { font-size: 15px; }
  .flow-steps .flow-step span { display: none; }
  .flow-step::before { content: attr(data-step-dot); font-family: var(--serif); font-size: 17px; }
}
