/* ============ Branderij de Bunker ============ */
:root {
  --bg: #0f0a07;
  --bg-2: #17100a;
  --panel: #1e150d;
  --cream: #ecd9bd;
  --cream-2: #f7ecd9;
  --tan: #c89a6a;
  --fire: #ff6b2b;
  --fire-2: #ffb347;
  --green: #7fae7a;
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Instrument Sans', 'Helvetica Neue', sans-serif;
  --font-hand: 'Caveat', cursive;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.has-smooth { overflow: hidden auto; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--fire); color: #140b05; }

/* ---- smooth scroll wrapper ---- */
#scroll-wrapper { position: relative; width: 100%; }
body.has-smooth #smooth-content {
  position: fixed; top: 0; left: 0; width: 100%;
  will-change: transform;
}

/* ---- grain + vignette ---- */
.grain {
  pointer-events: none; position: fixed; inset: -50%;
  z-index: 200; opacity: .07;
  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='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) } 10% { transform: translate(-5%,-8%) }
  30% { transform: translate(3%,-15%) } 50% { transform: translate(-9%,4%) }
  70% { transform: translate(7%,9%) } 90% { transform: translate(-4%,3%) }
}

/* ---- preloader ---- */
.preloader {
  position: fixed; inset: 0; z-index: 400;
  background: var(--bg); display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__logo {
  width: 110px; margin: 0 auto 24px;
  animation: pulse 1.4s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(255,107,43,.35));
}
@keyframes pulse { 50% { transform: scale(1.06); filter: drop-shadow(0 0 40px rgba(255,107,43,.6)); } }
.preloader__count {
  font-family: var(--font-display); font-size: 15px; letter-spacing: .25em;
  color: var(--tan);
}
.preloader__curtain {
  position: absolute; inset: 0; background: var(--fire);
  transform: scaleY(0); transform-origin: top;
}

/* ---- cursor: coffee bean + ember trail ---- */
.cursor-canvas {
  pointer-events: none; position: fixed; inset: 0;
  width: 100vw; height: 100vh; z-index: 299;
}
@media (hover: hover) and (pointer: fine) {
  *, *::before, *::after { cursor: none !important; }
}
@media (hover: none) { .cursor-canvas { display: none; } }

/* ---- progress ---- */
.progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 120; }
.progress__bar {
  height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--fire), var(--fire-2));
  transform: scaleX(0); transform-origin: left;
}

