/* ============================================================
   Brouwerij De Fakkel — stylesheet
   ============================================================ */

:root {
  --bg: #0d0805;
  --bg-2: #150c06;
  --ink: #f4ede0;
  --ink-dim: #c8b89a;
  --ink-mute: #8a7a5e;
  --line: #2a1d10;
  --line-2: #1a1108;
  --amber: #d4a45c;
  --amber-2: #b87333;
  --amber-glow: #f5d68a;
  --copper: #c97a3a;
  --cream: #f4ede0;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Film grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0 0.15 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  z-index: 1000;
}

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

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

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--amber);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 2000;
}
.skip:focus {
  left: 8px;
}

/* ============== bubble field ============== */
.bubble-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bubble-field span {
  position: absolute;
  bottom: -40px;
  width: var(--size, 8px);
  height: var(--size, 8px);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(245, 214, 138, 0.9),
    rgba(212, 164, 92, 0.3) 60%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  animation: rise var(--dur, 18s) linear infinite;
  animation-delay: var(--delay, 0s);
}
.bubble-field span:nth-child(1) { --size: 6px; left: 4%; --dur: 22s; --delay: 0s; }
.bubble-field span:nth-child(2) { --size: 10px; left: 12%; --dur: 18s; --delay: 4s; }
.bubble-field span:nth-child(3) { --size: 4px; left: 22%; --dur: 26s; --delay: 8s; }
.bubble-field span:nth-child(4) { --size: 14px; left: 32%; --dur: 24s; --delay: 2s; }
.bubble-field span:nth-child(5) { --size: 8px; left: 41%; --dur: 20s; --delay: 10s; }
.bubble-field span:nth-child(6) { --size: 5px; left: 52%; --dur: 28s; --delay: 6s; }
.bubble-field span:nth-child(7) { --size: 12px; left: 63%; --dur: 22s; --delay: 12s; }
.bubble-field span:nth-child(8) { --size: 6px; left: 72%; --dur: 19s; --delay: 1s; }
.bubble-field span:nth-child(9) { --size: 9px; left: 81%; --dur: 25s; --delay: 14s; }
.bubble-field span:nth-child(10) { --size: 4px; left: 89%; --dur: 30s; --delay: 7s; }
.bubble-field span:nth-child(11) { --size: 7px; left: 94%; --dur: 21s; --delay: 16s; }
.bubble-field span:nth-child(12) { --size: 11px; left: 36%; --dur: 27s; --delay: 18s; }

@keyframes rise {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.6; }
  50% { transform: translateY(-50vh) translateX(20px); opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-110vh) translateX(-10px); opacity: 0; }
}

/* ============== topbar ============== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px var(--pad);
  background: rgba(13, 8, 5, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line-2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand em {
  font-style: italic;
  color: var(--amber);
}
.brand__mark {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 14px rgba(212, 164, 92, 0.4));
  transition: transform 0.5s cubic-bezier(0.5, 0, 0.2, 1);
}
.brand:hover .brand__mark {
  transform: rotate(-8deg) scale(1.08);
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-dim);
}
.nav a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--amber);
  transition: width 0.3s;
}
.nav a:hover {
  color: var(--ink);
}
.nav a:hover::after {
  width: 100%;
}

@media (max-width: 820px) {
  .nav {
    display: none;
  }
}

/* ============== buttons ============== */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--amber);
  color: #1a0e05;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid var(--amber);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.5, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.cta:hover {
  background: var(--amber-glow);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(212, 164, 92, 0.5);
}
.cta:hover svg {
  transform: translateX(3px);
}
.cta--small {
  padding: 10px 16px;
  font-size: 13px;
}
.cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.cta--ghost:hover {
  background: rgba(212, 164, 92, 0.08);
  border-color: var(--amber-2);
  color: var(--amber);
  box-shadow: 0 12px 30px -10px rgba(212, 164, 92, 0.25);
}

/* ============== hero ============== */
.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 80px var(--pad) 120px;
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 80px);
}

