/* ============================================================
   Pedicure Ikram — design system
   Eén samenhangend systeem: kleuren, spacing, type, radii,
   elevatie en beweging komen allemaal uit tokens hieronder.
   Warme crème/espresso, afgeleid van het logo. Eén licht thema.
   ============================================================ */

:root {
  /* ---- Kleur ---- */
  --cream:       #faf6ee;   /* pagina-achtergrond */
  --cream-2:     #f4ece0;   /* zachte sectie */
  --sand:        #efe6d6;   /* accentvlak / offset */
  --sand-2:      #e7dcc8;
  --border:      #e6d9c5;
  --line:        #efe6d8;
  --paper:       #fffdf8;   /* kaarten, lichte sectie */
  --espresso:    #33200f;   /* koppen + donkere sectie */
  --espresso-2:  #241608;
  --cocoa:       #6f5a48;   /* bodytekst */
  --cocoa-soft:  #8a7663;   /* rustige tekst */
  --clay:        #a97452;   /* accent, spaarzaam */
  --clay-deep:   #8f5d3e;
  --on-dark:     #f6efe4;   /* tekst op espresso/foto */
  --on-dark-dim: rgba(246,239,228,0.82);
  --gold:        #e2bd97;   /* accent op donker */

  /* ---- Spacing scale (4 · 8 · 12 · 16 · 24 · 32 · 48 · 64 · 96 · 128) ---- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* ---- Type ---- */
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* modulaire schaal (statisch) */
  --ts-xs: 0.75rem;
  --ts-sm: 0.875rem;
  --ts-base: 1rem;
  --ts-md: 1.125rem;
  --ts-lg: 1.375rem;
  --ts-xl: 1.75rem;
  --ts-2xl: 2.25rem;
  --ts-3xl: 2.75rem;
  --ts-4xl: 3.25rem;

  /* vloeiende koppen (min → max uit de schaal) */
  --fs-h1: clamp(2.25rem, 1.55rem + 2.6vw, 3.25rem);
  --fs-h2: clamp(1.65rem, 1.25rem + 1.35vw, 2.25rem);
  --fs-h3: clamp(1.125rem, 1.02rem + 0.42vw, 1.375rem);
  --fs-lead: clamp(1.075rem, 1.02rem + 0.28vw, 1.2rem);
  --fs-body: clamp(1rem, 0.97rem + 0.12vw, 1.0625rem);

  --lh-tight: 1.08;
  --lh-snug: 1.2;
  --lh-body: 1.65;
  --ls-head: -0.01em;
  --ls-eyebrow: 0.28em;
  --ls-wordmark: 0.18em;
  --measure: 66ch;          /* comfortabele leesbreedte */

  /* ---- Radii ---- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* ---- Elevatie (zachte, warme schaduwen) ---- */
  --elev-1: 0 1px 2px rgba(51,32,15,0.05), 0 6px 16px -10px rgba(51,32,15,0.18);
  --elev-2: 0 8px 20px -12px rgba(51,32,15,0.18), 0 24px 50px -30px rgba(51,32,15,0.34);
  --elev-3: 0 14px 30px -14px rgba(51,32,15,0.2), 0 44px 84px -46px rgba(51,32,15,0.44);

  /* ---- Layout ---- */
  --maxw: 1240px;
  --gutter: clamp(var(--sp-5), 4vw, var(--sp-7));

  /* ---- Beweging ---- */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);  /* ease-out */
  --dur: 0.7s;
  --dur-fast: 0.28s;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--cocoa);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: 0.001ms !important; }
}

/* ============================================================
   Typografie
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--espresso);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-head);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-snug); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); letter-spacing: 0; }
p  { margin: 0; max-width: var(--measure); }

a { color: var(--clay-deep); text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color var(--dur-fast) var(--ease); }
a:hover { color: var(--espresso); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--ts-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: 0.55; }
.eyebrow.center { justify-content: center; }

.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--cocoa); max-width: 44ch; }

/* ============================================================
   Utilities (uit de spacing scale)
   ============================================================ */