/* ---- nav ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: transform .5s var(--ease), background .5s, backdrop-filter .5s;
}
.nav.is-scrolled { background: rgba(15,10,7,.82); backdrop-filter: blur(14px); }
.nav.is-hidden { transform: translateY(-110%); }
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { width: 44px; transition: transform .4s var(--ease); }
.nav__logo:hover img { transform: rotate(-8deg) scale(1.08); }
.nav__logo span {
  font-family: var(--font-display); font-size: 13px; line-height: 1.15;
  letter-spacing: .12em; text-transform: uppercase;
}
.nav__links { display: flex; gap: clamp(14px, 2vw, 30px); }
.nav__links a {
  font-size: 14px; font-weight: 500; letter-spacing: .04em; position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--fire); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav__burger span { width: 26px; height: 2px; background: var(--cream); transition: .35s var(--ease); }
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 90; background: rgba(15,10,7,.97);
  display: grid; place-items: center;
  clip-path: circle(0 at calc(100% - 44px) 40px);
  transition: clip-path .7s var(--ease); visibility: hidden;
}
.menu.is-open { clip-path: circle(150% at calc(100% - 44px) 40px); visibility: visible; }
.menu nav { display: flex; flex-direction: column; gap: 10px; text-align: center; }
.menu a {
  font-family: var(--font-display); font-size: clamp(32px, 8vw, 48px);
  text-transform: uppercase; letter-spacing: .04em;
  transition: color .3s;
}
.menu a:hover { color: var(--fire); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .03em;
  border: 1px solid var(--cream); color: var(--cream);
  position: relative; overflow: hidden; isolation: isolate;
  transition: color .35s, border-color .35s;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--fire), var(--fire-2));
  transform: translateY(101%); border-radius: inherit;
  transition: transform .45s var(--ease);
}
.btn:hover { color: #140b05; border-color: var(--fire); }
.btn:hover::before { transform: translateY(0); }
.btn--fire { background: linear-gradient(120deg, var(--fire), var(--fire-2)); border-color: transparent; color: #140b05; }
.btn--fire::before { background: var(--cream-2); }
.btn--fire:hover { color: #140b05; }
.btn--ghost { border-color: rgba(236,217,189,.4); }
.btn--small { padding: 11px 22px; font-size: 13px; }

/* ---- sections shared ---- */
.section { padding: clamp(90px, 12vw, 160px) clamp(20px, 5vw, 72px); position: relative; }
.section__head { max-width: 900px; margin-bottom: clamp(40px, 6vw, 80px); }
.section__intro { max-width: 620px; color: rgba(236,217,189,.75); margin-top: 18px; }
.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--fire); margin-bottom: 18px;
}
h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 6vw, 76px); line-height: 1.02;
  text-transform: uppercase; letter-spacing: .01em;
}
h2 em { font-style: normal; color: var(--fire); }
h2 em i {
  background: linear-gradient(160deg, var(--fire-2) 10%, var(--fire) 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .3em .2em .14em .04em; margin: -.3em -.08em -.14em -.04em;
}
.handwritten { font-family: var(--font-hand); font-size: 26px; color: var(--fire-2); line-height: 1.2; }
.handwritten--big { font-size: 36px; }

/* word-split reveal — no overflow masks, so glyphs and accents never clip */
.w { display: inline-block; vertical-align: top; }
.w i {
  display: inline-block; opacity: 0; transform: translateY(.55em);
  transition: transform .9s var(--ease), opacity .7s ease;
}
.w > i { font-style: normal; }
.in .w i { opacity: 1; transform: translateY(0); }

/* generic reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---- hero ---- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 120px clamp(20px, 5vw, 72px) 80px; overflow: hidden;
}
.hero__bg { position: absolute; inset: -8% 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { from { transform: scale(1.18); } to { transform: scale(1.02); } }
.hero__shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(15,10,7,.94) 22%, rgba(15,10,7,.55) 55%, rgba(15,10,7,.35)),
    linear-gradient(to top, var(--bg) 2%, transparent 30%),
    linear-gradient(to bottom, rgba(15,10,7,.6), transparent 25%);
}
.hero__embers { position: fixed; top: 0; left: 0; width: 100vw; height: 80px; z-index: 105; pointer-events: none; transition: opacity .45s ease; }
.hero__content { position: relative; z-index: 3; max-width: 820px; }
.hero__kicker {
  font-size: 13px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 26px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(44px, 7.6vw, 104px); line-height: .98;
  text-transform: uppercase; margin-bottom: 30px;
}
.hero__title .line { display: block; overflow: hidden; padding: .14em .05em .08em 0; margin: -.14em 0 -.08em; }
.hero__title .line--fire { filter: drop-shadow(0 6px 30px rgba(255,107,43,.35)); }
.hero__title .line--fire .ch {
  background: linear-gradient(160deg, var(--fire-2) 5%, var(--fire) 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-top: .3em; margin-top: -.3em;
}
/* char animation */
.ch { display: inline-block; transform: translateY(115%) rotate(6deg); transition: transform 1s var(--ease); }
.hero.is-ready .ch { transform: translateY(0) rotate(0); }
.hero__sub { max-width: 520px; color: rgba(247,236,217,.85); font-size: 18px; margin-bottom: 38px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__badge {
  position: absolute; z-index: 3; right: clamp(24px, 6vw, 90px); bottom: clamp(90px, 14vh, 150px);
  width: 130px; height: 130px;
}
.badge__spin { width: 100%; height: 100%; }
.badge__spin text {
  font-family: var(--font-body); font-weight: 600; font-size: 10.5px;
  letter-spacing: .22em; fill: var(--cream);
}
.badge__flame {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.badge__flame svg { width: 34px; fill: var(--fire); animation: flick 1.6s ease-in-out infinite; }
@keyframes flick {
  0%,100% { transform: scale(1) rotate(-2deg); } 35% { transform: scale(1.12) rotate(2deg); }
  60% { transform: scale(.95) rotate(-1deg); }
}

.hero__scrollcue {
  position: absolute; z-index: 3; left: clamp(20px, 5vw, 72px); bottom: 32px;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--tan);
}
.hero__scrollcue span { display: block; width: 1px; height: 54px; background: rgba(236,217,189,.3); position: relative; overflow: hidden; }
.hero__scrollcue span::after {
  content: ""; position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--fire); animation: cue 1.8s var(--ease) infinite;
}
@keyframes cue { to { top: 110%; } }

/* ---- marquee ---- */
.marquee { overflow: hidden; border-block: 1px solid rgba(236,217,189,.14); background: var(--bg-2); padding: 18px 0; }
.marquee__track { display: flex; width: max-content; will-change: transform; }
.marquee__group { display: flex; align-items: center; gap: 42px; padding-right: 42px; white-space: nowrap; }
.marquee__group span {
  font-family: var(--font-display); font-size: clamp(16px, 2vw, 22px);
  text-transform: uppercase; letter-spacing: .08em; color: var(--cream);
}
.marquee__group i { color: var(--fire); font-style: normal; font-size: 18px; }
.marquee__group--big span { font-size: clamp(60px, 9vw, 130px); color: rgba(236,217,189,.08); -webkit-text-stroke: 1px rgba(236,217,189,.25); }
.marquee__group--big i { font-size: clamp(30px, 4vw, 60px); color: rgba(255,107,43,.5); }

/* ---- broers ---- */
.broers { background: var(--bg); }
.broers__gallery {
  display: flex; gap: 10px; height: clamp(440px, 64vh, 620px);
}
.broer {
  position: relative; flex: 1; overflow: hidden; border-radius: 18px;
  cursor: pointer; transition: flex .8s var(--ease);
  outline: 1px solid rgba(236,217,189,.12); outline-offset: -1px;
}
.broers__gallery:hover .broer { flex: .88; }
.broers__gallery .broer:hover, .broers__gallery .broer.is-open { flex: 1.45; }
.broer:nth-child(1) .broer__img { background-image: url("../img/broer1.jpg"); }
.broer:nth-child(2) .broer__img { background-image: url("../img/broer2.jpg"); }
.broer:nth-child(3) .broer__img { background-image: url("../img/broer3.jpg"); }
.broer:nth-child(4) .broer__img { background-image: url("../img/broer4.jpg"); }
.broer__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 32%;
  filter: saturate(.85) brightness(.85);
  transition: filter .6s, transform 1.2s var(--ease);
}
.broer:hover .broer__img { filter: saturate(1.05) brightness(1); transform: scale(1.015); }
.broer::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,7,.92) 8%, transparent 55%);
}
.broer__label {
  position: absolute; z-index: 2; left: 22px; bottom: 20px; right: 22px;
  transition: opacity .4s, transform .5s var(--ease);
}
.broer__nr { font-family: var(--font-display); color: var(--fire); font-size: 15px; letter-spacing: .2em; }
.broer__label h3 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(18px, 2vw, 27px); line-height: 1.05; margin-top: 6px;
}
.broer__info {
  position: absolute; z-index: 3; left: 26px; right: 26px; bottom: 24px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s .15s, transform .6s .15s var(--ease);
  pointer-events: none;
}
.broer:hover .broer__label, .broer.is-open .broer__label { opacity: 0; transform: translateY(-12px); }
.broer:hover .broer__info, .broer.is-open .broer__info { opacity: 1; transform: none; pointer-events: auto; }
.broer__info p { font-size: 15px; color: rgba(247,236,217,.92); margin-bottom: 10px; }
.broer__info .handwritten { font-size: 24px; margin-bottom: 8px; }
.broer__link { font-weight: 700; font-size: 14px; color: var(--fire-2); letter-spacing: .04em; }
.broers__cta { margin-top: 34px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.broers__note { font-size: 13.5px; color: rgba(236,217,189,.45); max-width: 380px; }

/* ---- scrub quote ---- */
.scrub { padding: clamp(80px, 12vw, 150px) clamp(20px, 6vw, 100px); background: var(--bg-2); }
.scrub__text {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(26px, 4.6vw, 58px); line-height: 1.16; max-width: 1100px;
}
.scrub__text .sw { color: rgba(236,217,189,.16); transition: color .35s; }
.scrub__text .sw.lit { color: var(--cream); }
.scrub__text .sw.lit.accent { color: var(--fire); }

/* ---- verhaal ---- */
.verhaal { background: var(--bg); overflow: hidden; }
.verhaal__grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.verhaal__media { position: relative; }
.reveal-img { border-radius: 20px; overflow: hidden; position: relative; }
.reveal-img img {
  transform: scale(1.25); transition: transform 1.4s var(--ease);
}
.reveal-img::after {
  content: ""; position: absolute; inset: 0; background: var(--bg);
  transform: scaleY(1); transform-origin: bottom; transition: transform 1.1s var(--ease);
}
.reveal-img.in::after { transform: scaleY(0); }
.reveal-img.in img { transform: scale(1); }
.verhaal__sticker {
  position: absolute; right: -8px; bottom: 26px; transform: rotate(-6deg);
  background: var(--cream); color: #3a2413; padding: 8px 18px; border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,.4); font-size: 24px;
}
.verhaal__copy p { color: rgba(247,236,217,.82); margin-top: 18px; max-width: 560px; }
.checks { list-style: none; margin-top: 26px; display: grid; gap: 10px; }
.checks li { display: flex; gap: 12px; align-items: baseline; font-weight: 600; }
.checks li::before { content: "✓"; color: var(--fire); font-weight: 800; }

/* ---- proces ---- */
.proces { background: var(--bg-2); }
.proces__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stap {
  background: var(--panel); border: 1px solid rgba(236,217,189,.1); border-radius: 20px;
  padding: 36px 30px; position: relative; overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s;
}
.stap:hover { transform: translateY(-8px); border-color: rgba(255,107,43,.5); }
.stap__drum { width: 74px; height: 74px; color: var(--fire); margin-bottom: 22px; }
.stap__drum svg { width: 100%; height: 100%; }
.stap__nr { font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--tan); }
.stap h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 24px; margin: 10px 0 12px; }
.stap p { font-size: 15.5px; color: rgba(247,236,217,.75); }
.proces__stats {
  margin-top: clamp(50px, 7vw, 90px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center;
}
.stat__num {
  display: block; font-family: var(--font-display); font-size: clamp(44px, 6vw, 84px);
  color: var(--fire); line-height: 1;
}
.stat__label { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: rgba(236,217,189,.6); }

/* ---- shop ---- */
.shop { background: var(--bg); }
.shop__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product {
  background: var(--panel); border: 1px solid rgba(236,217,189,.1); border-radius: 22px;
  overflow: hidden; display: flex; flex-direction: column;
  transform-style: preserve-3d; will-change: transform;
}
.product__visual {
  position: relative; aspect-ratio: 4 / 3.4; display: grid; place-items: center;
  overflow: hidden;
}
.product__visual--1 { background: radial-gradient(120% 100% at 30% 20%, #b06a35, #5c3016 70%); }
.product__visual--2 { background: radial-gradient(120% 100% at 30% 20%, #4a3527, #1b0f08 70%); }
.product__visual--3 { background: radial-gradient(120% 100% at 30% 20%, #8a5a2b, #3d1f0d 70%); }
.product__visual--4 { background: radial-gradient(120% 100% at 30% 20%, #5d7a4c, #24331c 70%); }
.product__logo {
  width: 38%; opacity: .95; transform: translateZ(40px);
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.45));
  transition: transform .5s var(--ease);
}
.product:hover .product__logo { transform: translateZ(40px) scale(1.1) rotate(-4deg); }
.product__nr {
  position: absolute; top: 16px; left: 18px;
  font-family: var(--font-display); letter-spacing: .16em; font-size: 13px; opacity: .8;
}
.product__name-on-bag {
  position: absolute; bottom: 12px; left: 18px;
  font-family: var(--font-display); text-transform: uppercase; line-height: .95;
  font-size: clamp(20px, 1.8vw, 26px); opacity: .9;
}
.product__ribbon {
  position: absolute; top: 16px; right: -34px; transform: rotate(38deg);
  background: var(--fire); color: #140b05; font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 5px 40px;
}
.product__ribbon--green { background: var(--green); }
.product__body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product__tag { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--tan); }
.product__body h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 23px; }
.product__desc { font-size: 14.5px; color: rgba(247,236,217,.72); flex: 1; }
.product__weights { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(236,217,189,.3);
  font-size: 13px; font-weight: 600; transition: .3s;
}
.pill:hover { border-color: var(--fire); }
.pill.is-active { background: var(--cream); color: #140b05; border-color: var(--cream); }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.product__price { font-family: var(--font-display); font-size: 24px; }
.shop__note { margin-top: 26px; font-size: 13.5px; color: rgba(236,217,189,.45); }

/* ---- keet ---- */
.keet { background: var(--bg-2); }
.keet__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.keetcard {
  position: relative; border-radius: 22px; overflow: hidden;
  min-height: 420px; display: flex; align-items: flex-end;
  border: 1px solid rgba(236,217,189,.1);
}
.keetcard__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 1.1s var(--ease), filter .6s;
  filter: saturate(.8) brightness(.75);
}
.keetcard:hover .keetcard__bg { transform: scale(1.06); filter: saturate(1) brightness(.9); }
.keetcard__bg--keet { background-image: url("../img/keet.jpg"); }
.keetcard__bg--cursus { background-image: url("../img/cupping.jpg"); }
.keetcard::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,7,.95) 10%, transparent 60%);
}
.keetcard__body { position: relative; z-index: 2; padding: 34px; max-width: 480px; }
.keetcard__body h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(26px, 3vw, 38px); margin-bottom: 12px; }
.keetcard__body p { color: rgba(247,236,217,.85); margin-bottom: 22px; font-size: 15.5px; }

/* ---- faq ---- */
.faq { background: var(--bg); }
.faq__list { max-width: 860px; }
.faq__item {
  border-bottom: 1px solid rgba(236,217,189,.14);
}
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  padding: 26px 4px; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 2.4vw, 26px); text-transform: uppercase; letter-spacing: .02em;
  transition: color .3s, padding-left .4s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--fire-2); padding-left: 14px; }
