/* EMBER & SALT — ported design system (ex-Next.js/Tailwind, now Hugo + vanilla CSS) */
:root {
  --porcelain: #F5F0E8;
  --paper: #FFFFFF;
  --parchment: #EFE7D6;
  --ink: #221A12;
  --cellar: #1C1410;
  --cellar2: #241A13;
  --ember: #B3341A;
  --brass: #C8A96E;
  --brassdeep: #9A7B45;
  --cream-glow: #E4C98F;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-food: cubic-bezier(0.34, 1.3, 0.64, 1);
  --space-section: clamp(72px, 9vw + 32px, 170px);
  --gutter: clamp(20px, 3vw + 8px, 56px);
  --fs-hero: clamp(3.2rem, 4vw + 2rem, 6rem);
  --fs-giant: clamp(4rem, 13vw, 13rem);
  --fs-h2: clamp(2rem, 1.4vw + 1.7rem, 2.9rem);
  --fs-h3: clamp(1.4rem, 0.7vw + 1.25rem, 1.9rem);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.2vw + 0.96rem, 1.125rem);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.font-display { font-family: var(--font-display); }
.tnum { font-variant-numeric: tabular-nums; }
.eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; }
.wrap { max-width: 1240px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* film grain */
.grain::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 90; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* grounds */
.linen { position: relative; background: radial-gradient(1200px 520px at 50% -10%, rgba(20,18,16,0.045), transparent 60%), var(--paper); }
.cellar { position: relative; color: var(--porcelain); background: radial-gradient(1000px 520px at 85% 110%, rgba(200,169,110,0.13), transparent 60%), radial-gradient(800px 420px at 8% -10%, rgba(179,52,26,0.14), transparent 60%), var(--cellar); }

/* header */
.progress-line { position: fixed; top: 0; left: 0; height: 2px; z-index: 100; background: var(--ember); width: 0; }
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 95; transition: transform 0.32s var(--ease-out), background 0.3s; color: var(--porcelain); }
.site-header.solid { background: rgba(28,20,16,0.9); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(200,169,110,0.25); }
.site-header.clear { background: linear-gradient(180deg, rgba(10,8,6,0.82) 0%, rgba(10,8,6,0.45) 55%, transparent 100%); }
.site-header.clear nav a, .site-header.clear .brand { text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 0 18px rgba(0,0,0,0.8); }
.site-header.hidden-up { transform: translateY(-100%); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 768px) { .header-inner { height: 76px; } }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 900; font-size: 1.15rem; letter-spacing: 0.08em; }
.brand svg { color: var(--brass); }
.brand em { font-style: italic; font-weight: 400; color: var(--brass); }
.main-nav { display: none; gap: 32px; }
@media (min-width: 768px) { .main-nav { display: flex; } }
.main-nav a { text-decoration: none; opacity: 0.8; }
.main-nav a:hover { opacity: 1; }
.draw-link { position: relative; }
.draw-link::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 1px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease-out); }
.draw-link:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-btn { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(200,169,110,0.5); background: transparent; color: inherit; cursor: pointer; }
@media (min-width: 768px) { .menu-btn { display: none; } }
.mobile-nav { position: fixed; inset: 0; z-index: 94; display: none; flex-direction: column; justify-content: center; padding: 40px; }
.mobile-nav.open { display: flex; }
.mobile-nav a.big { font-family: var(--font-display); font-weight: 900; font-size: 3rem; padding: 12px 0; border-bottom: 1px solid rgba(245,240,232,0.1); text-decoration: none; }
.mobile-nav a.big:hover { color: var(--brass); font-style: italic; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; padding: 14px 28px; border-radius: 999px; text-decoration: none; cursor: pointer; border: 1px solid var(--brass); transition: transform 0.2s var(--ease-out), box-shadow 0.32s; }
.btn-pour { position: relative; isolation: isolate; overflow: hidden; color: var(--porcelain); }
.btn-pour::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, #8a6a35, var(--brass) 60%, var(--cream-glow)); transform: scaleX(0); transform-origin: left center; transition: transform 0.38s var(--ease-out), filter 0.32s; }
.btn-pour:hover::before { transform: scaleX(1); filter: brightness(0.55) saturate(1.2); }
.btn-pour:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.5); }
.btn-pour-dark { color: var(--ink) !important; border-color: var(--ink); }
.btn-pour-dark::before { background: linear-gradient(100deg, #5E1D0E, var(--ember) 60%, #C64A2E); }
.btn-solid { background: var(--porcelain); color: var(--cellar); border-color: var(--porcelain); }
.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,0.4); }

