/* ==========================================================================
   Wasautomatiek Delaira — Pletterijkade 8a, Den Haag
   Kleur: helderblauw uit de raambelettering. Vormen: trommelramen & bubbels.
   ========================================================================== */

:root {
  --blauw: #1BA4F4;
  --blauw-donker: #0E7CC9;
  --blauw-diep: #0A5E9C;
  --inkt: #123249;
  --inkt-zacht: #47657C;
  --linnen: #F5FAFE;
  --schuim: #E3F3FD;
  --wit: #ffffff;
  --rand: #D6E9F7;

  --font-display: "Baloo 2", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-caps: "Marcellus", Georgia, serif;

  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 45px -18px rgba(14, 94, 156, 0.25);
  --shadow-card: 0 10px 30px -14px rgba(14, 94, 156, 0.22);
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--inkt);
  background: var(--linnen);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.12;
  color: var(--inkt);
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

a { color: var(--blauw-donker); text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--blauw);
  outline-offset: 3px;
  border-radius: 6px;
}

.eyebrow {
  font-family: var(--font-caps);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: var(--blauw-donker);
  margin-bottom: 0.9rem;
}
.eyebrow-light { color: var(--schuim); }

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) 1.4rem 0;
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-lead { color: var(--inkt-zacht); margin-top: 1rem; font-size: 1.05rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  background: var(--blauw);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(27, 164, 244, 0.65);
}
.btn-primary:hover { background: var(--blauw-donker); transform: translateY(-2px); }

.btn-ghost {
  color: var(--inkt);
  background: rgba(255, 255, 255, 0.75);
  border: 1.5px solid var(--rand);
}
.btn-ghost:hover { border-color: var(--blauw); color: var(--blauw-donker); transform: translateY(-2px); }

.btn-light {
  background: #fff;
  color: var(--blauw-diep);
  margin-top: 1.6rem;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(0,0,0,0.35); }

.btn-header {
  background: var(--inkt);
  color: #fff;
  font-size: 0.92rem;
  padding: 0.6rem 1.25rem;
}
.btn-header:hover { background: var(--blauw-donker); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 250, 254, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  border-color: var(--rand);
  box-shadow: 0 8px 24px -18px rgba(14, 94, 156, 0.35);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.75rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--blauw);
  letter-spacing: 0.01em;
}
.brand-sub {
  font-family: var(--font-caps);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
}

.main-nav { display: flex; gap: 1.8rem; }
.main-nav a {
  color: var(--inkt);
  font-weight: 600;
  font-size: 0.97rem;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--blauw);
  transition: right 0.22s ease;
}
.main-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--inkt);
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, #BDE4FB 0%, transparent 55%),
    radial-gradient(90% 80% at -10% 110%, #CDEBFC 0%, transparent 50%),
    linear-gradient(180deg, #EAF6FE 0%, var(--linnen) 100%);
  padding: clamp(4.5rem, 9vw, 7.5rem) 1.4rem clamp(6rem, 10vw, 8rem);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 6.4vw, 4.4rem);
  font-weight: 800;
  max-width: 14em;
}
.hero-title .line { display: block; }
.hero-title .accent { color: var(--blauw); }
.hero-title .dot { color: var(--inkt); }

.hero-lead {
  max-width: 560px;
  margin-top: 1.4rem;
  font-size: 1.13rem;
  color: var(--inkt-zacht);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.fact dt {
  font-family: var(--font-caps);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
}
.fact dd {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--inkt);
  margin-top: 0.15rem;
}

/* bubbels */

.bubble-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bubble {
  position: absolute;
  bottom: -140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.35) 18%, rgba(255,255,255,0) 42%),
    radial-gradient(circle at 68% 72%, rgba(27,164,244,0.22) 0%, rgba(27,164,244,0) 55%),
    radial-gradient(circle at 50% 50%, rgba(190,229,251,0.28) 0%, rgba(163,216,248,0.16) 70%, rgba(27,164,244,0.3) 100%);
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.55),
    inset -4px -6px 14px rgba(27, 164, 244, 0.22),
    0 6px 18px -8px rgba(14, 94, 156, 0.18);
  opacity: 0;
  animation: rise linear infinite;
}
.bubble::after {
  content: "";
  position: absolute;
  top: 16%; left: 20%;
  width: 26%; height: 16%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  transform: rotate(-28deg);
  filter: blur(1px);
}