.faq__flame { display: grid; place-items: center; transition: transform .4s var(--ease); }
.faq__flame svg { width: 22px; height: 22px; fill: rgba(236,217,189,.28); transition: fill .3s; }
.faq__item[open] .faq__flame { transform: scale(1.2) rotate(-8deg); }
.faq__item[open] .faq__flame svg { fill: var(--fire); }
.faq__item summary:hover .faq__flame svg { fill: var(--fire-2); }
.faq__answer { overflow: hidden; }
.faq__answer p { padding: 0 4px 26px; max-width: 640px; color: rgba(247,236,217,.78); }

/* ---- reviews ---- */
.reviews { background: var(--bg-2); }
.reviews__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(40px, 6vw, 90px); align-items: start;
}
.reviews__score { text-align: left; }
.reviews__number {
  font-family: var(--font-display); font-size: clamp(72px, 9vw, 128px);
  line-height: 1; display: block;
  background: linear-gradient(160deg, var(--fire-2) 10%, var(--fire) 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: .1em .1em 0 0; margin: -.1em -.1em 0 0;
}
.reviews__stars { display: flex; gap: 5px; margin: 14px 0 10px; }
.reviews__stars svg { width: 26px; height: 26px; fill: var(--fire-2); filter: drop-shadow(0 2px 8px rgba(255,179,71,.35)); }
.reviews__score p { font-weight: 600; }
.reviews__link {
  display: inline-block; margin-top: 10px; font-size: 14px; font-weight: 700;
  color: var(--fire-2); border-bottom: 1px solid rgba(255,179,71,.4);
  padding-bottom: 2px; transition: color .3s, border-color .3s;
}
.reviews__link:hover { color: var(--cream-2); border-color: var(--cream-2); }
.reviews__stage { position: relative; }
.review-card {
  background: var(--panel); border: 1px solid rgba(236,217,189,.12); border-radius: 22px;
  padding: clamp(28px, 4vw, 44px); min-height: 300px;
  display: flex; flex-direction: column; justify-content: center;
  transition: opacity .45s ease, transform .45s var(--ease);
}
.review-card.is-out { opacity: 0; transform: translateY(14px); }
.review-card__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review-card__stars svg { width: 18px; height: 18px; fill: var(--fire-2); }
.review-card blockquote {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(19px, 2.3vw, 27px); line-height: 1.3; margin-bottom: 20px;
}
.review-card__who { display: flex; align-items: center; gap: 14px; }
.review-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; font-size: 17px; color: #140b05;
  background: linear-gradient(140deg, var(--cream-2), var(--tan));
}
.review-card__who strong { display: block; font-size: 15.5px; }
.review-card__who small { color: rgba(236,217,189,.55); font-size: 13px; }
.review-card__reply {
  margin-top: 20px; padding: 14px 18px; border-left: 3px solid var(--fire);
  background: rgba(255,107,43,.06); border-radius: 0 12px 12px 0; font-size: 14px;
  color: rgba(247,236,217,.85);
}
.review-card__reply strong { color: var(--fire-2); display: block; margin-bottom: 4px; font-size: 13px; }
.reviews__nav { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.reviews__arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(236,217,189,.3);
  font-size: 17px; transition: .3s;
}
.reviews__arrow:hover { background: var(--fire); border-color: var(--fire); color: #140b05; }
.reviews__dots { display: flex; gap: 8px; }
.reviews__dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(236,217,189,.25);
  transition: .35s var(--ease); padding: 0;
}
.reviews__dot.is-active { background: var(--fire); width: 26px; border-radius: 99px; }

