/* @import MUST be first per CSS spec — otherwise browser ignores it */
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ============ FONTS ============ */
/* WOFF2 (~38% smaller than OTF, 96%+ browser support); OTF kept as fallback for old engines */
@font-face { font-family: 'LEMONMILK'; src: url('./fonts/LEMONMILK-Light.woff2') format('woff2'),    url('./fonts/LEMONMILK-Light.otf') format('opentype');    font-weight: 300; font-display: swap; }
@font-face { font-family: 'LEMONMILK'; src: url('./fonts/LEMONMILK-Regular.woff2') format('woff2'),  url('./fonts/LEMONMILK-Regular.otf') format('opentype');  font-weight: 400; font-display: swap; }
@font-face { font-family: 'LEMONMILK'; src: url('./fonts/LEMONMILK-Medium.woff2') format('woff2'),   url('./fonts/LEMONMILK-Medium.otf') format('opentype');   font-weight: 500; font-display: swap; }
@font-face { font-family: 'LEMONMILK'; src: url('./fonts/LEMONMILK-Bold.woff2') format('woff2'),     url('./fonts/LEMONMILK-Bold.otf') format('opentype');     font-weight: 700; font-display: swap; }

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  background: #07050A;
  color: #E8E6E3;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { min-height: 100vh; line-height: 1.55; letter-spacing: 0.01em; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============ VARS ============ */
:root {
  --bg: #07050A;
  --bg-warm: #120A05;
  --bg-deep: #050308;
  --gold: #C8A951;
  --gold-light: #F5D78E;
  --gold-dark: #8B6914;
  --text: #E8E6E3;
  --text-dim: #9A9A9A;
  --text-faint: rgba(232, 230, 227, 0.58); /* tuned to ~5.0:1 on #07050A — WCAG AA pass for normal text */
  --glass-bg: rgba(18, 15, 10, 0.55);
  --glass-border: rgba(200, 169, 81, 0.18);
  --section-max: 1400px;
  --section-pad-x: clamp(24px, 5vw, 64px);
  --f-display: 'Antonio', 'LEMONMILK', 'Inter', sans-serif;
  --f-serif: 'Fraunces', Georgia, serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', monospace;
}

/* ============ HERO BACKDROP (CRUCIAL for bottle transmission) ============ */
/*
   This warm radial-gradient div sits BEHIND the transparent 3D canvas.
   The bottle's MeshPhysicalMaterial uses transmission=1.0, which refracts
   whatever is visible behind the glass. Without this backdrop the glass has
   nothing to refract and reads as a flat orange/cheap blob.
*/
#hero-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background:
    radial-gradient(ellipse 60% 45% at 50% 55%, rgba(210, 145, 55, 0.18), transparent 70%),
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(90, 55, 20, 0.22), transparent 75%),
    radial-gradient(ellipse 140% 110% at 50% 80%, rgba(18, 10, 5, 0.9), #05030A 78%);
}

/* ============ 3D CANVAS LAYER ============ */
#bottle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1;
  pointer-events: none;
}
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 5;
  pointer-events: none;
}

/* ============ VIGNETTE ============ */
#vignette {
  position: fixed;
  inset: 0;
  z-index: 199;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at center, transparent 40%, rgba(0, 0, 0, 0.45) 100%);
}

/* ============ LOADER ============ */
#loader {
  position: fixed;
  inset: 0;
  background: #050308;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
  overflow: hidden;
}
#loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 50vmin at 50% 50%, rgba(200, 169, 81, 0.10), transparent 70%);
  pointer-events: none;
}
#loader.fade { opacity: 0; pointer-events: none; }

.loader-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

/* Logo with glow halo + slow breath */
.loader-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin-bottom: 28px;
}
.loader-logo {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 0 30px rgba(200, 169, 81, 0.55))
          drop-shadow(0 0 60px rgba(200, 169, 81, 0.20));
  animation: loader-breath 4s ease-in-out infinite;
}
@keyframes loader-breath {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50%      { transform: scale(1.04); opacity: 1; }
}
.loader-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 169, 81, 0.35), rgba(200, 169, 81, 0) 70%);
  animation: loader-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes loader-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.85; transform: scale(1.18); }
}

/* Two-line wordmark */
.loader-wordmark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}
.loader-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 12px;
  color: var(--gold);
  padding-left: 12px; /* compensate letter-spacing visual */
}
.loader-sub {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 8px;
  color: var(--gold-light);
  opacity: 0.85;
  padding-left: 8px;
}

/* Thin progress line */
.loader-progress {
  width: clamp(220px, 26vw, 320px);
  height: 1px;
  background: rgba(200, 169, 81, 0.18);
  margin: 0 auto 16px;
  overflow: hidden;
  position: relative;
}
.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width 0.4s ease;
  box-shadow: 0 0 10px rgba(200, 169, 81, 0.5);
}

/* Meta: percent + EST stamp */
.loader-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-dim);
}
.loader-pct {
  color: var(--gold-light);
  min-width: 36px;
  text-align: right;
}
.loader-divider {
  color: rgba(200, 169, 81, 0.4);
}
.loader-est {
  color: var(--text-faint);
}

@media (max-width: 600px) {
  .loader-name { letter-spacing: 8px; padding-left: 8px; }
  .loader-sub { letter-spacing: 6px; padding-left: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .loader-logo, .loader-glow { animation: none; }
}

/* ============ AGE GATE — premium glass card ============ */
#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    /* warm gold halo behind card */
    radial-gradient(ellipse 55% 50% at 50% 45%, rgba(210, 145, 55, 0.10), transparent 70%),
    radial-gradient(ellipse 110% 90% at 50% 60%, rgba(50, 30, 12, 0.45), transparent 75%),
    rgba(5, 3, 8, 0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: opacity 0.6s ease;
  overflow: hidden;
}
/* film-grain texture overlay */
#age-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200, 169, 81, 0.06) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
  opacity: 0.5;
}
#age-gate.hidden { opacity: 0; pointer-events: none; }

.age-inner {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 460px;
  padding: 48px clamp(28px, 5vw, 48px) 36px;
  background: linear-gradient(180deg, rgba(22, 16, 10, 0.78), rgba(8, 5, 12, 0.88));
  border: 1px solid rgba(200, 169, 81, 0.22);
  border-radius: 18px;
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(200, 169, 81, 0.08),
    inset 0 1px 0 rgba(245, 215, 142, 0.10);
  animation: ageGateRise 0.85s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes ageGateRise {
  0%   { opacity: 0; transform: translateY(20px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.age-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 81, 0.35);
  box-shadow: 0 4px 28px rgba(200, 169, 81, 0.18);
}

.age-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.age-divider span {
  flex: 0 1 70px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 169, 81, 0.4), transparent);
}
.age-divider i {
  font-style: normal;
  color: var(--gold);
  font-size: 11px;
  opacity: 0.85;
}