.u-mt-4 { margin-top: var(--sp-4); }
.u-mt-5 { margin-top: var(--sp-5); }
.u-mt-6 { margin-top: var(--sp-6); }
.u-mt-7 { margin-top: var(--sp-7); }
.u-mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   Layout
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(var(--sp-8), 6vw, var(--sp-9)); }
.section--paper { background: var(--paper); }
.section--sand { background: var(--cream-2); }
.section--espresso { background: var(--espresso); color: var(--on-dark); }
.section--espresso h2, .section--espresso h3 { color: var(--on-dark); }
.section--espresso .eyebrow { color: var(--gold); }
.section--espresso p, .section--espresso .lead { color: var(--on-dark-dim); }

.center { text-align: center; }
.center .lead, .center p { margin-inline: auto; }

.section-head { max-width: 44rem; display: grid; gap: var(--sp-4); margin-bottom: clamp(var(--sp-6), 4vw, var(--sp-7)); }
.section-head.center { margin-inline: auto; justify-items: center; }

.prose { display: grid; gap: var(--sp-4); }
.prose p + p { margin-top: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --btn-bg: var(--espresso);
  --btn-fg: var(--on-dark);
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-body); font-weight: 700; font-size: var(--ts-base);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  box-shadow: var(--elev-2);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--elev-3); background: var(--espresso-2); color: var(--on-dark); }
.btn:active { transform: translateY(-1px); }
.btn--clay { --btn-bg: var(--clay); }
.btn--clay:hover { background: var(--clay-deep); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--espresso); border-color: var(--border); box-shadow: none; }
.btn--ghost:hover { background: var(--paper); color: var(--espresso); border-color: var(--clay); box-shadow: var(--elev-1); }
/* Rustige secundaire knop (o.a. header): espresso-outline, geen vulling */
.btn--outline {
  --btn-bg: transparent; --btn-fg: var(--espresso);
  border-color: color-mix(in srgb, var(--espresso) 32%, transparent);
  box-shadow: none; font-weight: 600; padding-block: calc(var(--sp-3) - 1px);
}
.btn--outline:hover { background: var(--espresso); color: var(--on-dark); border-color: var(--espresso); box-shadow: none; transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center; }
.center .btn-row { justify-content: center; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(1.15) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) var(--ease);
}
.site-header.scrolled { border-bottom-color: color-mix(in srgb, var(--border) 70%, transparent); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); min-height: 82px; }

.brand { display: inline-flex; align-items: center; gap: var(--sp-3); text-decoration: none; color: var(--espresso); }
.brand:hover { color: var(--espresso); }
.brand__mark { width: 38px; height: auto; flex: none; }
.brand__name { display: grid; gap: 3px; }
.brand__name b {
  font-family: var(--font-head); font-weight: 600; font-size: 1.4rem; line-height: 1;
  text-transform: uppercase; letter-spacing: var(--ls-wordmark); color: var(--espresso);
}
.brand__name small {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--cocoa-soft);
}

.nav { display: flex; align-items: center; gap: var(--sp-7); }
.nav a { font-weight: 600; text-decoration: none; color: var(--cocoa); font-size: var(--ts-base); position: relative; padding-block: var(--sp-1); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--clay); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-fast) var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--espresso); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { display: inline-flex; align-items: center; gap: var(--sp-5); }
.header-phone { font-weight: 700; text-decoration: none; color: var(--espresso); white-space: nowrap; line-height: 1.2; }
.header-phone small { display: block; color: var(--cocoa-soft); font-weight: 600; font-size: 0.72rem; }

.nav-toggle { display: none; }
.mobile-nav { display: none; }

@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--paper);
    border: 1px solid var(--border); cursor: pointer; color: var(--espresso);
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .mobile-nav {
    display: none; flex-direction: column;
    padding: var(--sp-2) var(--gutter) var(--sp-5);
    background: var(--cream); border-bottom: 1px solid var(--border);
  }
  .mobile-nav.open { display: flex; animation: dropIn var(--dur-fast) var(--ease); }
  .mobile-nav a {
    padding: var(--sp-3) 0; font-weight: 600; text-decoration: none; color: var(--espresso);
    border-bottom: 1px solid var(--line); font-size: var(--ts-md);
  }
  .mobile-nav a:last-child { border-bottom: 0; color: var(--clay-deep); }
  .site-header .wrap { min-height: 70px; }
  .brand__mark { width: 32px; }
  .brand__name b { font-size: 1.14rem; letter-spacing: 0.13em; }
}
@media (max-width: 380px) { .brand__name small { display: none; } }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Hero (foto + overlay + parallax)
   ============================================================ */
