/* ═══════════════════════════════════════════════════════════
   Brouwerij Rostune — style.css
   Dark amber brewery aesthetic · Cormorant Garamond + DM Sans
   ═══════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────────── */
:root {
  --bg:          #080604;
  --bg-2:        #0f0b05;
  --bg-3:        #160e06;
  --amber:       #c4782a;
  --amber-light: #e8a84c;
  --amber-dim:   #7a4a18;
  --cream:       #f0e6cc;
  --cream-dim:   #b8a882;
  --muted:       #6e5e48;
  --white:       #faf6ef;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);

  --scroll-height: 900vh;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* Lenis handles this */
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ─── Loader ────────────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-brand {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--cream);
  opacity: 0;
  animation: loaderFadeIn 0.6s var(--ease-out-expo) 0.2s forwards;
}

@keyframes loaderFadeIn {
  to { opacity: 1; }
}

.loader-track {
  width: clamp(160px, 30vw, 280px);
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

#loader-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--amber);
  transition: width 0.2s ease;
}

#loader-percent {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* ─── Navigation ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 2rem 5vw;
  transition: padding 0.4s var(--ease-out-expo), background 0.4s ease;
}

.site-header.scrolled {
  padding: 1.2rem 5vw;
  background: rgba(8, 6, 4, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 120, 42, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--cream);
  transition: color 0.3s ease;
}

.nav-logo:hover {
  color: var(--amber-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links .nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--amber);
  color: var(--amber);
  letter-spacing: 0.12em;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links .nav-cta:hover {
  background: var(--amber);
  color: var(--bg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero-standalone {
  position: relative;
  height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8vw 10vh;
  z-index: 5;
  overflow: hidden;
}

.hero-standalone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(196, 120, 42, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2rem;
  opacity: 0;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.5vw, 10rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.06em;
  margin-bottom: 2.5rem;
}

.hero-heading .word {
  display: block;
  opacity: 0;
  transform: translateY(60px);
}

.hero-heading .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-light);
  padding-left: 0.12em;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 480px;
  opacity: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 10vh;
  right: 8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 3px;
  background: var(--amber);
  border-radius: 50%;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { top: -4px; opacity: 1; }
  80%  { top: calc(100% + 4px); opacity: 1; }
  100% { top: calc(100% + 4px); opacity: 0; }
}

/* ─── Canvas ────────────────────────────────────────────── */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0;              /* JS crossfade controls this */
  will-change: opacity;
  /* screen blend: pure-black video bg → fully transparent,
     amber beer tones glow naturally over the page background */
  mix-blend-mode: screen;
  /* Tighter vignette to match the smaller image footprint */
  -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, black 50%, transparent 100%);
          mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, black 50%, transparent 100%);
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/* ─── Dark Overlay ──────────────────────────────────────── */
#dark-overlay {
  position: fixed;
  inset: 0;
  background: #080604;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  will-change: opacity;
}

/* ─── Marquee ───────────────────────────────────────────── */
.marquee-wrap {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-text {
  font-family: var(--font-display);
  font-size: 13vw;
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  display: inline-block;
  will-change: transform;
  line-height: 1;
  letter-spacing: 0.04em;
  /* Subtle amber stroke for visual depth */
  -webkit-text-stroke: 1px rgba(196, 120, 42, 0.3);
}

/* ─── Scroll Container ──────────────────────────────────── */
#scroll-container {
  position: relative;
  height: var(--scroll-height);
  z-index: 4;
}