.age-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.age-inner h2 {
  font-family: 'Antonio', var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 4.8vw, 42px);
  letter-spacing: 0.005em;
  line-height: 1.05;
  margin-bottom: 14px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(200, 169, 81, 0.15);
}
.age-inner p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 auto 28px;
  max-width: 360px;
}

.age-year-label {
  display: block;
  margin: 4px 0 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0.85;
}
.age-year-select {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 16px;
  padding: 13px 44px 13px 20px;
  background: rgba(7, 5, 10, 0.7);
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 2px;
  text-align: center;
  text-align-last: center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  /* custom gold chevron */
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 1px),
    calc(100% - 16px) calc(50% - 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  background-color: rgba(7, 5, 10, 0.7);
}
.age-year-select:hover,
.age-year-select:focus-visible {
  border-color: var(--gold);
  background-color: rgba(45, 30, 12, 0.5);
  box-shadow: 0 0 0 3px rgba(200, 169, 81, 0.12);
}
.age-year-select option {
  background: #0E0A07;
  color: var(--text);
  padding: 8px;
  font-family: var(--f-mono);
}

.age-error {
  margin: 0 auto 18px;
  max-width: 340px;
  padding: 10px 16px;
  border: 1px solid rgba(220, 80, 80, 0.45);
  background: rgba(80, 20, 20, 0.32);
  color: #f4cccc;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1px;
  border-radius: 5px;
  line-height: 1.55;
  animation: ageErrShake 0.3s ease;
}
@keyframes ageErrShake {
  0%,100% { transform: translateX(0); }
  25%     { transform: translateX(-4px); }
  75%     { transform: translateX(4px); }
}

.age-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.age-buttons .btn {
  min-width: 130px;
  letter-spacing: 3px;
}
.age-buttons #age-yes:disabled {
  opacity: 0.32;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}

.age-foot {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(200, 169, 81, 0.12);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--text-faint);
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .age-inner { padding: 38px 24px 28px; max-width: 100%; }
  .age-logo { width: 52px; height: 52px; }
  .age-divider span { flex: 0 1 50px; }
}

/* ============ TOP BAR ============ */
#topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(7, 5, 10, 0.85), rgba(7, 5, 10, 0.3) 70%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.logo {
  display: flex; align-items: center; gap: 14px;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.85; }
.logo img {
  width: 36px; height: 36px;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(200, 169, 81, 0.3));
}
.logo span {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 6px;
  color: var(--text);
}
.tabs { display: flex; gap: clamp(22px, 3vw, 48px); align-items: center; }
.tab {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text);
  text-transform: uppercase;
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s;
}
.tab.active { color: var(--gold); }
.tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.tab:hover { color: var(--gold-light); }
.utils { display: flex; align-items: center; gap: 24px; }
.langs { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 1px; }
.langs .lang {
  color: var(--text-faint);
  cursor: pointer;
  transition: color 0.2s;
  padding: 2px 0;
}
.langs .lang.active { color: var(--gold); }
.langs .lang:hover { color: var(--gold-light); }
.langs span { color: var(--text-faint); }
.social {
  width: 34px; height: 34px;
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.25s;
}
.social:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ============ PROGRESS BAR ============ */
#progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  z-index: 101;
}
#progress-fill {
  height: 100%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0.1s linear;
}

/* ============ SCROLL CONTAINER ============ */
.scroll-container {
  position: relative;
  z-index: 10;
}
.phase { position: relative; z-index: 10; }

/* ============ SECTION DIVIDER (gold line with diamond) ============ */
.section-divider {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px clamp(24px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 10;
}
.sd-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 169, 81, 0.35), transparent);
}
.sd-diamond {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0;
  opacity: 0.8;
}

