/* ==========================================================================
   CAVE — shared stylesheet
   All page styling lives here. Inline styles from the original design export
   have been lifted into design tokens (CSS variables) + classes, preserving
   the exact look. Edit colours/fonts once in :root and they apply everywhere.
   ========================================================================== */

/* --- Design tokens -------------------------------------------------------- */
:root {
  /* Brand palette */
  --cream: #EFE9DD;
  --espresso: #211E1A;
  --gold: #A8743A;
  --sand: #1B1813; /* dark sandstone */

  /* Supporting tones */
  --ink: #5A5346;        /* body text on cream */
  --muted: #8C8474;      /* small labels / captions */
  --cream-1: #F2ECDF;    /* light text on dark */
  --cream-2: #EAE0D0;    /* light text on dark, warmer */
  --gold-1: #C9A36B;     /* gold on dark */
  --gold-2: #D9B985;     /* lighter gold on dark */
  --gold-3: #E2C9A0;     /* lightest gold on dark */

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --gx: clamp(20px, 5vw, 64px); /* shared horizontal page gutter */
}

/* --- Base / reset --------------------------------------------------------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }

a { color: inherit; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 13px;
  padding: 10px 16px;
  text-decoration: none;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --- Scroll-reveal motion (progressive enhancement) ----------------------- */
/* Only active once cave-motion.js adds .cave-js to <html>. Without JS, content
   is fully visible. */
.cave-js [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.2s cubic-bezier(.16, .7, .26, 1),
              transform 1.2s cubic-bezier(.16, .7, .26, 1);
}
.cave-js [data-reveal].in { opacity: 1; transform: none; }

@keyframes caveRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes caveFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes caveScroll { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(9px); opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cave-js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  [data-hero-anim] { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* --- Shared primitives ---------------------------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.eyebrow--gold-1 { color: var(--gold-1); }
.eyebrow--gold-2 { color: var(--gold-2); }
.eyebrow--muted { color: var(--muted); }
.eyebrow--ls32 { letter-spacing: 0.32em; }
.eyebrow--ls30 { letter-spacing: 0.30em; }
.eyebrow--ls26 { letter-spacing: 0.26em; }
.eyebrow--ls24 { letter-spacing: 0.24em; }
.eyebrow--11 { font-size: 11px; }
.eyebrow--10 { font-size: 10px; }

.display {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--espresso);
  margin: 0;
}

.prose {
  font-family: var(--sans);
  color: var(--ink);
  margin: 0;
}

.em-gold { font-style: italic; color: var(--gold); }
.em-gold-2 { font-style: italic; color: var(--gold-2); }
.em-gold-3 { font-style: italic; color: var(--gold-3); }

.text-wrap-balance { text-wrap: balance; }

/* The "→" underlined links */
.text-link {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--espresso);
  border-bottom: 1px solid rgba(168, 116, 58, 0.7);
  padding-bottom: 7px;
}
.text-link--light {
  color: var(--cream-2);
  border-bottom-color: rgba(217, 185, 133, 0.6);
}

/* Decorative diamond + rule divider */
.diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }
.diamond--5 { width: 5px; height: 5px; }
.diamond--7 { width: 7px; height: 7px; }

.rule-diamond { display: flex; align-items: center; justify-content: center; gap: 14px; }
.rule-diamond__line { width: 34px; height: 1px; background: rgba(33, 30, 26, 0.28); }

/* Generic section / container helpers */
.container { max-width: 1180px; margin: 0 auto; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.cave-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gx);
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  /* Default (light-background pages): solid cream from the start. */
  background-color: rgba(239, 233, 221, 0.94);
  color: var(--espresso);
  transition: background-color .5s ease, color .5s ease, border-color .5s ease, padding .4s ease;
}
/* Pages with a dark hero start transparent with light text. */
.cave-header--transparent {
  background-color: rgba(0, 0, 0, 0);
  color: #F4EFE6;
}
/* Scrolled state — solidify. */
.cave-header.is-solid {
  background-color: rgba(239, 233, 221, 0.94);
  color: var(--espresso);
  border-bottom-color: rgba(33, 30, 26, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-top: 15px;
  padding-bottom: 15px;
}

.cave-header__brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: inherit;
}
.cave-header__brand svg { display: block; flex: none; }
.cave-wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  letter-spacing: 0.42em;
  padding-left: 0.42em;
  line-height: 1;
}