.hero__inner {
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(212, 164, 92, 0.05);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.8s 0.1s forwards;
}
.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 10px var(--amber);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.hero__title .word {
  display: inline-block;
  margin-right: 0.18em;
  opacity: 0;
  transform: translateY(40px) rotate(2deg);
  animation: wordIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero__title .word:nth-child(1) { animation-delay: 0.2s; }
.hero__title .word:nth-child(2) { animation-delay: 0.32s; }
.hero__title .word:nth-child(3) { animation-delay: 0.44s; }
.hero__title .word:nth-child(4) { animation-delay: 0.56s; color: var(--amber); }
.hero__title .word.italic {
  font-style: italic;
  font-weight: 400;
}
.hero__title .word.accent {
  text-shadow: 0 0 60px rgba(212, 164, 92, 0.4);
}

@keyframes wordIn {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============== hero glass + meta ============== */
.hero__glass {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}

.glass {
  position: relative;
  width: 220px;
  height: 340px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.glass__head {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: none;
}
.glass__bowl {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 280px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: none;
  border-radius: 4px 4px 8px 8px;
  overflow: hidden;
}
.glass__beer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(
    180deg,
    #e7b85a 0%,
    #d49a4d 40%,
    #b87333 100%
  );
  animation: pour 4s ease-in-out infinite;
}
@keyframes pour {
  0%, 100% { height: 70%; }
  50% { height: 78%; }
}
.glass__foam {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 28px;
  background: radial-gradient(ellipse at 30% 50%, #fff 0%, #f4ede0 60%, transparent 100%);
  border-radius: 50% / 60%;
  bottom: calc(70% - 14px);
  animation: foamUp 4s ease-in-out infinite;
  filter: blur(1px);
}
@keyframes foamUp {
  0%, 100% { bottom: calc(70% - 14px); }
  50% { bottom: calc(78% - 14px); }
}
.glass__shine {
  position: absolute;
  top: 30px;
  left: 16px;
  width: 14px;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
  border-radius: 50%;
  filter: blur(2px);
}
.glass__base {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 380px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(20, 12, 6, 0.6);
  backdrop-filter: blur(8px);
}
.hero__meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__meta strong {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 1.5s infinite;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 40px;
    min-height: auto;
  }
  .hero__glass {
    margin-top: 24px;
  }
  .glass {
    width: 180px;
    height: 280px;
  }
  .glass__bowl {
    width: 162px;
    height: 230px;
  }
}

/* ============== marquee ============== */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(90deg, var(--bg-2), var(--bg), var(--bg-2));
  padding: 18px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-dim);
  animation: marquee 40s linear infinite;
}
.marquee__track span:nth-child(even) {
  color: var(--amber);
  font-style: normal;
  font-size: 18px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== section heads ============== */
section {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  margin-bottom: 64px;
}
.section-head--split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: end;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 16px;
  max-width: 18ch;
}
.section-sub {
  color: var(--ink-dim);
  font-size: 16px;
  max-width: 38ch;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .section-head--split { grid-template-columns: 1fr; }
}

/* ============== manifesto ============== */
.manifesto {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--line-2);
}
.manifesto__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto__lede {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  font-weight: 400;
  color: var(--ink);
  max-width: 22ch;
}
.manifesto__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.manifesto__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.manifesto__list li:last-child {
  border-bottom: 1px solid var(--line);
}
.manifesto__list strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}
.manifesto__list span {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 820px) {
  .manifesto__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============== bieren ============== */
.bieren {
  padding: 120px 0;
  border-bottom: 1px solid var(--line-2);
}
.bieren__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 820px) {
  .bieren__grid { grid-template-columns: 1fr; }
}

.bier {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(30, 20, 12, 0.6), rgba(20, 14, 8, 0.6));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
}
.bier::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(212, 164, 92, 0.08),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.bier:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
}
.bier:hover::before {
  opacity: 1;
}

.bier__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.bottle {
  position: relative;
  width: 100px;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.6));
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.bier:hover .bottle {
  transform: rotate(-3deg) translateY(-6px);
}
.bottle__cap {
  width: 28px;
  height: 14px;
  background: linear-gradient(180deg, #b87333, #7a4a22);
  border-radius: 3px 3px 0 0;
  position: relative;
  z-index: 2;
}
.bottle__cap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 2px,
    rgba(0, 0, 0, 0.3) 2px 3px
  );
}
.bottle__neck {
  width: 22px;
  height: 36px;
  background: linear-gradient(180deg, #1a1008 0%, #0d0805 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: -1px;
}
.bottle__body {
  position: relative;
  width: 100px;
  height: 180px;
  background: linear-gradient(180deg, #2a1d10 0%, #0d0805 100%);
  border-radius: 8px 8px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
  margin-top: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bottle__body::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent);
  border-radius: 4px;
}
.bottle__label {
  width: 84px;
  height: 130px;
  background: var(--cream);
  color: #1a0e05;
  border-radius: 2px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}
.bottle--dark .bottle__label {
  background: #1a0e05;
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(212, 164, 92, 0.2);
}
.bottle__brand {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-2);
  margin-bottom: 2px;
}
.bottle--dark .bottle__brand {
  color: var(--amber);
}
.bottle__name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  margin: 2px 0 4px;
}
.bottle__style {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}
.bottle__line {
  width: 20px;
  height: 1px;
  background: var(--amber-2);
  margin: 4px 0;
}
.bottle--dark .bottle__line {
  background: var(--amber);
}
.bottle__abv {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  margin-top: auto;
  opacity: 0.7;
}