.hero { position: relative; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { object-position: 62% 55%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(94deg, rgba(28,17,7,0.88) 0%, rgba(28,17,7,0.66) 32%, rgba(28,17,7,0.24) 60%, rgba(28,17,7,0.05) 100%),
    linear-gradient(0deg, rgba(28,17,7,0.55), rgba(28,17,7,0) 42%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero__inner {
  min-height: clamp(460px, 64vh, 620px);
  display: grid; align-content: center; gap: var(--sp-5);
  max-width: 38rem; padding-block: clamp(var(--sp-7), 6vh, var(--sp-9));
}
.hero__inner .eyebrow { color: var(--gold); }
.hero__inner h1 { color: var(--on-dark); text-shadow: 0 2px 34px rgba(0,0,0,0.28); }
.hero__inner .lead { color: rgba(246,239,228,0.92); max-width: 40ch; }
/* Rustige informatieregel onder de knoppen (geen knopvorm) */
.hero__meta { list-style: none; padding: 0; margin: var(--sp-1) 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-2) var(--sp-5); }
.hero__meta li { display: inline-flex; align-items: center; gap: var(--sp-2); color: var(--on-dark-dim); font-size: var(--ts-sm); font-weight: 600; letter-spacing: 0.01em; position: relative; }
.hero__meta svg { width: 15px; height: 15px; color: var(--gold); flex: none; }
/* fijne scheiding tussen de items op één regel */
.hero__meta li + li::before { content: ""; position: absolute; left: calc(var(--sp-5) / -2); top: 50%; width: 1px; height: 12px; background: rgba(246,239,228,0.28); transform: translateY(-50%); }
@media (max-width: 560px) {
  .hero__meta { flex-direction: column; align-items: flex-start; gap: var(--sp-2); }
  .hero__meta li + li::before { display: none; }
}
.hero .btn--ghost { --btn-fg: var(--on-dark); border-color: rgba(246,239,228,0.55); }
.hero .btn--ghost:hover { background: rgba(246,239,228,0.16); color: var(--on-dark); border-color: var(--on-dark); }
.hero__scroll {
  position: absolute; left: 50%; bottom: var(--sp-5); z-index: 2; transform: translateX(-50%);
  color: rgba(246,239,228,0.7); display: grid; justify-items: center; gap: var(--sp-1);
  font-size: 0.68rem; letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
}
.hero__scroll svg { width: 20px; height: 20px; animation: bob 2.4s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (max-width: 700px) {
  .hero__scrim { background: linear-gradient(0deg, rgba(28,17,7,0.82), rgba(28,17,7,0.34) 55%, rgba(28,17,7,0.56)); }
  .hero__scroll { display: none; }
}

/* ============================================================
   Chips
   ============================================================ */
.chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--paper); border: 1px solid var(--border); color: var(--espresso);
  font-size: var(--ts-sm); font-weight: 700; padding: var(--sp-2) var(--sp-4); border-radius: var(--r-pill);
}
.chip svg { width: 17px; height: 17px; color: var(--clay); }

/* ============================================================
   Grid & cards
   ============================================================ */
.grid { display: grid; gap: clamp(var(--sp-5), 2vw, var(--sp-6)); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(var(--sp-5), 2vw, var(--sp-6));
  box-shadow: var(--elev-1);
  display: grid; gap: var(--sp-3); align-content: start;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--elev-2); border-color: color-mix(in srgb, var(--clay) 45%, var(--border)); }
.card--float { box-shadow: var(--elev-2); }
.card--float:hover { box-shadow: var(--elev-3); transform: translateY(-8px); }
.card__icon {
  width: 52px; height: 52px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--sand); color: var(--clay-deep);
}
.card__icon svg { width: 26px; height: 26px; }
.card p { color: var(--cocoa); }

/* ============================================================
   Split (foto + tekst) & media-frame
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--sp-7), 4vw, var(--sp-9)); align-items: center; }
.split__body { display: grid; gap: var(--sp-4); align-content: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: var(--sp-7); } .split--rev .split__media { order: 0; } }

.media-frame { position: relative; }
.media-frame::before { content: ""; position: absolute; inset: 0; transform: translate(16px, 16px); border-radius: var(--r-lg); background: var(--sand); z-index: 0; }
.media-frame__img { position: relative; z-index: 1; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--elev-3); aspect-ratio: 5 / 4; }
.media-frame__badge {
  position: absolute; z-index: 2; bottom: -18px; left: -18px;
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4); box-shadow: var(--elev-2);
  display: flex; gap: var(--sp-2); align-items: center; font-weight: 700; color: var(--espresso); font-size: var(--ts-sm);
}
.media-frame__badge svg { width: 20px; height: 20px; color: var(--clay); flex: none; }
@media (max-width: 480px) { .media-frame__badge { left: 12px; } .media-frame::before { transform: translate(12px,12px); } }

/* ============================================================
   Stappen
   ============================================================ */
