/* =========================================================================
   KASSABA — Variant 2 · ULTRA-PREMIUM DARK LUXURY
   Deep black · anthracite · 24k gold · warm amber. Glassmorphism + cinematic.
   Cormorant Garamond (display) + Jost (UI). Covers every static + JS class.
   ========================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --bg:       #0A0A0A;
  --bg-2:     #101010;
  --panel:    #141310;
  --ink:      #ECE6D8;          /* warm cream text */
  --ink-soft: #A39C8C;
  --ink-mute: #6E685C;

  --gold:     #D4AF37;
  --gold-hi:  #F4E2A1;
  --gold-dk:  #9C7A1E;
  --amber:    #C8842A;
  --amber-dk: #8A5418;
  --grad-gold: linear-gradient(135deg, #9C7A1E 0%, #D4AF37 30%, #F4E2A1 50%, #D4AF37 70%, #9C7A1E 100%);

  --glass:    rgba(255,255,255,.035);
  --glass-2:  rgba(255,255,255,.06);
  --glass-line: rgba(212,175,55,.18);
  --line:     rgba(255,255,255,.08);
  --blur: blur(16px);

  /* legacy accent aliases used by JS-rendered markup */
  --terra: var(--gold); --terra-dk: var(--gold-dk); --clay: var(--gold); --olive: var(--amber);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Jost', system-ui, sans-serif;

  --fs-xs: .74rem; --fs-sm: .88rem; --fs-md: 1rem; --fs-lg: 1.22rem;
  --gutter: clamp(1.2rem, 5vw, 5rem);
  --maxw: 1280px;
  --header-h: 84px;
  --radius: 6px; --radius-lg: 16px;
  --ease: cubic-bezier(.19,1,.22,1);
  --shadow: 0 30px 80px -30px rgba(0,0,0,.8);
  --shadow-gold: 0 20px 60px -18px rgba(212,175,55,.4);
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body); background: var(--bg); color: var(--ink);
  font-size: var(--fs-md); line-height: 1.7; font-weight: 300;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: #0A0A0A; }

/* ambient glow backdrop */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 80% -10%, rgba(200,132,42,.10), transparent 60%),
    radial-gradient(50vw 50vw at 0% 30%, rgba(212,175,55,.06), transparent 60%);
}

/* gold-dust particle canvas (injected by lux.js) */
#lux-particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5; }

/* ---- Typography -------------------------------------------------------- */
h1,h2,h3,h4,h5 { font-family: var(--f-display); font-weight: 400; line-height: 1.02; letter-spacing: .005em; }
.display { font-family: var(--f-display); }
em, .script { font-style: italic; font-family: var(--f-display); }
.h-xl { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 300; }
.h-lg { font-size: clamp(2.1rem, 4.6vw, 3.6rem); font-weight: 300; }
.gold-text, .gold {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--gold); font-style: italic;
}

.kicker {
  display: inline-flex; align-items: center; gap: .9rem;
  font-family: var(--f-body); font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: .42em; text-transform: uppercase; color: var(--gold);
}
.kicker::before { content: ''; width: 2.4rem; height: 1px; background: var(--grad-gold); }
.kicker--center { justify-content: center; }
.kicker--center::after { content: ''; width: 2.4rem; height: 1px; background: var(--grad-gold); }

.lead { font-size: var(--fs-lg); line-height: 1.6; color: var(--ink-soft); font-weight: 300; }
.muted { color: var(--ink-mute); }
p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Layout ------------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.container.narrow { max-width: 780px; }
.section { padding-block: clamp(4.5rem, 10vw, 9rem); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(2.6rem, 5vw, 4.5rem); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 1.8rem; } .mt-3 { margin-top: 2.6rem; }
.flex { display: flex; align-items: center; } .gap-1 { gap: 1rem; } .wrap { flex-wrap: wrap; }

.section--dark { background: linear-gradient(180deg, #0C0C0C, #060606); }
.section--terra { position: relative; }
.section--terra::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 0%, rgba(200,132,42,.12), transparent 70%); pointer-events: none; }

/* ---- Glass panel ------------------------------------------------------- */
.glass, .panel { background: var(--glass); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); border: 1px solid var(--line); border-radius: var(--radius-lg); }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem; position: relative;
  font-family: var(--f-body); font-weight: 500; font-size: var(--fs-sm);
  letter-spacing: .08em; text-transform: uppercase; padding: 1rem 1.9rem; border-radius: 999px;
  cursor: pointer; transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .4s, background .4s;
  border: 1px solid transparent; white-space: nowrap; overflow: hidden;
}
.btn .arr, .btn svg { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(5px); }
.btn--solid { background: var(--grad-gold); color: #120E03; box-shadow: 0 10px 30px -10px rgba(212,175,55,.5); }
.btn--solid:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.btn--ghost { color: var(--ink); border-color: rgba(212,175,55,.35); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--nav { padding: .66rem 1.3rem; }
.btn[disabled] { opacity: .35; cursor: not-allowed; }

.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--f-body); font-size: var(--fs-sm); letter-spacing: .06em; text-transform: uppercase; color: var(--gold); transition: gap .3s var(--ease); }
.link-arrow:hover { gap: .9rem; }