/* ---- footer ---- */
.footer { position: relative; background: var(--bg-2); overflow: hidden; padding-bottom: 30px; }
.footer__embers { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .55; }
.footer__marquee { overflow: hidden; padding: clamp(30px, 5vw, 60px) 0 10px; }
.footer__grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(30px, 4vw, 60px);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 72px);
}
.footer__brand img { width: 92px; margin-bottom: 16px; }
.footer__brand > p:last-child { color: rgba(236,217,189,.6); font-size: 15px; max-width: 300px; }
.footer__col h4 {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  letter-spacing: .1em; font-size: 16px; color: var(--fire); margin-bottom: 14px;
}
.footer__col p { font-size: 15px; color: rgba(247,236,217,.8); }
.footer__col a { border-bottom: 1px solid rgba(236,217,189,.3); transition: color .3s, border-color .3s; }
.footer__col a:hover { color: var(--fire-2); border-color: var(--fire-2); }
.footer__bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 24px clamp(20px, 5vw, 72px) 0;
  border-top: 1px solid rgba(236,217,189,.12);
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(236,217,189,.45);
}

/* ---- nav cart ---- */
.nav__cart { position: relative; width: 42px; height: 42px; display: grid; place-items: center; }
.nav__cart svg { width: 24px; height: 24px; color: var(--cream); transition: color .3s, transform .3s var(--ease); }
.nav__cart:hover svg { color: var(--fire); transform: translateY(-2px); }
.nav__cart-count {
  position: absolute; top: 0; right: -2px; min-width: 18px; height: 18px; padding: 0 4px;
  border-radius: 999px; background: var(--fire); color: #140b05;
  font-size: 11px; font-weight: 700; display: grid; place-items: center;
  transition: transform .3s var(--ease);
}
.nav__cart-count.is-empty { transform: scale(0); }
.nav__cart.bump svg { animation: bump .45s var(--ease); }
@keyframes bump { 30% { transform: scale(1.25) rotate(-8deg); } }

