/* WeMoments — stijl "Warm en feestelijk" */

:root {
  --cream: #FFF7EE;
  --ink: #2C2430;
  --ink-soft: #4E4453;
  --ink-muted: #6E6474;
  --lavender: #C4B0F0;
  --mustard: #F2C66D;
  --coral: #F0866F;
  --coral-text: #C46A5C;
  --error: #A32E22;
  --line: #2C2430;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-hard: 4px 4px 0 var(--ink);
  --max: 1280px;
  --gutter: clamp(20px, 5vw, 72px);
  --logo: 152px;
  --focus: #5B3CC4;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Karla", "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

h1, h2, h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", "Arial Black", "Trebuchet MS", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
fieldset { margin: 0; padding: 0; border: 0; min-width: 0; }
legend { padding: 0; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--coral-text); }
/* Een telefoonnummer met spaties mag nooit midden in het nummer afbreken. */
a[href^="tel:"] { white-space: nowrap; }

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

[hidden] { display: none !important; }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; color: var(--cream); }

/* Eén container-regel: volle breedte achtergrond, inhoud netjes begrensd */
section, .nav, .footer {
  padding-left: max(var(--gutter), calc((100% - var(--max)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--max)) / 2));
}

main > section[id] { scroll-margin-top: calc(var(--logo) * 0.55 + 40px); }

/* Utility */
.rotate-n1 { transform: rotate(-1deg); }
.rotate1 { transform: rotate(1deg); }
.rotate-n2 { transform: rotate(-2deg); }
.rotate2 { transform: rotate(2deg); }
.rotate3 { transform: rotate(3deg); }
.rotate-n4 { transform: rotate(-4deg); }

.badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: clamp(13px, 1.6vw, 14px);
  font-weight: 700;
  line-height: 1.3;
}
.badge--lavender { background: var(--lavender); color: var(--ink); }
.badge--mustard { background: var(--mustard); color: var(--ink); }
.badge--coral { background: var(--coral); color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: #453a4d; color: var(--cream); }
.btn--outline { background: transparent; color: var(--ink); }
.btn--outline:hover { background: rgba(44,36,48,0.06); color: var(--ink); }
.btn--accent { background: var(--coral); color: var(--ink); box-shadow: var(--shadow-hard); }
.btn--lavender { background: var(--lavender); color: var(--ink); box-shadow: var(--shadow-hard); }
.btn--accent:hover, .btn--lavender:hover { color: var(--ink); transform: translate(1px, 1px); }
.btn[disabled] { opacity: 0.6; cursor: progress; }
.btn--klein { padding: 10px 16px; font-size: 14px; min-height: 44px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  /* De balk verandert zelf van hoogte. Zonder dit probeert de browser dat te
     compenseren door de scrollpositie te verschuiven, en dan gaat het logo
     heen en weer tussen groot en klein. */
  overflow-anchor: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: var(--cream);
  transition: box-shadow 0.2s ease, padding 0.2s ease;
}
.nav.is-scrolled {
  box-shadow: 0 2px 0 rgba(44,36,48,0.12);
}
.nav__brand { display: flex; flex-shrink: 0; }
.nav__logo {
  height: var(--logo);
  width: var(--logo);
  mix-blend-mode: multiply;
  transition: height 0.2s ease, width 0.2s ease;
}
.nav.is-scrolled { --logo: 76px; }

.nav__panel { display: flex; align-items: center; gap: 12px; }
.nav__links { display: flex; gap: 4px; align-items: center; font-weight: 500; }
.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
}
.nav__links a:hover { background: rgba(44,36,48,0.06); }

.nav__toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 18px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}
.nav__toggle-bars { display: inline-flex; flex-direction: column; gap: 4px; width: 20px; }
.nav__toggle-bars span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(44,36,48,0.45);
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(28px, 4vw, 48px);
  padding-top: clamp(8px, 2vw, 32px);
  padding-bottom: clamp(32px, 4vw, 48px);
}
.hero__text {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vw, 26px);
}
.hero__title { font-size: clamp(34px, 6vw, 82px); line-height: 1.02; }
.accent-text { color: var(--coral-text); }
.hero__lead { font-size: clamp(17px, 2vw, 19px); line-height: 1.55; max-width: 520px; color: var(--ink-soft); }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__actions .btn { flex: 1 1 auto; }