.bier__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.bier__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.bier__price {
  color: var(--amber);
  font-weight: 500;
}
.bier__name {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1;
}
.bier__desc {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
}
.bier__notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.bier__notes > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bier__notes dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bier__notes dd {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
}

@media (max-width: 600px) {
  .bier {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bier__visual { padding: 16px 0 0; }
}

/* ============== proces / timeline ============== */
.proces {
  padding: 120px 0;
  border-bottom: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--bg), var(--bg-2));
}
.timeline {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 10%, var(--line) 90%, transparent);
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 80px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.step.in {
  opacity: 1;
  transform: translateY(0);
}
.step__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  transition: all 0.4s;
}
.step:hover .step__icon {
  background: var(--amber);
  color: var(--bg);
  border-color: var(--amber);
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(212, 164, 92, 0.4);
}
.step__icon::before {
  content: attr(data-step);
  position: absolute;
  top: -22px;
  left: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
}
.step__icon svg {
  width: 36px;
  height: 36px;
}
.step h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}
.step__time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--amber);
  letter-spacing: 0.06em;
}
.step p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  .timeline::before { display: none; }
}
@media (max-width: 600px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ============== verhaal ============== */
.verhaal {
  padding: 120px 0;
  border-bottom: 1px solid var(--line-2);
}
.verhaal__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.verhaal__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.verhaal__copy p {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 56ch;
}
.verhaal__copy .cta {
  margin-top: 12px;
  align-self: flex-start;
}

.verhaal__card {
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(30, 20, 12, 0.6), rgba(20, 14, 8, 0.6));
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.portret {
  border-radius: 12px;
  overflow: hidden;
  background: #0d0805;
}
.verhaal__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 13px;
}
.verhaal__caption strong {
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
}
.verhaal__caption span {
  color: var(--ink-mute);
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .verhaal__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============== bezoek ============== */
.bezoek {
  padding: 120px 0 80px;
}
.bezoek__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}
.bezoek__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(20, 14, 8, 0.5);
}
.bezoek__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.bezoek__row:last-child {
  border-bottom: none;
}
.bezoek__row strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}
.bezoek__row strong a {
  color: var(--amber);
  border-bottom: 1px solid var(--amber-2);
  transition: color 0.2s;
}
.bezoek__row strong a:hover {
  color: var(--amber-glow);
}
.bezoek__row small {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mute);
  margin-top: 4px;
}

.bezoek__map {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px;
}
.bezoek__map svg {
  width: 100%;
  height: 100%;
  display: block;
}
.map__hint {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(13, 8, 5, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
}
.map__hint .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

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

/* ============== footer ============== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line-2);
  background: var(--bg-2);
  padding: 60px var(--pad) 32px;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-2);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
}
.footer__brand em {
  font-style: italic;
  color: var(--amber);
}
.footer__brand .brand__mark {
  width: 40px;
  height: 40px;
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.newsletter > div {
  display: flex;
  gap: 8px;
}
.newsletter input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(13, 8, 5, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter input:focus {
  border-color: var(--amber);
}
.newsletter input::placeholder {
  color: var(--ink-mute);
}
.newsletter button {
  padding: 14px 24px;
  background: var(--amber);
  color: #1a0e05;
  border: 1px solid var(--amber);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
}
.newsletter button:hover {
  background: var(--amber-glow);
  transform: translateY(-1px);
}
.newsletter output {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--amber);
  min-height: 16px;
}

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  gap: 12px;
}
.socials {
  display: flex;
  gap: 20px;
}
.socials a {
  color: var(--ink-dim);
  transition: color 0.2s;
}
.socials a:hover {
  color: var(--amber);
}

@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

/* ============== reveals ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .bubble-field { display: none; }
}