.cave-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 40px);
}
.cave-nav__link {
  position: relative;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  padding: 6px 0;
  opacity: 0.78;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}
.cave-nav__link.is-active {
  opacity: 1;
  border-bottom-color: currentColor;
}

.cave-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: inherit;
}
.cave-burger span { display: block; width: 26px; height: 1.4px; background: currentColor; }

/* Mobile menu overlay */
.cave-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: var(--cream);
  color: var(--espresso);
  display: flex;
  flex-direction: column;
  padding: 26px clamp(22px, 7vw, 48px) 48px;
}
.cave-menu[hidden] { display: none; }
.cave-menu__top { display: flex; align-items: center; justify-content: space-between; }
.cave-menu__close {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--espresso);
  padding: 8px;
}
.cave-menu__nav {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cave-menu__link {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 9vw, 56px);
  line-height: 1.18;
  text-decoration: none;
  color: var(--espresso);
}
.cave-menu__tag {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Collapse to mobile menu under 860px */
@media (max-width: 859px) {
  .cave-nav { display: none; }
  .cave-burger { display: flex; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.cave-footer {
  background: var(--sand);
  color: #D9D0C0;
  font-family: var(--sans);
  padding: clamp(56px, 8vw, 96px) var(--gx) 36px;
}
.cave-footer__inner { max-width: 1240px; margin: 0 auto; }
.cave-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.cave-footer__brand-col { flex: 1 1 280px; max-width: 380px; }
.cave-footer__brand { display: flex; align-items: center; gap: 14px; color: var(--cream); }
.cave-footer__brand .cave-wordmark { font-size: 25px; }
.cave-footer__motto {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: #C9BFAD;
  margin: 24px 0 0;
  max-width: 300px;
}
.cave-footer__col { flex: 0 1 auto; }
.cave-footer__col--explore { min-width: 130px; }
.cave-footer__col--enquiries { min-width: 150px; }
.cave-footer__col--contact { min-width: 160px; }
.cave-footer__heading {
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.cave-footer__links { display: flex; flex-direction: column; gap: 13px; }
.cave-footer__links a { color: #D9D0C0; text-decoration: none; font-size: 14px; }
.cave-footer__contact { display: flex; flex-direction: column; gap: 13px; font-size: 14px; color: #C9BFAD; }
.cave-footer__contact a { color: #D9D0C0; text-decoration: none; }
.cave-footer__social { display: flex; gap: 18px; margin-top: 4px; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: #8C8474; }
.cave-footer__social a { color: #8C8474; text-decoration: none; }
.cave-footer__divider { height: 1px; background: rgba(217, 208, 192, 0.16); margin: clamp(40px, 6vw, 68px) 0 26px; }
.cave-footer__legal { font-size: 11.5px; line-height: 1.7; color: #8C8474; max-width: 760px; margin: 0 0 26px; }
.cave-footer__legal a { color: var(--gold); text-decoration: none; }
.cave-footer__base {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6F685B;
}
.cave-footer__base .gold { color: var(--gold); }

/* ==========================================================================
   AGE GATE
   ========================================================================== */
/* Hidden by default. A tiny inline <head> script adds html.show-gate only when
   JS is present AND the visitor has not verified this session, so no-JS
   visitors are never locked out and verified visitors never see a flash. */
.cave-agegate { display: none; }
html.show-gate .cave-agegate { display: flex; }
html.show-gate { overflow: hidden; }

.cave-agegate {
  position: fixed;
  inset: 0;
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
  opacity: 1;
  transition: opacity .8s ease;
}
.cave-agegate.is-leaving { opacity: 0; }
.cave-agegate__bg {
  position: absolute; inset: 0;
  background-image: url('/assets/cave-interior.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.cave-agegate__scrim {
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 38%, rgba(10, 8, 5, 0.46) 0%, rgba(10, 8, 5, 0.74) 60%, rgba(8, 6, 4, 0.9) 100%);
}
.cave-agegate__inner { position: relative; text-align: center; color: var(--cream); max-width: 540px; }
.cave-agegate__mark { display: block; margin: 0 auto 30px; }
.cave-agegate__place {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 26px;
}
.cave-agegate__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.24;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}
.cave-agegate__lead {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: #CBC2B2;
  margin: 0 auto 38px;
  max-width: 380px;
}
.cave-agegate__actions { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cave-agegate__enter {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand);
  background: var(--cream);
  border: none;
  padding: 17px 46px;
  cursor: pointer;
  transition: background-color .35s ease;
}
.cave-agegate__enter:hover { background: var(--gold-1); }
.cave-agegate__deny {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B7AE9D;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.cave-agegate__denied {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: #E4D9C6;
  margin: 0 auto;
  max-width: 400px;
}

/* ==========================================================================
   FULL-BLEED IMAGE LAYERS (parallax hosts)
   ========================================================================== */
.bleed-img {
  position: absolute;
  inset: -15% 0 0 0;
  height: 130%;
  background-size: cover;
  background-position: center;
}
.bleed-img--strata { background-image: url('/assets/strata.jpg'); }
.bleed-img--strata-bottom { background-image: url('/assets/strata.jpg'); background-position: center bottom; }
.bleed-img--cave-interior { background-image: url('/assets/cave-interior.jpg'); }
.bleed-img--grotto { background-image: url('/assets/grotto-gate.jpg'); }
.bleed-img--historic { background-image: url('/assets/cave-historic.jpg'); }

/* ==========================================================================
   PAGE: HOME
   ========================================================================== */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 14, 8, 0.5) 0%, rgba(20, 14, 8, 0.28) 38%, rgba(20, 14, 8, 0.42) 72%, rgba(16, 11, 6, 0.72) 100%);
}
.home-hero__inner { position: relative; text-align: center; color: #F2ECDF; padding: 0 24px; }
.home-hero__eyebrow {
  animation: caveFade 1.4s ease both .2s;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 30px;
}
.home-hero__title {
  animation: caveRise 1.5s cubic-bezier(.16, .7, .26, 1) both .4s;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(76px, 17vw, 228px);
  line-height: 0.92;
  letter-spacing: 0.14em;
  padding-left: 0.14em;
  margin: 0;
}
.home-hero__tagline {
  animation: caveRise 1.5s cubic-bezier(.16, .7, .26, 1) both .7s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}
.home-hero__tagline-rule { width: 38px; height: 1px; background: rgba(226, 201, 160, 0.6); }
.home-hero__tagline-text {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #EAE0D0;
}
.home-hero__scroll {
  animation: caveScroll 2.6s ease-in-out infinite 1.4s;
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #E6DBC9;
}
.home-hero__scroll-label { font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; }
.home-hero__scroll-line { width: 1px; height: 30px; background: linear-gradient(#E6DBC9, rgba(230, 219, 201, 0)); }

.home-manifesto { padding: clamp(96px, 16vw, 200px) var(--gx); }
.home-manifesto__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.home-manifesto__eyebrow { margin-bottom: 40px; }
.home-manifesto__lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.28;
  color: var(--espresso);
  margin: 0;
}
.home-manifesto__body {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.85;
  color: var(--ink);
  max-width: 60ch;
  margin: 46px auto 0;
}

.home-interlude {
  position: relative;
  height: clamp(440px, 70vh, 720px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-interlude__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 10, 6, 0.72), rgba(14, 10, 6, 0.52) 50%, rgba(14, 10, 6, 0.78));
}
.home-interlude__inner { position: relative; text-align: center; color: #F2ECDF; padding: 0 28px; }
.home-interlude__eyebrow { margin-bottom: 26px; }
.home-interlude__line {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 5.5vw, 68px);
  line-height: 1.18;
  margin: 0;
}

.home-pillars { padding: clamp(96px, 15vw, 180px) var(--gx); }
.home-pillars__inner { max-width: 1180px; margin: 0 auto; }
.home-pillars__head { text-align: center; margin-bottom: clamp(56px, 8vw, 96px); }
.home-pillars__eyebrow { margin-bottom: 30px; }
.home-pillars__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.16;
  color: var(--espresso);
  margin: 0 auto;
  max-width: 18ch;
}
.home-pillars__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(40px, 5vw, 72px); }
.home-pillar__num { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--gold); margin-bottom: 18px; }
.home-pillar__rule { height: 1px; background: rgba(33, 30, 26, 0.16); margin-bottom: 26px; }
.home-pillar__title { font-family: var(--serif); font-weight: 600; font-size: 27px; color: var(--espresso); margin: 0 0 14px; }
.home-pillar__body { font-family: var(--sans); font-size: 15px; line-height: 1.8; color: var(--ink); margin: 0; }

.home-legend { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: stretch; background: var(--sand); }
.home-legend__media { position: relative; min-height: clamp(380px, 52vw, 640px); overflow: hidden; }
.home-legend__media-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 14, 8, 0.18), rgba(20, 14, 8, 0.42)); }
.home-legend__text { display: flex; flex-direction: column; justify-content: center; padding: clamp(56px, 8vw, 110px) clamp(28px, 6vw, 88px); color: #EAE0D0; }
.home-legend__eyebrow { margin-bottom: 28px; }
.home-legend__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.2;
  margin: 0 0 24px;
  color: #F2ECDF;
}
.home-legend__body { font-family: var(--sans); font-size: 15.5px; line-height: 1.85; color: #C2B8A6; margin: 0 0 38px; max-width: 46ch; }
.home-legend__link { align-self: flex-start; }

.home-vodka { padding: clamp(96px, 14vw, 180px) var(--gx); }
.home-vodka__inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(48px, 7vw, 100px); align-items: center; }
.home-vodka__media { order: 2; position: relative; }
.bottle-frame {
  position: relative;
  background: linear-gradient(170deg, #E7E0D2, #DAD1C0);
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  justify-content: center;
}
.bottle-frame__img { width: auto; max-height: 560px; max-width: 100%; }
.bottle-frame__badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(239, 233, 221, 0.82);
  padding: 5px 9px;
}
.home-vodka__text { order: 1; }
.home-vodka__eyebrow { margin-bottom: 28px; }
.home-vodka__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.16;
  color: var(--espresso);
  margin: 0 0 24px;
}
.home-vodka__body { font-family: var(--sans); font-size: 16px; line-height: 1.85; color: var(--ink); margin: 0 0 32px; max-width: 48ch; }

.spec-row { display: flex; gap: 38px; margin-bottom: 38px; flex-wrap: wrap; }
.spec__value { font-family: var(--serif); font-size: 30px; color: var(--espresso); }
.spec__label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.home-closing { position: relative; overflow: hidden; padding: clamp(110px, 18vw, 220px) var(--gx); text-align: center; }
.home-closing__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(239, 233, 221, 0.9), rgba(239, 233, 221, 0.8)); }
.home-closing__inner { position: relative; max-width: 760px; margin: 0 auto; }
.home-closing__diamond { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 36px; }
.home-closing__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.18;
  color: var(--espresso);
  margin: 0;
}
.home-register { margin-top: clamp(48px, 7vw, 80px); max-width: 440px; margin-inline: auto; }
.home-register__label { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.home-register__thanks { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--espresso); margin: 0; }
.home-register__form {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  border-bottom: 1px solid rgba(33, 30, 26, 0.3);
  padding-bottom: 10px;
}
.home-register__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--espresso);
  padding: 6px 0;
}
.home-register__submit {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.home-register__note { font-family: var(--sans); font-size: 11.5px; line-height: 1.7; color: var(--muted); margin: 18px 0 0; }
.home-register__note a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(168, 116, 58, 0.4); }