/* ---- Header ------------------------------------------------------------ */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 200; transition: background .5s var(--ease), border-color .5s, backdrop-filter .5s; border-bottom: 1px solid transparent; }
.header.is-scrolled { background: rgba(10,10,10,.7); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); border-bottom-color: var(--line); }
.header__inner { max-width: var(--maxw); margin-inline: auto; padding: 1rem var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand img { height: 42px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 10px rgba(212,175,55,.25)); }
.brand span { display: inline-flex; align-items: baseline; font-family: var(--f-display); font-size: 1.6rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; color: #FFFFFF; }
.brand b { font-weight: 500; color: #FFFFFF; }
.nav { display: flex; align-items: center; gap: 2.6rem; }
.nav__links { display: flex; gap: 1.9rem; }
.nav__links a { font-size: var(--fs-sm); font-weight: 400; letter-spacing: .04em; color: var(--ink-soft); position: relative; padding: .3rem 0; transition: color .3s; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--grad-gold); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--gold); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: 1rem; }
.cart-btn { position: relative; display: inline-grid; place-items: center; width: 42px; height: 42px; color: var(--ink); transition: color .3s; }
.cart-btn svg { width: 22px; height: 22px; }
.cart-btn:hover { color: var(--gold); }
.cart-badge { position: absolute; top: -2px; right: -2px; min-width: 18px; height: 18px; padding: 0 4px; display: grid; place-items: center; background: var(--grad-gold); color: #0A0A0A; font-family: var(--f-body); font-size: 10px; font-weight: 600; border-radius: 999px; transform: scale(0); transition: transform .35s var(--ease); }
.cart-badge.is-visible { transform: scale(1); }
.cart-badge.bump { animation: bump .4s var(--ease); }
@keyframes bump { 0%,100%{transform:scale(1)} 40%{transform:scale(1.4)} }
.burger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { width: 24px; height: 1.5px; background: var(--gold); transition: transform .35s var(--ease), opacity .3s; }
.is-menu-open .burger span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.is-menu-open .burger span:nth-child(2){ opacity: 0; }
.is-menu-open .burger span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 150; background: rgba(8,8,8,.96); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); display: flex; flex-direction: column; justify-content: center; padding: var(--gutter); transform: translateY(-100%); transition: transform .6s var(--ease); visibility: hidden; }
.is-menu-open .mobile-menu { transform: translateY(0); visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .2rem; }
.mobile-menu nav a { font-family: var(--f-display); font-size: clamp(2.2rem, 9vw, 3.6rem); font-weight: 300; display: flex; align-items: baseline; gap: 1rem; padding: .35rem 0; color: var(--ink); }
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu nav a i { font-family: var(--f-body); font-style: normal; font-size: .85rem; font-weight: 500; color: var(--gold); letter-spacing: .1em; }
.mobile-menu__foot { display: flex; justify-content: space-between; margin-top: 2.4rem; font-size: var(--fs-xs); letter-spacing: .26em; text-transform: uppercase; color: var(--ink-mute); }

/* ---- Age gate ---------------------------------------------------------- */
.age-gate { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 1.5rem; transition: opacity .7s var(--ease); }
.age-gate.is-hidden { opacity: 0; pointer-events: none; }
.age-gate__bg { position: absolute; inset: 0; }
.age-gate__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.3) saturate(.7); }
.age-gate__bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(10,10,10,.6), #0A0A0A 85%); }
.age-gate__card { position: relative; background: var(--glass-2); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); border: 1px solid var(--glass-line); padding: clamp(2rem,5vw,3.4rem); max-width: 460px; text-align: center; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.age-gate__card .brand { justify-content: center; margin-bottom: 1.4rem; }
.age-gate__card h2 { font-size: 2.2rem; font-weight: 300; margin-bottom: .5rem; }
.age-gate__card p { color: var(--ink-soft); }
.age-gate__actions { display: flex; flex-direction: column; gap: .8rem; margin: 1.8rem 0 1rem; }
.age-gate__actions .btn { justify-content: center; }
.age-gate__deny { font-size: var(--fs-sm); color: var(--ink-mute); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.age-gate__legal { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin-top: .4rem; }

/* ---- Scroll progress + custom cursor (lux.js) -------------------------- */
.lux-progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; transform: scaleX(0); transform-origin: left; background: var(--grad-gold); z-index: 600; }
.lux-cursor, .lux-dot { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 700; mix-blend-mode: screen; }
.lux-cursor { width: 38px; height: 38px; border: 1px solid rgba(212,175,55,.6); box-shadow: 0 0 24px rgba(212,175,55,.35); transition: width .3s var(--ease), height .3s var(--ease), background .3s; transform: translate(-50%,-50%); }
.lux-cursor.is-hover { width: 64px; height: 64px; background: rgba(212,175,55,.12); }
.lux-dot { width: 6px; height: 6px; background: var(--gold-hi); box-shadow: 0 0 12px var(--gold); transform: translate(-50%,-50%); }
@media (hover: none), (pointer: coarse) { .lux-cursor, .lux-dot { display: none; } }