/* ─── Scroll Sections ───────────────────────────────────── */
.scroll-section {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.section-inner {
  pointer-events: all;
  max-width: 520px;
}

.align-left {
  padding-left: 7vw;
  padding-right: 55vw;
}

.align-right {
  padding-left: 55vw;
  padding-right: 7vw;
}

.align-left .section-inner,
.align-right .section-inner {
  max-width: 42vw;
}

/* ─── Section Typography ────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.6rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 600;
  line-height: 0.92;
  color: var(--cream);
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 30px rgba(8, 6, 4, 0.7);
}

.section-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-light);
}

.section-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(8, 6, 4, 0.8);
}

/* ─── Stats Section ─────────────────────────────────────── */
.section-stats {
  justify-content: center;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4vw;
  width: 100%;
  padding: 0 8vw;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.stat-number-wrap {
  display: flex;
  align-items: flex-start;
  line-height: 1;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 6.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  font-weight: 400;
  color: var(--amber);
  margin-top: 0.15em;
  margin-left: 0.05em;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ─── CTA Section ───────────────────────────────────────── */
.section-cta {
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 12vh;
}

.cta-inner {
  text-align: center;
  max-width: 680px;
  position: relative;
  isolation: isolate;
  padding: 3rem 4rem 3.5rem;
}

/* Dark radial vignette behind the CTA text — makes it readable over any frame */
.cta-inner::before {
  content: '';
  position: absolute;
  inset: -3rem -6rem;
  background: radial-gradient(ellipse 80% 80% at 50% 50%,
    rgba(8, 6, 4, 0.85) 25%,
    rgba(8, 6, 4, 0.55) 60%,
    transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.cta-heading {
  font-size: clamp(3.5rem, 7vw, 8.5rem);
  text-shadow: 0 2px 16px rgba(0,0,0,0.95), 0 4px 48px rgba(0,0,0,0.7);
}

.cta-heading em {
  text-shadow: 0 2px 16px rgba(0,0,0,0.95), 0 4px 48px rgba(0,0,0,0.7);
}

.cta-body {
  max-width: 420px;
  margin: 0 auto 2.5rem;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

.cta-button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  border: 1px solid var(--amber);
  color: var(--amber);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease-out-expo),
              color 0.35s var(--ease-out-expo),
              transform 0.3s var(--ease-out-expo);
}

.cta-button:hover {
  background: var(--amber);
  color: var(--bg);
  transform: translateY(-2px);
}

.cta-button--outline {
  border-color: var(--cream-dim);
  color: var(--cream-dim);
}

.cta-button--outline:hover {
  background: var(--cream);
  color: var(--bg);
  border-color: var(--cream);
}

/* ─── Brouwproces: sticky video + meescrollende stappen ─── */
.process-section {
  position: relative;
  z-index: 10;
  background: var(--bg-2);
  padding: 12vh 8vw 10vh;
  border-top: 1px solid rgba(196, 120, 42, 0.12);
}

.process-header {
  max-width: 660px;
  margin-bottom: 7rem;
}

.process-header .section-label {
  margin-bottom: 1.8rem;
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 600;
  line-height: 0.92;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.process-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-light);
}

.process-intro {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.7;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

/* Sticky videokolom — volle viewporthoogte met de video verticaal gecentreerd.
   Bewust géén top:50% + translateY(-50%): dat is fragieler in combinatie
   met position:sticky binnen een grid-area. */
.process-video-col {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-video-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(196, 120, 42, 0.18);
  background: var(--bg-3);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.9);
}

.process-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--bg-3);
}

/* Knop "Bekijk met geluid" */
.process-sound-btn {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(8, 6, 4, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(240, 230, 204, 0.22);
  cursor: pointer;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

.process-sound-btn:hover {
  background: rgba(196, 120, 42, 0.9);
  border-color: var(--amber-light);
  color: var(--white);
}

.process-sound-icon {
  font-size: 0.62rem;
  line-height: 1;
  transform: translateY(0.5px);
}

.process-video-credit {
  padding: 0.85rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Meescrollende stappen */
.process-steps {
  list-style: none;
  counter-reset: none;
  display: flex;
  flex-direction: column;
  gap: clamp(6rem, 14vh, 12rem);
  padding: clamp(4rem, 12vh, 10rem) 0;
}

.process-step {
  position: relative;
  padding-left: 4.5rem;
  opacity: 0.28;
  transition: opacity 0.5s var(--ease-in-out);
}

.process-step.is-active {
  opacity: 1;
}

.process-step-num {
  position: absolute;
  left: 0;
  top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.04em;
}

.process-step-num::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 2.6rem;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--amber-dim), transparent);
  transition: height 0.7s var(--ease-out-expo);
}

.process-step.is-active .process-step-num::after {
  height: 3.5rem;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1rem;
}

.process-step-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-dim);
  max-width: 46ch;
}