/* hero */
.hero { position: relative; min-height: 100svh; overflow: clip; background: var(--cellar); color: var(--porcelain); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg canvas, .hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,18,16,0.78) 0%, rgba(20,18,16,0.45) 45%, transparent 75%), linear-gradient(180deg, rgba(20,18,16,0.35), transparent 30%, transparent 55%, rgba(13,10,8,0.85)); }
.hero-ignite { position: absolute; inset: 0; background: #0d0a08; opacity: 1; transition: opacity 0.9s var(--ease-out); }
.hero-ignite.lifted { opacity: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 10; display: flex; flex-direction: column; justify-content: flex-end; min-height: 100svh; padding-top: 112px; padding-bottom: 56px; }
.hero h1 { font-family: var(--font-display); font-weight: 900; line-height: 0.9; letter-spacing: -0.02em; margin-top: 16px; font-size: var(--fs-hero); }
.hero h1 .ch { display: inline-block; }
.hero h1 .amp { color: var(--ember); }
.hero .plate-dot { display: inline-block; position: relative; width: 1.4em; height: 1.4em; font-size: 0.55em; vertical-align: middle; margin: 0 0.15em; border-radius: 999px; overflow: hidden; box-shadow: 0 18px 50px rgba(230,58,31,0.45); }
.hero .plate-dot img { width: 100%; height: 100%; object-fit: cover; }
.miles-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--porcelain); background: rgba(0,0,0,0.35); border: 1px solid rgba(200,169,110,0.4); border-radius: 999px; padding: 4px 12px; }

/* press crawl */
.press-strip { overflow: hidden; border-top: 1px solid rgba(200,169,110,0.25); border-bottom: 1px solid rgba(200,169,110,0.25); }
.crawl-track { display: flex; width: max-content; animation: crawl-x 60s linear infinite; align-items: center; padding: 14px 0; }
@keyframes crawl-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.crawl-item { display: flex; align-items: center; gap: 12px; padding: 0 32px; white-space: nowrap; }
.crawl-item svg { color: var(--brass); }
.crawl-item span.t { font-family: var(--font-display); font-style: italic; font-size: 15px; color: rgba(245,240,232,0.85); }
.crawl-item span.d { color: var(--brass); font-size: 9px; }

/* ticket + perforation + leaders + rules */
.ticket { --notch: 14px; -webkit-mask: radial-gradient(circle var(--notch) at 0 50%, transparent 98%, black 100%), radial-gradient(circle var(--notch) at 100% 50%, transparent 98%, black 100%); -webkit-mask-composite: source-in; mask-composite: intersect; mask: radial-gradient(circle var(--notch) at 0 50%, transparent 98%, black 100%), radial-gradient(circle var(--notch) at 100% 50%, transparent 98%, black 100%); }
.perforation { background-image: linear-gradient(90deg, currentColor 45%, transparent 40%); background-size: 10px 1px; background-repeat: repeat-x; height: 1px; opacity: 0.4; }
.gold-rule { display: flex; align-items: center; gap: 12px; color: var(--brass); }
.gold-rule::before, .gold-rule::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, rgba(200,169,110,0.7), transparent); }

/* divider ornament */
.divider-fork { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 8px 0; user-select: none; }
.divider-fork .medal { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 999px; border: 1px solid; position: relative; flex-shrink: 0; }
.divider-fork .medal .inner { position: absolute; inset: 5px; border-radius: 999px; border: 1px solid; opacity: 0.5; }
.flame-flicker { animation: flick 3.2s ease-in-out infinite; transform-origin: 50% 80%; display: grid; place-items: center; }
@keyframes flick { 0%,100% { transform: scale(1) rotate(-1.2deg); opacity: 1; } 30% { transform: scale(1.06,1.1) rotate(1deg); opacity: 0.92; } 55% { transform: scale(0.97,0.95) rotate(-0.5deg); opacity: 1; } 80% { transform: scale(1.03,1.07) rotate(0.8deg); opacity: 0.95; } }

/* reveal on scroll */
.rv { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), filter 0.6s var(--ease-out); }
.rv.in { opacity: 1; transform: none; filter: blur(0); }