.steps { display: grid; gap: clamp(var(--sp-6), 2vw, var(--sp-7)); }
.step { display: grid; gap: var(--sp-3); }
.step__num { font-family: var(--font-head); font-size: var(--ts-2xl); font-weight: 500; color: var(--clay); line-height: 1; }
.step__num::after { content: ""; display: block; width: 34px; height: 1px; background: var(--border); margin-top: var(--sp-3); }
.step p { color: var(--cocoa); }

/* ============================================================
   Service-rijen
   ============================================================ */
.service {
  display: grid; grid-template-columns: 64px 1fr; gap: var(--sp-5);
  background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(var(--sp-5), 2vw, var(--sp-6)); box-shadow: var(--elev-1);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--elev-2); }
.service__icon { width: 64px; height: 64px; border-radius: var(--r-md); background: var(--sand); color: var(--clay-deep); display: grid; place-items: center; }
.service__icon svg { width: 30px; height: 30px; }
.service__body { display: grid; gap: var(--sp-2); }
.service p { color: var(--cocoa); }
.service ul { margin: var(--sp-1) 0 0; padding-left: var(--sp-4); color: var(--cocoa); display: grid; gap: var(--sp-1); }
@media (max-width: 560px) { .service { grid-template-columns: 1fr; gap: var(--sp-4); } }

/* ============================================================
   Trust-list
   ============================================================ */
.trust-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-4); }
.trust-list li { display: flex; gap: var(--sp-3); align-items: flex-start; }
.trust-list svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 3px; }
.trust-list span { color: var(--on-dark-dim); }

/* ============================================================
   Foto-band met overlay
   ============================================================ */