/* Erkenning 100% West-Vlaams */
.process-recognition {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(4rem, 10vh, 8rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--bg-3);
  border: 1px solid rgba(196, 120, 42, 0.14);
}

.recognition-logo {
  flex: 0 0 auto;
  width: clamp(120px, 15vw, 190px);
  height: auto;
}

.recognition-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.recognition-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream-dim);
  max-width: 62ch;
}

/* Video lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw;
  background: rgba(4, 3, 2, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.45s var(--ease-in-out);
}

.video-lightbox[hidden] {
  display: none;
}

.video-lightbox.is-open {
  opacity: 1;
}

.video-lightbox__inner {
  width: min(1200px, 100%);
}

.video-lightbox__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(196, 120, 42, 0.2);
}

.video-lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--cream);
  background: none;
  border: 1px solid rgba(240, 230, 204, 0.2);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.video-lightbox__close:hover {
  border-color: var(--amber-light);
  color: var(--amber-light);
}

@media (max-width: 900px) {
  .process-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-video-col {
    top: 4.5rem;
    height: auto;
    display: block;
    z-index: 5;
    margin-bottom: 3rem;
  }

  .process-steps {
    gap: 4.5rem;
    padding: 2rem 0 0;
  }

  .process-step {
    opacity: 1;
    padding-left: 3.5rem;
  }

  .process-recognition {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-step { opacity: 1; }
}

/* ─── Bestel-modal ──────────────────────────────────────── */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vw;
  background: rgba(4, 3, 2, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.4s var(--ease-in-out);
}

.order-modal[hidden] { display: none; }
.order-modal.is-open { opacity: 1; }

.order-modal__panel {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--bg-2);
  border: 1px solid rgba(196, 120, 42, 0.24);
  text-align: center;
  transform: translateY(18px);
  transition: transform 0.55s var(--ease-out-expo);
}

.order-modal.is-open .order-modal__panel { transform: translateY(0); }

.order-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  width: 2.4rem;
  height: 2.4rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--cream-dim);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.order-modal__close:hover { color: var(--amber-light); }

.order-modal__brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--amber);
}

.order-modal__divider {
  width: 42px;
  height: 1px;
  margin: 1.4rem auto 1.8rem;
  background: rgba(196, 120, 42, 0.45);
}

.order-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 1.1rem;
}

.order-modal__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-light);
}

.order-modal__body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cream-dim);
  max-width: 40ch;
  margin: 0 auto 2.2rem;
}

.order-modal__contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.order-contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.2rem;
  background: var(--bg-3);
  border: 1px solid rgba(196, 120, 42, 0.16);
  transition: border-color 0.35s ease;
}

.order-contact-row:hover { border-color: rgba(196, 120, 42, 0.42); }

.order-contact-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

.order-contact-value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 500;
  color: var(--cream);
  word-break: break-word;
  transition: color 0.3s ease;
}

.order-contact-value:hover { color: var(--amber-light); }