/* ============ PHASE 1: HERO ============ */
#hero {
  min-height: 100vh;
  position: relative;
  padding: 0;
  background: transparent;   /* backdrop div sits behind canvas */
  display: grid;
  grid-template-rows: 110px 1fr auto auto 80px;
  align-items: center;
  justify-items: center;
}
.hero-meta {
  position: absolute;
  top: 110px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1.8;
  z-index: 11;
}
.hero-meta-l { left: clamp(20px, 4vw, 56px); }
.hero-meta-r { right: clamp(20px, 4vw, 56px); text-align: right; }
.hero-title {
  grid-row: 2;
  position: relative;
  z-index: 11;
  pointer-events: none;
  width: 100%;
  max-width: 1800px;
  font-family: var(--f-display);
  text-align: center;
  line-height: 0.78;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 100%;
  padding: 20px 48px;
}
/* Stacked tight — bottle floats behind on canvas, no spacer between words */
.hero-bottle-space { display: none !important; }
.hero-moonshine { margin-top: -0.08em; }
.hero-kazanova {
  display: block;
  font-size: clamp(80px, 14vw, 240px);
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-light) 20%, var(--gold) 50%, var(--gold-dark) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.02em;
  text-shadow: 0 0 80px rgba(139, 105, 20, 0.4);
  align-self: center;
  /* Pre-reveal state: hidden in centre. Triggered by body.hero-show. */
  transform: translateY(38vh) scale(0.94);
  opacity: 0;
  will-change: transform, opacity;
}
body.hero-show .hero-kazanova {
  animation: hero-kazanova-spread 1.6s cubic-bezier(0.22, 0.85, 0.25, 1) both;
}
@keyframes hero-kazanova-spread {
  0%   { transform: translateY(38vh) scale(0.94); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
/*
   The space reserved for the 3D bottle. Needs to be tall enough that the
   bottle (scale 1.15, hero camera z=0.38) fits cleanly between KAZANOVA and
   MOONSHINE without clipping either word.
*/
.hero-bottle-space {
  flex: 1;
  min-height: clamp(340px, 42vh, 480px);
}
.hero-moonshine {
  display: block;
  font-size: clamp(60px, 11vw, 200px);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.12em;
  align-self: center;
  /* Pre-reveal state: hidden in centre. Triggered by body.hero-show. */
  transform: translateY(-38vh) scale(0.94);
  opacity: 0;
  will-change: transform, opacity;
}
body.hero-show .hero-moonshine {
  animation: hero-moonshine-spread 1.6s cubic-bezier(0.22, 0.85, 0.25, 1) both;
}
@keyframes hero-moonshine-spread {
  0%   { transform: translateY(-38vh) scale(0.94); opacity: 0; }
  60%  { opacity: 0.95; }
  100% { transform: translateY(0) scale(1); opacity: 0.95; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-kazanova, .hero-moonshine {
    animation: none;
    transform: none;
    opacity: 1;
  }
}
.hero-sub {
  grid-row: 3;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 11;
  position: relative;
}
.hero-sub .dot { opacity: 0.5; }
.hero-scroll {
  grid-row: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  z-index: 11;
  margin-top: 20px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse { 0%, 100% { opacity: 0.25; transform: scaleY(0.5); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); transform-origin: top; } }

/* ============ SECTION HEAD ============ */
.section-head {
  position: relative;
  padding: clamp(80px, 12vh, 160px) var(--section-pad-x) 80px;
  max-width: var(--section-max);
  margin: 0 auto;
}
.section-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(120px, 18vw, 280px);
  color: rgba(200, 169, 81, 0.07);
  line-height: 0.8;
  position: absolute;
  left: 0;
  top: 40px;
  pointer-events: none;
  user-select: none;
}
.section-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.section-title {
  font-family: var(--f-display);
  line-height: 0.95;
  position: relative;
  z-index: 2;
}
.section-title .t-sans {
  display: block;
  font-weight: 700;
  font-size: clamp(64px, 10vw, 160px);
  color: var(--text);
  letter-spacing: -0.01em;
}
.section-title .t-serif {
  display: block;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 9vw, 140px);
  color: var(--gold);
  margin-top: -8px;
  letter-spacing: -0.02em;
}
.section-title .t-dash {
  display: inline-block;
  color: var(--gold);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  vertical-align: middle;
  margin-left: 32px;
}
.section-lead {
  max-width: 680px;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.75;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

/* ============ PHASE 2: GIFT SETS ============ */
#gifts { padding-bottom: clamp(80px, 12vh, 160px); }
.gift-grid {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gift-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-top: 1px solid rgba(200, 169, 81, 0.4);
  border-radius: 20px;
  padding: 28px 28px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.gift-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.45;
}
.gift-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(200, 169, 81, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.gift-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200, 169, 81, 0.5);
  box-shadow: 0 24px 60px rgba(200, 169, 81, 0.1), 0 2px 8px rgba(0, 0, 0, 0.4);
}
.gift-card:hover::after { opacity: 1; }
.gift-card.featured {
  border-color: rgba(200, 169, 81, 0.38);
  background: linear-gradient(180deg, rgba(26, 18, 8, 0.65), rgba(12, 8, 4, 0.55));
}
.card-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  padding: 8px 14px;
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 999px;
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 24px;
}
.card-visual {
  height: 320px;
  margin-bottom: 28px;
  background: radial-gradient(ellipse at center bottom, rgba(139, 105, 20, 0.22), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.card-visual img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.gift-card:hover .card-visual img { transform: scale(1.04); }
.gift-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  color: var(--text);
}
.gift-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 28px;
  flex-grow: 1;
}
.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 169, 81, 0.15);
}
.card-price {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
}

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-sm { padding: 10px 18px; font-size: 11px; letter-spacing: 2px; }
.btn-lg { padding: 20px 48px; font-size: 13px; }
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(200, 169, 81, 0.5);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--text-faint);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-dim); }

/* ============ PHASE 3: PRODUCTS ============ */
#products { padding-bottom: clamp(120px, 16vh, 220px); }
.product-grid {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: rgba(18, 15, 10, 0.32);
  border: 1px solid rgba(200, 169, 81, 0.12);
  border-radius: 16px;
  padding: 22px;
  transition: all 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 360px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.product-card:hover {
  border-color: rgba(200, 169, 81, 0.38);
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  background: rgba(18, 15, 10, 0.45);
}
.product-card.jgan-target {
  border: 1px solid rgba(200, 169, 81, 0.45);
  background: radial-gradient(ellipse at center, rgba(139, 105, 20, 0.16), rgba(18, 15, 10, 0.35));
  animation: jgan-pulse 3.5s ease-in-out infinite;
}
@keyframes jgan-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 169, 81, 0.3), 0 0 20px rgba(200, 169, 81, 0.1); }
  50% { box-shadow: 0 0 0 6px rgba(200, 169, 81, 0), 0 0 40px rgba(200, 169, 81, 0.2); }
}
/* Product card click → opens kazanova.lv product page in new tab.
   display:contents removes the <a> from layout but keeps the link semantics,
   so the existing grid still places .product-card directly. */