/* ==========================================================================
   PAGE: LEGEND
   ========================================================================== */
.legend-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.legend-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 10, 6, 0.5) 0%, rgba(14, 10, 6, 0.15) 40%, rgba(14, 10, 6, 0.7) 100%);
}
.legend-hero__inner {
  position: relative;
  padding: 0 var(--gx) clamp(56px, 9vw, 120px);
  color: #F2ECDF;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.legend-hero__eyebrow {
  animation: caveFade 1.4s ease both .2s;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 24px;
}
.legend-hero__title {
  animation: caveRise 1.5s cubic-bezier(.16, .7, .26, 1) both .35s;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 9vw, 118px);
  line-height: 0.98;
  margin: 0;
  max-width: 14ch;
}

.legend-intro { padding: clamp(90px, 14vw, 180px) var(--gx); }
.legend-intro__inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(40px, 6vw, 90px); align-items: start; }
.legend-intro__lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.34;
  color: var(--espresso);
  margin: 0;
}
.legend-intro__col { padding-top: 8px; }
.legend-intro__body { font-family: var(--sans); font-size: 15.5px; line-height: 1.85; color: var(--ink); margin: 0 0 34px; }
.legend-intro__markers { display: flex; gap: 48px; flex-wrap: wrap; }
.legend-marker__label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 9px; }
.legend-marker__value { font-family: var(--serif); font-size: 23px; color: var(--espresso); }