/* ---- photo strip ---- */
.strip { background: var(--bg); padding: 0 clamp(20px, 5vw, 72px) clamp(60px, 8vw, 110px); }
.strip__row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 26px);
  align-items: start;
}
.strip__item { position: relative; border-radius: 16px; margin: 0; }
.strip__item:nth-child(odd) { transform: rotate(-1.6deg) translateY(14px); }
.strip__item:nth-child(even) { transform: rotate(1.4deg); }
.strip__item img {
  border-radius: 16px; aspect-ratio: 4 / 3; object-fit: cover; width: 100%;
  filter: saturate(.9); transition: transform .8s var(--ease), filter .5s;
  box-shadow: 0 18px 44px rgba(0,0,0,.45);
}
.strip__item:hover img { transform: scale(1.045) rotate(.6deg); filter: saturate(1.05); }
.strip__item figcaption {
  position: absolute; left: 14px; bottom: 10px; font-size: 23px;
  color: var(--cream-2); text-shadow: 0 2px 12px rgba(0,0,0,.8);
}

/* ---- boer / direct trade ---- */
.boer { background: var(--bg); overflow: hidden; }
.boer__grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.boer__copy p { color: rgba(247,236,217,.82); margin-top: 18px; max-width: 560px; }
.boer__copy .btn { margin-top: 30px; }
.boer__media { position: relative; }
.boer__sticker {
  position: absolute; left: -10px; bottom: 30px; transform: rotate(4deg);
  background: var(--cream); color: #3a2413; padding: 8px 18px; border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,.4); font-size: 24px;
}