.order-modal__legal {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Lichte variant — likeuren & gin tab */
body.theme-light .order-modal        { background: rgba(26, 22, 18, 0.62); }
body.theme-light .order-modal__panel { background: var(--lt-bg); border-color: var(--lt-border); }
body.theme-light .order-modal__close { color: var(--lt-muted); }
body.theme-light .order-modal__close:hover,
body.theme-light .order-contact-value:hover { color: var(--lt-accent); }
body.theme-light .order-modal__brand,
body.theme-light .order-contact-label       { color: var(--lt-accent); }
body.theme-light .order-modal__divider      { background: var(--lt-border); }
body.theme-light .order-modal__title,
body.theme-light .order-contact-value       { color: var(--lt-text); }
body.theme-light .order-modal__title em     { color: var(--lt-accent); }
body.theme-light .order-modal__body         { color: var(--lt-text-dim); }
body.theme-light .order-modal__legal        { color: var(--lt-muted); }
body.theme-light .order-contact-row {
  background: var(--lt-bg-2);
  border-color: var(--lt-border);
}
body.theme-light .order-contact-row:hover { border-color: var(--lt-accent-light); }

@media (prefers-reduced-motion: reduce) {
  .order-modal__panel { transform: none; transition: none; }
}

/* ─── Products Section ──────────────────────────────────── */
.products-section {
  position: relative;
  z-index: 10;
  background: var(--bg-2);
  padding: 12vh 8vw 10vh;
  border-top: 1px solid rgba(196, 120, 42, 0.12);
}

.products-header {
  margin-bottom: 6rem;
  max-width: 640px;
}

.products-header .section-label {
  margin-bottom: 1.8rem;
}

.products-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 600;
  line-height: 0.9;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.products-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber-light);
}

.products-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;   /* gelijke kaarthoogte, tekst wordt niet afgekapt */
  gap: 1.5rem;
  margin-bottom: 5rem;
}

/* Product card */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border: 1px solid rgba(196, 120, 42, 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.product-card:hover {
  border-color: rgba(196, 120, 42, 0.4);
  transform: translateY(-6px);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-3);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out-expo), filter 0.4s ease;
  filter: brightness(0.9) saturate(0.85);
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-3);
  border: 1px dashed rgba(196, 120, 42, 0.3);
}

.product-image-placeholder span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dim);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 1.6rem 1.8rem;
}

.product-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
  display: block;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.product-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.6;
  /* Geen vaste hoogte: Brechts beschrijvingen zijn langer dan drie regels
     en werden hier middenin een zin afgekapt. */
  margin-bottom: 1.2rem;
}

.product-abv {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  display: inline-block;
  align-self: flex-start;  /* niet uitrekken in de flex-kolom */
  margin-top: auto;        /* badge blijft onderaan de kaart plakken */
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(196, 120, 42, 0.2);
}

.product-card:hover .product-abv {
  border-color: rgba(196, 120, 42, 0.5);
  color: var(--amber);
}

.products-footer-cta {
  text-align: center;
  padding-top: 2rem;
}

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 10;
  background: var(--bg);
  border-top: 1px solid rgba(196, 120, 42, 0.1);
  padding: 8vh 8vw 4vh;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(196, 120, 42, 0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--cream);
  display: block;
  margin-bottom: 0.8rem;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer-nav {
  display: flex;
  gap: 5rem;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.4rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col li,
.footer-col a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream-dim);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-legal {
  color: var(--muted) !important;
  opacity: 0.7;
}

/* ─── Amber accent line (decorative) ───────────────────── */
.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8vw;
  width: 60px;
  height: 2px;
  background: var(--amber);
}

/* ═══════════════════════════════════════════════════════════
   TAB SWITCHER
   ═══════════════════════════════════════════════════════════ */
.tab-switcher {
  display: flex;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(196, 120, 42, 0.2);
  border-radius: 40px;
  padding: 3px;
  gap: 0;
}

.tab-btn {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: none;
  border: none;
  padding: 0.5rem 1.4rem;
  cursor: pointer;
  border-radius: 36px;
  transition: color 0.35s ease;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--cream);
}

.tab-btn.active {
  color: var(--bg);
}

.tab-indicator {
  position: absolute;
  top: 3px;
  left: 3px;
  height: calc(100% - 6px);
  background: var(--amber);
  border-radius: 36px;
  transition: transform 0.4s var(--ease-out-expo), width 0.4s var(--ease-out-expo);
  z-index: 1;
}

/* Light mode tab switcher variant */
body.theme-light .tab-switcher {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(90, 75, 55, 0.18);
}

body.theme-light .tab-btn {
  color: var(--lt-muted);
}

body.theme-light .tab-btn:hover {
  color: var(--lt-text);
}

body.theme-light .tab-btn.active {
  color: #fff;
}