.legend-historic { position: relative; overflow: hidden; }
.legend-historic__frame { position: relative; height: clamp(440px, 76vh, 820px); }
.legend-historic__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30, 22, 12, 0.25), rgba(30, 22, 12, 0.62)); }
.legend-historic__caption-wrap { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(32px, 5vw, 64px) var(--gx); max-width: 1180px; margin: 0 auto; }
.legend-historic__caption { font-family: var(--sans); font-size: 11px; line-height: 1.7; letter-spacing: 0.04em; color: #E8DCC6; margin: 0; max-width: 52ch; }

.legend-ludlam { padding: clamp(90px, 14vw, 180px) var(--gx); }
.legend-ludlam__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.legend-ludlam__eyebrow { margin-bottom: 30px; letter-spacing: 0.32em; }
.legend-ludlam__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.18;
  color: var(--espresso);
  margin: 0 0 36px;
}
.legend-ludlam__body { font-family: var(--sans); font-size: 16px; line-height: 1.9; color: var(--ink); margin: 0 auto; max-width: 58ch; }
.legend-ludlam__rule { margin-top: 48px; }
.legend-ludlam__note { font-family: var(--serif); font-style: italic; font-size: 17px; line-height: 1.6; color: var(--muted); margin: 34px auto 0; max-width: 48ch; }