.photo-collage {
  flex: 1 1 340px;
  position: relative;
  aspect-ratio: 7 / 6;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
}
.photo-collage__stack {
  position: absolute;
  right: 2%;
  top: 16%;
  width: 46%;
  height: 68%;
  background: #fff;
  padding: 3% 3% 9%;
  box-shadow: 0 20px 40px rgba(44,36,48,0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: rotate(5deg);
}
.photo-collage__accent {
  position: absolute;
  left: 4%;
  top: 4%;
  width: 58%;
  height: 88%;
  background: #fff;
  padding: 2.5% 2.5% 6%;
  box-shadow: 0 20px 40px rgba(44,36,48,0.18);
  transform: rotate(-5deg);
}
.photo-collage__cell { flex: 1; min-height: 0; overflow: hidden; }
.photo-collage__cell img,
.photo-collage__accent img { width: 100%; height: 100%; object-fit: cover; }
.photo-collage__accent .photo-collage__cell { height: 100%; }
.photo-collage__pin { position: absolute; right: 0; bottom: 2%; }

/* Included strip */
.included {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  padding-top: 22px;
  padding-bottom: 22px;
}
.included__label { font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.included__chips { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.chip:hover,
.chip:focus-visible {
  background: var(--coral);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 rgba(44, 36, 48, 0.12);
}

/* How it works */
.howitworks {
  margin-top: clamp(40px, 6vw, 56px);
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(40px, 5vw, 56px);
  padding-bottom: clamp(40px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 40px);
}
.howitworks__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}
.howitworks__head h2 { font-size: clamp(30px, 4.4vw, 52px); }
.howitworks__head p { font-size: clamp(16px, 1.9vw, 17px); color: #D9CFE0; max-width: 420px; }
.howitworks__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.step-card {
  color: var(--ink);
  border-radius: 28px;
  padding: clamp(22px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-card--lavender { background: var(--lavender); }
.step-card--mustard { background: var(--mustard); }
.step-card--coral { background: var(--coral); }
.step-card__num { font-family: "Bricolage Grotesque", Arial, sans-serif; font-size: 44px; font-weight: 800; line-height: 1; }
.step-card h3 { font-size: clamp(21px, 2.4vw, 24px); }
.step-card p { font-size: 16px; line-height: 1.55; }

/* Packages */
.packages {
  margin-top: clamp(40px, 6vw, 56px);
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
}
.packages__head { display: flex; flex-direction: column; gap: 10px; }
.packages__head h2 { font-size: clamp(30px, 4.4vw, 52px); }
.packages__head p { font-size: clamp(16px, 1.9vw, 17px); color: var(--ink-soft); max-width: 760px; }
.packages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px clamp(16px, 2.4vw, 22px);
}
.package-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.8vw, 30px) clamp(20px, 2.4vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.package-card--highlight { background: var(--lavender); box-shadow: 8px 8px 0 var(--ink); }
.package-card h3 { font-size: clamp(23px, 2.6vw, 26px); }
.package-card__price { font-family: "Bricolage Grotesque", Arial, sans-serif; font-size: clamp(40px, 4.6vw, 48px); font-weight: 800; line-height: 1; }
.package-card__desc { font-size: 16px; line-height: 1.5; color: var(--ink-soft); }
.package-card--highlight .package-card__desc { color: var(--ink); }
.package-card__list { display: flex; flex-direction: column; gap: 8px; font-size: 15px; line-height: 1.4; color: var(--ink-soft); }
.package-card__list li { padding-left: 24px; position: relative; }
.package-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--coral-text);
}
.package-card--highlight .package-card__list { color: var(--ink); }
.package-card__cta { margin-top: auto; }
.package-card__flag { position: absolute; top: -16px; right: 22px; }
.package-card__label { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.packages__note { font-size: 14px; color: var(--ink-muted); }

/* Bench */
.bench {
  margin-bottom: clamp(40px, 6vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
}
.bench__photo {
  flex: 1 1 340px;
  position: relative;
  aspect-ratio: 3 / 2;
  max-width: 560px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 8px 8px 0 var(--lavender);
}
.bench__photo img { width: 100%; height: 100%; object-fit: cover; }
.bench__text { flex: 1 1 340px; display: flex; flex-direction: column; gap: 16px; }
.bench__text h2 { font-size: clamp(30px, 4.4vw, 52px); }
.bench__text p { font-size: clamp(16px, 1.9vw, 17px); line-height: 1.55; color: var(--ink-soft); }
.bench__text .btn { align-self: flex-start; }

/* Availability */
.availability { margin-bottom: clamp(40px, 6vw, 56px); }
.availability__card {
  background: var(--mustard);
  border: 2px solid var(--line);
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(24px, 3.6vw, 44px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 3vw, 32px);
  box-shadow: 10px 10px 0 var(--ink);
}
.availability__intro { flex: 1 1 320px; display: flex; flex-direction: column; gap: 14px; }
.availability__intro h2 { font-size: clamp(28px, 4.2vw, 48px); }
.availability__intro p { font-size: clamp(16px, 1.9vw, 17px); line-height: 1.55; color: var(--ink-soft); }
.availability__summary {
  margin-top: 4px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.availability__summary-label { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.availability__summary-text { font-size: 18px; font-weight: 500; }
.availability__summary-price { font-family: "Bricolage Grotesque", Arial, sans-serif; font-size: clamp(32px, 3.6vw, 38px); font-weight: 800; line-height: 1; }
.availability__summary-note { font-size: 13px; color: var(--ink-muted); }

.availability__form,
.availability__success {
  flex: 1 1 380px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field-label { font-size: 14px; font-weight: 700; display: block; margin-bottom: 6px; }
.field-label__opt { font-weight: 400; color: var(--ink-soft); }
.pill-group { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.pill input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.pill.is-active { background: var(--ink); color: var(--cream); }
.pill:has(input:checked) { background: var(--ink); color: var(--cream); }
.pill:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 3px; }

.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.field { margin: 0; display: flex; flex-direction: column; }
.field .field-label { margin-bottom: 6px; }
.field input,
.field textarea {
  width: 100%;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  min-height: 52px;
}
.field textarea { resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #8A8090; }
.field input[type="date"] { -webkit-appearance: none; appearance: none; }
.field input.is-invalid, .field textarea.is-invalid { border-color: var(--error); background: #FFF4F3; }
.field-error { margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--error); }
.field-hint { margin-top: 6px; font-size: 13px; color: var(--ink-muted); }

/* ---------- Adres zoeken terwijl je typt ---------- */
.adreszoek { position: relative; display: block; }
.adreszoek__lijst {
  position: absolute;
  z-index: 20;
  inset-inline: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 4px;
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-hard);
}
.adreszoek__optie {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.35;
  cursor: pointer;
  /* Tikdoel van minstens 48px, net als de rest van het formulier. */
  min-height: 48px;
  display: flex;
  align-items: center;
}
.adreszoek__optie:hover,
.adreszoek__optie.is-actief { background: var(--lavender); }
.adreszoek__leeg {
  padding: 12px 14px;
  font-size: 14px;
  color: var(--ink-muted);
}
.adreszoek__optie.is-actief { outline: 2px solid var(--line); outline-offset: -2px; }

@media (max-width: 640px) {
  /* Op een telefoon staat het toetsenbord in de weg; een kortere lijst
     houdt het eerste resultaat zichtbaar. */
  .adreszoek__lijst { max-height: 180px; }
}
/* Bezorgadres, alleen zichtbaar als wij komen brengen. */
.bezorging { display: flex; flex-direction: column; gap: 10px; }
.field--breed { grid-column: 1 / -1; }
.bezorging__uitslag {
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.45;
}
.bezorging__uitslag.is-toeslag { border-color: var(--coral-text); font-weight: 700; }
.bezorging__afhalen {
  background: var(--cream);
  border: 2px dashed var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.45;
}

/* Lokmiddel tegen spambots: buiten beeld, niet verborgen voor de bot. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.availability__submit { width: 100%; }
.availability__error {
  background: var(--cream);
  border: 2px solid var(--error);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--error);
}
.availability__alt { font-size: 13px; color: var(--ink-muted); text-align: center; }
.availability__alt a { color: var(--ink-soft); text-decoration: underline; }

.availability__success {
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  align-items: flex-start;
}
/* Kleurrandje naar gelang de uitkomst van de agendacheck. */
.availability__success.is-bevestigen { border-color: var(--lavender); box-shadow: 4px 4px 0 var(--lavender); }
.availability__success.is-bezet { border-color: var(--ink-muted); }
.availability__success h3 { font-size: clamp(24px, 3vw, 30px); }
.availability__success p { font-size: 16px; line-height: 1.55; color: var(--ink-soft); }

/* WeDance: kaartje naast de FAQ, vult de rest van de breedte, zie .faq-wedance hieronder */
.wedance { flex: 1 1 280px; }
.wedance__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  height: 100%;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  padding: 20px;
  background: #fff;
  text-align: center;
}
.wedance__text { display: flex; flex-direction: column; align-items: center; gap: 6px; max-width: 34ch; }
.wedance__label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral-text); }
.wedance__text h2 { font-size: clamp(19px, 2vw, 21px); }
.wedance__text p { font-size: 14px; line-height: 1.5; color: var(--ink-soft); }
.wedance__text .btn { margin-top: 6px; min-height: 44px; padding: 10px 22px; font-size: 14px; }
.wedance__photo {
  width: 110px;
  aspect-ratio: 3 / 4;
  background: #fff;
  padding: 6px 6px 18px;
  transform: rotate(3deg);
  box-shadow: 0 10px 20px rgba(44,36,48,0.18);
}
.wedance__photo img { width: 100%; height: 100%; object-fit: cover; }

/* Footer */
.footer {
  border-top: 2px solid var(--line);
  padding-top: 36px;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  font-size: 15px;
  color: var(--ink-soft);
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo { height: 48px; width: 48px; mix-blend-mode: multiply; flex-shrink: 0; }
.footer__col { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.footer__heading { font-weight: 700; color: var(--ink); }
.footer a { color: var(--ink-soft); }
.footer a:hover { color: var(--coral-text); }

/* Tablet en kleiner: menu in een paneel */
@media (max-width: 900px) {
  :root { --logo: 104px; }

  .nav { flex-wrap: wrap; }
  .nav.is-scrolled { --logo: 64px; }

  /* Logo en knop blijven boven het uitgeklapte paneel staan. De cremekleurige
     achtergrond houdt mix-blend-mode op het logo werkend. */
  .nav__brand { position: relative; z-index: 2; background: var(--cream); }
  .nav__toggle { position: relative; z-index: 2; display: inline-flex; }

  .nav__panel {
    position: fixed;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    max-height: 100dvh;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: calc(var(--logo) + 24px) var(--gutter) 28px;
    background: var(--cream);
    border-bottom: 2px solid var(--line);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.25s ease, visibility 0.25s ease;
  }
  .nav__panel.is-open { transform: translateY(0); visibility: visible; }

  .nav__links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav__links a {
    min-height: 52px;
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid rgba(44,36,48,0.12);
    border-radius: 0;
  }
  .nav__cta { margin-top: 12px; }

  .hero__title { font-size: clamp(34px, 7.4vw, 56px); }
  .included { justify-content: flex-start; }
  .howitworks__grid { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }

  /* WeDance komt onder de FAQ in plaats van ernaast. */
  .faq-wedance { flex-direction: column; }
  .wedance { width: 100%; }
}

/* Telefoon */
@media (max-width: 640px) {
  :root { --logo: 92px; }

  .hero { padding-top: 8px; }
  .hero__actions .btn { width: 100%; }
  .photo-collage { aspect-ratio: 1 / 1; max-width: 420px; }
  .photo-collage__pin { right: -4px; bottom: 0; }

  .package-card--highlight { box-shadow: 5px 5px 0 var(--ink); }
  .bench__photo { box-shadow: 5px 5px 0 var(--lavender); }
  .availability__card { box-shadow: 5px 5px 0 var(--ink); }
  .btn--accent, .btn--lavender { box-shadow: 3px 3px 0 var(--ink); }

  .included__chips { gap: 8px; }
  .chip { font-size: 14px; padding: 7px 14px; }
  .step-card__num { font-size: 38px; }
  .footer__brand { align-items: flex-start; }
}

/* Heel smal (iPhone SE en kleiner) */
@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .pill { width: 100%; justify-content: center; }
  .package-card__flag { right: 12px; }
}

/* Liggend op een telefoon: menu mag scrollen, minder witruimte */
@media (max-height: 520px) and (max-width: 900px) {
  .nav__panel { padding-top: 84px; padding-bottom: 20px; }
  :root { --logo: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rotate-n1, .rotate1, .rotate-n2, .rotate2, .rotate3, .rotate-n4 { transform: none; }
}

@media print {
  .nav, .nav__scrim, .skip-link, .availability__form { display: none !important; }
  body { background: #fff; }
  .package-card, .availability__card { box-shadow: none; }
}

/* ---------- Veelgestelde vragen, met WeDance als klein kaartje ernaast ---------- */
.faq-wedance {
  padding-block: clamp(56px, 8vw, 96px);
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 4vw, 48px);
}
.faq { flex: 1 1 420px; min-width: 0; max-width: 78ch; }
.faq__kop { max-width: 58ch; margin-bottom: 28px; }
.faq__kop h2 { margin: 12px 0 8px; }
.faq__kop p { color: var(--ink-soft); }
.faq__lijst { display: grid; gap: 12px; max-width: 78ch; }
.faq__item {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  padding: 4px 20px;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Bricolage Grotesque", "Arial Black", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 2vw, 19px);
  padding: 16px 40px 16px 0;
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
/* Het plusje wordt een minnetje als de vraag openstaat. */
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  transition: transform .18s ease;
}
.faq__item[open] summary::after { content: "\2013"; }
.faq__item summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 8px;
}
.faq__item p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  max-width: 68ch;
}
@media (prefers-reduced-motion: reduce) {
  .faq__item summary::after { transition: none; }
}

/* ---------- Losse pagina's: tekst en landingspagina's ---------- */
.tekstpagina,
.landing-blok {
  padding-block: clamp(40px, 6vw, 72px);
  padding-left: max(var(--gutter), calc((100% - var(--max)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--max)) / 2));
}
/* Leesregels van ongeveer 70 tekens; langer wordt vermoeiend. */
.tekstpagina > *,
.landing-blok > * { max-width: 72ch; }
.tekstpagina h1 { margin: 14px 0 10px; }
.tekstpagina h2,
.landing-blok h2 { margin: 36px 0 10px; }
.tekstpagina p,
.tekstpagina li,
.landing-blok p,
.landing-blok li { color: var(--ink-soft); }
.tekstpagina__lead,
.landing-hero__lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ink) !important;
}
.tekstpagina ul,
.tekstpagina ol { padding-left: 22px; }
.tekstpagina li { margin: 7px 0; }
.tekstpagina__slot {
  margin-top: 40px;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  padding: 18px 22px;
}

/* Landingspagina's */
.landing-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(32px, 5vw, 64px);
  padding-left: max(var(--gutter), calc((100% - var(--max)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--max)) / 2));
}
.landing-hero h1 { margin: 14px 0 12px; }
.landing-hero__prijs { font-size: 17px; margin: 18px 0; }
.landing-hero__acties { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.landing-hero__foto img {
  width: 100%;
  height: auto;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  rotate: 1.5deg;
}
.landing-lijst { padding-left: 22px; }
.landing-lijst li { margin: 9px 0; }
.landing-stappen { padding-left: 22px; }
.landing-stappen li { margin: 11px 0; }
.landing-cta {
  margin-top: 44px;
  background: var(--mustard);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hard);
  padding: clamp(22px, 4vw, 36px);
}
.landing-cta h2 { margin-top: 0; }
.landing-cta p { color: var(--ink) !important; margin-bottom: 18px; }