body.theme-light .tab-indicator {
  background: var(--lt-accent);
}

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME — Likeuren & Gin
   ═══════════════════════════════════════════════════════════ */
:root {
  --lt-bg:          #F8F4EE;
  --lt-bg-2:        #F0EBE3;
  --lt-bg-3:        #E8E2D8;
  --lt-text:        #1A1612;
  --lt-text-dim:    #5C5248;
  --lt-muted:       #8A7E72;
  --lt-accent:      #8B6E4E;
  --lt-accent-light:#A6845C;
  --lt-accent-warm: #C49A6C;
  --lt-border:      rgba(90, 75, 55, 0.12);
}

body.theme-light {
  background: var(--lt-bg);
  color: var(--lt-text);
  transition: background 0.6s ease, color 0.6s ease;
}

/* Light nav */
body.theme-light .site-header.scrolled {
  background: rgba(248, 244, 238, 0.95);
  border-bottom-color: var(--lt-border);
}

body.theme-light .nav-logo {
  color: var(--lt-text);
}

body.theme-light .nav-logo:hover {
  color: var(--lt-accent);
}

body.theme-light .nav-links a {
  color: var(--lt-muted);
}

body.theme-light .nav-links a:hover {
  color: var(--lt-text);
}

body.theme-light .nav-links .nav-cta {
  border-color: var(--lt-accent);
  color: var(--lt-accent);
}

body.theme-light .nav-links .nav-cta:hover {
  background: var(--lt-accent);
  color: #fff;
}

body.theme-light .nav-toggle span {
  background: var(--lt-text);
}

/* ─── Light Hero ───────────────────────────────────────── */
.light-hero {
  position: relative;
  min-height: 100vh;
  background: var(--lt-bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 8vw 10vh;
  overflow: hidden;
}

.light-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 35%, rgba(166, 132, 92, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 25% 70%, rgba(196, 154, 108, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative botanical accent */
.light-hero::after {
  content: '';
  position: absolute;
  top: 15vh;
  right: 8vw;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(139, 110, 78, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.light-hero-inner {
  position: relative;
  z-index: 2;
}

.light-hero-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lt-accent);
  margin-bottom: 2rem;
}

.light-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.5vw, 10rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--lt-text);
  display: flex;
  flex-direction: column;
  gap: 0.06em;
  margin-bottom: 2.5rem;
}

.light-hero-heading .word {
  display: block;
}

.light-hero-heading .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--lt-accent-light);
  padding-left: 0.12em;
}

.light-hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  font-weight: 300;
  color: var(--lt-text-dim);
  line-height: 1.7;
  max-width: 480px;
}

/* ─── Light Products ───────────────────────────────────── */
.light-products-section {
  position: relative;
  z-index: 10;
  background: var(--lt-bg);
  padding: 10vh 8vw 8vh;
}

.light-products-section--likeuren {
  background: var(--lt-bg);
  border-top: 1px solid var(--lt-border);
}

.light-products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8vw;
  width: 60px;
  height: 2px;
  background: var(--lt-accent);
}

.light-products-header {
  margin-bottom: 5rem;
  max-width: 640px;
}

.light-section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lt-accent);
  margin-bottom: 1.8rem;
}

.light-products-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 600;
  line-height: 0.9;
  color: var(--lt-text);
  margin-bottom: 1.5rem;
}

.light-products-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--lt-accent-light);
}

.light-products-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--lt-text-dim);
  line-height: 1.7;
}

.light-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.light-products-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}

/* Light product card */
.light-product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--lt-border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s ease, transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.light-product-card:hover {
  border-color: rgba(139, 110, 78, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 22, 18, 0.08);
}

.light-product-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--lt-bg-2);
}

.light-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out-expo);
}

.light-product-card:hover .light-product-image-wrap img {
  transform: scale(1.05);
}

.light-product-card-body {
  padding: 1.5rem 1.6rem 1.8rem;
}

.light-product-tag {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lt-accent);
  margin-bottom: 0.6rem;
  display: block;
}