.legend-place { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: stretch; background: var(--espresso); }
.legend-place__text { display: flex; flex-direction: column; justify-content: center; padding: clamp(56px, 8vw, 120px) clamp(28px, 6vw, 88px); color: #EAE0D0; order: 1; }
.legend-place__eyebrow { margin-bottom: 26px; letter-spacing: 0.32em; }
.legend-place__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.2;
  margin: 0 0 24px;
  color: #F2ECDF;
}
.legend-place__body { font-family: var(--sans); font-size: 15.5px; line-height: 1.9; color: #C2B8A6; margin: 0; max-width: 48ch; }
.legend-place__media { position: relative; min-height: clamp(360px, 46vw, 620px); overflow: hidden; order: 2; }

.legend-closing { padding: clamp(100px, 16vw, 200px) var(--gx); text-align: center; }
.legend-closing__inner { max-width: 720px; margin: 0 auto; }
.legend-closing__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.2;
  color: var(--espresso);
  margin: 0 0 40px;
}

/* ==========================================================================
   PAGE: VODKA
   ========================================================================== */
.vodka-hero { padding: clamp(112px, 14vw, 160px) var(--gx) 0; }
.vodka-hero__inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px, 5vw, 80px); align-items: center; }
.vodka-hero__eyebrow { margin-bottom: 28px; letter-spacing: 0.32em; }
.vodka-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.98;
  color: var(--espresso);
  margin: 0 0 30px;
}
.vodka-hero__body { font-family: var(--sans); font-size: 16.5px; line-height: 1.85; color: var(--ink); margin: 0; max-width: 46ch; }
.vodka-hero__specs { display: flex; gap: 36px; margin-top: 42px; flex-wrap: wrap; }
.vodka-hero__specs .spec__value { font-size: 32px; }
.vodka-hero__media { position: relative; }
.bottle-frame--vodka { background: linear-gradient(168deg, #E9E2D4, #D8CFBD); padding: clamp(28px, 4vw, 52px); }
.bottle-frame--vodka .bottle-frame__img { max-height: 620px; }
.bottle-frame--vodka .bottle-frame__badge { background: rgba(239, 233, 221, 0.85); }

.vodka-tasting { padding: clamp(96px, 15vw, 190px) var(--gx); }
.vodka-tasting__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.vodka-tasting__eyebrow { margin-bottom: 32px; letter-spacing: 0.32em; }
.vodka-tasting__lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.28;
  color: var(--espresso);
  margin: 0 0 36px;
}
.vodka-tasting__notes { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 30px; }
.vodka-tasting__note { font-family: var(--sans); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink); }
.vodka-tasting__body { font-family: var(--sans); font-size: 16px; line-height: 1.85; color: var(--ink); margin: 0 auto; max-width: 54ch; }

