/* ==========================================================================
   Dex's Treats — stylesheet
   Kleuren, typografie en layout volgens ontwerp (Ginger Bakery-referentie).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Lokaal "Sherly Kitchen"-lettertype: voeg later de bestanden toe in
   /fonts en zet onderstaande @font-face aan om het echte script-font
   te gebruiken i.p.v. de Google Font-vervanger (Dancing Script). */
/*
@font-face {
  font-family: 'Sherly Kitchen';
  src: url('../fonts/SherlyKitchen.woff2') format('woff2'),
       url('../fonts/SherlyKitchen.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*/

:root {
  --lavendel: #C9A9E0;
  --lavendel-zacht: #EADDF3;
  --lavendel-tint: #F4ECF9;
  --salie: #AFC49A;
  --salie-zacht: #DDE7D2;
  --salie-tint: #EEF3E9;
  --geel: #F6D77E;
  --geel-zacht: #FCEEC1;
  --wit: #FFFFFF;
  --paars: #4A3757;
  --paars-zacht: #6B5379;
  --page-bg: #F3ECF6;
  --sterren: #E9B949;

  --font-script: 'Dancing Script', cursive;
  --font-body: 'Poppins', system-ui, sans-serif;

  --r: 16px;
  --r-lg: 28px;
  --r-xl: 40px;

  --sh-sm: 0 4px 14px rgba(74, 55, 87, .06);
  --sh-md: 0 12px 34px rgba(74, 55, 87, .10);
  --sh-lg: 0 26px 60px rgba(74, 55, 87, .14);
}

/* ---------- reset & basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--paars);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--paars); text-decoration: none; }
a:hover { color: var(--paars-zacht); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }
::selection { background: var(--lavendel); color: var(--paars); }
:focus-visible { outline: 2.5px solid var(--paars); outline-offset: 2px; border-radius: 6px; }

.script { font-family: var(--font-script); }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}
@keyframes floaty2 {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-22px) rotate(var(--rot, 0deg)); }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ---------- pagina-kaart ---------- */
.page-outer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 18px 40px;
}
.page-card {
  background: var(--wit);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  position: relative;
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--paars);
  color: var(--wit);
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  z-index: 999;
}
.skip-link:focus {
  left: 0; top: 0;
}

/* ---------- nav ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 34px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lavendel-tint);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--sh-sm);
}
.brand span {
  font-family: var(--font-script);
  font-size: 30px;
  font-weight: 700;
  color: var(--paars);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  color: var(--paars-zacht);
  transition: .18s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--lavendel-tint);
  color: var(--paars);
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-cta-nav {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--paars);
  color: var(--wit);
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--sh-sm);
  transition: .18s;
}
.btn-cta-nav:hover { background: var(--paars-zacht); color: var(--wit); }

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--lavendel-tint);
  align-items: center;
  justify-content: center;
  color: var(--paars);
}

/* mobiel menu */
.mobile-menu {
  position: sticky;
  top: 85px;
  z-index: 55;
  background: var(--wit);
  border-bottom: 1px solid var(--lavendel-tint);
  padding: 12px 22px 20px;
  display: none;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 13px 16px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 17px;
  color: var(--paars);
}
.mobile-menu a:hover { background: var(--lavendel-tint); }
.mobile-menu .btn-cta-nav { margin-top: 6px; text-align: center; }

/* ---------- knoppen ---------- */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: .18s;
  text-align: center;
  min-height: 44px;
}
.btn-primary { background: var(--paars); color: var(--wit); box-shadow: var(--sh-md); }
.btn-primary:hover { background: var(--paars-zacht); color: var(--wit); }
.btn-white { background: var(--wit); color: var(--paars); box-shadow: var(--sh-sm); }
.btn-white:hover { background: var(--geel-zacht); }
.btn-sage { background: var(--salie); color: var(--paars); }
.btn-sage:hover { background: var(--salie-zacht); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- secties ---------- */
.section { padding: 74px 44px; }
.section-alt { background: var(--salie-tint); }
.section-yellow { background: var(--geel-zacht); }
.section-tight { padding: 56px 44px 10px; }
.section-hero {
  position: relative;
  background: linear-gradient(160deg, var(--lavendel-zacht), var(--lavendel-tint));
  overflow: hidden;
  padding: 70px 44px 84px;
}
.section-page-hero {
  background: linear-gradient(160deg, var(--lavendel-zacht), var(--lavendel-tint));
  padding: 64px 44px;
}
.eyebrow {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--salie);
  margin: 0;
  display: block;
}
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 46px;
}
.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 6px 0 0;
  font-weight: 700;
  letter-spacing: -.02em;
}