.product-link {
  display: contents;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.product-link .product-card { cursor: pointer; }
/* Hover indicator: ↗ in the top-right corner appears on card hover */
.product-link .product-card::after {
  content: '↗';
  position: absolute;
  top: 14px;
  right: 16px;
  font-family: var(--f-mono);
  font-size: 16px;
  color: var(--gold);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
  z-index: 2;
}
.product-link:hover .product-card::after,
.product-link:focus-visible .product-card::after {
  opacity: 0.85;
  transform: translate(0, 0);
}
.product-link:focus-visible .product-card {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.product-visual {
  height: 180px;
  background: radial-gradient(ellipse at center bottom, rgba(139, 105, 20, 0.2), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-visual img {
  max-height: 170px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.product-card:hover .product-visual img {
  transform: scale(1.06) translateY(-2px);
}
.jgan-slot {
  width: 100px; height: 180px;
  border: 1px dashed rgba(200, 169, 81, 0.2);
  border-radius: 8px;
}
.bottle-silhouette {
  position: relative;
}
.bottle-silhouette::before {
  content: '';
  width: 64px; height: 140px;
  background: linear-gradient(to bottom, #3D2817, #8B4513 30%, #6B4226);
  clip-path: polygon(40% 0, 60% 0, 63% 10%, 63% 20%, 85% 30%, 85% 100%, 15% 100%, 15% 30%, 37% 20%, 37% 10%);
  opacity: 0.5;
}
.product-meta { text-align: center; }
.product-type {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 10px;
}
.product-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
/* Product card description — short ingredient-forward sentence */
.product-desc {
  font-family: var(--f-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0 auto 14px;
  max-width: 90%;
  letter-spacing: 0.01em;
  min-height: 36px; /* keeps card heights aligned */
}
.product-details {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.product-price {
  font-family: var(--f-mono);
  font-weight: 500;
  font-size: 16px;
  color: var(--gold);
}

/* ============ PHASE 4: DISTILLATION ============ */
#distillation {
  padding: clamp(120px, 16vh, 220px) var(--section-pad-x) clamp(80px, 12vh, 160px);
  position: relative;
}
.distillation-intro {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 80px;
}
.distillation-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.95;
  margin: 30px 0 40px;
}
.distillation-title span { display: block; }
.distillation-title .t-serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-top: 10px;
}
.distillation-lead {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.75;
}
.distillation-lead i { font-family: var(--f-serif); font-style: italic; color: var(--gold); }
.dist-scroll-spacer { height: 100vh; }
.dist-stages { position: relative; }
.dist-stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 60px var(--section-pad-x);
  max-width: var(--section-max);
  margin: 0 auto;
}
.dist-stage[data-stage="disassemble"], .dist-stage[data-stage="pour"] { justify-content: flex-start; }
.dist-stage[data-stage="barrel"], .dist-stage[data-stage="vessel"], .dist-stage[data-stage="still"] { justify-content: flex-end; }
.dist-stage[data-stage="filter"], .dist-stage[data-stage="steam"] { justify-content: flex-start; }
.stage-copy {
  max-width: 480px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.stage-eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}
.stage-copy h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.stage-copy p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.stage-data {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  padding-top: 16px;
  border-top: 1px solid rgba(200, 169, 81, 0.2);
}
/* Distillation section cinematic: video breaks out of section padding to fill the full viewport width */
.dist-cinema {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  height: clamp(420px, 85vh, 900px);
  max-height: 95vh;
  overflow: hidden;
  background: #05030A;
  border-top:    1px solid rgba(200, 169, 81, 0.12);
  border-bottom: 1px solid rgba(200, 169, 81, 0.12);
}
.dist-cinema video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Subtle vignette so the cinematic video doesn't fight with surrounding sections */
.dist-cinema::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 110% 90% at 50% 50%, transparent 55%, rgba(7, 5, 10, 0.55) 100%);
}
@media (max-width: 760px) {
  .dist-cinema { height: clamp(320px, 60vh, 560px); }
}

.dist-outro {
  max-width: 900px;
  margin: 80px auto 0;
  text-align: center;
}
.dist-motto {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 40px;
}
.dist-motto .t-serif {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

/* ============ PHASE 5: ABOUT ============ */
#about { padding-bottom: clamp(80px, 12vh, 160px); }
.stats-row {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
.stat {
  padding: 50px 20px;
  text-align: center;
  border-left: 1px solid rgba(200, 169, 81, 0.15);
}
.stat:first-child { border-left: 0; }
.stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 6vw, 96px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.stat-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--text-dim);
}
.about-text {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  text-align: center;
}
.about-text p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text p:last-child {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-faint);
}

/* ============ PHASE 6: TOURS ============ */
#tours { padding-bottom: clamp(80px, 12vh, 160px); }
.tour-grid {
  max-width: var(--section-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.tour-video {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1206, #0a0502);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.tour-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-label {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  padding: 6px 12px;
  background: rgba(5, 3, 8, 0.65);
  border: 1px solid rgba(200, 169, 81, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.tour-info h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.tour-details { list-style: none; margin-bottom: 40px; }
.tour-details li {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(200, 169, 81, 0.12);
}
.tour-details li span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-dim);
}
.tour-details li strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text);
}
.tour-lede {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 540px;
}
.btn-block { display: block; width: 100%; }

/* ---- Tour blocks ---- */
.tour-block {
  max-width: var(--section-max);
  margin: 80px auto 0;
  padding: 0 var(--section-pad-x);
}
.tour-block-head {
  text-align: center;
  margin-bottom: 50px;
}
.tour-eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 14px;
  text-transform: uppercase;
}
.tour-block-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.01em;
  color: var(--text);
}
.tour-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.tour-two-col .tour-block-title { text-align: left; font-size: 32px; }
.tour-two-col .tour-eyebrow { text-align: left; }

/* ---- Tariffs ---- */
.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 18px;
}
.tariff-card {
  position: relative;
  padding: 36px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tariff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 81, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.tariff-featured {
  border-color: rgba(200, 169, 81, 0.55);
  background: linear-gradient(160deg, rgba(60, 40, 12, 0.6), rgba(18, 15, 10, 0.65));
  box-shadow: 0 0 50px rgba(200, 169, 81, 0.12);
}
.tariff-flag {
  position: absolute;
  top: -12px; left: 28px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  color: var(--bg);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  padding: 6px 14px;
  border-radius: 999px;
}
.tariff-badge {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.tariff-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.tariff-price {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 38px;
  color: var(--gold-light);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.tariff-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin-left: 4px;
}
.tariff-features {
  list-style: none;
  margin-bottom: 26px;
}
.tariff-features li {
  font-size: 14px;
  color: var(--text-dim);
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid rgba(200, 169, 81, 0.08);
  position: relative;
}
.tariff-features li:last-child { border-bottom: 0; }
.tariff-features li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  color: var(--gold);
  font-weight: 700;
}
.tariff-note {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 18px;
}

/* ---- Price calculator ---- */
.calc-card {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1.2fr;
  gap: 40px;
  align-items: stretch;
  padding: 44px 48px;
  background: linear-gradient(160deg, rgba(35, 75, 78, 0.55), rgba(11, 32, 35, 0.7));
  border: 1px solid rgba(184, 115, 51, 0.32);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 20, 22, 0.45), 0 0 50px rgba(184, 115, 51, 0.08);
}
.calc-formula {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.calc-formula-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calc-formula-key {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.calc-formula-val {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 30px;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}
.calc-formula-vat .calc-formula-val {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dim);
}
.calc-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184, 115, 51, 0.4), transparent);
}
.calc-live {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.calc-stepper-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.calc-stepper {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(184, 115, 51, 0.35);
  border-radius: 12px;
  overflow: hidden;
  max-width: 220px;
}
.calc-stepper button {
  width: 50px;
  background: rgba(184, 115, 51, 0.08);
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
  transition: background 0.15s;
}
.calc-stepper button:hover { background: rgba(184, 115, 51, 0.2); }
.calc-stepper input {
  flex: 1;
  text-align: center;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}
.calc-stepper input:focus { outline: 0; }
.calc-totals {
  display: grid;
  gap: 6px;
  padding: 16px 20px;
  background: rgba(7, 25, 27, 0.4);
  border: 1px solid rgba(184, 115, 51, 0.22);
  border-radius: 12px;
}
.calc-net-row,
.calc-grand-row,
.calc-perp-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.calc-net-row span,
.calc-grand-row span,
.calc-perp-row span {
  font-size: 13px;
  color: var(--text-dim);
}
.calc-net-row strong { font-family: var(--f-display); font-weight: 500; font-size: 16px; color: var(--text); }
.calc-grand-row {
  padding-top: 8px;
  border-top: 1px solid rgba(184, 115, 51, 0.18);
  margin-top: 4px;
}
.calc-grand-row span { color: var(--text); font-weight: 500; }
.calc-grand-row strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}
.calc-perp-row span { font-size: 11px; color: var(--text-faint); letter-spacing: 1px; }
.calc-perp-row strong { font-family: var(--f-mono); font-size: 12px; color: var(--text-dim); }
.calc-cta { margin-top: 6px; }