@keyframes rise {
  0%   { transform: translate3d(0, 0, 0) scale(0.7); opacity: 0; }
  8%   { opacity: var(--bo, 0.8); }
  50%  { transform: translate3d(var(--sway, 30px), -55vh, 0) scale(1); }
  92%  { opacity: var(--bo, 0.8); }
  100% { transform: translate3d(calc(var(--sway, 30px) * -0.6), -112vh, 0) scale(1.06); opacity: 0; }
}

/* fonkels uit de raambelettering */

.spark {
  position: absolute;
  z-index: 1;
  fill: #fff;
  filter: drop-shadow(0 2px 6px rgba(27, 164, 244, 0.5));
  animation: twinkle 4.5s ease-in-out infinite;
}
.spark-1 { width: 30px; top: 18%; right: 12%; animation-delay: 0s; }
.spark-2 { width: 18px; top: 42%; right: 26%; animation-delay: 1.4s; }
.spark-3 { width: 22px; top: 14%; left: 55%; animation-delay: 2.6s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(18deg); }
}

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 1;
}
.hero-wave svg { width: 100%; height: clamp(40px, 7vw, 90px); }

/* ---------- USP strip ---------- */

.usp-strip { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 5vw, 4rem) 1.4rem 0; }

.usp-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.usp {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.usp svg {
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--blauw);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.usp h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.usp p { font-size: 0.92rem; color: var(--inkt-zacht); }

/* ---------- Prijzen: trommelkaarten ---------- */

.drum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.drum-card {
  position: relative;
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.5rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.drum-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.drum-card.is-popular {
  border: 2px solid var(--blauw);
  background: linear-gradient(180deg, #F2FAFF 0%, var(--wit) 55%);
}

.drum-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blauw);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.28rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* het trommelraam */
.drum {
  width: 116px; height: 116px;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #F1F8FE 0%, #DCEEFB 100%);
  border: 1px solid var(--rand);
  display: grid;
  place-items: center;
  box-shadow: inset 0 3px 8px rgba(14, 94, 156, 0.12);
}
.drum-glass {
  width: 86px; height: 86px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 26%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(160deg, var(--blauw) 0%, var(--blauw-diep) 100%);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 -6px 14px rgba(6, 52, 88, 0.35),
    0 8px 18px -8px rgba(14, 94, 156, 0.55);
}
.kg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: #fff;
  line-height: 1;
}
.kg small {
  font-size: 0.85rem;
  font-weight: 700;
  margin-left: 2px;
  opacity: 0.9;
}

.drum-card h3 { font-size: 1.12rem; }
.drum-desc {
  font-size: 0.9rem;
  color: var(--inkt-zacht);
  margin-top: 0.4rem;
  min-height: 3.4em;
}
.drum-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--inkt);
  margin-top: 0.7rem;
}
.drum-note {
  font-family: var(--font-caps);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--inkt-zacht);
  margin-top: 0.15rem;
}

/* wasmiddel & wasverzachter */

.extras {
  margin-top: 1.8rem;
  background: var(--schuim);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 3rem;
}
.extra {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 1.02rem;
}
.extra-name { font-weight: 600; }
.extra-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(14, 94, 156, 0.35);
  transform: translateY(-4px);
}
.extra-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--blauw-diep);
}

/* ---------- Drogen + calculator ---------- */

.drogen-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.dryer-list {
  list-style: none;
  margin-top: 1.8rem;
  display: grid;
  gap: 0.8rem;
}
.dryer-list li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
}
.dryer-label { font-weight: 700; font-family: var(--font-display); }
.dryer-rate { color: var(--blauw-diep); font-weight: 600; }

.dryer-tip {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  color: var(--inkt-zacht);
  border-left: 3px solid var(--blauw);
  padding-left: 1rem;
}

.calc-card {
  background: var(--inkt);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-soft);
}
.calc-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 1.5rem; }