.vodka-made { background: var(--espresso); padding: clamp(90px, 14vw, 180px) var(--gx); }
.vodka-made__inner { max-width: 1180px; margin: 0 auto; }
.vodka-made__head { text-align: center; margin-bottom: clamp(54px, 8vw, 90px); }
.vodka-made__eyebrow { margin-bottom: 26px; letter-spacing: 0.32em; }
.vodka-made__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.16;
  color: #F2ECDF;
  margin: 0;
}
.vodka-made__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: rgba(217, 208, 192, 0.16); }
.vodka-step { background: var(--espresso); padding: 34px 26px; }
.vodka-step__num { font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--gold-1); margin-bottom: 18px; }
.vodka-step__title { font-family: var(--serif); font-weight: 600; font-size: 22px; color: #F2ECDF; margin: 0 0 10px; }
.vodka-step__body { font-family: var(--sans); font-size: 13.5px; line-height: 1.75; color: #B7AD9B; margin: 0; }

.vodka-surrey { padding: clamp(90px, 14vw, 180px) var(--gx); }
.vodka-surrey__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.vodka-surrey__eyebrow { margin-bottom: 30px; }
.vodka-surrey__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.2;
  color: var(--espresso);
  margin: 0 0 28px;
}
.vodka-surrey__body { font-family: var(--sans); font-size: 16px; line-height: 1.85; color: var(--ink); margin: 0 auto 16px; max-width: 56ch; }
.vodka-surrey__note { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--muted); margin: 24px auto 0; }

.vodka-closing { position: relative; overflow: hidden; padding: clamp(100px, 16vw, 200px) var(--gx); text-align: center; }
.vodka-closing__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(239, 233, 221, 0.88), rgba(239, 233, 221, 0.8)); }
.vodka-closing__inner { position: relative; max-width: 680px; margin: 0 auto; }
.vodka-closing__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.2;
  color: var(--espresso);
  margin: 0 0 26px;
}
.vodka-closing__body { font-family: var(--sans); font-size: 15px; line-height: 1.85; color: var(--ink); margin: 0 auto 40px; max-width: 50ch; }

/* ==========================================================================
   PAGE: PHILOSOPHY
   ========================================================================== */
.phil-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: clamp(120px, 16vw, 180px) var(--gx) clamp(60px, 10vw, 120px);
}
.phil-hero__inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.phil-hero__eyebrow { margin-bottom: clamp(36px, 6vw, 64px); }
.phil-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 7.6vw, 116px);
  line-height: 1.04;
  color: var(--espresso);
  margin: 0;
  max-width: 16ch;
}

.phil-statement { padding: clamp(40px, 6vw, 80px) var(--gx) clamp(96px, 15vw, 180px); }
.phil-statement__inner { max-width: 900px; margin: 0 auto; }
.phil-statement__text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.4;
  color: var(--espresso);
  margin: 0;
  text-wrap: pretty;
}

.phil-opps { border-top: 1px solid rgba(33, 30, 26, 0.14); }
.phil-opp {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 24px;
  padding: clamp(48px, 7vw, 90px) var(--gx);
  border-bottom: 1px solid rgba(33, 30, 26, 0.14);
}
.phil-opp__label { font-family: var(--sans); font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.phil-opp__word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.08;
  color: var(--espresso);
  margin: 0;
  grid-column: span 2;
}

.phil-manifesto { position: relative; overflow: hidden; padding: clamp(110px, 17vw, 220px) var(--gx); text-align: center; }
.phil-manifesto__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 10, 6, 0.78), rgba(14, 10, 6, 0.6) 50%, rgba(14, 10, 6, 0.82)); }
.phil-manifesto__inner { position: relative; max-width: 880px; margin: 0 auto; }
.phil-manifesto__text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 56px);
  line-height: 1.3;
  color: #F2ECDF;
  margin: 0;
}

