/* ==========================================================================
   Beauty Studio Geisa Brandao, Kudelstaart
   Visuele richting: "kolibrie". Ontleend aan de eigen kadobon van de salon:
   diep violet, orchidee-magenta en de witte kolibrie met haar lange staart
   die als lijn door de pagina zweeft. Veel witruimte, boogvormige portretten,
   en behandelmenu's met klassieke prijsstippellijnen.
   ========================================================================== */

/* ---------- Fonts (self-hosted, geen externe requests) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-latin-ext.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-latin.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-latin-ext.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --plum-900: #241239;
  --plum-800: #34215a;
  --plum: #493180;
  --plum-600: #5d4396;
  --orchid: #a13e96;
  --orchid-600: #b753ac;
  --orchid-200: #e6c4e0;
  --lilac-50: #f8f5fc;
  --lilac-100: #f0e9f7;
  --blush: #f9edf5;
  --paper: #fffdfe;
  --ink: #2c2338;
  --ink-soft: #5f5570;
  --line: #e8dff2;
  --line-strong: #d6c8e6;

  --display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 72rem;
  --wrap-narrow: 45rem;
  --gutter: clamp(1.15rem, 5vw, 3rem);

  --step-xs: 0.8125rem;
  --step-sm: 0.9375rem;
  --step-0: clamp(1rem, 0.97rem + 0.16vw, 1.09rem);
  --step-1: clamp(1.12rem, 1.05rem + 0.35vw, 1.35rem);
  --step-2: clamp(1.5rem, 1.32rem + 0.8vw, 2.05rem);
  --step-3: clamp(1.95rem, 1.6rem + 1.6vw, 3.05rem);
  --step-4: clamp(2.5rem, 1.85rem + 3vw, 4.6rem);

  --radius: 3px;
  --radius-lg: 14px;
  --arch: 999px 999px 12px 12px;
  --shadow-sm: 0 1px 2px rgba(36, 18, 57, .05), 0 8px 22px -14px rgba(36, 18, 57, .3);
  --shadow: 0 2px 4px rgba(36, 18, 57, .04), 0 22px 48px -26px rgba(36, 18, 57, .38);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orchid); }
:focus-visible {
  outline: 3px solid var(--orchid);
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.005em;
  color: var(--plum-900);
  margin: 0 0 .5em;
  text-wrap: balance;
  overflow-wrap: normal;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.15rem; }
li { margin-bottom: .35em; }

/* ---------- Layout ---------- */
/* Anchorsprongen mogen niet onder de sticky header verdwijnen. */
[id] { scroll-margin-top: 5.75rem; }

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - var(--gutter) * 2, var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: clamp(3.25rem, 8vw, 6.5rem); }
.section-tight { padding-block: clamp(2.25rem, 5vw, 3.75rem); }
.section-lilac { background: var(--lilac-50); }
.section-blush { background: var(--blush); }
.section-plum { background: var(--plum-800); color: #efe7f6; }
.section-plum h2, .section-plum h3 { color: #fff; }
.section-plum a { color: #f0dcec; }
.section-plum a:hover { color: #fff; }

.lede { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.6; }
.section-plum .lede { color: #d7c8e8; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--body);
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orchid);
  margin: 0 0 .85rem;
}
.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: currentColor;
  opacity: .55;
}
.section-plum .eyebrow { color: var(--orchid-200); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--body);
  font-size: var(--step-sm);
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn-primary { background: var(--plum); color: #fff; }
.btn-primary:hover { background: var(--plum-900); color: #fff; }
.btn-accent { background: var(--orchid); color: #fff; }
.btn-accent:hover { background: #8d3183; color: #fff; }
.btn-ghost { border-color: var(--line-strong); color: var(--plum); background: rgba(255,255,255,.75); }
.btn-ghost:hover { border-color: var(--plum); background: #fff; color: var(--plum); }
.btn-light { background: #fff; color: var(--plum-900); }
.btn-light:hover { background: var(--blush); color: var(--plum-900); }
.btn-outline-light { border-color: rgba(255,255,255,.42); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }
.btn-wa { background: #1faa54; color: #fff; }
.btn-wa:hover { background: #17853f; color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 253, 254, .93);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.6rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--plum-900);
  margin-right: auto;
  padding: .35rem 0;
}
.brand img { width: 46px; height: auto; }
.brand-name {
  font-family: var(--display);
  font-size: 1.32rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: .005em;
}
.brand-sub {
  display: block;
  font-family: var(--body);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orchid);
  margin-top: .18rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: .5rem .85rem;
  font: inherit;
  font-size: var(--step-sm);
  font-weight: 700;
  color: var(--plum);
  cursor: pointer;
}
.nav-toggle span {
  position: relative;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav-toggle span::before { top: -5px; }
.nav-toggle span::after { top: 5px; }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-size: var(--step-sm);
  font-weight: 600;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.site-nav a:not(.btn):hover { color: var(--orchid); border-bottom-color: var(--orchid); }
.site-nav a[aria-current="page"] { color: var(--plum); border-bottom-color: var(--plum); }
.header-cta { margin-left: .4rem; }
/* De CTA in het uitklapmenu is alleen voor mobiel; op desktop staat hij los. */
.site-nav .nav-cta { display: none; }

@media (max-width: 61.9rem) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: .5rem var(--gutter) 1.4rem;
  }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { margin: 0; }
  .site-nav a:not(.btn) {
    display: block;
    padding: .85rem .2rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--line); }
  .site-nav .nav-cta { display: block; }
  .site-nav .btn { margin-top: 1rem; width: 100%; }
  html.js .site-nav[data-collapsed="true"] { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 4%, var(--blush) 0%, rgba(249,237,245,0) 58%),
    linear-gradient(178deg, var(--lilac-50) 0%, var(--paper) 78%);
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 5.5rem);
}
.hero-swoosh {
  position: absolute;
  right: -6%;
  bottom: -3%;
  width: min(62rem, 92%);
  opacity: .13;
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: .35em; }
.hero h1 em {
  font-style: italic;
  color: var(--orchid);
}
.hero-lede { font-size: var(--step-1); color: var(--ink-soft); max-width: 34rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  font-size: var(--step-sm);
  font-weight: 600;
  color: var(--plum);
}
.hero-meta li { display: flex; align-items: center; gap: .45rem; margin: 0; }
.hero-meta li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orchid);
  flex: none;
}
.hero .btn-row { margin-top: 1.8rem; }
.hero-note { margin-top: 1.1rem; font-size: var(--step-sm); color: var(--ink-soft); }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%;
  border-radius: var(--arch);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  background: var(--lilac-100);
}
.hero-badge {
  position: absolute;
  left: -1.1rem;
  bottom: 1.6rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: .85rem 1.15rem;
  max-width: 15rem;
  font-size: var(--step-xs);
  line-height: 1.5;
  color: var(--ink-soft);
}
.hero-badge strong { display: block; font-size: var(--step-sm); color: var(--plum-900); }

@media (max-width: 55rem) {
  /* Op mobiel eerst de belofte en de belknoppen, daarna pas het portret. */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { max-width: 22rem; margin-inline: auto; }
  .hero-figure img { aspect-ratio: 4 / 5; }
  .hero-badge {
    position: static;
    max-width: none;
    margin-top: .9rem;
    box-shadow: var(--shadow-sm);
  }
}

/* ---------- Page head (binnenpagina's) ---------- */
.page-head {
  background: linear-gradient(176deg, var(--lilac-100) 0%, var(--paper) 92%);
  padding-block: clamp(2.25rem, 5vw, 3.75rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-head h1 { font-size: var(--step-3); }
.page-head .lede { max-width: 44rem; }
.page-head-swoosh {
  position: absolute;
  right: -4%;
  bottom: -20%;
  width: min(40rem, 70%);
  opacity: .1;
  pointer-events: none;
}
.page-head > .wrap { position: relative; z-index: 1; }

/* ---------- Breadcrumbs ---------- */
.crumbs { font-size: var(--step-xs); color: var(--ink-soft); margin-bottom: 1rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; color: var(--line-strong); }
.crumbs a { color: var(--ink-soft); }

/* ---------- USP-rij ---------- */
.usps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: clamp(1.1rem, 3vw, 2.25rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.usps li { margin: 0; }
.usps h3 { font-size: var(--step-1); margin-bottom: .3em; }
.usps p { font-size: var(--step-sm); color: var(--ink-soft); }
.usp-mark {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blush);
  color: var(--orchid);
  margin-bottom: .8rem;
}
.usp-mark svg { width: 1.15rem; height: 1.15rem; }

/* ---------- Kaarten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--lilac-100); }
.card-body { padding: 1.25rem 1.35rem 1.45rem; display: flex; flex-direction: column; flex: 1; }
.card h3 {
  font-size: clamp(1.3rem, 1.15rem + .5vw, 1.62rem);
  margin-bottom: .3em;
  hyphens: auto;
}
.card p { font-size: var(--step-sm); color: var(--ink-soft); }
.card-price {
  font-family: var(--body);
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orchid);
  margin-bottom: .55rem;
}
.card-link {
  margin-top: auto;
  padding-top: .9rem;
  font-size: var(--step-sm);
  font-weight: 700;
  text-decoration: none;
}
.card-link::after { content: " \2192"; }
.card a.stretched::before {
  content: "";
  position: absolute;
  inset: 0;
}
.card { position: relative; }

/* ---------- Behandelmenu met prijsstippellijn ---------- */
.menu { margin: 0; padding: 0; list-style: none; }
.menu > li {
  margin: 0;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}
.menu > li:first-child { padding-top: 0; }
.menu > li:last-child { border-bottom: 0; }
.menu-head {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-family: var(--display);
  font-size: var(--step-2);
  color: var(--plum-900);
  line-height: 1.15;
  margin-bottom: .4rem;
}
.menu-head .dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted var(--line-strong);
  transform: translateY(-.25rem);
  min-width: 1.5rem;
}
.menu-head .price {
  font-family: var(--body);
  font-size: var(--step-1);
  font-weight: 700;
  color: var(--plum);
  white-space: nowrap;
}
.menu-duration {
  font-family: var(--body);
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orchid);
  margin-bottom: .5rem;
}
.menu-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .5rem;
}
.menu-steps li {
  margin: 0;
  font-size: var(--step-xs);
  background: var(--lilac-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .28rem .7rem;
  color: var(--ink-soft);
}
.menu p { font-size: var(--step-sm); color: var(--ink-soft); }

/* Compacte prijstabel (harsen, verven) */
.pricelist { margin: 0; padding: 0; list-style: none; }
.pricelist li {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin: 0;
  padding: .5rem 0;
  border-bottom: 1px dotted var(--line);
  font-size: var(--step-sm);
}
.pricelist li:last-child { border-bottom: 0; }
.pricelist .dots { flex: 1; height: 1px; border-bottom: 1px dotted var(--line-strong); transform: translateY(-.2rem); min-width: 1rem; }
.pricelist .price { font-weight: 700; color: var(--plum); white-space: nowrap; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.price-block h3 { font-size: var(--step-2); margin-bottom: .5em; }
.price-block { break-inside: avoid; }

/* ---------- Panel ---------- */
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.panel-soft { background: var(--lilac-50); box-shadow: none; }

/* ---------- Split (tekst + beeld) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
}
.split-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}
.split-figure.arch img { border-radius: var(--arch); aspect-ratio: 4 / 5; }
.split figcaption { font-size: var(--step-xs); color: var(--ink-soft); margin-top: .6rem; }

/* ---------- Openingstijden ---------- */
.hours { margin: 0; padding: 0; list-style: none; }
.hours li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin: 0;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: var(--step-sm);
}
.hours li:last-child { border-bottom: 0; }
.hours .day { font-weight: 700; min-width: 6.5rem; color: var(--plum-900); }
.hours .dots { flex: 1; height: 1px; border-bottom: 1px dotted var(--line-strong); transform: translateY(-.2rem); }
.hours .time { white-space: nowrap; color: var(--ink-soft); }
.section-plum .hours li { border-bottom-color: rgba(255,255,255,.14); }
.section-plum .hours .day { color: #fff; }
.section-plum .hours .time { color: #dccfea; }
.section-plum .hours .dots { border-bottom-color: rgba(255,255,255,.25); }

/* ---------- NAP / contactkaart ---------- */
.nap { font-style: normal; font-size: var(--step-0); }
.nap dt {
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orchid);
  margin-top: 1.15rem;
}
.nap dt:first-child { margin-top: 0; }
.nap dd { margin: .2rem 0 0; }
.nap a { font-weight: 600; }

.map-link {
  display: block;
  text-decoration: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--lilac-50);
}
.map-link img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.map-link span {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .7rem 1rem;
  font-size: var(--step-sm);
  font-weight: 700;
  color: var(--plum);
  background: #fff;
  border-top: 1px solid var(--line);
}
.map-link span svg { width: 1.05em; height: 1.05em; flex: none; }
.map-link:hover span { color: var(--orchid); }

/* ---------- Stappen (HowTo) ---------- */
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  counter-increment: step;
  margin: 0;
  padding-top: 3.1rem;
  position: relative;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
}
.steps h3 { font-size: var(--step-1); margin-bottom: .3em; }
.steps p { font-size: var(--step-sm); color: var(--ink-soft); }
.section-plum .steps li::before { background: var(--orchid); }
.section-plum .steps p { color: #d7c8e8; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: var(--step-2);
  line-height: 1.2;
  color: var(--plum-900);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: .7rem;
  height: .7rem;
  border-right: 2px solid var(--orchid);
  border-bottom: 2px solid var(--orchid);
  transform: rotate(45deg) translateY(-.15rem);
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translateY(-.15rem); }
.faq .answer { padding: 0 0 1.35rem; max-width: 52rem; color: var(--ink-soft); }
.faq .answer p:first-child { color: var(--ink); }

/* ---------- Slot-CTA ---------- */
.cta-band {
  background:
    radial-gradient(90% 140% at 12% 0%, var(--plum-600) 0%, rgba(93,67,150,0) 62%),
    var(--plum-800);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d7c8e8; }
.cta-band a:not(.btn) { color: #f0dcec; }
.cta-band a:not(.btn):hover { color: #fff; }
.cta-band .eyebrow { color: var(--orchid-200); }
.cta-swoosh {
  position: absolute;
  left: -5%;
  top: -18%;
  width: min(48rem, 88%);
  opacity: .16;
  pointer-events: none;
}

/* ---------- Mobiele actiebalk ---------- */
.action-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 70;
  display: none;
  background: rgba(255, 253, 254, .97);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 22px -14px rgba(36, 18, 57, .5);
  padding: .5rem .55rem calc(.5rem + env(safe-area-inset-bottom));
  gap: .45rem;
}
.action-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .18rem;
  padding: .45rem .3rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--plum-900);
}
.action-bar a svg { width: 1.15rem; height: 1.15rem; }
.action-bar .primary { background: var(--plum); color: #fff; }
.action-bar .wa { color: #17853f; }
@media (max-width: 46rem) {
  .action-bar { display: flex; }
  body { padding-bottom: 4.4rem; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum-900);
  color: #cdbede;
  padding-block: clamp(2.75rem, 6vw, 4.25rem) 1.75rem;
  position: relative;
  overflow: hidden;
  font-size: var(--step-sm);
}
.footer-swoosh {
  position: absolute;
  right: -3%;
  top: -6%;
  width: min(44rem, 80%);
  opacity: .1;
  pointer-events: none;
}
.site-footer .wrap { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}
.site-footer h2 {
  font-family: var(--body);
  font-size: var(--step-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orchid-200);
  margin-bottom: 1rem;
}
.site-footer a { color: #e6d9f2; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.footer-brand .brand-name { color: #fff; font-size: 1.45rem; }
.footer-brand img { width: 64px; margin-bottom: .9rem; }
.footer-brand p { color: #b7a6ca; margin-top: .8rem; }
.site-footer .hours li { border-bottom-color: rgba(255,255,255,.13); }
.site-footer .hours .day { color: #fff; }
.site-footer .hours .time { color: #cdbede; }
.site-footer .hours .dots { border-bottom-color: rgba(255,255,255,.22); }
.footer-socials { display: flex; gap: .6rem; margin-top: 1rem; }
.footer-socials a {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}
.footer-socials a:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.5); }
.footer-socials svg { width: 1.05rem; height: 1.05rem; fill: currentColor; }
.footer-bottom {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-size: var(--step-xs);
  color: #a493ba;
}

/* ---------- Diversen ---------- */
.skip-link {
  position: absolute;
  left: .5rem;
  top: -3.5rem;
  z-index: 100;
  background: var(--plum);
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

.note {
  border-left: 3px solid var(--orchid);
  background: var(--blush);
  padding: .9rem 1.15rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: var(--step-sm);
}
.tag-row { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; margin: 0; padding: 0; }
.tag-row li {
  margin: 0;
  font-size: var(--step-xs);
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: .3rem .8rem;
  color: var(--plum);
}
.stack > * + * { margin-top: clamp(1.75rem, 4vw, 3rem); }
.divider-swoosh { display: block; width: min(20rem, 60%); margin: 2.5rem auto 0; opacity: .3; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