/* ---------- hero ---------- */
.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--wit);
  color: var(--paars);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--sh-sm);
}
.hero-title, .page-title {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.02;
  margin: 22px 0 0;
  color: var(--paars);
}
.page-title { font-size: clamp(48px, 7vw, 78px); margin: 6px 0 0; }
.hero-lead {
  font-size: 19px;
  max-width: 560px;
  margin: 20px auto 0;
  color: var(--paars-zacht);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}
.hero-media {
  position: relative;
  max-width: 920px;
  margin: 52px auto 0;
}
.hero-media figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 16/8;
  background: var(--wit);
  margin: 0;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.floater {
  --rot: 0deg;
  position: absolute;
  border-radius: 50%;
  box-shadow: var(--sh-sm);
  animation: floaty 6s ease-in-out infinite;
}
.floater-2 { animation-name: floaty2; }
.macaron-geel { background: linear-gradient(180deg, var(--geel) 0 40%, var(--wit) 40% 60%, var(--geel) 60% 100%); }
.macaron-salie { background: linear-gradient(180deg, var(--salie) 0 40%, var(--wit) 40% 60%, var(--salie) 60% 100%); }
.macaron-lavendel { background: linear-gradient(180deg, var(--lavendel) 0 40%, var(--wit) 40% 60%, var(--lavendel) 60% 100%); }

/* ---------- grids ---------- */
.grid-3, .grid-4 {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.grid-cards { gap: 24px; }

/* ---------- USP kaarten ---------- */
.usp-card {
  border-radius: var(--r-lg);
  padding: 34px 28px;
  box-shadow: var(--sh-sm);
}
.usp-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wit);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--paars);
}
.usp-card h3 { font-size: 21px; margin: 0 0 8px; font-weight: 600; }
.usp-card p { color: var(--paars-zacht); font-size: 15.5px; }
.bg-lavendel-tint { background: var(--lavendel-tint); }
.bg-salie-tint { background: var(--salie-tint); }
.bg-geel-zacht { background: var(--geel-zacht); }

/* ---------- stappen ("hoe werkt het") ---------- */
.steps-wrap { position: relative; max-width: 1000px; margin: 0 auto; }
.steps-grid { position: relative; }
.step-line {
  display: block;
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  border-top: 3px dashed var(--salie);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--wit);
  border: 3px solid var(--salie);
  display: grid;
  place-items: center;
  color: var(--paars);
  box-shadow: var(--sh-sm);
}
.step-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--geel);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}
.step h3 { font-size: 18px; margin: 0 0 6px; font-weight: 600; }
.step p { margin: 0; color: var(--paars-zacht); font-size: 14.5px; }

/* ---------- sweet table collage (brownies + cookies + macarons) ---------- */
.sweet-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.sweet-collage img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 0; min-width: 0; }
.sweet-collage .sweet-collage-main { grid-row: 1 / 3; grid-column: 1; min-height: 0; overflow: hidden; }
.sweet-collage .sweet-collage-top { grid-row: 1; grid-column: 2; min-height: 0; overflow: hidden; }
.sweet-collage .sweet-collage-bottom { grid-row: 2; grid-column: 2; min-height: 0; overflow: hidden; }

/* ---------- productkaarten ---------- */
.product-card {
  background: var(--wit);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
}
.product-media {
  aspect-ratio: 4/3;
  background: var(--lavendel-tint);
  overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 { font-size: 20px; margin: 0 0 6px; font-weight: 600; }
.product-body p { margin: 0 0 16px; color: var(--paars-zacht); font-size: 14.5px; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-weight: 700; color: var(--paars); }

/* ---------- events / cta band ---------- */
.event-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--lavendel);
}
.event-band-text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-band-text .eyebrow { color: var(--paars); }
.event-band-text h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 6px 0 14px;
  font-weight: 700;
  color: var(--paars);
  letter-spacing: -.02em;
}
.event-band-text p {
  margin: 0 0 26px;
  color: var(--paars);
  font-size: 16.5px;
  max-width: 440px;
}
.event-band-media { min-height: 320px; background: var(--wit); overflow: hidden; }
.event-band-media img { width: 100%; height: 100%; object-fit: cover; }

.event-panel {
  background: var(--lavendel);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  box-shadow: var(--sh-lg);
}
.event-panel h2 { color: var(--paars); }
.event-item {
  background: var(--wit);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-sm);
}
.event-item h3 { font-size: 18px; margin: 0 0 6px; font-weight: 600; }
.event-item p { margin: 0 0 10px; color: var(--paars-zacht); font-size: 14px; }
.event-item span { font-weight: 700; font-size: 14px; }