/* ---- overlay / drawer / modal ---- */
.overlay {
  position: fixed; inset: 0; z-index: 240; background: rgba(10,6,4,.6);
  backdrop-filter: blur(4px); opacity: 0; visibility: hidden;
  transition: opacity .45s ease, visibility .45s;
}
.overlay.is-open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 250;
  width: min(440px, 100vw); background: var(--bg-2);
  border-left: 1px solid rgba(236,217,189,.14);
  display: flex; flex-direction: column;
  transform: translateX(102%); transition: transform .55s var(--ease);
}
.drawer.is-open { transform: none; }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; border-bottom: 1px solid rgba(236,217,189,.12);
}
.drawer__head h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 22px; }
.drawer__close, .modal__close {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(236,217,189,.3);
  display: grid; place-items: center; font-size: 15px; transition: .3s;
}
.drawer__close:hover, .modal__close:hover { background: var(--fire); border-color: var(--fire); color: #140b05; transform: rotate(90deg); }
.drawer__body { flex: 1; overflow-y: auto; padding: 20px 26px; }
.drawer__foot { padding: 20px 26px; border-top: 1px solid rgba(236,217,189,.12); }
.drawer__foot:empty { display: none; }

.cart-empty { text-align: center; padding: 50px 0; color: rgba(236,217,189,.6); }
.cart-empty .handwritten { font-size: 30px; margin-bottom: 10px; color: var(--fire-2); }
.cart-item {
  display: grid; grid-template-columns: 54px 1fr auto; gap: 14px; align-items: center;
  padding: 14px 0; border-bottom: 1px dashed rgba(236,217,189,.15);
}
.cart-item__bag {
  width: 54px; height: 64px; border-radius: 8px; display: grid; place-items: center;
  background: radial-gradient(120% 100% at 30% 20%, #b06a35, #5c3016 75%);
}
.cart-item__bag.bag--sciroppo { background: radial-gradient(120% 100% at 30% 20%, #4a3527, #1b0f08 75%); }
.cart-item__bag.bag--whiskey { background: radial-gradient(120% 100% at 30% 20%, #8a5a2b, #3d1f0d 75%); }
.cart-item__bag.bag--bio { background: radial-gradient(120% 100% at 30% 20%, #5d7a4c, #24331c 75%); }
.cart-item__bag img { width: 30px; }
.cart-item h4 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 16px; }
.cart-item small { color: rgba(236,217,189,.6); font-size: 13px; }
.cart-item__qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-item__qty button {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(236,217,189,.3);
  font-size: 13px; line-height: 1; transition: .25s;
}
.cart-item__qty button:hover { border-color: var(--fire); color: var(--fire); }
.cart-item__price { font-family: var(--font-display); font-size: 17px; text-align: right; }
.cart-item__remove { font-size: 12px; color: rgba(236,217,189,.45); margin-top: 6px; transition: color .25s; }
.cart-item__remove:hover { color: var(--fire); }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 6px; }
.cart-note { font-size: 13px; color: rgba(236,217,189,.55); margin-bottom: 14px; }
.cart-note.good { color: var(--green); }
.btn--block { width: 100%; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 13px; letter-spacing: .06em; margin-bottom: 6px; color: rgba(236,217,189,.7); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 12px 14px; border-radius: 10px; font: inherit; font-size: 15px;
  background: rgba(236,217,189,.06); border: 1px solid rgba(236,217,189,.2); color: var(--cream);
  transition: border-color .3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--fire); }
.checkout-success { text-align: center; padding: 30px 0; }
.checkout-success .success-flame { display: inline-block; animation: flick 1.6s ease-in-out infinite; }
.checkout-success .success-flame svg { width: 48px; height: 48px; fill: var(--fire); filter: drop-shadow(0 0 18px rgba(255,107,43,.5)); }
.checkout-success h4 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 24px; margin: 12px 0 8px; }
.checkout-success p { color: rgba(236,217,189,.7); font-size: 14.5px; }
.checkout-success .ordernr { font-family: var(--font-display); color: var(--fire-2); font-size: 18px; margin: 12px 0; }

.modal {
  position: fixed; inset: 0; z-index: 250; display: grid; place-items: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__box {
  position: relative; width: min(560px, 100%); max-height: 86vh; overflow-y: auto;
  background: var(--bg-2); border: 1px solid rgba(236,217,189,.15); border-radius: 22px;
  padding: 34px; transform: translateY(26px) scale(.97); transition: transform .45s var(--ease);
}
.modal.is-open .modal__box { transform: none; }
.modal__close { position: absolute; top: 18px; right: 18px; }
.modal__body h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 27px; margin-bottom: 6px; }
.modal__body > p { color: rgba(236,217,189,.7); font-size: 14.5px; margin-bottom: 18px; }
.agenda-list { display: grid; gap: 10px; margin-bottom: 8px; }
.agenda-slot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; border: 1px solid rgba(236,217,189,.16); border-radius: 12px;
  transition: border-color .3s, background .3s; text-align: left; width: 100%;
}
.agenda-slot:hover:not(:disabled) { border-color: var(--fire); background: rgba(255,107,43,.07); }
.agenda-slot:disabled { opacity: .38; cursor: not-allowed; }
.agenda-slot .slot-date { font-weight: 700; }
.agenda-slot .slot-info { font-size: 13px; color: rgba(236,217,189,.6); }
.agenda-slot .slot-state { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); }
.agenda-slot:disabled .slot-state { color: rgba(236,217,189,.5); }

/* ---- toasts ---- */
.toasts { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 260; display: grid; gap: 10px; width: min(420px, calc(100vw - 40px)); }
.toast {
  background: var(--cream); color: #2a1a0e; border-radius: 12px; padding: 14px 18px;
  font-size: 14.5px; font-weight: 600; box-shadow: 0 16px 44px rgba(0,0,0,.5);
  display: flex; align-items: center; gap: 10px;
  animation: toastIn .45s var(--ease), toastOut .4s ease 3.2s forwards;
}
.toast .t-flame { display: grid; place-items: center; }
.toast .t-flame svg { width: 20px; height: 20px; fill: var(--fire); }
@keyframes toastIn { from { opacity: 0; transform: translateY(16px) scale(.96); } }
@keyframes toastOut { to { opacity: 0; transform: translateY(10px); } }

/* product flash highlight */
.product.is-flash { animation: flash 1.6s ease; }
@keyframes flash {
  0%, 60% { border-color: var(--fire); box-shadow: 0 0 0 3px rgba(255,107,43,.35), 0 0 60px rgba(255,107,43,.25); }
  100% { border-color: rgba(236,217,189,.1); box-shadow: none; }
}

body.no-scroll-lock { overflow: hidden; }

/* ---- over-de-broers page ---- */
.about-hero {
  position: relative; min-height: 88svh; display: flex; align-items: flex-end;
  padding: 140px clamp(20px, 5vw, 72px) clamp(60px, 9vh, 100px); overflow: hidden;
}
.about-hero__bg { position: absolute; inset: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.about-hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 4%, rgba(15,10,7,.55) 45%, rgba(15,10,7,.35)),
    linear-gradient(to bottom, rgba(15,10,7,.7), transparent 28%);
}
.about-hero__content { position: relative; z-index: 3; max-width: 900px; }
.line--fire-solid {
  background: linear-gradient(100deg, var(--fire) 15%, var(--fire-2) 85%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 30px rgba(255,107,43,.35));
  padding-right: .08em;
}
.about-page .hero__title { font-size: clamp(56px, 10vw, 150px); }

.about-story { background: var(--bg); }
.about-story__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 90px); align-items: start; }
.about-story__copy p { color: rgba(247,236,217,.82); margin-bottom: 18px; max-width: 540px; }
.about-story__copy .handwritten { font-size: 34px; }