/* ---- Program timeline ---- */
.program-timeline {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}
.program-timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.program-step {
  position: relative;
  padding: 18px 0 18px 40px;
  border-left: 0;
}
.program-step::before {
  content: "";
  position: absolute;
  left: -3px; top: 26px;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 169, 81, 0.15);
}
.program-time {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 8px;
}
.program-body h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 6px;
}
.program-body p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ---- Check lists ---- */
.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.6;
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.check-list.dot li::before { content: "•"; font-size: 18px; line-height: 1; }
.tour-warn {
  margin-top: 22px;
  padding: 14px 18px;
  background: rgba(200, 169, 81, 0.08);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  color: var(--text);
  border-radius: 4px;
  line-height: 1.5;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-cell {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0502;
  border: 1px solid var(--glass-border);
}
.gallery-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-cell:hover img { transform: scale(1.06); }
.gallery-cell.g-tall { grid-row: span 2; }
.gallery-cell.g-wide { grid-column: span 2; }
.gallery-cap {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  padding: 5px 10px;
  background: rgba(5, 3, 8, 0.7);
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  padding: 30px 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}
.review .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review blockquote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
  border: 0;
  padding: 0;
}
.review figcaption {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}
.review figcaption strong { color: var(--gold-light); font-weight: 500; }

/* ---- FAQ ---- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(200, 169, 81, 0.4); }
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  position: relative;
  list-style: none;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item > div {
  padding: 0 22px 20px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- Location ---- */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: stretch;
}
.loc-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.loc-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(200, 169, 81, 0.12);
}
.loc-key {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.loc-val {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  letter-spacing: 0.5px;
}
.loc-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.loc-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  min-height: 320px;
  position: relative;
}
.loc-map iframe {
  width: 100%; height: 100%;
  min-height: 320px;
  border: 0;
  filter: grayscale(0.3) contrast(1.1) saturate(0.7) brightness(0.85);
}

/* ---- Final CTA + sticky ---- */
.tour-final-cta {
  max-width: var(--section-max);
  margin: 100px auto 0;
  padding: 44px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background: linear-gradient(135deg, rgba(200, 169, 81, 0.12), rgba(60, 40, 12, 0.4));
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 20px;
}
.tour-final-text h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 8px;
}
.tour-final-text p { color: var(--text-dim); font-size: 15px; }

.sticky-book {
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  color: var(--bg);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(200, 169, 81, 0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}
.sticky-book.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-book:hover { transform: translateY(-2px); }
.sticky-arrow {
  display: inline-flex;
  width: 22px; height: 22px;
  align-items: center; justify-content: center;
  background: var(--bg);
  color: var(--gold);
  border-radius: 50%;
  font-size: 14px;
}

/* ============ BOOKING MODAL ============ */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking-modal[hidden] { display: none; }
.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 3, 8, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.booking-dialog {
  position: relative;
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 40px 32px;
  background: linear-gradient(160deg, #161009, #0a0703);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(200, 169, 81, 0.08);
  animation: bk-in 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}
@keyframes bk-in {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.booking-close {
  position: absolute;
  top: 16px; right: 18px;
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--text-dim);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.booking-close:hover { background: rgba(200, 169, 81, 0.1); color: var(--gold); }

.booking-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 6px 0 28px;
}
.bp-step {
  text-align: center;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(200, 169, 81, 0.15);
  font-family: var(--f-mono);
  letter-spacing: 2px;
  color: var(--text-faint);
  transition: color 0.3s, border-color 0.3s;
}
.bp-step span {
  display: block;
  font-size: 10px;
  margin-bottom: 4px;
}
.bp-step em {
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
}
.bp-step.is-active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.bp-step.is-done {
  color: var(--gold);
  border-bottom-color: var(--gold-dark);
}

.booking-step { display: none; }
.booking-step.is-active { display: block; animation: bk-fade 0.25s ease; }
@keyframes bk-fade { from { opacity: 0; } to { opacity: 1; } }
.booking-step h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 6px;
}
.booking-sub {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
}

/* Calendar */
.cal-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-nav {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(200, 169, 81, 0.08);
  color: var(--gold);
  font-size: 22px;
  display: inline-flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cal-nav:hover { background: rgba(200, 169, 81, 0.18); }
.cal-month {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--text);
  text-transform: uppercase;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 18px;
}
.cal-dow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-align: center;
  padding: 8px 0 6px;
}
.cal-day {
  aspect-ratio: 1;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--text);
  background: rgba(200, 169, 81, 0.04);
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}
.cal-day:hover:not(.is-disabled) {
  background: rgba(200, 169, 81, 0.15);
  border-color: rgba(200, 169, 81, 0.4);
}
.cal-day.is-empty { background: transparent; cursor: default; pointer-events: none; }
.cal-day.is-disabled {
  color: var(--text-faint);
  cursor: not-allowed;
  background: transparent;
}
.cal-day.is-available::after {
  content: "";
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.cal-day.is-selected {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold-light);
  font-weight: 700;
}
.cal-day.is-today { outline: 1px dashed rgba(200, 169, 81, 0.5); }

.time-slots { margin-bottom: 18px; }
.ts-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.ts-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ts-btn {
  padding: 12px 22px;
  border: 1px solid rgba(200, 169, 81, 0.3);
  border-radius: 10px;
  background: rgba(200, 169, 81, 0.05);
  color: var(--text);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.ts-btn:hover { background: rgba(200, 169, 81, 0.18); }
.ts-btn.is-selected {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold-light);
}
.ts-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Step 2 */
.bk-tariffs {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.bk-tariff {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(200, 169, 81, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  align-items: flex-start;
  position: relative;
}
.bk-tariff:hover { background: rgba(200, 169, 81, 0.08); }
.bk-tariff input[type="radio"] {
  margin-top: 4px;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.bk-tariff:has(input:checked) {
  border-color: var(--gold);
  background: rgba(200, 169, 81, 0.12);
}
.bk-tariff.is-popular::after {
  content: "POPULAR";
  position: absolute;
  top: -10px; right: 14px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 2px;
  padding: 3px 8px;
  border-radius: 999px;
}
.bk-tariff-name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
}
.bk-tariff-name span {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-dim);
}
.bk-tariff-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}