/* stage theatre */
.stage { background: var(--cellar); color: var(--porcelain); border: 1px solid rgba(154,123,69,0.4); }
.stage-grid { display: grid; min-height: 480px; }
@media (min-width: 768px) { .stage-grid { grid-template-columns: 1fr 1fr; min-height: 520px; } }
.stage-photo { position: relative; height: 256px; overflow: hidden; }
@media (min-width: 768px) { .stage-photo { height: auto; } }
.stage-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stage-photo img.swap { animation: stageIn 0.45s var(--ease-out); }
@keyframes stageIn { from { transform: translateX(60px); opacity: 0; } to { transform: none; opacity: 1; } }
.stage-type { padding: 32px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
@media (min-width: 768px) { .stage-type { padding: 48px; } }
.stage-type.swap-in { animation: typeIn 0.4s var(--ease-out); }
@keyframes typeIn { from { transform: translateY(26px); opacity: 0; } to { transform: none; opacity: 1; } }
.stage-num { font-family: var(--font-display); font-weight: 900; line-height: 1; font-size: 6rem; color: transparent; -webkit-text-stroke: 1.5px var(--brass); }
@media (min-width: 768px) { .stage-num { font-size: 9rem; } }
.transport { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.round-btn { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 999px; border: 1px solid rgba(200,169,110,0.4); background: transparent; color: inherit; cursor: pointer; transition: background 0.25s, color 0.25s; }
.round-btn:hover { background: var(--brass); color: var(--cellar); }
.seat { border-radius: 999px; border: 1px solid rgba(245,240,232,0.25); background: transparent; color: inherit; cursor: pointer; font-family: var(--font-display); font-style: italic; transition: border-color 0.25s; display: grid; place-items: center; }
.seat.on { width: 36px; height: 36px; border-color: var(--brass); background: rgba(200,169,110,0.15); color: var(--brass); }
.seat.off { width: 28px; height: 28px; color: rgba(245,240,232,0.5); }
.seat.off:hover { border-color: var(--brass); }

/* choice chips + stamp */
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; padding: 10px 20px; border: 1px dashed rgba(154,123,69,0.6); background: transparent; color: inherit; cursor: pointer; transition: background 0.25s, border-color 0.25s; }
.chip.on-dark.on, .chip.on.on { background: var(--brass); border-style: solid; border-color: var(--brass); color: var(--cellar); }
.chip.on-paper.on { background: var(--ink); border-style: solid; border-color: var(--ink); color: var(--paper); }
.chip .stamp { display: inline-flex; align-items: center; gap: 6px; }
.chip .stamp.play { animation: stampIn 0.18s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes stampIn { from { transform: scale(1.2) rotate(-2.5deg); } to { transform: scale(1) rotate(0); } }

/* seats live badge */
.seats { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; white-space: nowrap; }
.seats .dot { position: relative; width: 8px; height: 8px; }
.seats .dot::before { content: ""; position: absolute; inset: 0; border-radius: 999px; background: var(--brassdeep); opacity: 0.6; animation: ping 1.6s ease-out infinite; }
.seats .dot::after { content: ""; position: absolute; inset: 0; border-radius: 999px; background: var(--brassdeep); }
.seats.urgent .dot::before, .seats.urgent .dot::after { background: var(--ember); }
.seats.urgent .n { color: var(--ember); }
@keyframes ping { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(2.4); opacity: 0; } }

/* menu timeline page */
.timeline { position: relative; padding-left: 32px; }
@media (min-width: 768px) { .timeline { padding-left: 48px; } }
.timeline .rail { position: absolute; left: 8px; top: 0; bottom: 0; width: 1px; background: rgba(34,26,18,0.15); }
@media (min-width: 768px) { .timeline .rail { left: 16px; } }
.timeline .fire { position: absolute; left: 8px; top: 0; bottom: 0; width: 3px; transform-origin: top; transform: scaleY(0); background: linear-gradient(180deg, var(--cream-glow), var(--ember), #5E1D0E); }
@media (min-width: 768px) { .timeline .fire { left: 16px; } }
.tl-row { position: relative; padding: 28px 0; border-bottom: 1px solid rgba(34,26,18,0.12); }
.tl-diamond { position: absolute; left: -29px; top: 36px; width: 14px; height: 14px; transform: rotate(45deg); border: 2px solid var(--brassdeep); background: var(--paper); transition: background 0.3s, border-color 0.3s; }
@media (min-width: 768px) { .tl-diamond { left: -37px; } }
.tl-row.lit .tl-diamond { background: var(--ember); border-color: var(--ember); }
.tl-plate { width: 64px; height: 64px; border-radius: 999px; overflow: hidden; border: 2px solid var(--brass); flex-shrink: 0; box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px rgba(154,123,69,0.5); }
.tl-plate img { width: 100%; height: 100%; object-fit: cover; }
.bookmark { position: sticky; top: 112px; border: 1px solid rgba(154,123,69,0.4); background: rgba(255,255,255,0.9); padding: 24px; }

/* forms */
.field label, .flabel { display: block; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--brassdeep); }
.tinput, select.tinput { width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(34,26,18,0.3); padding: 10px 0; font-size: 1.125rem; font-family: var(--font-display); color: inherit; }
.tinput:focus { outline: none; border-color: var(--ink); }
.tinput::placeholder { color: rgba(34,26,18,0.35); font-family: var(--font-body); font-size: 1rem; }

/* journal ledger */
.ledger { border-top: 2px solid var(--ink); }
.ledger-row { display: grid; gap: 16px; padding: 24px 0; border-bottom: 1px solid rgba(34,26,18,0.2); text-decoration: none; }
@media (min-width: 640px) { .ledger-row { grid-template-columns: 110px 1fr 180px; align-items: center; gap: 32px; } }
.ledger-row h3 { transition: transform 0.2s var(--ease-out); }
.ledger-row:hover h3 { transform: translateX(8px); }
.ledger-thumb { position: relative; height: 112px; overflow: hidden; border: 1px solid rgba(34,26,18,0.25); }
.ledger-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); transition: filter 0.5s, transform 0.5s; }
.ledger-row:hover .ledger-thumb img { filter: saturate(1); transform: scale(1.05); }