.light-product-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--lt-text);
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.light-product-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--lt-text-dim);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.light-product-abv {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--lt-muted);
  text-transform: uppercase;
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--lt-border);
}

.light-product-card:hover .light-product-abv {
  border-color: var(--lt-accent);
  color: var(--lt-accent);
}

/* Color accent dots per gin variant */
.light-product-card[data-accent="pink"] .light-product-tag { color: #c4507a; }
.light-product-card[data-accent="yellow"] .light-product-tag { color: #b89830; }
.light-product-card[data-accent="green"] .light-product-tag { color: #4a8a50; }
.light-product-card[data-accent="lemon"] .light-product-tag { color: #c4a820; }
.light-product-card[data-accent="violet"] .light-product-tag { color: #9a6b8a; }

/* ═══════════════════════════════════════════════════════════
   GIN SPLIT LAYOUT
   ═══════════════════════════════════════════════════════════ */
.gin-section {
  padding: 0;
  overflow: visible;
}

.gin-section::before {
  display: none; /* Hide the decorative top bar on this section */
}

.gin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left: video panel — scrolls with products */
.gin-split__video {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lt-bg);
  padding: 5rem 3.5rem;
}

.gin-split__video video {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  /* Clip top (black bar) and bottom (Veo watermark) of the video frame */
  clip-path: inset(12% 0 8% 0);
}

.gin-video-watermark-cover {
  display: none;
}

/* Right: scrollable products panel */
.gin-split__products {
  padding: 10vh 5vw 10vh 4vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--lt-bg);
}

.gin-split__products .light-products-header {
  margin-bottom: 3rem;
}

.gin-split__products .light-products-title {
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  line-height: 1;
}

/* Override grid → vertical stack for gin in split layout */
.gin-split__products .light-products-grid {
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 0;
}

/* Horizontal card layout inside split */
.gin-split__products .light-product-card {
  display: grid;
  grid-template-columns: 110px 1fr;
}

.gin-split__products .light-product-image-wrap {
  aspect-ratio: unset;
  height: 130px;
}

/* Mobile: stack video above products */
@media (max-width: 900px) {
  .gin-split {
    grid-template-columns: 1fr;
  }

  .gin-split__video {
    height: 60vw;
    max-height: 420px;
  }

  .gin-split__products .light-product-card {
    grid-template-columns: 90px 1fr;
  }

  .gin-split__products .light-product-image-wrap {
    height: 110px;
  }
}

/* ═══════════════════════════════════════════════════════════
   LIKEUR SPLIT LAYOUT (mirrored — products left, video right)
   ═══════════════════════════════════════════════════════════ */
.likeur-section {
  padding: 0;
  overflow: visible;
}

.likeur-section::before {
  display: none;
}

.likeur-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left: scrollable products panel */
.likeur-split__products {
  padding: 10vh 4vw 10vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--lt-bg);
}

.likeur-split__products .light-products-header {
  margin-bottom: 3rem;
}

.likeur-split__products .light-products-title {
  font-size: clamp(2.2rem, 3.5vw, 4.5rem);
  line-height: 1;
}

/* Override grid for 2-col likeuren cards in split */
.likeur-split__products .light-products-grid--2col {
  grid-template-columns: 1fr 1fr;
  max-width: unset;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

/* Right: video panel — scrolls with products */
.likeur-split__video {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lt-bg);
  padding: 5rem 3.5rem;
}

.likeur-split__video video {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
  /* Clip top and bottom to remove any AI-generated artifacts */
  clip-path: inset(12% 0 8% 0);
}

/* Mobile: stack products above video */
@media (max-width: 900px) {
  .likeur-split {
    grid-template-columns: 1fr;
  }

  .likeur-split__video {
    position: relative;
    height: 60vw;
    max-height: 420px;
  }

  .likeur-split__products .light-products-grid--2col {
    grid-template-columns: 1fr;
  }
}

.light-products-footer-cta {
  text-align: center;
  padding-top: 2rem;
}

.light-cta-button {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  border: 1px solid var(--lt-accent);
  color: var(--lt-accent);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease-out-expo), color 0.35s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}

.light-cta-button:hover {
  background: var(--lt-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Light Footer ─────────────────────────────────────── */
body.theme-light .site-footer {
  background: var(--lt-bg-2);
  border-top-color: var(--lt-border);
}

body.theme-light .footer-logo {
  color: var(--lt-text);
}

body.theme-light .footer-tagline {
  color: var(--lt-muted);
}

body.theme-light .footer-col-title {
  color: var(--lt-accent);
}

body.theme-light .footer-col li,
body.theme-light .footer-col a {
  color: var(--lt-text-dim);
}

body.theme-light .footer-col a:hover {
  color: var(--lt-text);
}

body.theme-light .footer-top {
  border-bottom-color: var(--lt-border);
}

body.theme-light .footer-bottom p {
  color: var(--lt-muted);
}

/* ─── Mobile ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .tab-switcher {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .tab-btn {
    font-size: 0.62rem;
    padding: 0.4rem 1rem;
  }

  .light-hero-heading {
    font-size: clamp(3rem, 10vw, 5.5rem);
  }

  .light-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .light-products-grid--2col {
    grid-template-columns: 1fr;
  }

  .light-products-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .hero-heading {
    font-size: clamp(3rem, 10vw, 5.5rem);
  }

  .align-left {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .align-right {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 100%;
  }

  .section-heading {
    font-size: clamp(2.5rem, 8vw, 4rem);
    text-shadow: 0 2px 20px rgba(8, 6, 4, 0.9);
  }

  .section-body {
    font-size: 0.95rem;
    text-shadow: 0 1px 16px rgba(8, 6, 4, 0.9);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    padding: 0 6vw;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-title {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-nav {
    gap: 3rem;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  #scroll-container {
    --scroll-height: 600vh;
    height: 600vh;
  }

  .marquee-text {
    font-size: 20vw;
  }
}

@media (max-width: 500px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .light-products-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .tab-btn {
    font-size: 0.58rem;
    padding: 0.35rem 0.8rem;
    letter-spacing: 0.06em;
  }
}

/* ═══════════════════════════════════════════════════════════
   AGE GATE
   ═══════════════════════════════════════════════════════════ */

#age-gate,
#age-gate-blocked {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease-out-expo);
}

#age-gate-blocked {
  z-index: 10000;
}

#age-gate[hidden],
#age-gate-blocked[hidden] {
  display: none;
}