/* =========================================================================
   HERO — cinematic fullscreen
   ========================================================================= */
.hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; padding: calc(var(--header-h) + 2rem) 0 4rem; }
.hero__atmos { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow { position: absolute; width: 88vmin; height: 88vmin; left: 74%; top: 50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(212,175,55,.22), rgba(200,132,42,.08) 40%, transparent 68%); filter: blur(10px); }
.hero__mist { position: absolute; inset: -20%; background: radial-gradient(40% 30% at 65% 70%, rgba(200,132,42,.10), transparent 60%), radial-gradient(40% 30% at 80% 40%, rgba(212,175,55,.08), transparent 60%); filter: blur(30px); animation: mist 18s ease-in-out infinite alternate; }
@keyframes mist { from { transform: translate3d(-3%, 2%, 0) scale(1); } to { transform: translate3d(3%, -2%, 0) scale(1.08); } }
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__copy { max-width: 36rem; }
.hero__kicker { opacity: 0; transform: translateY(20px); transition: all 1s var(--ease) .2s; }
.is-loaded .hero__kicker { opacity: 1; transform: none; }
.hero-title { font-size: clamp(3rem, 8vw, 6.4rem); font-weight: 300; line-height: 1; letter-spacing: .01em; margin-top: 1.2rem; }
.hero-line { display: block; overflow: hidden; }
.hero-in { display: inline-block; transform: translateY(115%); opacity: 0; transition: transform 1.1s var(--ease), opacity 1.1s var(--ease); transition-delay: var(--d,0s); }
.is-loaded .hero-in { transform: translateY(0); opacity: 1; }
.hero .lead { max-width: 42ch; margin: 1.4rem 0 0; opacity: 0; transform: translateY(20px); transition: all 1s var(--ease) 1s; }
.is-loaded .hero .lead { opacity: 1; transform: none; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start; margin-top: 1.8rem; opacity: 0; transform: translateY(20px); transition: all 1s var(--ease) 1.15s; }
.is-loaded .hero__cta { opacity: 1; transform: none; }

/* floating bottle with gold sweep */
.hero__bottle { position: relative; z-index: 1; justify-self: center; width: clamp(320px, 52vw, 640px); animation: float 7s ease-in-out infinite; will-change: transform; }
.hero__bottle img { width: 100%; filter: drop-shadow(0 50px 60px rgba(0,0,0,.7)); }
/* cinematic video panel */
.hero__film { width: clamp(260px, 40vw, 460px); }
.hero__film video { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; border-radius: var(--radius-lg); border: 1px solid var(--glass-line); box-shadow: 0 50px 100px -30px rgba(0,0,0,.85), 0 0 70px -12px rgba(212,175,55,.28); }
.hero__bottle::after { /* gold light sweep */ content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 38%, rgba(244,226,161,.55) 49%, transparent 60%); mix-blend-mode: screen; animation: sweep 5.5s ease-in-out infinite; pointer-events: none; }
@keyframes float { 0%,100%{ transform: translateY(0) rotate(var(--rot,0deg)); } 50%{ transform: translateY(-14px) rotate(var(--rot,0deg)); } }
@keyframes sweep { 0%,100%{ transform: translateX(-30%); opacity: 0; } 45%,55%{ opacity: .9; } 50%{ transform: translateX(30%); } }
.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); z-index: 2; font-size: var(--fs-xs); letter-spacing: .3em; text-transform: uppercase; color: var(--ink-mute); display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.hero__scroll::after { content: ''; width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); animation: scrollLine 2.4s ease-in-out infinite; }
@keyframes scrollLine { 0%{ transform: scaleY(0); transform-origin: top; } 50%{ transform: scaleY(1); transform-origin: top; } 51%{ transform: scaleY(1); transform-origin: bottom; } 100%{ transform: scaleY(0); transform-origin: bottom; } }