@media (max-width: 900px) {
  .landing-hero { grid-template-columns: 1fr; }
  /* Foto onder de tekst: op een telefoon wil je eerst weten waar je bent. */
  .landing-hero__foto { order: 2; max-width: 420px; }
}
@media (prefers-reduced-motion: reduce) {
  .landing-hero__foto img { rotate: none; }
}

/* ---------- Cookiebanner ---------- */
.cookiebalk {
  position: fixed;
  z-index: 200;
  inset-inline: 0;
  bottom: 0;
  background: var(--cream);
  border-top: 2px solid var(--line);
  box-shadow: 0 -4px 0 rgba(44, 36, 48, 0.12);
  padding: 16px max(var(--gutter), calc((100% - var(--max)) / 2));
}
.cookiebalk__binnen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookiebalk__tekst { flex: 1 1 380px; }
.cookiebalk__tekst strong {
  display: block;
  font-family: "Bricolage Grotesque", "Arial Black", sans-serif;
  font-size: clamp(17px, 2vw, 19px);
  margin-bottom: 4px;
}
.cookiebalk__tekst p { margin: 0; font-size: 14px; color: var(--ink-soft); }
/* Beide knoppen even opvallend: een weigerknop die moeilijker te vinden is
   dan de accepteerknop is geen geldige toestemming. */
.cookiebalk__knoppen { display: flex; flex-wrap: wrap; gap: 10px; }
.cookiebalk__knoppen .btn { min-height: 48px; }

@media (max-width: 640px) {
  .cookiebalk__knoppen { width: 100%; }
  .cookiebalk__knoppen .btn { flex: 1 1 100%; justify-content: center; }
}