/* ---------- reviews ---------- */
.review-card {
  background: var(--wit);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
}
.stars { color: var(--sterren); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { margin: 0 0 18px; font-size: 16px; flex: 1; }
.review-name { font-weight: 600; font-size: 14.5px; }
.review-role { color: var(--paars-zacht); font-size: 13px; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--paars);
  color: var(--wit);
  padding: 56px 44px 34px;
}
.footer-grid {
  display: grid;
  gap: 36px;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 14px; object-fit: cover; }
.footer-brand span { font-family: var(--font-script); font-size: 28px; font-weight: 700; }
.site-footer > .footer-grid > div:first-child p { margin: 0; color: rgba(255,255,255,.72); font-size: 15px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.footer-social a { color: var(--wit); display: flex; align-items: center; gap: 7px; font-size: 14px; }
.footer-social a:hover { color: var(--lavendel); }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-cols h4 {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lavendel);
  margin: 0 0 14px;
}
.footer-cols nav { display: flex; flex-direction: column; gap: 9px; }
.footer-cols a { color: rgba(255,255,255,.85); font-size: 15px; }
.footer-cols a:hover { color: var(--wit); }
.footer-contact { display: flex; flex-direction: column; gap: 9px; color: rgba(255,255,255,.85); font-size: 15px; }
.footer-contact a { color: rgba(255,255,255,.85); }
.footer-contact a:hover { color: var(--wit); }
.footer-bottom {
  max-width: 1040px;
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}
.footer-bottom nav { display: flex; gap: 18px; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--wit); }

/* ---------- cookiebanner ---------- */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  max-width: 820px;
  margin: 0 auto;
  background: var(--wit);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 22px 26px;
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
  border: 1px solid var(--lavendel-tint);
}
.cookie-banner.is-visible { display: flex; }
.cookie-text { flex: 1; min-width: 220px; }
.cookie-text strong { display: block; font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.cookie-text p { color: var(--paars-zacht); font-size: 14px; margin: 0; }
.cookie-text a { text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions button {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  min-height: 44px;
}
.cookie-essential { background: var(--lavendel-tint); color: var(--paars); }
.cookie-essential:hover { background: var(--lavendel-zacht); }
.cookie-accept { background: var(--paars); color: var(--wit); }
.cookie-accept:hover { background: var(--paars-zacht); }

/* ---------- formulier (bestellen.html) ---------- */
.order-form { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 30px; }
.form-panel { background: var(--wit); border-radius: var(--r-lg); padding: 30px 30px 34px; box-shadow: var(--sh-sm); }
.form-panel h3 { font-size: 20px; margin: 0 0 20px; font-weight: 600; }
.form-panel > p.hint { margin: -14px 0 20px; color: var(--paars-zacht); font-size: 14px; }
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 500;
  font-size: 14px;
}
.field input, .field textarea, .field select {
  padding: 13px 16px;
  border-radius: 14px;
  border: 2px solid var(--lavendel-tint);
  background: var(--lavendel-tint);
  font-size: 15px;
  color: var(--paars);
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--lavendel);
  background: var(--wit);
}
.field textarea { resize: vertical; }
.field.error input, .field.error textarea, .field.error select { border-color: #c0392b; }
.field-error-msg { color: #c0392b; font-size: 13px; display: none; }
.field.error .field-error-msg { display: block; }

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--lavendel-tint);
}
.qty-row .qty-name { font-weight: 600; font-size: 15px; }
.qty-row .qty-price { color: var(--paars-zacht); font-size: 13px; }
.qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wit);
  font-size: 20px;
  font-weight: 700;
  color: var(--paars);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-sm);
}
.qty-btn.qty-inc { background: var(--salie); }
.qty-value { min-width: 26px; text-align: center; font-weight: 700; font-size: 16px; }

.delivery-option {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  border: 2px solid var(--lavendel-tint);
  background: var(--wit);
  cursor: pointer;
  margin-bottom: 12px;
}
.delivery-option.is-selected { border-color: var(--paars); background: var(--lavendel-tint); }
.delivery-option input { position: absolute; opacity: 0; width: 0; height: 0; }
.delivery-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--paars);
  flex: none;
  margin-top: 2px;
  display: grid;
  place-items: center;
}
.delivery-dot::after {
  content: '';
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: transparent;
}
.delivery-option.is-selected .delivery-dot::after { background: var(--paars); }
.delivery-option strong { font-weight: 600; }
.delivery-option small { color: var(--paars-zacht); font-size: 14px; display: block; }
.address-fields { display: none; margin-top: 12px; }
.address-fields.is-visible { display: grid; gap: 18px; }