.bk-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.bk-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.bk-stepper {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
}
.bk-stepper button {
  width: 42px;
  background: rgba(200, 169, 81, 0.05);
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
}
.bk-stepper button:hover { background: rgba(200, 169, 81, 0.15); }
.bk-stepper input {
  flex: 1;
  text-align: center;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
}
.bk-stepper input:focus { outline: 0; }
.bk-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bk-pill {
  padding: 10px 14px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: transparent;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.bk-pill:hover { border-color: var(--gold); color: var(--text); }
.bk-pill.is-active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.bk-extras {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.bk-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.bk-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.bk-summary {
  background: rgba(200, 169, 81, 0.06);
  border: 1px solid rgba(200, 169, 81, 0.2);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 22px;
}
.bk-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-dim);
}
.bk-sum-row strong {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--text);
}
.bk-sum-total {
  border-top: 1px solid rgba(200, 169, 81, 0.18);
  padding-top: 12px;
  margin-top: 6px;
  font-size: 16px;
}
.bk-sum-total strong {
  font-size: 22px;
  color: var(--gold-light);
}

/* Step 3 form */
.bk-form { display: grid; gap: 16px; margin-bottom: 22px; }
.bk-field {
  display: block;
}
.bk-field-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.bk-field input,
.bk-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(200, 169, 81, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.bk-field input:focus,
.bk-field textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: rgba(200, 169, 81, 0.08);
}
.bk-field input::placeholder,
.bk-field textarea::placeholder { color: var(--text-faint); }
.bk-field input.has-error,
.bk-field textarea.has-error { border-color: #d04545; }

.booking-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(200, 169, 81, 0.1);
}

/* Step 4 success */
.bk-success { text-align: center; padding: 12px 0; }
.bk-success-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg);
  font-size: 36px;
  font-weight: 700;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(200, 169, 81, 0.4);
}
.bk-recap {
  margin: 22px 0;
  padding: 18px 22px;
  background: rgba(200, 169, 81, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text);
  text-align: left;
  line-height: 1.7;
}
.bk-recap-row { display: flex; justify-content: space-between; padding: 4px 0; }
.bk-recap-row span { color: var(--text-dim); }
.bk-recap-row strong { color: var(--text); font-weight: 600; }
.bk-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Toast for errors */
.bk-toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 22px;
  background: rgba(208, 69, 69, 0.95);
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  z-index: 400;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.bk-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============ FOOTER ============ */
#site-footer {
  padding: clamp(100px, 14vh, 160px) var(--section-pad-x) 60px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  border-top: 1px solid rgba(200, 169, 81, 0.15);
  position: relative;
}
.footer-brand {
  max-width: var(--section-max);
  margin: 0 auto 80px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(200, 169, 81, 0.15);
}
.footer-brand img {
  width: 84px; height: 84px;
  border-radius: 50%;
  filter: drop-shadow(0 0 30px rgba(200, 169, 81, 0.25));
}
.footer-wordmark {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 4px;
  color: var(--text);
  line-height: 1;
}
.footer-wordmark span {
  display: block;
  font-weight: 300;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 8px;
  margin-top: 4px;
}
.footer-cols {
  max-width: var(--section-max);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-cols h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-cols a {
  display: block;
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-cols a:hover { color: var(--text); }
.mega-cta {
  max-width: var(--section-max);
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 44px 60px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  color: var(--bg);
  border-radius: 4px;
  transition: all 0.35s ease;
}
.mega-cta:hover {
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  box-shadow: 0 0 60px rgba(200, 169, 81, 0.4);
  transform: translateY(-2px);
}
.mega-cta span:first-child {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 4px;
}
.mega-cta-url { font-family: var(--f-mono); font-size: 14px; letter-spacing: 2px; }
.footer-meta {
  max-width: var(--section-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-faint);
  gap: 12px;
  text-align: center;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-legal-links a {
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--gold); }
.footer-legal-links .dot { color: var(--text-faint); opacity: 0.6; }
.footer-warning {
  margin-top: 4px;
  padding: 8px 16px;
  border: 1px solid rgba(200, 169, 81, 0.18);
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  background: rgba(18, 15, 10, 0.4);
  max-width: 600px;
}

/* ════════════════════════════════════════════════════════════════
   TOURS — LATGALE LAKE PALETTE (scoped override for #tours + booking modal)
   Replaces black/gold with deep teal + cream + copper.
   ──────────────────────────────────────────────────────────────── */
#tours,
#sticky-book,
#booking-modal {
  --gold:        #B87333;
  --gold-light:  #D89163;
  --gold-dark:   #7A4A1F;
  --bg:          #0E2A2E;
  --bg-warm:     #143335;
  --bg-deep:     #07191B;
  --text:        #F2EAD3;
  --text-dim:    #B8AE91;
  --text-faint:  rgba(242, 234, 211, 0.35);
  --glass-bg:    rgba(20, 50, 52, 0.55);
  --glass-border:rgba(184, 115, 51, 0.25);
}

/* Section background — feathered teal pad behind cards/timeline.
   Layered above the global #07050A body but below the fixed canvas (#bottle-canvas z=1).
   Use a wrapping radial+linear so the section reads as "cool lake" against the warm hero. */
#tours {
  position: relative;
  isolation: isolate;
}
#tours::before {
  content: "";
  position: absolute;
  inset: -40px 0 -40px 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(184, 115, 51, 0.10), transparent 70%),
    radial-gradient(ellipse 100% 80% at 50% 70%, rgba(20, 60, 65, 0.55), transparent 75%),
    linear-gradient(to bottom, #0A2225 0%, #0E2A2E 50%, #07191B 100%);
  pointer-events: none;
}

/* Hero video — teal frame instead of brown */
#tours .tour-video {
  background: linear-gradient(135deg, #0a1f22, #061214);
  border-color: rgba(184, 115, 51, 0.2);
  box-shadow: 0 20px 60px rgba(0, 20, 22, 0.5);
}

/* Detail rows */
#tours .tour-details li {
  border-bottom-color: rgba(184, 115, 51, 0.18);
}

/* Section titles use serif copper-cream */
#tours .tour-block-title {
  color: var(--text);
}
#tours .section-title .t-sans { color: var(--text); }
#tours .section-title .t-serif { color: var(--gold-light); }
#tours .section-num { color: rgba(184, 115, 51, 0.18); }