.phil-closing { padding: clamp(96px, 15vw, 190px) var(--gx); text-align: center; }
.phil-closing__inner { max-width: 720px; margin: 0 auto; }
.phil-closing__body { font-family: var(--sans); font-size: 16px; line-height: 1.9; color: var(--ink); margin: 0 auto 44px; max-width: 54ch; }
.phil-closing__rule { margin-bottom: 40px; }

/* ==========================================================================
   PAGE: CONTACT
   ========================================================================== */
.contact-section { padding: clamp(120px, 15vw, 180px) var(--gx) clamp(80px, 12vw, 140px); }
.contact-section__inner { max-width: 1180px; margin: 0 auto; }
.contact-head { max-width: 760px; margin-bottom: clamp(56px, 8vw, 90px); }
.contact-head__eyebrow { margin-bottom: 30px; }
.contact-head__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 96px);
  line-height: 1.0;
  color: var(--espresso);
  margin: 0 0 28px;
}
.contact-head__body { font-family: var(--sans); font-size: 16.5px; line-height: 1.85; color: var(--ink); margin: 0; max-width: 50ch; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(40px, 6vw, 80px); align-items: start; }

.contact-form__label { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.contact-types { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.contact-type {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 18px;
  border: 1px solid rgba(33, 30, 26, 0.22);
  background: none;
  color: var(--ink);
  cursor: pointer;
  transition: all .3s ease;
}
.contact-type.is-active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.contact-thanks { border-top: 1px solid rgba(33, 30, 26, 0.16); padding-top: 40px; }
.contact-thanks__diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); margin-bottom: 26px; }
.contact-thanks__title {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.3;
  color: var(--espresso);
  margin: 0 0 16px;
}
.contact-thanks__body { font-family: var(--sans); font-size: 15px; line-height: 1.8; color: var(--ink); margin: 0; }
.contact-thanks__body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(168, 116, 58, 0.4); }

.contact-form { display: flex; flex-direction: column; gap: 30px; }
.cave-field-label { display: block; }
.cave-field-label__text { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.cave-field-label__text .gold { color: var(--gold); }
.cave-field {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(33, 30, 26, 0.28);
  outline: none;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--espresso);
  padding: 8px 0;
}
textarea.cave-field { resize: vertical; line-height: 1.6; }
.cave-field::placeholder { color: #9C9686; }
.contact-form__error { font-family: var(--sans); font-size: 13px; color: #9A5A2C; margin: 0; }
.contact-form__submit {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--espresso);
  border: none;
  padding: 16px 40px;
  cursor: pointer;
  transition: background-color .35s ease;
  margin-top: 6px;
}
.contact-form__submit:hover { background: var(--gold); }
/* Netlify honeypot field — visually removed, still in the DOM for bots. */
.netlify-hp { position: absolute; left: -9999px; }

.contact-details { display: flex; flex-direction: column; gap: 40px; padding-top: 6px; }
.contact-detail__label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.contact-detail__value { font-family: var(--serif); font-size: 25px; color: var(--espresso); text-decoration: none; }
.contact-routes { border-top: 1px solid rgba(33, 30, 26, 0.14); padding-top: 30px; }
.contact-routes__label { font-family: var(--sans); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.contact-routes__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.contact-routes__list li { font-family: var(--sans); font-size: 14px; line-height: 1.5; color: var(--ink); }
.contact-routes__list strong { font-weight: 600; color: var(--espresso); }

/* ==========================================================================
   PAGE: 404
   ========================================================================== */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(120px, 16vw, 180px) var(--gx) clamp(80px, 12vw, 140px);
}
.notfound__inner { max-width: 620px; margin: 0 auto; }
.notfound__eyebrow { margin-bottom: 30px; }
.notfound__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.04;
  color: var(--espresso);
  margin: 0 0 28px;
}
.notfound__body { font-family: var(--sans); font-size: 16px; line-height: 1.85; color: var(--ink); margin: 0 auto 40px; max-width: 46ch; }
