/* ==========================================================================
   Ustaza, huisstijl
   Warm, persoonlijk, verzorgd. De site is meteen het portfolio.
   ========================================================================== */

:root {
  /* Altijd lichte weergave, ook als de bezoeker donkere modus heeft ingesteld */
  color-scheme: light;

  /* Kleuren, warm met terracotta en roségoud als accent */
  --cream:        #fbf7f2;
  --cream-2:      #f4ece2;
  --ink:          #2b2320;
  --ink-soft:     #5c524c;
  --line:         #e7ddd0;
  --card:         #ffffff;

  --accent:       #b56a54;   /* terracotta */
  --accent-deep:  #97513e;
  --accent-soft:  #f0dcd3;
  --gold:         #c99a63;
  --plum:         #6d4c52;

  --ok:           #3f7d5a;

  /* Typografie */
  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maatvoering */
  --maxw: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(43,35,32,.04), 0 12px 30px -12px rgba(43,35,32,.18);
  --shadow-sm: 0 1px 2px rgba(43,35,32,.05), 0 6px 16px -10px rgba(43,35,32,.15);

  --bg: var(--cream);
  --fg: var(--ink);
}

/* Geen donker thema: de site toont altijd de lichte, zachte weergave. */

/* ---------- Basis ---------- */
* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--accent-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.1; color: var(--fg); letter-spacing: .2px; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 0 0 .4em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }

p { margin: 0 0 1em; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 .9em;
}

.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--ink-soft); }

/* Focus zichtbaar voor toetsenbord */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--accent); color: #fff; padding: .6em 1em;
  border-radius: 8px; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; color:#fff; }