/* ---- marquee ----------------------------------------------------------- */
.marquee { border-block: 1px solid var(--line); overflow: hidden; padding: 1.1rem 0; background: #070707; }
.marquee__track { display: inline-flex; gap: 2.5rem; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee span { font-family: var(--f-display); font-style: italic; font-size: clamp(1.3rem,2.6vw,2rem); color: var(--ink-soft); display: inline-flex; align-items: center; gap: 2.5rem; }
.marquee span::after { content: '✦'; font-style: normal; color: var(--gold); font-size: .6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- logbook ----------------------------------------------------------- */
.logbook { display: grid; grid-template-columns: repeat(6,1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--glass); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); }
.logbook > div { padding: 1.5rem 1.1rem; border-right: 1px solid var(--line); }
.logbook > div:last-child { border-right: none; }
.logbook span { display: block; font-size: var(--fs-xs); letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .4rem; }
.logbook b { font-family: var(--f-display); font-weight: 400; font-size: 1.5rem; color: var(--gold); }

/* ---- split / spotlight ------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,5rem); align-items: center; }
.split--reverse .split__media, .split--reverse .spotlight__bottle { order: 2; }
.split__copy h2 { margin: .9rem 0 1.2rem; }
.split__copy p + p { margin-top: 1rem; }
.split__copy .lead + p { margin-top: 1.2rem; }
.spotlight__bottle { position: relative; display: grid; place-items: center; padding: 2rem; }
.spotlight__bottle::before { content: ''; position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,.16), transparent 65%); filter: blur(8px); }
.spotlight__bottle img { position: relative; max-height: 520px; width: auto; filter: drop-shadow(0 40px 50px rgba(0,0,0,.7)); animation: float 8s ease-in-out infinite; }

.spec-row { display: flex; gap: 2.4rem; margin: 1.8rem 0; flex-wrap: wrap; }
.spec b { display: block; font-family: var(--f-display); font-size: 1.9rem; font-weight: 400; color: var(--gold); }
.spec span { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.add-row { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; margin-top: .5rem; }
.eyebrow-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.6rem; }
.eyebrow-row h2 { margin-top: .6rem; }

/* ---- stats ------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-top: 2.5rem; }
.stat { text-align: center; padding: 2rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--glass); }
.stat b { display: block; font-family: var(--f-display); font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 400; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat span { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-top: .6rem; display: block; }

/* ---- process ----------------------------------------------------------- */
.process-strip { display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--glass); }
.proc { padding: 2rem 1.3rem; border-right: 1px solid var(--line); position: relative; transition: background .4s; }
.proc:last-child { border-right: none; }
.proc:hover { background: rgba(212,175,55,.05); }
.proc i { font-family: var(--f-display); font-style: italic; font-size: clamp(2.4rem,4vw,3.4rem); background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: .6rem; line-height: 1; }
.proc h4 { font-size: 1.4rem; font-weight: 400; margin-bottom: .5rem; }
.proc p { font-size: var(--fs-sm); color: var(--ink-soft); }

/* ---- tasting grid ------------------------------------------------------ */
.tasting-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-top: 2rem; }
.tn { background: var(--bg-2); padding: 1.8rem 1.4rem; transition: background .4s; }
.tn:hover { background: var(--panel); }
.tn h5 { font-family: var(--f-body); font-size: var(--fs-xs); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: .6rem; }
.tn p { font-size: var(--fs-sm); color: var(--ink-soft); }

/* ---- flavour bars (smaakervaring) -------------------------------------- */
.flavours { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 2rem; }
.flavour { }
.flavour__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .6rem; }
.flavour__top b { font-family: var(--f-display); font-size: 1.5rem; font-weight: 400; }
.flavour__top span { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.flavour__bar { height: 4px; border-radius: 999px; background: var(--line); overflow: hidden; }
.flavour__fill { height: 100%; width: 0; background: var(--grad-gold); border-radius: 999px; transition: width 1.4s var(--ease); }
.is-in .flavour__fill { width: var(--v, 70%); }

/* ---- still / quote ----------------------------------------------------- */
.still { position: relative; margin: clamp(2rem,5vw,4rem) 0; }
.still img { width: 100%; height: clamp(380px,62vh,640px); object-fit: cover; filter: brightness(.42) saturate(.85); }
.still__overlay { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; }
.still__overlay::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, transparent, rgba(10,10,10,.7)); }
.still blockquote { position: relative; z-index: 2; max-width: 24ch; }
.still blockquote p { font-family: var(--f-display); font-style: italic; font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 300; line-height: 1.15; color: var(--ink); }
.still cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: var(--fs-xs); letter-spacing: .26em; text-transform: uppercase; color: var(--gold); }
.big-quote { font-family: var(--f-display); font-weight: 300; font-size: clamp(2.6rem,6vw,5rem); line-height: 1.05; margin: 1rem 0 1.4rem; }
.big-quote em { font-style: italic; color: var(--gold); }

/* ---- testimonials ------------------------------------------------------ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.6rem; }
.tcard { padding: 2.2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--glass); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); transition: transform .5s var(--ease), border-color .5s; }
.tcard:hover { transform: translateY(-6px); border-color: var(--glass-line); }
.tcard .stars { color: var(--gold); letter-spacing: .25em; margin-bottom: 1rem; }
.tcard p { font-family: var(--f-display); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: var(--ink); }
.tcard cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }

/* ---- newsletter -------------------------------------------------------- */
.newsletter { display: flex; gap: .7rem; max-width: 480px; margin-inline: auto; flex-wrap: wrap; justify-content: center; }
.newsletter input { flex: 1; min-width: 220px; padding: .95rem 1.3rem; background: var(--glass); border: 1px solid var(--line); border-radius: 999px; color: var(--ink); }
.newsletter input:focus { outline: none; border-color: var(--gold); }

/* =========================================================================
   PAGE HERO (interior)
   ========================================================================= */