.band { position: relative; overflow: hidden; isolation: isolate; }
.band__media { position: absolute; inset: 0; z-index: 0; }
.band__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(28,17,7,0.72), rgba(28,17,7,0.45)); }
.band .wrap { position: relative; z-index: 2; }
.band__inner { display: grid; gap: var(--sp-4); justify-items: center; text-align: center; padding-block: clamp(var(--sp-8), 5vw, var(--sp-9)); max-width: 46rem; margin-inline: auto; }
.band__inner .eyebrow { color: var(--gold); }
.band__inner h2 { color: var(--on-dark); }
.band__inner p { color: var(--on-dark-dim); margin-inline: auto; }
.band .btn--ghost { --btn-fg: var(--on-dark); border-color: rgba(246,239,228,0.55); }
.band .btn--ghost:hover { background: rgba(246,239,228,0.16); color: var(--on-dark); border-color: var(--on-dark); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(var(--sp-7), 3vw, var(--sp-9)); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-aside { display: grid; gap: var(--sp-5); }
.contact-line { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-line__ico { width: 46px; height: 46px; border-radius: var(--r-md); background: var(--sand); color: var(--clay-deep); display: grid; place-items: center; flex: none; }
.contact-line__ico svg { width: 22px; height: 22px; }
.contact-line strong { display: block; color: var(--espresso); font-size: var(--ts-md); }
.contact-line span, .contact-line a { color: var(--cocoa); text-decoration: none; }
.contact-line a:hover { color: var(--espresso); }
.contact-line a.btn, .contact-line a.btn:hover { color: var(--btn-fg); }

.temp-flag {
  display: inline-block; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--clay-deep); background: var(--sand); border: 1px dashed var(--clay);
  padding: 2px var(--sp-2); border-radius: 6px; margin-left: var(--sp-2); vertical-align: middle;
}

/* ============================================================
   Formulier
   ============================================================ */
.form-card { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg); padding: clamp(var(--sp-5), 2vw, var(--sp-7)); box-shadow: var(--elev-2); }
.form-card h2 { font-size: var(--ts-xl); }
.form-intro { color: var(--cocoa); margin: var(--sp-3) 0 var(--sp-5); }
.field { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-5); }
.field label { font-weight: 700; font-size: var(--ts-sm); color: var(--espresso); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--ts-base); color: var(--espresso);
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--r-sm); padding: var(--sp-3) var(--sp-4);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: color-mix(in srgb, var(--clay) 40%, var(--border)); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--clay); background: var(--paper);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--clay) 18%, transparent);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } }
.field-hint { font-size: var(--ts-sm); color: var(--cocoa-soft); margin: calc(var(--sp-3) * -1) 0 var(--sp-5); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent { display: flex; gap: var(--sp-2); align-items: flex-start; font-size: var(--ts-sm); color: var(--cocoa); font-weight: 500; }
.consent input { width: auto; margin-top: 5px; flex: none; accent-color: var(--clay); }
.form-note { font-size: var(--ts-sm); color: var(--cocoa-soft); margin-top: var(--sp-3); }
.form-status { margin-top: var(--sp-4); padding: var(--sp-3) var(--sp-4); border-radius: var(--r-sm); font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: #eaf1e4; color: #46603a; border: 1px solid #cfdfc0; }
.form-status.err { background: #f6e3dc; color: #8c4a34; border: 1px solid #e8c8bb; }

.disclaimer { max-width: var(--measure); font-size: var(--ts-sm); line-height: 1.6; color: var(--cocoa-soft); margin-top: var(--sp-6); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: var(--sp-3); max-width: 48rem; }
.faq details { background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-md); padding: 2px var(--sp-5); transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease); }
.faq details[open] { box-shadow: var(--elev-1); border-color: color-mix(in srgb, var(--clay) 35%, var(--border)); }
.faq summary { cursor: pointer; font-family: var(--font-head); font-size: var(--ts-lg); font-weight: 600; color: var(--espresso); padding: var(--sp-4) 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); font-weight: 300; font-size: 1.5rem; color: var(--clay); transition: transform var(--dur-fast) var(--ease); }
.faq details[open] summary::after { content: "\2013"; }
.faq p { color: var(--cocoa); margin: 0 0 var(--sp-4); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--cream-2); border-top: 1px solid var(--border); padding-top: clamp(var(--sp-7), 3vw, var(--sp-8)); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--sp-7); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); } }
.footer-note { color: var(--cocoa); max-width: 32ch; margin-top: var(--sp-4); }
.site-footer h4 { font-family: var(--font-body); font-size: var(--ts-xs); text-transform: uppercase; letter-spacing: 0.2em; color: var(--cocoa-soft); margin-bottom: var(--sp-4); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.site-footer a { color: var(--espresso); text-decoration: none; font-weight: 600; }
.site-footer a:hover { color: var(--clay-deep); }
.footer-muted { color: var(--cocoa); font-weight: 600; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: clamp(var(--sp-7), 3vw, var(--sp-8)); padding-block: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); justify-content: space-between; font-size: var(--ts-sm); color: var(--cocoa-soft); }

/* ============================================================
   Sticky mobiele belbalk
   ============================================================ */
.call-bar { display: none; }
@media (max-width: 900px) {
  .call-bar {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--sp-3);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: color-mix(in srgb, var(--cream) 94%, transparent);
    backdrop-filter: blur(10px); border-top: 1px solid var(--border);
    padding: var(--sp-2) var(--sp-3) calc(var(--sp-2) + env(safe-area-inset-bottom));
    box-shadow: 0 -14px 40px -24px rgba(51,32,15,0.55);
  }
  .call-bar .btn { padding: var(--sp-3) var(--sp-4); box-shadow: none; }
  body { padding-bottom: 84px; }
}

/* ============================================================
   Beweging: scroll-reveal & parallax
   ============================================================ */