/* Subtle noise grain overlay — matches site aesthetic */
#age-gate::before,
#age-gate-blocked::before {
  content: '';
  position: absolute;
  inset: 0;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
  opacity: 0.4;
}

.age-gate__inner {
  text-align: center;
  max-width: 520px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.age-gate__brand {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.38em;
  color: var(--amber);
  text-transform: uppercase;
}

.age-gate__divider {
  width: 40px;
  height: 1px;
  background: var(--amber-dim);
}

.age-gate__heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.age-gate__heading em {
  font-style: italic;
  color: var(--amber-light);
}

.age-gate__sub {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-dim);
  letter-spacing: 0.02em;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  max-width: 280px;
  margin-top: 0.5rem;
}

.age-gate__btn {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease-out-expo), color 0.3s var(--ease-out-expo), border-color 0.3s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
  width: 100%;
}

.age-gate__btn--yes {
  background: var(--amber);
  color: #fff;
  border-color: var(--amber);
}

.age-gate__btn--yes:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
}

.age-gate__btn--no {
  background: transparent;
  color: var(--cream-dim);
  border-color: var(--muted);
}

.age-gate__btn--no:hover {
  border-color: var(--cream-dim);
  color: var(--cream);
}

.age-gate__legal {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* Fade-out animation class */
#age-gate.fade-out {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .age-gate__heading {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
  .age-gate__actions {
    max-width: 100%;
  }
}

/* ==========================================================================
   MOBIELE NAV OVERLAY — hamburger open/dicht state
   ========================================================================== */