.checkbox-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14.5px;
}
.checkbox-row input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--paars); flex: none; }
.checkbox-row a { text-decoration: underline; }
.honeypot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-alert {
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 14.5px;
  margin-bottom: 4px;
  display: none;
}
.form-alert.is-visible { display: block; }
.form-alert-error { background: #FBEAEA; color: #A33; }

.confirmation-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--salie-tint);
  border-radius: var(--r-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--sh-sm);
}
.confirmation-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--salie);
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--wit);
}
.confirmation-box h2 { font-family: var(--font-script); font-size: 44px; margin: 0 0 10px; font-weight: 700; }
.confirmation-box p { margin: 0 0 24px; color: var(--paars-zacht); font-size: 16px; }

/* ---------- reviews carrousel ---------- */
.review-carousel {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.review-carousel-card {
  background: var(--wit);
  border-radius: var(--r-xl);
  padding: 52px 48px;
  box-shadow: var(--sh-lg);
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.review-carousel-card .stars { font-size: 24px; letter-spacing: 3px; margin: 0 auto 20px; }
.review-carousel-card blockquote {
  font-family: var(--font-script);
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.3;
  margin: 0 0 24px;
  color: var(--paars);
}
.review-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.review-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wit);
  box-shadow: var(--sh-sm);
  color: var(--paars);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-nav button:hover { background: var(--lavendel-tint); }
.review-nav span { font-weight: 600; color: var(--paars-zacht); font-size: 14px; }

/* ---------- tekstpagina's (voorwaarden/privacy) ---------- */
.legal-section { padding: 64px 44px 74px; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal-wrap .eyebrow { font-size: 28px; }
.legal-wrap h1 {
  font-family: var(--font-script);
  font-size: clamp(40px, 6vw, 64px);
  margin: 4px 0 30px;
  font-weight: 700;
  line-height: 1.05;
}
.legal-item { margin-bottom: 26px; }
.legal-item h2 { font-size: 19px; margin: 0 0 8px; font-weight: 600; }
.legal-item p { margin: 0; color: var(--paars-zacht); font-size: 15.5px; }
.legal-footnote { color: var(--paars-zacht); font-size: 13px; margin-top: 36px; }
.legal-notice {
  background: var(--geel-zacht);
  border-radius: var(--r);
  padding: 16px 20px;
  font-size: 14px;
  margin-bottom: 30px;
}

/* ---------- about-pagina ---------- */
.about-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 4/5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 16px; font-weight: 700; letter-spacing: -.02em; }
.about-text p { color: var(--paars-zacht); font-size: 16px; margin: 0 0 14px; }
.value-card {
  background: var(--wit);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--sh-sm);
}
.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--geel-zacht);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--paars);
}
.value-card h3 { font-size: 20px; margin: 0 0 8px; font-weight: 600; }
.value-card p { margin: 0; color: var(--paars-zacht); font-size: 15px; }

/* ---------- utility ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.max-640 { max-width: 640px; margin-left: auto; margin-right: auto; }
.max-1040 { max-width: 1040px; margin-left: auto; margin-right: auto; }
.flex-between { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   Responsief — breakpoints 1024 / 768 / 480px
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section { padding: 64px 32px; }
  .section-hero { padding: 60px 32px 70px; }
  .navbar { padding: 14px 24px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-right .btn-cta-nav { display: none; }
  .hamburger { display: inline-flex; }
  .hero-inner ~ .hero-media,
  .hero-media { max-width: 100%; }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps-grid .step-line { display: none; }
  .event-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 54px 24px; }
  .section-hero, .section-page-hero { padding: 50px 24px 60px; }
  .legal-section { padding: 48px 24px 58px; }
  .form-panel { padding: 24px 20px 28px; }
}

@media (max-width: 480px) {
  .page-outer { padding: 10px 10px 28px; }
  .navbar { padding: 12px 16px; }
  .brand span { font-size: 24px; }
  .brand img { width: 42px; height: 42px; }
  .hero-title, .page-title { font-size: clamp(38px, 12vw, 56px); }
  .hero-lead { font-size: 16.5px; }
  .btn { padding: 14px 24px; font-size: 15px; }
  .section, .section-hero, .section-page-hero { padding: 44px 18px 50px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 18px; }
  .event-band-text, .event-panel { padding: 34px 24px; }
}