.page-hero { position: relative; padding: calc(var(--header-h) + clamp(3.5rem,9vw,7rem)) 0 clamp(2.5rem,6vw,4.5rem); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.32) saturate(.7); opacity: .8; }
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.5) 0%, transparent 40%, var(--bg) 100%); }
.page-hero .kicker { margin-bottom: 1.3rem; }
.page-hero h1 { font-size: clamp(2.8rem,8vw,6rem); font-weight: 300; }
.page-hero h1 em { color: var(--gold); }
.page-hero .lead { max-width: 54ch; margin-top: 1.4rem; }
/* subtle cassava watermark on every interior hero */
.page-hero::after { content: ''; position: absolute; top: 50%; right: 4%; transform: translateY(-50%); width: clamp(120px, 17vw, 230px); height: 78%; background: url('../images/motif-cassava.png') center/contain no-repeat; opacity: .07; pointer-events: none; z-index: 1; }
@media (max-width: 760px) { .page-hero::after { opacity: .045; right: -4%; } }

/* ---- prose ------------------------------------------------------------- */
.prose { max-width: 740px; margin-inline: auto; }
.prose p { margin-bottom: 1.4rem; font-size: 1.12rem; color: var(--ink-soft); }
.prose h2 { font-size: clamp(1.9rem,4vw,2.8rem); margin: 2.8rem 0 1rem; font-weight: 300; }
.prose strong { color: var(--ink); font-weight: 500; }
.prose .drop::first-letter { font-family: var(--f-display); font-size: 3.8em; line-height: .72; float: left; padding: .08em .14em 0 0; color: var(--gold); }
.pullquote { font-family: var(--f-display); font-style: italic; font-size: clamp(1.7rem,3.6vw,2.5rem); line-height: 1.3; color: var(--ink); border-left: 2px solid var(--gold); padding-left: 1.6rem; margin: 2.6rem 0; font-weight: 300; }

/* ---- tembe → luxury reinterpretations ---------------------------------- */
.tembe-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--glass-line), transparent); position: relative; margin: 1rem 0; }
.tembe-divider--center { max-width: 240px; margin-inline: auto; }
.tembe-divider::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 24px; background: var(--bg) url('../images/motif-boat.png') center/contain no-repeat; }
.tembe-frame { position: relative; padding: 10px; border-radius: var(--radius-lg); }
.tembe-frame::before { content: ''; position: absolute; inset: 0; border: 1px solid var(--glass-line); border-radius: var(--radius-lg); }
.clip-tembe { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); filter: brightness(.85) saturate(.9); }
video.clip-tembe { filter: none; display: block; }
.tembe-medallion { display: none; }
.tembe-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex: none; box-shadow: 0 0 10px var(--gold); }
.tembe-dot--green { background: var(--amber); box-shadow: 0 0 10px var(--amber); }
.tembe-dot--red { background: var(--gold-hi); }
.tembe-burst { width: 64px; height: 64px; margin: 0 auto 1.4rem; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; }
.tembe-burst::before { content: '✦'; color: var(--gold); font-size: 1.4rem; }
.tembe-wash { background: var(--bg-2); }

/* ---- Label motifs woven subtly into the house style ------------------- */
.section--dark, .section--terra, .footer { position: relative; }
.footer { overflow: hidden; }
.section--dark::after, .section--terra::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='1.4'%3E%3Cpolygon points='42,2 82,42 42,82 2,42'/%3E%3Cpolygon points='42,16 68,42 42,68 16,42'/%3E%3Cpolygon points='42,30 54,42 42,54 30,42'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 84px 84px; opacity: .05;
}
.footer::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url('../images/motif-cassava.png'),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84'%3E%3Cg fill='none' stroke='%23D4AF37' stroke-width='1.4'%3E%3Cpolygon points='42,2 82,42 42,82 2,42'/%3E%3Cpolygon points='42,16 68,42 42,68 16,42'/%3E%3Cpolygon points='42,30 54,42 42,54 30,42'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-position: center 92%, top left;
  background-size: 190px auto, 84px 84px;
  opacity: .06;
}
/* subtle cassava ornament for centered intros */
.motif-mark { display: block; width: 40px; height: 48px; margin: 0 auto 1rem; background: url('../images/motif-cassava.png') center/contain no-repeat; opacity: .8; }
.draw-line { display: block; width: 100%; overflow: visible; }
.draw-line path, .draw-line line, .draw-line polyline { stroke: var(--gold); stroke-width: 1.2; fill: none; stroke-linecap: round; opacity: .6; }
.draw-line .node { fill: var(--gold); }