/* Tariff cards */
#tours .tariff-card {
  background: rgba(11, 32, 35, 0.65);
  border-color: rgba(184, 115, 51, 0.22);
}
#tours .tariff-card:hover {
  border-color: rgba(184, 115, 51, 0.55);
  box-shadow: 0 20px 60px rgba(0, 20, 22, 0.55);
}
#tours .tariff-featured {
  border-color: rgba(184, 115, 51, 0.6);
  background: linear-gradient(160deg, rgba(35, 75, 78, 0.55), rgba(11, 32, 35, 0.7));
  box-shadow: 0 0 50px rgba(184, 115, 51, 0.10);
}
#tours .tariff-features li {
  border-bottom-color: rgba(184, 115, 51, 0.10);
}
#tours .tariff-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline accent line + dots */
#tours .program-timeline::before {
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
#tours .program-step::before {
  box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.18);
}
#tours .program-time {
  letter-spacing: 4px;
  font-size: 10px;
}

/* FAQ */
#tours .faq-item { background: rgba(11, 32, 35, 0.55); }
#tours .faq-item[open] { border-color: rgba(184, 115, 51, 0.5); }

/* Reviews removed; tour-warn unused now, but keep tone aligned if it returns */
#tours .tour-warn {
  background: rgba(184, 115, 51, 0.10);
  border-left-color: var(--gold);
}

/* Gallery captions */
#tours .gallery-cell {
  background: #061214;
  border-color: rgba(184, 115, 51, 0.18);
}
#tours .gallery-cap {
  background: rgba(7, 25, 27, 0.72);
  border-color: rgba(184, 115, 51, 0.3);
}

/* Location info */
#tours .loc-row { border-bottom-color: rgba(184, 115, 51, 0.16); }
#tours .loc-map { border-color: rgba(184, 115, 51, 0.22); }
#tours .loc-map iframe {
  filter: grayscale(0.4) contrast(1.05) saturate(0.6) brightness(0.8) hue-rotate(-10deg);
}

/* Final CTA card */
#tours .tour-final-cta {
  background: linear-gradient(135deg, rgba(184, 115, 51, 0.14), rgba(35, 75, 78, 0.45));
  border-color: rgba(184, 115, 51, 0.35);
}

/* Buttons within tours: gold buttons stay copper via var override; ghost buttons get teal hover */
#tours .btn-ghost,
#booking-modal .btn-ghost {
  border: 1px solid rgba(184, 115, 51, 0.35);
  color: var(--text);
}
#tours .btn-ghost:hover,
#booking-modal .btn-ghost:hover {
  background: rgba(184, 115, 51, 0.12);
  border-color: var(--gold);
}

/* Eyebrows + decorative dividers */
#tours .tour-eyebrow,
#tours .section-eyebrow {
  color: var(--gold-light);
}

/* ── BOOKING MODAL — recolor ── */
#booking-modal .booking-backdrop {
  background: rgba(7, 25, 27, 0.82);
}
#booking-modal .booking-dialog {
  background: linear-gradient(160deg, #143335, #07191B);
  border-color: rgba(184, 115, 51, 0.3);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(184, 115, 51, 0.10);
}
#booking-modal .bp-step { border-bottom-color: rgba(184, 115, 51, 0.18); }
#booking-modal .bp-step.is-active { border-bottom-color: var(--gold); color: var(--gold-light); }
#booking-modal .bp-step.is-done { border-bottom-color: var(--gold-dark); color: var(--gold); }

#booking-modal .cal-day {
  background: rgba(184, 115, 51, 0.05);
}
#booking-modal .cal-day:hover:not(.is-disabled) {
  background: rgba(184, 115, 51, 0.18);
  border-color: rgba(184, 115, 51, 0.5);
}
#booking-modal .cal-day.is-available::after { background: var(--gold); }
#booking-modal .cal-day.is-selected {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold-light);
}
#booking-modal .cal-day.is-today { outline-color: rgba(184, 115, 51, 0.55); }

#booking-modal .ts-btn {
  background: rgba(184, 115, 51, 0.06);
  border-color: rgba(184, 115, 51, 0.32);
}
#booking-modal .ts-btn:hover { background: rgba(184, 115, 51, 0.18); }
#booking-modal .ts-btn.is-selected {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold-light);
}

#booking-modal .bk-tariff {
  background: rgba(184, 115, 51, 0.05);
  border-color: rgba(184, 115, 51, 0.22);
}
#booking-modal .bk-tariff:hover { background: rgba(184, 115, 51, 0.10); }
#booking-modal .bk-tariff:has(input:checked) {
  background: rgba(184, 115, 51, 0.14);
  border-color: var(--gold);
}
#booking-modal .bk-tariff.is-popular::after { background: var(--gold); color: var(--bg); }

#booking-modal .bk-stepper { border-color: rgba(184, 115, 51, 0.3); }
#booking-modal .bk-stepper button { background: rgba(184, 115, 51, 0.06); color: var(--gold); }
#booking-modal .bk-stepper button:hover { background: rgba(184, 115, 51, 0.18); }
#booking-modal .bk-pill { border-color: rgba(184, 115, 51, 0.3); color: var(--text-dim); }
#booking-modal .bk-pill:hover { border-color: var(--gold); color: var(--text); }
#booking-modal .bk-pill.is-active {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
#booking-modal .bk-summary {
  background: rgba(184, 115, 51, 0.07);
  border-color: rgba(184, 115, 51, 0.25);
}
#booking-modal .bk-sum-total { border-top-color: rgba(184, 115, 51, 0.22); }
#booking-modal .bk-field input,
#booking-modal .bk-field textarea {
  background: rgba(184, 115, 51, 0.05);
  border-color: rgba(184, 115, 51, 0.25);
  color: var(--text);
}
#booking-modal .bk-field input:focus,
#booking-modal .bk-field textarea:focus {
  border-color: var(--gold);
  background: rgba(184, 115, 51, 0.10);
}
#booking-modal .booking-actions { border-top-color: rgba(184, 115, 51, 0.14); }

/* Success step icon — copper gradient on cream */
#booking-modal .bk-success-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #07191B;
  box-shadow: 0 0 40px rgba(184, 115, 51, 0.45);
}
#booking-modal .bk-recap {
  background: rgba(184, 115, 51, 0.07);
  border-color: rgba(184, 115, 51, 0.22);
}

/* Sticky CTA — copper instead of gold */
#sticky-book {
  background: linear-gradient(to right, var(--gold-dark), var(--gold));
  color: #07191B;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 30px rgba(184, 115, 51, 0.35);
}
#sticky-book .sticky-arrow { background: #07191B; color: var(--gold); }

