/* ============================================================
   Medisch Pedicurepraktijk Reijerman — shared styles
   Aesthetic: "Warm clinical sanctuary"
   Evolved olive/sage heritage · Newsreader + Mulish
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,300;0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,300;1,6..72,400&family=Mulish:wght@300;400;500;600;700;800&display=swap');

:root {
  /* palette — evolved olive/sage heritage */
  --paper:      #FBF9F2;
  --paper-2:    #F5F1E6;
  --cream:      #EEE8D6;
  --cream-deep: #E4DCC4;
  --forest:     #2C3120;
  --forest-2:   #383E26;
  --olive:      #595F39;
  --olive-soft: #717748;
  --sage:       #9CA17C;
  --sage-soft:  #C3C7A9;
  --clay:       #B06B45;
  --clay-soft:  #C98D6A;
  --ink:        #33371F;
  --body:       #4B4F39;
  --muted:      #777B61;
  --line:       #DED7C2;
  --white:      #FFFFFF;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 72px);

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  'Mulish', system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 8px rgba(44,49,32,.06);
  --shadow-md: 0 14px 40px -18px rgba(44,49,32,.28);
  --shadow-lg: 0 40px 80px -40px rgba(44,49,32,.42);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 26px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1,h2,h3,h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 132px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--clay);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--clay);
  display: inline-block;
}

.lede { font-size: clamp(18px, 2vw, 21px); color: var(--body); line-height: 1.6; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .01em;
  border: none;
  border-radius: 100px;
  padding: 15px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .35s var(--ease), background .3s var(--ease), box-shadow .35s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--forest); color: #F4F2E8; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--olive); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--cream-deep); }
.btn--ghost:hover { border-color: var(--olive); color: var(--olive); transform: translateY(-2px); }
.btn--clay { background: var(--clay); color: #FBF3EC; box-shadow: 0 14px 34px -16px rgba(176,107,69,.7); }
.btn--clay:hover { background: #9D5C39; transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color: #F2EFE2; border: 1.5px solid rgba(255,255,255,.28); }
.btn--light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(44,49,32,.4); }
.nav__inner { max-width: var(--maxw); margin-inline: auto; padding: 14px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { width: 42px; height: 42px; flex: none; color: var(--olive); }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 19px; color: var(--ink); letter-spacing: -.01em; }
.brand__sub { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--olive-soft); margin-top: 4px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 14.5px; font-weight: 600; color: var(--body); position: relative; padding: 4px 0; transition: color .25s; }
.nav__links a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:1.5px; background: var(--clay); transition: width .3s var(--ease); }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--ink); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { font-size: 14.5px; font-weight: 700; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.nav__phone svg { width: 15px; height: 15px; color: var(--olive); }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 6px; }

@media (max-width: 960px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 16px var(--gutter) 26px;
    box-shadow: var(--shadow-md);
  }
  .nav.open .nav__links a { font-size: 18px; padding: 10px 0; width: 100%; }
}

/* ---------- footprint divider ---------- */
.foot-rule { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--sage); }
.foot-rule span { height: 1px; flex: 1; max-width: 120px; background: var(--line); }
.foot-rule svg { width: 22px; height: 22px; opacity: .8; }