/* =========================================================================
   SHOP
   ========================================================================= */
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.6rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter { font-size: var(--fs-sm); font-weight: 400; padding: .55rem 1.2rem; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft); transition: all .3s var(--ease); letter-spacing: .04em; }
.filter:hover { border-color: var(--gold); color: var(--gold); }
.filter.is-active { background: var(--grad-gold); color: #0A0A0A; border-color: transparent; }

.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,3vw,2.4rem); }
.product-card { position: relative; display: flex; flex-direction: column; padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--glass); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); transition: transform .5s var(--ease), border-color .5s, box-shadow .5s; }
.product-card:hover { transform: translateY(-8px); border-color: var(--glass-line); box-shadow: var(--shadow-gold); }
.product-card__media { position: relative; display: block; aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; margin-bottom: 1.1rem; }
.product-card__media::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 60%, rgba(212,175,55,.15), transparent 60%); opacity: 0; transition: opacity .5s; }
.product-card:hover .product-card__media::after { opacity: 1; }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 1.4rem; transition: transform .6s var(--ease); filter: drop-shadow(0 20px 24px rgba(0,0,0,.6)); }
.product-card:hover .product-card__media img { transform: scale(1.06) translateY(-4px); }
.product-card__tag { position: absolute; top: .8rem; left: .8rem; z-index: 2; font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--gold); background: rgba(10,10,10,.6); border: 1px solid var(--glass-line); padding: .25rem .65rem; border-radius: 999px; }
.product-card__tag--soon { color: var(--ink-mute); border-color: var(--line); }
.ptype { font-size: var(--fs-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.product-card h3 { font-size: 1.6rem; font-weight: 400; margin: .35rem 0; }
.product-card h3 a:hover { color: var(--gold); }
.pmeta { font-size: var(--fs-sm); color: var(--ink-soft); margin-bottom: 1rem; }
.product-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.price { font-family: var(--f-display); font-size: 1.5rem; font-weight: 400; color: var(--gold); }
.price small { font-family: var(--f-body); font-size: var(--fs-xs); color: var(--ink-mute); letter-spacing: .04em; }
.icon-btn { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--glass-line); color: var(--gold); transition: all .3s var(--ease); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover:not([disabled]) { background: var(--grad-gold); color: #0A0A0A; border-color: transparent; }
.icon-btn[disabled] { opacity: .3; cursor: not-allowed; }

/* product detail */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.product-stage { position: relative; display: grid; place-items: center; aspect-ratio: 3/4; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(circle at 50% 40%, rgba(212,175,55,.08), transparent 60%), var(--glass); }
.product-stage__bottle { max-height: 80%; width: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.7)); animation: float 8s ease-in-out infinite; }
.product-info .kicker { margin-bottom: .9rem; }
.product-info > .price { display: block; margin: 1rem 0; font-size: 2.2rem; }
.product-info .lead { font-size: 1.1rem; margin-bottom: 1.6rem; }
.product-info .spec-row { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.3rem 0; }
.option-pills { display: flex; gap: .7rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.option-pill { display: flex; flex-direction: column; gap: .2rem; text-align: left; padding: .85rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--glass); transition: all .3s var(--ease); font-weight: 400; }
.option-pill small { font-size: var(--fs-xs); color: var(--ink-mute); }
.option-pill:hover { border-color: var(--gold); }
.option-pill.is-active { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.qty button { width: 44px; height: 46px; font-size: 1.2rem; color: var(--gold); transition: background .25s; }
.qty button:hover { background: var(--glass-2); }
.qty input { width: 48px; height: 46px; text-align: center; border: none; border-inline: 1px solid var(--line); background: transparent; color: var(--ink); -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.product-info .tasting-grid { grid-template-columns: repeat(2,1fr); margin-top: 2rem; }
[data-related] .product-card__media { aspect-ratio: 1; }
[data-related] h3 { font-size: 1.2rem; }

/* cart */
.cart-layout { display: grid; grid-template-columns: 1.6fr .9fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; margin-top: 2rem; }
.cart-line { display: grid; grid-template-columns: 92px 1fr auto; gap: 1.3rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line__img { width: 92px; height: 92px; border: 1px solid var(--line); border-radius: var(--radius); display: grid; place-items: center; background: var(--glass); }
.cart-line__img img { max-width: 70%; max-height: 70%; object-fit: contain; }
.cart-line h4 { font-size: 1.4rem; font-weight: 400; margin: .2rem 0; }
.cart-line__end { display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; }
.cart-line__rm { font-size: var(--fs-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); text-decoration: underline; text-underline-offset: 3px; }
.cart-line__rm:hover { color: var(--gold); }
.cart-line .qty button { width: 36px; height: 38px; }
.cart-line .qty input { width: 40px; height: 38px; }
.summary { padding: clamp(1.6rem,3vw,2.2rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--glass); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); position: sticky; top: calc(var(--header-h) + 1rem); }
.summary h3 { font-size: 1.6rem; font-weight: 400; margin-bottom: 1.2rem; }
.summary__row { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; font-size: var(--fs-sm); color: var(--ink-soft); }
.summary__row--total { border-top: 1px solid var(--line); margin-top: .6rem; padding-top: 1rem; font-size: 1.05rem; color: var(--ink); }
.summary__row--total b { font-family: var(--f-display); font-size: 1.6rem; font-weight: 400; color: var(--gold); }
.summary .btn { width: 100%; justify-content: center; margin-top: 1.2rem; }
.summary__note { font-size: var(--fs-xs); color: var(--ink-mute); margin-top: 1rem; line-height: 1.5; }
.cart-empty { text-align: center; padding: clamp(3rem,8vw,6rem) 1rem; }
.cart-empty svg { width: 56px; height: 56px; color: var(--line); margin: 0 auto 1.5rem; stroke-width: 1.1; }

/* checkout */
.demo-flag { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--glass-line); border-radius: 999px; padding: .35rem .9rem; margin: 1rem 0 2rem; }
.steps { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.6rem; counter-reset: step; }
.step { flex: 1; min-width: 120px; font-size: var(--fs-sm); color: var(--ink-mute); padding: .8rem 0 .8rem 2.2rem; border-top: 1px solid var(--line); position: relative; counter-increment: step; }
.step::before { content: counter(step); position: absolute; left: 0; top: .7rem; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-family: var(--f-body); font-size: .72rem; border: 1px solid var(--line); }
.step.is-active { color: var(--ink); border-top-color: var(--gold); }
.step.is-active::before { background: var(--grad-gold); color: #0A0A0A; border-color: transparent; }
.step.is-done { color: var(--ink-soft); border-top-color: var(--gold-dk); }
.step.is-done::before { background: var(--gold-dk); color: #0A0A0A; border-color: transparent; }
.checkout-layout { display: grid; grid-template-columns: 1.5fr .9fr; gap: clamp(2rem,4vw,3.5rem); align-items: start; }
.wizard-panel { display: none; }
.wizard-panel.is-active { display: block; animation: panelIn .5s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.wizard-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea { padding: .9rem 1.1rem; background: var(--glass); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); transition: border-color .25s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field__err { font-size: var(--fs-xs); color: #E0857A; display: none; }
.field--error input, .field--error textarea { border-color: #C0524A; }
.field--error .field__err { display: block; }
.review-list { border-top: 1px solid var(--line); }
.rl { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.rl .muted { font-size: var(--fs-sm); }
.pay-methods { display: flex; flex-direction: column; gap: .8rem; }
.pay-method { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; transition: all .3s var(--ease); background: var(--glass); }
.pay-method input { accent-color: var(--gold); width: 18px; height: 18px; }
.pay-method span:not(.pm-logo) { display: flex; flex-direction: column; }
.pay-method b { font-family: var(--f-body); font-weight: 500; }
.pay-method small { font-size: var(--fs-sm); color: var(--ink-mute); }
.pay-method .pm-logo { margin-left: auto; font-weight: 600; font-size: var(--fs-sm); letter-spacing: .06em; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 4px; padding: .3rem .6rem; }
.pay-method.is-active { border-color: var(--gold); box-shadow: inset 0 0 0 1px var(--gold); }
.confirm-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; background: var(--glass); }
.confirm-box dl { display: grid; grid-template-columns: auto 1fr; gap: .7rem 1.4rem; }
.confirm-box dt { font-size: var(--fs-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); align-self: center; }
.confirm-box dd { text-align: right; }

/* timeline */
.timeline { display: flex; flex-direction: column; gap: clamp(2.5rem,5vw,4.5rem); }
.timeline__item { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,4rem); align-items: center; }
.timeline__item:nth-child(even) .timeline__media { order: 2; }
.timeline__media { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.timeline__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.8) saturate(.9); }
.timeline__step { font-family: var(--f-display); font-style: italic; font-size: clamp(3rem,7vw,5rem); font-weight: 300; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; display: block; }
.timeline__copy h3 { font-size: clamp(1.7rem,3.4vw,2.6rem); font-weight: 300; margin: .4rem 0 .8rem; }
.timeline__copy p { color: var(--ink-soft); max-width: 44ch; }

/* waar te koop */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.5rem,3vw,2.4rem); }
.info-card { padding: 2.2rem 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--glass); transition: transform .5s var(--ease), border-color .5s; }
.info-card:hover { transform: translateY(-6px); border-color: var(--glass-line); }
.info-card .num { font-family: var(--f-display); font-style: italic; font-size: 1.8rem; color: var(--gold); display: block; margin-bottom: 1rem; }
.info-card h3 { font-size: 1.6rem; font-weight: 400; margin-bottom: .7rem; }
.info-card p { font-size: var(--fs-sm); color: var(--ink-soft); margin-bottom: 1.2rem; }
.places { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.place { display: flex; align-items: center; gap: 1rem; padding: 1.5rem 1.6rem; background: var(--bg-2); }
.place h4 { font-size: 1.3rem; font-weight: 400; }
.place span { font-size: var(--fs-sm); color: var(--ink-mute); }
.events { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.event { display: flex; align-items: center; gap: 1.5rem; padding: 1.5rem 1.6rem; background: var(--bg-2); }
.event__date { text-align: center; flex: none; width: 64px; }
.event__date b { display: block; font-family: var(--f-display); font-size: 2.1rem; font-weight: 400; color: var(--gold); line-height: 1; }
.event__date span { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); }
.event__info h4 { font-size: 1.3rem; font-weight: 400; }
.event__info p { font-size: var(--fs-sm); color: var(--ink-soft); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.contact-info dl { display: flex; flex-direction: column; }
.contact-info dl > div { padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.contact-info dt { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: .3rem; }
.contact-info dd { font-family: var(--f-display); font-size: 1.5rem; }
.contact-info dd a:hover { color: var(--gold); }
.form-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,4vw,2.6rem); display: flex; flex-direction: column; gap: 1.2rem; background: var(--glass); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); }
.form-card .field input, .form-card .field textarea { background: var(--bg-2); }
.form-card .btn { align-self: flex-start; }

/* thanks */
.thanks { text-align: center; max-width: 580px; }
.order-no { font-family: var(--f-display); font-style: italic; font-size: clamp(1.8rem,4vw,2.6rem); color: var(--gold); letter-spacing: .04em; }

/* footer */
.footer { border-top: 1px solid var(--glass-line); padding: clamp(3rem,6vw,5rem) 0 2rem; margin-top: 2rem; background: linear-gradient(180deg, transparent, #060606); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line); }
.footer__brand .brand { margin-bottom: 1rem; }
.footer__brand .brand img { height: 54px; }
.footer__brand p { font-size: var(--fs-sm); color: var(--ink-soft); max-width: 36ch; }
.footer h5 { font-family: var(--f-body); font-size: var(--fs-xs); letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 500; }
.footer li { margin-bottom: .55rem; }
.footer li a { font-size: var(--fs-sm); color: var(--ink-soft); transition: color .25s; }
.footer li a:hover { color: var(--gold); }
.footer__bar { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.5rem; font-size: var(--fs-xs); letter-spacing: .04em; color: var(--ink-mute); }

/* toast */
.toast-wrap { position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 400; display: flex; flex-direction: column; gap: .7rem; }
.toast { display: flex; align-items: center; gap: .9rem; background: rgba(16,16,16,.92); -webkit-backdrop-filter: var(--blur); backdrop-filter: var(--blur); border: 1px solid var(--glass-line); border-left: 2px solid var(--gold); padding: .85rem 1.1rem; min-width: 250px; max-width: 330px; border-radius: var(--radius); box-shadow: var(--shadow); transform: translateX(-130%); transition: transform .5s var(--ease); }
.toast.is-in { transform: translateX(0); }
.toast img { width: 42px; height: 42px; object-fit: contain; }
.toast b { display: block; font-family: var(--f-display); font-size: 1.1rem; font-weight: 400; color: var(--gold); }
.toast small { font-size: var(--fs-xs); color: var(--ink-mute); }

/* ---- Sticky "Bestel nu" CTA ------------------------------------------- */
.sticky-cta {
  position: fixed; right: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); z-index: 350;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .95rem 1.6rem; border-radius: 999px; background: var(--grad-gold); color: #120E03;
  font-family: var(--f-body); font-weight: 600; font-size: var(--fs-sm); letter-spacing: .06em; text-transform: uppercase;
  box-shadow: 0 14px 34px -10px rgba(212,175,55,.55);
  transform: translateY(160%); opacity: 0;
  transition: transform .55s var(--ease), box-shadow .4s var(--ease), opacity .55s var(--ease);
}
.sticky-cta.is-in { transform: translateY(0); opacity: 1; }
.sticky-cta:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }
.sticky-cta svg { width: 18px; height: 18px; }

/* reveals */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-stagger.is-in > * { opacity: 1; transform: none; }
.reveal-stagger.is-in > *:nth-child(1){ transition-delay: 0s; }
.reveal-stagger.is-in > *:nth-child(2){ transition-delay: .09s; }
.reveal-stagger.is-in > *:nth-child(3){ transition-delay: .18s; }
.reveal-stagger.is-in > *:nth-child(4){ transition-delay: .27s; }
.reveal-stagger.is-in > *:nth-child(5){ transition-delay: .36s; }
.reveal-stagger.is-in > *:nth-child(6){ transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-stagger > *, .hero-in, .hero .lead, .hero__cta, .hero__kicker { opacity: 1 !important; transform: none !important; }
}

/* responsive */
@media (max-width: 960px) {
  .nav__links, .btn--nav { display: none; }
  .burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { max-width: none; }
  .hero__kicker { justify-content: center; }
  .hero .lead { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__bottle { order: -1; width: clamp(150px, 44vw, 230px); }
  .hero__film { width: clamp(240px, 74vw, 360px); }
  .hero__glow { left: 50%; top: 38%; }
  .split, .timeline__item, .product-detail, .cart-layout, .checkout-layout, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media, .split--reverse .spotlight__bottle, .timeline__item:nth-child(even) .timeline__media { order: 0; }
  .logbook { grid-template-columns: repeat(3,1fr); }
  .logbook > div:nth-child(3n){ border-right: none; }
  .process-strip { grid-template-columns: repeat(2,1fr); }
  .proc { border-right: none; border-bottom: 1px solid var(--line); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .tasting-grid, .product-info .tasting-grid { grid-template-columns: repeat(2,1fr); }
  .cards-3, .places, .testi-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  :root { --header-h: 68px; }
  .logbook { grid-template-columns: repeat(2,1fr); }
  .tasting-grid, .product-info .tasting-grid, .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .toast-wrap { left: 1rem; right: 1rem; bottom: 1rem; }
  .toast { max-width: none; }
}