.calc-row { margin-bottom: 1.5rem; }
.calc-label {
  display: block;
  font-size: 0.9rem;
  color: #B9D6EA;
  margin-bottom: 0.6rem;
}
.calc-label output { color: #fff; font-weight: 700; }

.segment {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.seg-btn {
  border: 0;
  background: transparent;
  color: #CFE6F6;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.seg-btn.is-active { background: var(--blauw); color: #fff; }

input[type="range"] {
  width: 100%;
  accent-color: var(--blauw);
  cursor: pointer;
}

.calc-result {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.3rem;
}
.calc-result span { color: #B9D6EA; font-size: 0.95rem; }
.calc-result strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: #fff;
}
.calc-note {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #8FB9D6;
}

/* ---------- Zo werkt het ---------- */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  counter-reset: stap;
}

.step {
  counter-increment: stap;
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-md);
  padding: 1.7rem 1.4rem;
  position: relative;
  box-shadow: var(--shadow-card);
}
.step::before {
  content: counter(stap);
  position: absolute;
  top: 1.3rem; right: 1.3rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--blauw);
  background: var(--schuim);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.step svg {
  width: 34px; height: 34px;
  fill: none;
  stroke: var(--blauw);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.step p { font-size: 0.92rem; color: var(--inkt-zacht); }

/* ---------- Dekbedden ---------- */

.dekbed-card {
  background: linear-gradient(135deg, var(--blauw) 0%, var(--blauw-diep) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  color: #fff;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.dekbed-card h2 { color: #fff; }
.dekbed-copy p { color: #E4F3FD; margin-top: 1rem; max-width: 46ch; }

.dekbed-visual { display: grid; place-items: center; }

.big-drum {
  width: clamp(180px, 22vw, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  animation: drumFloat 6s ease-in-out infinite;
}
.big-drum-glass {
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 40%),
    rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: #fff;
}
.big-drum-glass small { font-size: 0.4em; margin-left: 4px; }

@keyframes drumFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 760px;
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--schuim);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 2.5px;
  background: var(--blauw-donker);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-item p {
  padding: 0 1.4rem 1.2rem;
  color: var(--inkt-zacht);
  font-size: 0.97rem;
  max-width: 62ch;
}

/* ---------- Bezoek ---------- */

.bezoek { padding-bottom: clamp(4.5rem, 8vw, 6.5rem); }

.bezoek-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.adres {
  font-style: normal;
  margin-top: 1.8rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.adres strong { font-family: var(--font-display); }

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--inkt);
  width: fit-content;
}
.contact-link:hover { color: var(--blauw-donker); }
.contact-link svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--blauw);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tijden-card {
  background: var(--wit);
  border: 1px solid var(--rand);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  box-shadow: var(--shadow-card);
}
.tijden-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.open-badge {
  background: var(--schuim);
  color: var(--blauw-diep);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}
.open-badge.is-open { background: #DFF6E7; color: #1E7A44; }
.open-badge.is-closed { background: #FDECE8; color: #B4472E; }

.tijden-tabel { width: 100%; border-collapse: collapse; }
.tijden-tabel th, .tijden-tabel td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rand);
  font-size: 0.98rem;
}
.tijden-tabel th { font-weight: 600; }
.tijden-tabel td { text-align: right; color: var(--inkt-zacht); }
.tijden-tabel tr:last-child th, .tijden-tabel tr:last-child td { border-bottom: 0; }
.tijden-tabel tr.is-today th, .tijden-tabel tr.is-today td {
  color: var(--blauw-diep);
  font-weight: 700;
}

.tijden-note {
  margin-top: 1.2rem;
  font-size: 0.9rem;
  color: var(--inkt-zacht);
  background: var(--schuim);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

/* ---------- Footer ---------- */

.site-footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  background: var(--inkt);
  color: #C8DEEE;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3.2rem 1.4rem 2.4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
}
.footer-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--blauw);
}
.footer-tag {
  font-family: var(--font-caps);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.footer-cols {
  display: flex;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex-wrap: wrap;
}
.footer-cols h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.footer-cols p { font-size: 0.93rem; line-height: 1.7; }
.footer-cols a { color: #C8DEEE; }
.footer-cols a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p, .footer-bottom .to-top { font-size: 0.85rem; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.3rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.to-top { color: #C8DEEE; }
.to-top:hover { color: #fff; }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .usp-list, .drum-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .drogen-grid, .bezoek-grid { grid-template-columns: 1fr; }
  .dekbed-card { grid-template-columns: 1fr; }
  .dekbed-visual { order: -1; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--wit);
    border-bottom: 1px solid var(--rand);
    box-shadow: 0 20px 40px -20px rgba(14, 94, 156, 0.3);
    flex-direction: column;
    gap: 0;
    padding: 0.6rem 0;
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 0.85rem 1.6rem; }
  .main-nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .btn-header { display: none; }

  .hero-facts { gap: 1.4rem 2.2rem; }
  .extras { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .usp-list, .drum-grid, .steps { grid-template-columns: 1fr; }
  .drum-desc { min-height: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bubble, .spark, .big-drum { animation: none !important; }
  .bubble { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