@media (max-width: 900px) {

  /* Drie bars + X-animatie */
  .nav-toggle span:nth-child(1) { transform-origin: center; transition: transform 0.35s ease, opacity 0.25s ease; }
  .nav-toggle span:nth-child(2) { transition: transform 0.35s ease, opacity 0.25s ease; }
  .nav-toggle span:nth-child(3) { transform-origin: center; transition: transform 0.35s ease, opacity 0.25s ease; }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Nav overlay — donker thema (standaard) */
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex !important;   /* override de desktop display:none */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 4vw, 3.5rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 90;
    list-style: none;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* Grote display-links in de overlay */
  .nav-links li { width: auto; }

  .nav-links a {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 7vw, 4rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    color: var(--cream);
    text-transform: none;
    transition: color 0.25s ease;
  }

  .nav-links a:hover { color: var(--amber-light); }

  /* CTA knop in overlay */
  .nav-links .nav-cta {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--amber);
    color: var(--amber);
  }

  .nav-links .nav-cta:hover {
    background: var(--amber);
    color: var(--bg);
  }

  /* Light theme variant van de overlay */
  body.theme-light .nav-links {
    background: var(--lt-bg);
  }

  body.theme-light .nav-links a {
    color: var(--lt-text);
  }

  body.theme-light .nav-links a:hover {
    color: var(--lt-accent);
  }

  body.theme-light .nav-links .nav-cta {
    border-color: var(--lt-accent);
    color: var(--lt-accent);
  }

  body.theme-light .nav-links .nav-cta:hover {
    background: var(--lt-accent);
    color: #fff;
  }

  /* Header boven de overlay houden */
  .site-header { z-index: 95; }
  .nav-toggle  { z-index: 96; }
}

/* ==========================================================================
   MOBILE POLISH
   ========================================================================== */

@media (max-width: 900px) {

  /* ── Touch targets ── */
  .cta-button,
  .light-cta-button,
  .nav-links .nav-cta,
  .age-gate__btn { min-height: 48px; }

  .tab-btn { min-height: 36px; }

  /* ── Hero standalone ── */
  .hero-standalone {
    padding: 0 6vw 8vh;
    justify-content: flex-end;
  }

  /* Scroll indicator verbergen op touch — niet nodig */
  .hero-scroll-indicator { display: none; }

  /* ── Canvas vignette iets groter op mobiel zodat het niet te strak afsnijdt ── */
  .canvas-wrap {
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 40%, transparent 100%);
            mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 40%, transparent 100%);
  }

  /* ── Section inner: volledig breed op smal scherm ── */
  .section-inner {
    max-width: 100%;
    width: 100%;
  }

  /* ── Stats: cijfers iets kleiner op zeer smal ── */
  .stat-number { font-size: clamp(2.5rem, 8vw, 4rem); }
  .stat-suffix { font-size: clamp(1.2rem, 4vw, 2rem); }

  /* ── Product cards: aanraakbaar ── */
  .product-card,
  .light-product-card { -webkit-tap-highlight-color: transparent; }

  /* ── Footer: kleinere logo ── */
  .footer-logo { font-size: 2rem; letter-spacing: 0.2em; }

  /* ── Lightbox-stijl CTA vignette iets minder groot ── */
  .cta-inner { padding: 2rem 1.5rem 2.5rem; }
  .cta-inner::before { inset: -2rem -3rem; }
}

@media (max-width: 500px) {

  /* ── Hero heading iets kleiner op heel smal scherm ── */
  .hero-heading,
  .light-hero-heading { font-size: clamp(2.5rem, 12vw, 3.5rem); }

  /* ── Section heading ── */
  .section-heading { font-size: clamp(2rem, 9vw, 3rem); }

  /* ── Align padding nog wat strakker ── */
  .align-left,
  .align-right { padding-left: 5vw; padding-right: 5vw; }

  /* ── Tab switcher: nog kleinere tekst ── */
  .tab-btn { font-size: 0.56rem; padding: 0.35rem 0.7rem; }

  /* ── Footer nav: kolommen naast elkaar ── */
  .footer-nav { gap: 2rem; }
}