.reveal   { opacity: 0; transform: translateY(22px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal-l { opacity: 0; transform: translateX(-24px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal-r { opacity: 0; transform: translateX(24px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }

.stagger > * { opacity: 0; transform: translateY(22px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.24s; }

/* Parallax: extra hoogte (geen horizontale schaal) zodat er nooit
   horizontale overflow ontstaat; JS verschuift alleen verticaal. */
.parallax { overflow: hidden; }
.parallax > img { position: absolute; left: 0; top: -8%; width: 100%; height: 116%; object-fit: cover; will-change: transform; }

/* hero-entree bij laden */
.hero-anim { opacity: 0; transform: translateY(18px); animation: heroIn 0.9s var(--ease) forwards; }
.hero-anim.d1 { animation-delay: 0.05s; }
.hero-anim.d2 { animation-delay: 0.16s; }
.hero-anim.d3 { animation-delay: 0.28s; }
.hero-anim.d4 { animation-delay: 0.4s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ============================================================
   A11y
   ============================================================ */
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--espresso); color: #fff; padding: var(--sp-3) var(--sp-4); border-radius: 0 0 var(--r-sm) 0; z-index: 100; }
.skip:focus { left: 0; color: #fff; }

/* ============================================================
   Tips / gids (voetverzorging-thuis)
   ============================================================ */
.tip { display: grid; gap: var(--sp-3); align-content: start; }
.tip h2 { font-size: var(--ts-lg); line-height: var(--lh-snug); letter-spacing: 0; }
.tip__answer { font-weight: 700; color: var(--espresso); }
.tip p:not(.tip__answer) { color: var(--cocoa); }
.tip__kicker {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--sand); color: var(--clay-deep); font-family: var(--font-head);
  font-weight: 600; font-size: var(--ts-md);
}
.section--espresso .tip__answer { color: var(--on-dark); }

/* Veiligheids-callout (geen medisch advies) */
.callout {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  background: var(--sand); border: 1px solid var(--border); border-left: 4px solid var(--clay);
  border-radius: var(--r-md); padding: clamp(var(--sp-5), 2vw, var(--sp-6));
  box-shadow: var(--elev-1);
}
.callout__ico { flex: none; width: 44px; height: 44px; border-radius: var(--r-md); background: var(--paper); color: var(--clay-deep); display: grid; place-items: center; }
.callout__ico svg { width: 24px; height: 24px; }
.callout h3 { margin-bottom: var(--sp-2); }
.callout p { color: var(--cocoa); }
.tip__kicker svg { width: 22px; height: 22px; }

/* ============================================================
   WhatsApp — verzorgd geïntegreerd (gedempt groen, geen neon)
   ============================================================ */
:root { --wa: #4a7c59; --wa-deep: #3d6a4b; }
.btn--whatsapp { --btn-bg: var(--wa); --btn-fg: var(--on-dark); }
.btn--whatsapp:hover { background: var(--wa-deep); color: var(--on-dark); }
.btn svg.wa { width: 19px; height: 19px; }

.contact-line__ico--wa { background: color-mix(in srgb, var(--wa) 16%, var(--paper)); color: var(--wa-deep); }
.wa-note { margin-top: var(--sp-3); }

/* Sticky belbalk: drie opties (afspraak · bellen · WhatsApp) */
@media (max-width: 900px) {
  .call-bar { grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-2); }
  .call-bar .btn { padding: var(--sp-3) var(--sp-2); font-size: var(--ts-sm); gap: var(--sp-1); }
  .call-bar .btn svg { width: 17px; height: 17px; }
}
@media (max-width: 360px) {
  .call-bar .btn span { display: none; }   /* alleen iconen op zeer smalle schermen */
  .call-bar .btn { gap: 0; }
}

/* ============================================================
   Formulier: verplicht-markering, groep "één van beide", foutstatus
   ============================================================ */
.req { color: var(--clay-deep); font-weight: 700; }

.field-group { border: 0; margin: 0 0 var(--sp-5); padding: 0; min-inline-size: 0; }
.field-group > legend { padding: 0; margin-bottom: var(--sp-2); font-weight: 700; font-size: var(--ts-sm); color: var(--espresso); }
.field-group .field-row { margin-bottom: var(--sp-2); }
.field-group .field { margin-bottom: 0; }
.field-group .field-hint { margin: 0; }

/* Foutstatus op velden (warme terracotta, past bij de stijl) */
.field--invalid input, .field--invalid select, .field--invalid textarea,
.field-group--invalid input {
  border-color: #c0553c;
  box-shadow: 0 0 0 4px color-mix(in srgb, #c0553c 16%, transparent);
}
.field-error { color: #8c4a34; font-size: var(--ts-sm); font-weight: 600; margin-top: var(--sp-2); display: none; }
.field-group--invalid .field-error { display: block; }
.consent--invalid { color: #8c4a34; }
.consent--invalid input { outline: 2px solid #c0553c; outline-offset: 2px; }