/* ---------- cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--cream-deep); }
.card__icon { width: 46px; height: 46px; color: var(--olive); margin-bottom: 18px; }
.card h3 { font-size: 23px; margin-bottom: 9px; }
.card p { font-size: 15.5px; color: var(--muted); margin: 0; }

/* ---------- chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em;
  color: var(--olive); background: var(--paper-2);
  border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 15px;
}
.chip svg { width: 14px; height: 14px; }

/* dark section helper */
.dark { background: var(--forest); color: #D9D6C4; }
.dark h1, .dark h2, .dark h3 { color: #F4F1E4; }
.dark .eyebrow { color: var(--sage-soft); }
.dark .muted { color: #ADAB95; }

/* image slot defaults */
image-slot {
  --is-bg: var(--paper-2);
  background: var(--paper-2);
  border-radius: var(--r-md);
  overflow: hidden;
  display: block;
}

/* plain stock photos (guaranteed render) */
.photo { object-fit: cover; display: block; background: var(--paper-2); }
.hero__img-main.photo { border-radius: 24px; }
.hero__img-detail.photo { border-radius: 16px; }
.welkom__portrait.photo { border-radius: 22px; }
.welkom__room.photo { border-radius: 18px; }
.page-hero__media.photo { border-radius: 22px; }

/* tiny utils */
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.stack-sm > * + * { margin-top: 14px; }
.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
/* reveal: visible by default; JS arms below-the-fold elements with .pre */
.reveal { transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.pre { opacity: 0; transform: translateY(24px); }
.reveal.pre.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal.pre { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   PAGE SECTIONS
   ============================================================ */

.section__title { font-size: clamp(30px, 4.3vw, 50px); margin-top: 18px; }
.section--cream { background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 12%, var(--paper-2) 88%, var(--paper) 100%); }
.section__head { display: grid; grid-template-columns: 1fr .9fr; gap: 30px; align-items: end; margin-bottom: 52px; }
.section__head-lede { font-size: 17px; max-width: 46ch; }
.dark .section__head-lede { color: #ADAB95; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(48px, 7vw, 92px) clamp(56px, 8vw, 110px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 72px); align-items: center; position: relative; z-index: 2; }
.hero__title { font-size: clamp(44px, 7vw, 82px); line-height: 1.02; letter-spacing: -0.025em; margin: 22px 0 0; }
.hero__title em { font-style: italic; color: var(--olive); }
.hero__lede { margin-top: 24px; max-width: 50ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; align-items: center; gap: 18px; margin-top: 40px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.hero__trust strong { color: var(--ink); font-weight: 700; }
.hero__trust i { width: 5px; height: 5px; border-radius: 50%; background: var(--sage); display: inline-block; }
.hero__glow { position: absolute; top: -25%; right: -12%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; background: radial-gradient(circle, rgba(156,161,124,.26), transparent 62%); z-index: 1; pointer-events: none; }

.hero__media { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: auto auto; gap: 18px; align-items: stretch; }
.hero__img-main { grid-row: 1 / 3; width: 100%; aspect-ratio: 3/4; min-height: 380px; box-shadow: var(--shadow-lg); }
.hero__img-stack { display: flex; flex-direction: column; gap: 18px; justify-content: space-between; }
.hero__img-detail { width: 100%; aspect-ratio: 3/4; min-height: 180px; box-shadow: var(--shadow-md); }
.hero__badge { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px; display: flex; align-items: center; gap: 13px; box-shadow: var(--shadow-sm); }
.hero__badge svg { width: 34px; height: 34px; color: var(--olive); flex: none; }
.hero__badge strong { font-family: var(--serif); font-size: 21px; color: var(--ink); display: block; line-height: 1; }
.hero__badge span { font-size: 12.5px; color: var(--muted); }

/* ---------- TRUST STRIP ---------- */
.trust-strip { border-block: 1px solid var(--line); background: var(--paper); }
.trust-strip__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; padding-block: 24px; }

/* ---------- WELKOM ---------- */
.welkom__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.welkom__media { display: grid; grid-template-columns: 1fr; gap: 18px; position: relative; }
.welkom__portrait { width: 100%; aspect-ratio: 4/5; min-height: 320px; box-shadow: var(--shadow-md); }
.welkom__room { width: 86%; aspect-ratio: 16/10; box-shadow: var(--shadow-sm); margin-left: 14%; }
.welkom__points { margin-top: 30px; display: grid; gap: 13px; }
.welkom__point { display: flex; align-items: center; gap: 13px; font-weight: 600; color: var(--ink); }
.welkom__point svg { width: 20px; height: 20px; color: var(--clay); flex: none; padding: 4px; background: rgba(176,107,69,.1); border-radius: 50%; }

/* ---------- CARDS GRID ---------- */
.cards-grid { grid-template-columns: repeat(3, 1fr); }

/* ---------- SPECIALISATIES ---------- */
.spec__grid { grid-template-columns: repeat(3, 1fr); display: grid; gap: clamp(20px, 2.6vw, 36px); margin-bottom: 44px; }
.spec__card { border-top: 1.5px solid rgba(195,199,169,.32); padding-top: 26px; }
.spec__num { font-family: var(--serif); font-size: 15px; letter-spacing: .2em; color: var(--clay-soft); display: block; margin-bottom: 18px; }
.spec__card h3 { font-size: 26px; color: #F4F1E4; margin-bottom: 12px; }
.spec__card p { color: #B9B7A1; font-size: 15.5px; margin: 0; }
.spec__media { border-radius: var(--r-lg); overflow: hidden; height: clamp(280px, 34vw, 460px); box-shadow: var(--shadow-lg); }

/* ---------- WERKWIJZE ---------- */
.werkwijze__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(34px, 6vw, 84px); align-items: start; }
.werkwijze__intro { position: sticky; top: 110px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; counter-reset: s; }
.step { display: flex; gap: 22px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 26px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.step:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.step__n { font-family: var(--serif); font-size: 22px; color: var(--white); background: var(--olive); width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.step h4 { font-family: var(--serif); font-size: 22px; color: var(--ink); margin: 4px 0 6px; }
.step p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- WELLNESS ---------- */
.wellness__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.wellness__media { height: clamp(340px, 42vw, 540px); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.wellness__list { margin-top: 28px; display: grid; gap: 22px; }
.wellness__item { padding-left: 20px; border-left: 2px solid var(--cream-deep); }
.wellness__item h4 { font-family: var(--serif); font-size: 21px; color: var(--ink); margin: 0 0 5px; }
.wellness__item p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- QUALITY ---------- */
.quality { background: var(--paper); border-top: 1px solid var(--line); }
.quality__label { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
.quality__badges { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 14px; }
.qbadge {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 24px; min-width: 180px; text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.qbadge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cream-deep); }
.qbadge__name { font-family: var(--serif); font-size: 20px; color: var(--ink); line-height: 1.1; }
.qbadge__desc { font-size: 12.5px; color: var(--muted); letter-spacing: .01em; }

/* ---------- QUOTE ---------- */
.quote-sec { background: var(--paper-2); }
.quote { max-width: 880px; margin-inline: auto; text-align: center; }
.quote__mark { width: 50px; height: 50px; color: var(--sage); margin-bottom: 18px; }
.quote blockquote { font-family: var(--serif); font-size: clamp(24px, 3.4vw, 38px); line-height: 1.32; color: var(--ink); margin: 0; font-weight: 400; letter-spacing: -0.01em; }
.quote figcaption { margin-top: 26px; font-size: 14.5px; color: var(--muted); display: inline-flex; gap: 7px; }
.quote figcaption strong { color: var(--ink); }

/* ---------- INFO / CTA ---------- */
.info__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(20px, 3vw, 34px); }
.info__card { border-radius: var(--r-lg); padding: clamp(34px, 4vw, 54px); }
.info__card--dark { background: var(--forest); color: #D6D3C1; }
.info__card--dark h2 { color: #F4F1E4; font-size: clamp(28px, 3.6vw, 40px); margin: 16px 0 14px; }
.info__card--dark .eyebrow { color: var(--sage-soft); }
.info__note { display: flex; gap: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 18px 20px; margin: 26px 0 28px; }
.info__note svg { width: 22px; height: 22px; color: var(--clay-soft); flex: none; margin-top: 2px; }
.info__note p { font-size: 14.5px; margin: 0; color: #C9C7B2; }
.info__note strong { color: #F4F1E4; }
.info__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.info__details { display: grid; gap: 28px; align-content: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(30px, 4vw, 48px); }
.info__block h4 { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-bottom: 14px; }
.hours { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.hours li { display: flex; justify-content: space-between; font-size: 15px; padding-bottom: 9px; border-bottom: 1px solid var(--line); color: var(--body); }
.hours li:last-child { border-bottom: none; padding-bottom: 0; }
.hours li span:last-child { font-weight: 700; color: var(--ink); }
.hours--off span { color: var(--muted) !important; font-weight: 500 !important; }
.info__block address { font-style: normal; font-size: 15.5px; line-height: 1.8; color: var(--body); }
.info__block address a { color: var(--olive); font-weight: 600; }
.info__block address a:hover { text-decoration: underline; }

/* ---------- FOOTER ---------- */
.footer { background: var(--forest); color: #ADAB95; padding-block: clamp(48px, 6vw, 76px) 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand p { font-size: 14.5px; margin-top: 18px; max-width: 38ch; color: #9FA088; }
.footer__col h5 { font-family: var(--sans); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-soft); margin: 0 0 16px; }
.footer__col a, .footer__addr { display: block; font-size: 14.5px; color: #B6B7A1; margin-bottom: 11px; transition: color .25s; }
.footer__col a:hover { color: #F4F1E4; }
.footer__addr { color: #9FA088; }
.footer__bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 13px; color: #8C8D77; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid, .welkom__grid, .werkwijze__grid, .wellness__grid, .info__grid { grid-template-columns: 1fr; }
  .welkom__media { grid-template-columns: 1fr 1fr; }
  .welkom__room { margin-left: 0; }
  .section__head { grid-template-columns: 1fr; gap: 16px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .spec__grid { grid-template-columns: 1fr; gap: 26px; }
  .werkwijze__intro { position: static; }
  .wellness__grid { direction: ltr; }
  .hero__media { max-width: 540px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .welkom__media { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__brand { grid-column: 1 / -1; }
  .info__actions .btn, .hero__actions .btn { flex: 1; justify-content: center; }
  .hero__badge { display: none; }
  .hero__media { grid-template-columns: 1fr; }
  .hero__img-main { grid-row: auto; }
  .hero__img-stack { flex-direction: row; }
  .hero__img-detail { flex: 1; }
}

/* ---------- SFEER full-bleed band ---------- */
.bleed { position: relative; min-height: clamp(360px, 46vw, 560px); display: grid; place-items: center; overflow: hidden; isolation: isolate; }
.bleed__img { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; z-index: -2; }
.bleed__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(28,31,18,.62), rgba(28,31,18,.46) 50%, rgba(28,31,18,.66)); }
.bleed__inner { text-align: center; max-width: 880px; color: #F4F1E4; padding-block: clamp(60px, 9vw, 110px); }
.bleed__mark { width: 38px; height: 38px; color: var(--sage-soft); margin-bottom: 22px; }
.bleed__quote { font-family: var(--serif); font-weight: 300; font-size: clamp(26px, 4vw, 44px); line-height: 1.28; letter-spacing: -0.01em; color: #F7F4EA; margin: 0; text-wrap: balance; }
.bleed__by { display: inline-block; margin-top: 26px; font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sage-soft); }

/* ============================================================
   SUBPAGE: page hero
   ============================================================ */
.page-hero { background: linear-gradient(180deg, var(--paper-2), var(--paper)); border-bottom: 1px solid var(--line); padding-block: clamp(40px, 6vw, 76px); position: relative; overflow: hidden; }
.page-hero__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; position: relative; z-index: 2; }
.page-hero__title { font-size: clamp(40px, 6vw, 68px); line-height: 1.03; margin: 18px 0 0; letter-spacing: -0.025em; }
.page-hero__title em { font-style: italic; color: var(--olive); }
.page-hero__lede { margin-top: 22px; max-width: 48ch; }
.page-hero__media { width: 100%; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.breadcrumb { font-size: 13.5px; color: var(--muted); display: flex; gap: 9px; align-items: center; margin-bottom: 20px; }
.breadcrumb a { color: var(--olive); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }

/* ---------- treatment groups ---------- */
.tgroup { margin-top: clamp(48px, 6vw, 84px); }
.tgroup:first-of-type { margin-top: 0; }
.tgroup__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 30px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.tgroup__head h2 { font-size: clamp(26px, 3.2vw, 36px); }
.tgroup__count { font-family: var(--sans); font-size: 13px; font-weight: 700; color: var(--clay); letter-spacing: .04em; margin-left: auto; }
.tlist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.titem { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 28px; display: flex; gap: 20px; align-items: flex-start; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.titem:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--cream-deep); }
.titem__ic { width: 42px; height: 42px; flex: none; color: var(--olive); background: var(--paper-2); border-radius: 11px; padding: 9px; }
.titem h3 { font-size: 20px; margin-bottom: 7px; }
.titem p { font-size: 14.5px; color: var(--muted); margin: 0; }
.titem--wide { grid-column: 1 / -1; }
.titem--feat { background: var(--forest); border-color: var(--forest); }
.titem--feat h3 { color: #F4F1E4; }
.titem--feat p { color: #B9B7A1; }
.titem--feat .titem__ic { color: var(--sage-soft); background: rgba(255,255,255,.08); }

/* ---------- "wat houdt het in" detail ---------- */
.detail { background: var(--forest); border-radius: var(--r-lg); padding: clamp(34px, 5vw, 60px); margin-top: clamp(48px, 6vw, 80px); color: #D6D3C1; }
.detail__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.detail h2 { color: #F4F1E4; font-size: clamp(26px, 3.4vw, 38px); margin: 14px 0 14px; }
.detail .eyebrow { color: var(--sage-soft); }
.detail__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; }
.detail__list li { display: flex; gap: 11px; font-size: 14.5px; color: #C9C7B2; align-items: flex-start; }
.detail__list svg { width: 18px; height: 18px; color: var(--clay-soft); flex: none; margin-top: 2px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--paper-2); border-top: 1px solid var(--line); }
.cta-band__inner { text-align: center; max-width: 620px; margin-inline: auto; }
.cta-band h2 { font-size: clamp(30px, 4.2vw, 46px); margin: 16px 0 16px; }
.cta-band p { color: var(--muted); margin-bottom: 30px; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact page ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.contact__aside { display: grid; gap: 26px; }
.cblock { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 30px; }
.cblock h3 { font-size: 21px; margin-bottom: 16px; display: flex; align-items: center; gap: 11px; }
.cblock h3 svg { width: 20px; height: 20px; color: var(--olive); }
.cblock address { font-style: normal; line-height: 1.85; font-size: 15.5px; color: var(--body); }
.cblock a { color: var(--olive); font-weight: 600; }
.cblock a:hover { text-decoration: underline; }
.cnote { background: var(--forest); color: #C9C7B2; border-radius: var(--r-md); padding: 24px 28px; }
.cnote h3 { color: #F4F1E4; font-size: 19px; margin-bottom: 10px; }
.cnote p { font-size: 14.5px; margin: 0; }
.cnote strong { color: #F4F1E4; }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: .01em; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 10px;
  padding: 13px 15px; transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(89,95,57,.12); }
.field textarea { min-height: 130px; }
.form__submit { width: 100%; justify-content: center; margin-top: 4px; }
.form__hint { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.form__ok { display: none; text-align: center; padding: 30px 10px; }
.form__ok svg { width: 52px; height: 52px; color: var(--olive); margin-bottom: 14px; }
.form__ok h3 { font-size: 26px; margin-bottom: 8px; }
.form__ok p { color: var(--muted); margin: 0; }
.form.sent .form__body { display: none; }
.form.sent .form__ok { display: block; }
.map { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/7; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) saturate(.85); }

/* ---------- location card (self-contained, links to maps) ---------- */
.locmap {
  position: relative; display: block; overflow: hidden;
  border-radius: var(--r-lg); border: 1px solid var(--line);
  aspect-ratio: 21/8; min-height: 260px;
  background:
    radial-gradient(120% 140% at 70% 10%, #C7CBAE 0%, #AEB48F 45%, #939A72 100%);
  box-shadow: var(--shadow-md);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.locmap:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.locmap__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(120% 120% at 30% 50%, #000 40%, transparent 100%);
}
.locmap__roads { position: absolute; inset: 0; }
.locmap__roads::before, .locmap__roads::after {
  content: ""; position: absolute; background: rgba(251,249,242,.55);
}
.locmap__roads::before { left: 0; right: 0; top: 58%; height: 10px; transform: rotate(-7deg); }
.locmap__roads::after { top: 0; bottom: 0; left: 33%; width: 8px; transform: rotate(5deg); }
.locmap__pin {
  position: absolute; left: 33%; top: 58%; transform: translate(-50%,-100%);
  width: 52px; height: 52px; border-radius: 50% 50% 50% 0; rotate: -45deg;
  background: var(--clay); color: #FBF3EC; display: grid; place-items: center;
  box-shadow: 0 12px 24px -8px rgba(120,60,30,.6); border: 3px solid #FBF3EC;
}
.locmap__pin svg { width: 22px; height: 22px; rotate: 45deg; }
.locmap__card {
  position: absolute; right: clamp(20px,4vw,40px); bottom: clamp(20px,4vw,40px);
  background: var(--white); border-radius: var(--r-md); padding: 22px 26px;
  display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-md);
  max-width: 300px;
}
.locmap__addr { display: flex; flex-direction: column; font-size: 15px; color: var(--muted); line-height: 1.55; }
.locmap__addr strong { font-family: var(--serif); font-size: 21px; color: var(--ink); margin-bottom: 3px; font-weight: 500; white-space: nowrap; }
.locmap__btn { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: var(--olive); }
.locmap__btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.locmap:hover .locmap__btn svg { transform: translateX(4px); }

@media (max-width: 1000px) {
  .page-hero__inner, .detail__grid, .contact__grid { grid-template-columns: 1fr; }
  .page-hero__media { max-width: 460px; aspect-ratio: 16/10; }
  .tlist { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .detail__list, .form__row { grid-template-columns: 1fr; }
}