/* ============ DISTILLATION — BRIDGE BLOCK ============ */
/* Sits between the scroll-spacer (3D bottle) and the dist-cinema video.
   One line, serif italic, centered. */
.dist-bridge {
  position: relative;
  z-index: 4;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(60px, 12vh, 120px) clamp(24px, 5vw, 64px);
  text-align: center;
}
.dist-bridge-line {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--gold-light);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .dist-bridge { padding: 50px 24px; }
}

/* ============ FILM GRAIN ============ */
#grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  #topbar { padding: 16px 20px; }
  .tabs { display: none; }
  .section-head { padding: 80px 24px 60px; }
  .hero-bottle-space { min-height: clamp(260px, 36vh, 360px); }
  .gift-grid { grid-template-columns: 1fr; padding: 0 24px; gap: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); padding: 0 24px; gap: 20px; }
  .stat { border-left: 0; padding: 30px 10px; }
  .tour-grid { grid-template-columns: 1fr; padding: 0 24px; gap: 30px; }
  .tour-info h3 { font-size: 34px; }
  .tariff-grid { grid-template-columns: 1fr; gap: 18px; }
  .calc-card { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; }
  .calc-divider { display: none; }
  .calc-formula-val { font-size: 26px; }
  .tour-two-col { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-cell.g-tall { grid-row: span 2; }
  .gallery-cell.g-wide { grid-column: span 2; }
  .loc-grid { grid-template-columns: 1fr; gap: 24px; }
  .loc-map { min-height: 240px; }
  .loc-map iframe { min-height: 240px; }
  .tour-final-cta { flex-direction: column; padding: 28px; gap: 18px; text-align: center; }
  .booking-dialog { padding: 28px 22px 22px; max-height: 95vh; }
  .booking-progress { gap: 4px; }
  .bp-step em { font-size: 9px; letter-spacing: 1px; }
  .bk-row-2 { grid-template-columns: 1fr; gap: 14px; }
  .sticky-book { padding: 12px 18px; font-size: 11px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .mega-cta { flex-direction: column; gap: 12px; padding: 30px; text-align: center; }
  .mega-cta span:first-child { font-size: 20px; }
  .footer-brand { flex-direction: column; text-align: center; gap: 16px; }
  .footer-wordmark { font-size: 28px; }
  .footer-meta { flex-direction: column; gap: 6px; }
  .section-divider { padding: 24px; gap: 14px; }
}

/* ============ AGE GATE v2 — year of birth selector + audit trail ============ */
.age-year-label {
  display: block;
  margin: 22px 0 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
}
.age-year-select {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 14px;
  padding: 12px 16px;
  background: rgba(18, 15, 10, 0.6);
  border: 1px solid rgba(200, 169, 81, 0.35);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-align: center;
  text-align-last: center;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.age-year-select:hover,
.age-year-select:focus-visible {
  border-color: var(--gold);
  background: rgba(45, 30, 12, 0.4);
}
.age-year-select option {
  background: #0E0A07;
  color: var(--text);
  padding: 8px;
}
.age-error {
  margin: 0 auto 14px;
  max-width: 320px;
  padding: 8px 14px;
  border: 1px solid rgba(220, 80, 80, 0.4);
  background: rgba(80, 20, 20, 0.3);
  color: #f0c8c8;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1px;
  border-radius: 4px;
  line-height: 1.5;
}
.age-buttons #age-yes:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============ A11Y — skip-link for keyboard / screen-reader users (EAA / WCAG 2.4.1) ============ */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 99999;
  background: var(--gold);
  color: #07050A;
  padding: 10px 18px;
  border-radius: 4px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}
/* Universal focus indicator for keyboard users (WCAG 2.4.7) */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============ COOKIE CONSENT BANNER (GDPR + ePrivacy compliant) ============ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 720px;
  margin: 0 auto;
  z-index: 9000;
  background: rgba(7, 5, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 169, 81, 0.28);
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text);
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.cookie-banner.is-visible { display: block; }
.cookie-banner.is-shown { opacity: 1; transform: translateY(0); }
.cookie-banner-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cookie-banner-text { color: var(--text-dim); margin-bottom: 14px; }
.cookie-banner-text a { color: var(--gold); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner-actions button {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid rgba(200, 169, 81, 0.4);
  background: transparent;
  color: var(--text);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex: 1 1 auto;
  min-width: 130px;
}
.cookie-banner-actions button:hover {
  background: rgba(200, 169, 81, 0.12);
  border-color: var(--gold);
}
.cookie-banner-actions .cb-accept {
  background: var(--gold);
  color: #07050A;
  border-color: var(--gold);
}
.cookie-banner-actions .cb-accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
@media (max-width: 600px) {
  .cookie-banner { padding: 18px 18px; bottom: 8px; left: 8px; right: 8px; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-actions button { width: 100%; }
}

/* ============ HOVER-PREVIEW (Netflix-style: video replaces photo on hover) ============ */
.product-link[data-video-src] .product-card { position: relative; }
.product-link[data-video-src] .product-visual { position: relative; }
/* The looping preview video sits absolutely over the photo; opacity fades in. */
.product-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
  border-radius: inherit;
  background: transparent;
}
.product-card.is-previewing .product-preview-video { opacity: 1; }
.product-card.is-previewing .product-visual > img { opacity: 0; }
.product-link[data-video-src] .product-visual > img {
  transition: opacity 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
/* Tiny indicator that this card has video preview */
.product-link[data-video-src] .product-card::before {
  content: '▶';
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 10px;
  color: var(--gold);
  opacity: 0.5;
  z-index: 3;
  pointer-events: none;
}
.product-link[data-video-src] .product-card.is-previewing::before { opacity: 0; }

/* Mobile / touch devices: don't auto-fetch the preview video — saves bandwidth. */
@media (hover: none) {
  .product-link[data-video-src] .product-card::before { display: none; }
}

/* ============ HERO TAGLINE + CTA STRIP (added 2026-04-27) ============ */
.hero-tagline {
  font-family: var(--f-body);
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: 0.02em;
  color: var(--text-dim);
  text-align: center;
  max-width: 640px;
  margin: 14px auto 0;
  line-height: 1.5;
  z-index: 11;
  position: relative;
  opacity: 0;
  transition: opacity 1.2s 0.7s;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 22px;
  z-index: 11;
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1.2s 0.9s, transform 1.2s 0.9s;
}
body.hero-show .hero-tagline { opacity: 1; }
body.hero-show .hero-actions { opacity: 1; transform: translateY(0); }
.hero-actions .btn { pointer-events: auto; }
@media (max-width: 600px) {
  .hero-actions { flex-wrap: wrap; gap: 10px; }
}