/* story letter */
.letter { border: 1px solid rgba(34,26,18,0.25); background: rgba(255,255,255,0.75); padding: 32px; position: relative; }
@media (min-width: 768px) { .letter { padding: 48px; } }
.letter .margin-note { position: absolute; top: 16px; right: 24px; font-family: var(--font-display); font-style: italic; font-size: 14px; color: rgba(34,26,18,0.45); transform: rotate(-3deg); }
.dropcap::first-letter { font-weight: 900; font-size: 3.4em; float: left; margin-right: 12px; line-height: 0.85; color: var(--ember); }

/* charger plate (chef) */
.charger { position: relative; width: fit-content; margin: 0 auto; }
.charger::before, .charger::after { content: ""; position: absolute; border-radius: 999px; }
.charger::before { inset: -12px; border: 1px solid rgba(200,169,110,0.5); }
.charger::after { inset: -24px; border: 1px solid rgba(200,169,110,0.25); }
.charger .dish { border-radius: 999px; overflow: hidden; border: 4px solid var(--brass); }

/* footer */
.giant-outline { font-family: var(--font-display); font-weight: 900; text-align: center; line-height: 0.85; letter-spacing: -0.02em; color: transparent; -webkit-text-stroke: 1px rgba(200,169,110,0.35); font-size: var(--fs-giant); user-select: none; }

/* choice halves (home tasting split) */
.choice-half { transition: flex-grow 0.5s var(--ease-out); }

/* focus */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .crawl-track, .flame-flicker, .seats .dot::before { animation: none; }
  .choice-half { transition: none; }
  .rv { opacity: 1; transform: none; filter: none; transition: none; }
}

/* tasting flight — sticky stacked course cards */
.flight-card { position: sticky; background: #fff; border: 1px solid rgba(34,26,18,0.2); box-shadow: 0 -16px 50px rgba(20,18,16,0.10); display: grid; overflow: hidden; transform-origin: center top; }
@media (min-width: 860px) { .flight-card { grid-template-columns: 1.05fr 1fr; min-height: 72vh; } }
.flight-photo { position: relative; min-height: 280px; }
@media (min-width: 860px) { .flight-photo { min-height: 480px; } }
.flight-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.35s; }
.flight-act { position: absolute; top: 16px; left: 16px; background: rgba(0,0,0,0.45); border: 1px solid rgba(200,169,110,0.4); color: var(--porcelain); padding: 6px 12px; border-radius: 999px; }
.flight-type { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 860px) { .flight-type { padding: 48px; } }
.flight-num { font-weight: 900; line-height: 1; font-size: 5rem; color: transparent; }
@media (min-width: 860px) { .flight-num { font-size: 7rem; } }

/* organic food blobs */
.blob { box-shadow: 0 24px 60px rgba(34,26,18,0.28); }
.blob.b0 { border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%; }
.blob.b1 { border-radius: 42% 58% 40% 60% / 55% 42% 58% 45%; }
.blob.b2 { border-radius: 52% 48% 62% 38% / 44% 58% 42% 56%; }
#supStrip::-webkit-scrollbar { display: none; }

/* inert imagery: never obstruct scroll, select, or drag */
img { -webkit-user-drag: none; user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; }