.album { background: var(--bg-2); }
.album__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 30px); align-items: start; }
.album__item { position: relative; margin: 0; }
.album__item:nth-child(1) { transform: rotate(-1.6deg) translateY(10px); }
.album__item:nth-child(2) { transform: rotate(1.3deg); }
.album__item:nth-child(3) { transform: rotate(-.8deg) translateY(18px); }
.album__item img {
  width: 100%; border-radius: 16px; box-shadow: 0 22px 50px rgba(0,0,0,.5);
  border: 6px solid var(--cream-2);
  transition: transform .7s var(--ease);
}
.album__item:hover img { transform: scale(1.03) rotate(.6deg); }
.album__item figcaption {
  position: absolute; left: 18px; bottom: 14px; font-size: 24px;
  color: var(--cream-2); text-shadow: 0 2px 12px rgba(0,0,0,.9);
}

.chars { background: var(--bg); }
.chars .broers__note { margin-top: 26px; }
.chars__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.char {
  background: var(--panel); border: 1px solid rgba(236,217,189,.1); border-radius: 20px;
  overflow: hidden; transition: transform .5s var(--ease), border-color .4s;
}
.char:hover { transform: translateY(-8px); border-color: rgba(255,107,43,.5); }
.char img { aspect-ratio: 3 / 3.2; object-fit: cover; object-position: center 20%; width: 100%; }
.char__body { padding: 20px 22px 26px; }
.char__body h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 21px; margin: 6px 0 8px; }
.char__body .handwritten { font-size: 22px; margin-bottom: 10px; }
.char__body p:last-child { font-size: 14.5px; color: rgba(247,236,217,.75); }