/* ---------- Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: 1rem;
  padding: .85em 1.5em; border-radius: 999px;
  text-decoration: none; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-deep); color:#fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }
.btn-lg { font-size: 1.08rem; padding: 1em 1.9em; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px; gap: 20px;
}
.brand { display: inline-flex; align-items: baseline; gap: .5ch; text-decoration: none; color: var(--fg); }
.brand .mark { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; letter-spacing: .5px; }
.brand .mark b { color: var(--accent); font-weight: 600; }
.brand .tld { font-size: .82rem; color: var(--ink-soft); letter-spacing: .05em; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a:not(.btn) { color: var(--ink-soft); text-decoration: none; font-size: .98rem; font-weight: 500; }
.nav-links a:not(.btn):hover { color: var(--accent-deep); }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--fg); }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; inset: 100% 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--card); border-bottom: 1px solid var(--line);
    padding: 8px 0; box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links li:first-child { border-top: 0; }
  .nav-links a:not(.btn) { display: block; padding: 14px clamp(20px,5vw,40px); }
  .nav-links .btn { margin: 12px clamp(20px,5vw,40px); justify-content: center; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(56px, 9vw, 108px) 0 clamp(40px, 6vw, 72px); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 8%, var(--accent-soft) 0%, transparent 60%),
    radial-gradient(50% 50% at 10% 100%, color-mix(in srgb, var(--gold) 22%, transparent) 0%, transparent 55%);
  opacity: .8;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin: 0 0 .35em; }
.hero h1 .accent { color: var(--accent); font-style: italic; }
.hero .lead { max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.8em; }
.hero-note { margin-top: 1.4em; font-size: .92rem; color: var(--ink-soft); display: flex; align-items: center; gap: .5em; }

/* Hero photo */
.hero-visual { position: relative; }
.hero-photo {
  display: block; width: 100%; height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.hero-stack { position: relative; padding: 0 0 42px 46px; }
.hero-stack::before {
  content: ""; position: absolute; z-index: 0;
  top: -20px; right: -24px; bottom: 64px; left: 86px;
  border-radius: calc(var(--radius) + 10px);
  background: linear-gradient(160deg, var(--accent-soft), var(--cream-2));
}
.hero-portrait {
  position: relative; z-index: 1; display: block; width: 100%;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 16%;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-inset {
  position: absolute; z-index: 2; left: 0; bottom: 0; width: 62%;
  display: block; height: auto; border-radius: 12px;
  background: var(--card); padding: 6px;
  box-shadow: 0 24px 50px -14px rgba(43,35,32,.35);
}
.hero-chip {
  position: absolute; z-index: 3; top: 26px; right: -18px; margin: 0;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 16px;
  box-shadow: var(--shadow); font-size: .85rem; color: var(--ink-soft);
}
.hero-chip svg { color: var(--accent); flex: none; }
.hero-chip strong { color: var(--fg); font-weight: 600; }
@media (max-width: 900px) {
  .hero-stack { padding: 0 0 34px 34px; max-width: 470px; margin-inline: auto; }
  .hero-chip { right: 0; }
}
@media (max-width: 520px) {
  .hero-inset { width: 68%; }
  .hero-chip { font-size: .78rem; padding: 8px 13px; top: 14px; }
}

/* ---------- Trust strip ---------- */
.trust { border-block: 1px solid var(--line); background: var(--cream-2); }
.trust .wrap { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: center; padding-block: 22px; }
.trust span { font-size: .86rem; color: var(--ink-soft); font-weight: 500; display: inline-flex; align-items: center; gap: .5em; }
.trust svg { color: var(--accent); flex: none; }

/* ---------- Secties ---------- */
section { padding-block: clamp(56px, 8vw, 100px); }
.section-head { max-width: 42ch; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* Voorbeelden */
.examples-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.example-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s;
}
.example-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.example-thumb { aspect-ratio: 16 / 10; display: grid; place-content: center; text-align: center; color: #fff; position: relative; padding: 20px; }
.example-thumb .t-name { font-family: var(--serif); font-size: 1.8rem; line-height: 1.05; }
.example-thumb .t-sub { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; opacity: .9; margin-top: 6px; }
.thumb-a { background: linear-gradient(135deg, #b56a54, #7d3f30); }
.thumb-b { background: linear-gradient(135deg, #6d7f6a, #3f5240); }
.thumb-c { background: linear-gradient(135deg, #7a6d8c, #4a3f5c); }
.example-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.example-body h3 { margin: 0; }
.example-body p { margin: 0; color: var(--ink-soft); font-size: .96rem; }
.example-link { margin-top: auto; padding-top: 12px; color: var(--accent-deep); font-weight: 600; font-size: .94rem; display: inline-flex; align-items: center; gap: .4em; }
.example-card:hover .example-link { gap: .7em; }

/* Wat zit erin: feature grid */
.features { background: var(--cream-2); border-block: 1px solid var(--line); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.feature {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.feature .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-content: center; margin-bottom: 16px; }
.feature h3 { margin: 0 0 .4em; font-size: 1.18rem; }
.feature p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* Uitgelicht: CRKBO-klaar */
.crkbo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (max-width: 860px) { .crkbo { grid-template-columns: 1fr; } }
.crkbo-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.crkbo-list li { display: flex; gap: 14px; align-items: flex-start; }
.crkbo-list .check { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-content: center; margin-top: 2px; }
.crkbo-list strong { display: block; }
.crkbo-list span { color: var(--ink-soft); font-size: .95rem; }
.crkbo-panel {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow);
}
.crkbo-panel h3 { margin-top: 0; }
.doc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.doc-list li { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream); font-size: .95rem; font-weight: 500; }
.doc-list .tick { color: var(--ok); flex: none; }

/* Niet bij inbegrepen */
.not-included .wrap { max-width: 900px; }
.not-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-top: 8px; }
.not-item { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: .95rem; padding: 12px 16px; border: 1px dashed var(--line); border-radius: 10px; }
.not-item svg { color: var(--plum); flex: none; }

/* Hoe het werkt: stappen */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step .num { font-family: var(--serif); font-size: 2.6rem; color: var(--accent); line-height: 1; margin-bottom: 12px; }
.step h3 { margin: 0 0 .4em; }
.step p { margin: 0; color: var(--ink-soft); font-size: .97rem; }

/* Prijs */
.pricing { background: var(--cream-2); border-block: 1px solid var(--line); }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 900px; margin-inline: auto; }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; box-shadow: var(--shadow-sm); }
.price-card.feat { border-color: var(--accent); box-shadow: var(--shadow); position: relative; }
.price-card .tag { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.price-card .amount { font-family: var(--serif); font-size: 3rem; line-height: 1; margin: 12px 0 4px; }
.price-card .amount small { font-size: 1rem; color: var(--ink-soft); font-family: var(--sans); }
.price-card .per { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; }
.price-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.price-card li { display: flex; gap: 10px; font-size: .95rem; }
.price-card li svg { color: var(--ok); flex: none; margin-top: 3px; }
.price-note { text-align: center; color: var(--ink-soft); font-size: .9rem; margin-top: 22px; }

/* ---------- CTA / formulier ---------- */
.cta { position: relative; overflow: hidden; }
.cta::before {
  content:""; position:absolute; inset:0; z-index:-1;
  background: radial-gradient(70% 80% at 20% 0%, var(--accent-soft) 0, transparent 60%);
  opacity:.7;
}
.cta-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
@media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-copy h2 { margin-top: 0; }
.cta-copy .lead { max-width: 36ch; }
.cta-points { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.cta-points li { display: flex; gap: 12px; align-items: center; font-size: .98rem; }
.cta-points svg { color: var(--accent); flex: none; }

.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row.two { grid-template-columns: 1fr; } }
label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 7px; color: var(--fg); }
label .req { color: var(--accent); }
input, textarea, select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--fg);
  background: var(--cream); border: 1.5px solid var(--line); border-radius: 10px;
  padding: .75em .9em; transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { resize: vertical; min-height: 110px; }
.form-hint { font-size: .82rem; color: var(--ink-soft); margin-top: 16px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success {
  display: none; text-align: center; padding: 20px 0;
}
.form-success.show { display: block; }
.form-success .ok-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--accent-soft); color: var(--ok); display: grid; place-content: center; margin: 0 auto 16px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
details.faq { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
details.faq summary { cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .plus { flex: none; transition: transform .2s; color: var(--accent); }
details.faq[open] summary .plus { transform: rotate(45deg); }
details.faq .faq-body { padding: 0 24px 22px; color: var(--ink-soft); }
details.faq .faq-body p { margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream-2); border-top: 1px solid var(--line); padding-block: 48px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 26px; } }
.footer-grid h4 { font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-soft); margin: 0 0 14px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-grid a { color: var(--ink-soft); text-decoration: none; font-size: .95rem; }
.footer-grid a:hover { color: var(--accent-deep); }
.footer-brand .mark { font-family: var(--serif); font-size: 1.5rem; }
.footer-brand .mark b { color: var(--accent); }
.footer-brand p { color: var(--ink-soft); font-size: .95rem; max-width: 30ch; margin-top: 10px; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; color: var(--ink-soft); font-size: .85rem; }

/* Reveal on scroll (progressive enhancement) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   Losse pagina's (multi-page)
   ========================================================================== */

/* Actieve navigatie (knop uitgesloten, die houdt zijn eigen stijl) */
.nav-links a:not(.btn)[aria-current="page"] { color: var(--accent-deep); }
.nav-links a:not(.btn)[aria-current="page"]::after {
  content: ""; display: block; height: 2px; background: var(--accent);
  border-radius: 2px; margin-top: 3px;
}
@media (max-width: 820px) {
  .nav-links a:not(.btn)[aria-current="page"]::after { display: none; }
  .nav-links a:not(.btn)[aria-current="page"] { background: var(--cream-2); }
}

/* Subpagina-hero */
.page-hero { padding: clamp(48px, 7vw, 84px) 0 clamp(28px, 4vw, 44px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(55% 60% at 88% 0%, var(--accent-soft) 0%, transparent 62%);
  opacity: .7;
}
.page-hero .wrap { max-width: 820px; }
.page-hero h1 { margin: 0 0 .3em; }
.page-hero .lead { max-width: 56ch; }
.breadcrumb { font-size: .82rem; color: var(--ink-soft); margin-bottom: 16px; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb span { margin: 0 6px; opacity: .6; }

/* Prose (tekstpagina's) */
.prose { max-width: 720px; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; font-size: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.2em; }
.prose li { margin-bottom: .5em; }
.prose li::marker { color: var(--accent); }

/* Auditblokken */
.audit-blocks { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.audit-block {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
}
@media (max-width: 620px) { .audit-block { grid-template-columns: auto 1fr; } }
.audit-block .n { font-family: var(--serif); font-size: 1.5rem; color: var(--accent); line-height: 1; width: 1.4em; }
.audit-block h3 { margin: 0 0 4px; font-size: 1.1rem; }
.audit-block p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.audit-tag { font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; white-space: nowrap; align-self: center; }
@media (max-width: 620px) { .audit-tag { grid-column: 2; justify-self: start; margin-top: 4px; } }
.audit-tag.full { background: var(--accent-soft); color: var(--accent-deep); }
.audit-tag.part { background: #f3ecdd; color: #8a6b2f; }
.audit-tag.partner { background: #eef0ee; color: #5c6b5c; }

/* Uitgelicht kader (bijv. de twee cruciale punten) */
.callout {
  border-left: 4px solid var(--accent); background: var(--cream-2);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 22px 26px; margin: 0;
}
.callout h3 { margin: 0 0 .3em; }
.callout p { margin: 0; color: var(--ink-soft); }
.callout + .callout { margin-top: 16px; }

/* Pakketten */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.pkg { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.pkg.feat { border-color: var(--accent); box-shadow: var(--shadow); position: relative; }
.pkg .ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.pkg .name { font-family: var(--serif); font-size: 1.5rem; }
.pkg .amount { font-family: var(--serif); font-size: 2.6rem; line-height: 1; margin: 10px 0 2px; }
.pkg .amount small { font-size: .95rem; color: var(--ink-soft); font-family: var(--sans); }
.pkg .sub { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; }
.pkg ul { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.pkg li { display: flex; gap: 10px; font-size: .94rem; }
.pkg li svg { flex: none; margin-top: 3px; }
.pkg li.yes svg { color: var(--ok); }
.pkg li.no { color: var(--ink-soft); }
.pkg li.no svg { color: var(--line); }
.pkg .btn { margin-top: auto; width: 100%; justify-content: center; }

/* Vergelijkingstabel */
.compare-wrap { overflow-x: auto; margin-top: 12px; }
.compare { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .95rem; }
.compare th, .compare td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); }
.compare tbody th { font-weight: 500; }
.compare td { text-align: center; }
.compare td:first-child, .compare th:first-child { text-align: left; }
.compare .c-yes { color: var(--ok); font-weight: 700; }
.compare .c-no { color: var(--ink-soft); }

/* Over-pagina */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-portrait {
  aspect-ratio: 4/5; border-radius: var(--radius); box-shadow: var(--shadow);
  background: linear-gradient(150deg, var(--accent-soft), var(--cream-2));
  display: grid; place-content: center; color: var(--accent-deep);
  font-family: var(--serif); font-size: 4rem; position: sticky; top: 90px;
}
@media (max-width: 820px) { .about-portrait { position: static; max-width: 280px; } }
.signature { font-family: var(--serif); font-style: italic; font-size: 1.6rem; color: var(--accent-deep); margin-top: 8px; }

/* Split CTA-band onderaan pagina's */
.cta-band { background: var(--cream-2); border-block: 1px solid var(--line); text-align: center; }
.cta-band .wrap { max-width: 640px; }
.cta-band h2 { margin-bottom: .3em; }
.cta-band p { color: var(--ink-soft); }
.cta-band .btn { margin-top: 10px; }

/* Kleine kaart-links (bijv. op home naar subpagina's) */
.link-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.link-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 24px; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.link-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.link-card .ico { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-deep); display: grid; place-content: center; margin-bottom: 14px; }
.link-card h3 { margin: 0 0 .3em; font-size: 1.15rem; }
.link-card p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.link-card .more { margin-top: auto; padding-top: 12px; color: var(--accent-deep); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: .4em; }
.link-card:hover .more { gap: .7em; }


/* Optie: salonsite erbij */
.addon-card {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(26px, 4vw, 48px); align-items: center;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 860px) { .addon-card { grid-template-columns: 1fr; } }
.addon-body h2 { margin: 0 0 .5em; }
.addon-body > p.intro { color: var(--ink-soft); margin: 0; }
.addon-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 12px; margin: 20px 0 18px; }
.addon-price .amount { font-family: var(--serif); font-size: 2.6rem; line-height: 1; }
.addon-price .unit { color: var(--ink-soft); font-size: .92rem; }
.addon-price .was { color: var(--ink-soft); font-size: .92rem; width: 100%; }
.addon-list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.addon-list li { display: flex; gap: 10px; font-size: .95rem; }
.addon-list svg { color: var(--ok); flex: none; margin-top: 3px; }
.addon-note { font-size: .9rem; color: var(--ink-soft); margin: 0 0 14px; }
.addon-visual { position: relative; }
.addon-photo { display: block; width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 860px) { .addon-visual { order: -1; } }

/* Footer-link Overmorrow */
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--accent-deep); }