.about-cta { background: var(--bg-2); text-align: center; }
.about-cta h2 { margin-bottom: 34px; }
.about-cta .hero__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.about-footer { padding-top: 10px; }

@media (max-width: 900px) {
  .about-story__grid { grid-template-columns: 1fr; }
  .album__grid { grid-template-columns: 1fr; max-width: 560px; }
  .chars__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) { .chars__grid { grid-template-columns: 1fr; } }

/* screenshot/test mode: pin viewport-height sections */
html.static .hero { min-height: 860px; max-height: 860px; }
html.static .about-hero { min-height: 800px; max-height: 800px; }
html.static .broers__gallery { height: 560px; }
@media (max-width: 860px) { html.static .broers__gallery { height: auto; } }

/* ---- responsive ---- */
@media (max-width: 1024px) {
  .shop__grid { grid-template-columns: 1fr 1fr; }
  .proces__steps { grid-template-columns: 1fr; }
  .proces__stats { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
}
@media (max-width: 860px) {
  .nav__links, .nav .btn { display: none; }
  .strip__row { grid-template-columns: 1fr 1fr; }
  .boer__grid { grid-template-columns: 1fr; }
  .nav__burger { display: flex; }
  .verhaal__grid { grid-template-columns: 1fr; }
  .keet__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .broers__gallery { flex-direction: column; height: auto; }
  .broer { min-height: 250px; flex: none !important; transition: min-height .7s var(--ease); }
  .broer.is-open { min-height: 460px; }
  .broer__img { background-position: center 25%; }
  .hero__badge { display: none; }
}
@media (max-width: 560px) {
  .shop__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .product__visual { aspect-ratio: 4 / 2.6; }
  .strip__row { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .hero__cta .btn { flex: 1; min-width: 200px; }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .w > i, .ch { opacity: 1 !important; transform: none !important; }
}
