/* =========================================================================
   Liu He Men — demo "zen" design  (kungfu.aiwake.nl)
   Plain CSS, mobile-first. Geen framework, geen build-step.
   Bouwsteen-volgorde: fonts → tokens → base → layout → componenten → secties
   ========================================================================= */

/* ---------- 1. Zelf-gehoste fonts (PT Serif, geen CDN) ---------- */
@font-face {
  font-family: "PT Serif";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ptserif-400.woff2") format("woff2");
}
@font-face {
  font-family: "PT Serif";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ptserif-italic-400.woff2") format("woff2");
}
@font-face {
  font-family: "PT Serif";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ptserif-700.woff2") format("woff2");
}

/* ---------- 2. Design tokens ---------- */
:root {
  /* kleuren */
  --bg:        #FAF8F4;   /* gebroken wit / crème basis */
  --bg-alt:    #F2EDE4;   /* iets diepere warme tint voor afwisseling */
  --surface:   #FFFDFA;   /* kaart / paneel */
  --ink:       #1A1A1A;   /* inkt-zwart tekst */
  --ink-soft:  #51504C;   /* zachte body-tekst */
  --ink-faint: #8A887F;   /* bijschriften / eyebrow */
  --jade:      #3E7A5E;   /* rustig jade-groen accent */
  --jade-deep: #2F5F49;   /* hover / donkerder */
  --jade-soft: #EAF1ED;   /* zachte jade vlak */
  --brons:     #B08D57;   /* spaarzaam warm brons/goud */
  --seal:      #C0392B;   /* rood zegel (logo) */
  --line:      rgba(26, 26, 26, .10);
  --line-soft: rgba(26, 26, 26, .06);

  /* typografie */
  --font-serif: "PT Serif", Georgia, "Times New Roman", serif;
  --font-sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* maatvoering */
  --maxw: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 12px;
  --radius-sm: 8px;

  /* schaduw — zacht */
  --shadow-sm: 0 1px 2px rgba(26,26,26,.04), 0 2px 8px rgba(26,26,26,.05);
  --shadow-md: 0 6px 18px rgba(26,26,26,.07), 0 14px 40px rgba(26,26,26,.06);

  /* beweging */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t-fast: .2s;
  --t-med: .4s;
}

/* ---------- 3. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--jade); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--jade-deep); }
:focus-visible { outline: 2px solid var(--jade); outline-offset: 3px; border-radius: 2px; }

/* ---------- 4. Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .6em;
  letter-spacing: .005em;
}
h1 { font-size: clamp(2.1rem, 1.5rem + 2.7vw, 3.4rem); letter-spacing: .01em; }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.4rem); }
p  { margin: 0 0 1.1em; color: var(--ink-soft); max-width: 68ch; }
strong { color: var(--ink); }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--jade);
  margin: 0 0 1rem;
  display: inline-block;
}
.eyebrow--brons { color: var(--brons); }

/* ---------- 5. Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem); }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }
.center { text-align: center; }

/* sierlijke scheidingslijn — zacht brons */
.rule {
  width: 56px; height: 2px; border: 0;
  background: var(--brons); opacity: .6; margin: 0 0 1.5rem;
}
.section__head--center .rule { margin-inline: auto; }

/* ---------- 6. Knoppen ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-sans); font-weight: 600; font-size: .98rem;
  line-height: 1; letter-spacing: .01em;
  padding: .95rem 1.6rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform var(--t-fast) var(--ease),
              background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--jade); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--jade-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--jade); color: var(--jade-deep); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(2px); }
.btn--light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }

/* ---------- 7. Header / navigatie ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 244, .88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__name { font-family: var(--font-serif); font-weight: 700; font-size: 1.28rem; letter-spacing: .02em; line-height: 1; }
.brand__tag { display: block; font-family: var(--font-sans); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-faint); margin-top: .25rem; font-weight: 600; }

/* primaire nav (desktop) */
.nav { display: flex; align-items: center; gap: .35rem; }
.nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-weight: 500; color: var(--ink); padding: .6rem .85rem; border-radius: 8px;
  font-size: .98rem; background: none; border: 0; cursor: pointer; font-family: inherit;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--jade-deep); background: var(--jade-soft); }
.nav__caret { width: .7em; height: .7em; transition: transform var(--t-fast) var(--ease); }

/* dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + .4rem); left: 0; min-width: 250px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: .5rem; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.dropdown.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover .nav__caret,
.dropdown.is-open + .nav__caret { transform: rotate(180deg); }
.dropdown a {
  display: block; padding: .7rem .85rem; border-radius: var(--radius-sm);
  color: var(--ink); font-size: .96rem; font-weight: 500;
}
.dropdown a:hover { background: var(--jade-soft); color: var(--jade-deep); }

.header-cta { margin-left: .4rem; }

/* hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--surface); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle__bars, .nav-toggle__bars::before, .nav-toggle__bars::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after  { position: absolute; top: 6px; }
body.nav-open .nav-toggle__bars { background: transparent; }
body.nav-open .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle__bars::after  { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 8. Hero ---------- */
.hero { position: relative; isolation: isolate; min-height: min(82vh, 760px); display: flex; align-items: center; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,28,24,.34) 0%, rgba(20,28,24,.30) 45%, rgba(20,28,24,.62) 100%),
    radial-gradient(120% 90% at 20% 30%, rgba(20,28,24,.30), transparent 60%);
}
.hero__inner { padding-block: clamp(3.5rem, 8vw, 6rem); max-width: 760px; }
.hero__title { color: #fff; margin-bottom: .5em; text-shadow: 0 1px 30px rgba(0,0,0,.25); }
.hero__sub { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); max-width: 48ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__eyebrow { color: rgba(255,255,255,.85); }

/* ---------- 9. Intro ---------- */
.intro__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.intro__media figcaption { margin-top: .8rem; font-size: .85rem; color: var(--ink-faint); text-align: center; }

/* ---------- 10. Disciplines ---------- */
.cards { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 3vw, 1.75rem); }
.card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--bg-alt); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .4rem; }
.card__body p { font-size: .96rem; margin-bottom: 1.1rem; }
.card__link {
  margin-top: auto; font-weight: 600; font-size: .92rem; color: var(--jade);
  display: inline-flex; align-items: center; gap: .4rem;
}
.card__link::after { content: "→"; transition: transform var(--t-fast) var(--ease); }
.card:hover .card__link::after { transform: translateX(4px); }

/* ---------- 11. Waarom (trust) ---------- */
.features { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 3vw, 2.25rem); }
.feature { display: flex; gap: 1rem; align-items: flex-start; }
.feature__icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: var(--jade-soft); color: var(--jade-deep);
  display: grid; place-items: center;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.12rem; margin-bottom: .25rem; }
.feature p { font-size: .94rem; margin: 0; }

/* ---------- 12. Praktisch ---------- */
.practical { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.info-card {
  background: var(--surface); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 1.15rem; margin-bottom: 1rem; }
.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: .55rem 0; border-bottom: 1px solid var(--line-soft); font-size: .96rem; }
.info-list li:last-child { border-bottom: 0; }
.info-list .day { color: var(--ink); font-weight: 600; }
.info-list .time { color: var(--ink-soft); text-align: right; }
.info-list .time--closed { color: var(--ink-faint); font-style: italic; }
.address-line { font-style: normal; color: var(--ink-soft); line-height: 1.9; }
.address-line strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: .35rem; }
.contact-links { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .5rem; }
.contact-links a { font-weight: 600; }

/* ---------- 13. Slot-CTA ---------- */
.cta-band { background: linear-gradient(135deg, var(--jade-deep), var(--jade)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); margin-inline: auto; }
.cta-band .rule { background: rgba(255,255,255,.6); margin-inline: auto; }

/* ---------- 14. Footer ---------- */
.site-footer { background: #16201B; color: rgba(255,255,255,.72); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; font-size: .94rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.25rem; }
.site-footer h4 { color: #fff; font-family: var(--font-sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin: 0 0 1rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.footer__brand .brand__name { color: #fff; }
.footer__brand p { color: rgba(255,255,255,.6); font-size: .9rem; max-width: 34ch; }
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.footer__socials { display: flex; gap: .75rem; margin-top: 1rem; }
.footer__socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: grid; place-items: center; }
.footer__socials a:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.footer__socials svg { width: 18px; height: 18px; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---------- 15. Reveal (fade-in on scroll) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------- 16. Responsive ---------- */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 860px) {
  .intro__grid { grid-template-columns: 1.1fr .9fr; }
  .intro__grid--reverse .intro__media { order: 2; }
  .practical { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 980px) {
  .cards { grid-template-columns: repeat(4, 1fr); }
  .features { grid-template-columns: repeat(4, 1fr); }
}

/* mobiel menu (< 980px toont hamburger) */
@media (max-width: 979px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; z-index: 90;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1rem var(--gutter) 1.5rem;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    max-height: calc(100vh - 76px); overflow-y: auto;
    transition: opacity var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), visibility var(--t-fast);
  }
  body.nav-open .nav { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .15rem; width: 100%; }
  .nav__link { width: 100%; justify-content: space-between; padding: .85rem .75rem; font-size: 1.05rem; }
  .has-dropdown { position: static; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; border-left: 2px solid var(--jade-soft); border-radius: 0;
    margin: .1rem 0 .4rem .75rem; padding: .1rem 0 .1rem .5rem; min-width: 0;
    display: none;
  }
  .dropdown.is-open { display: block; }
  .header-cta { margin: .75rem 0 0; width: 100%; justify-content: center; }
}

/* ---------- 17. Toegankelijkheid: respecteer reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================================
   18. SUBPAGINA-COMPONENTEN  (toegevoegd voor de detailpagina's;
       hergebruikt de bestaande tokens — design-systeem ongewijzigd)
   ========================================================================= */

/* skip-link (zelfde gedrag als op de homepage, nu als class) */
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; color: var(--ink); padding: .6rem 1rem; border-radius: 0 0 8px 0; z-index: 200; }
.skip-link:focus { left: 0; }

/* actieve link in de "Lessen"-dropdown */
.dropdown a[aria-current="page"] { color: var(--jade-deep); background: var(--jade-soft); font-weight: 600; }

/* compacte paginakop met beeld */
.page-hero { position: relative; isolation: isolate; display: flex; align-items: flex-end; min-height: clamp(280px, 42vh, 430px); }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,28,24,.34) 0%, rgba(20,28,24,.34) 40%, rgba(20,28,24,.68) 100%);
}
.page-hero__inner { padding-block: clamp(2.5rem, 6vw, 4rem); }
.page-hero h1 { color: #fff; margin-bottom: .25em; text-shadow: 0 1px 24px rgba(0,0,0,.25); }
.page-hero p { color: rgba(255,255,255,.92); max-width: 54ch; margin: 0; font-size: clamp(1.02rem, 1rem + .3vw, 1.2rem); }
.page-hero .eyebrow { color: rgba(255,255,255,.85); }

/* effen paginakop zonder beeld (jade-band) */
.page-hero--plain { display: block; min-height: 0; background: linear-gradient(135deg, var(--jade-deep), var(--jade)); }
.page-hero--plain::after { display: none; }
.page-hero--plain h1 { text-shadow: none; }

/* leesbare tekstkolom */
.prose { max-width: 70ch; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 2.2rem; }
.prose h3 { margin-top: 1.6rem; font-size: 1.15rem; }
.prose ul { margin: 0 0 1.2em; padding-left: 1.2em; color: var(--ink-soft); }
.prose li { margin-bottom: .45em; }

/* drie-koloms panelen (voordelen / kenmerken) */
.trio { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 3vw, 1.75rem); }
.panel { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm); }
.panel h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.panel p { font-size: .95rem; margin: 0; }
.panel__kicker { font-family: var(--font-sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brons); font-weight: 600; display: block; margin-bottom: .6rem; }

/* lesrooster-tabel (dag → lessen), stackt netjes op mobiel */
.schedule { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.schedule th, .schedule td { text-align: left; padding: .9rem 1.1rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.schedule thead th { background: var(--jade-soft); color: var(--jade-deep); font-family: var(--font-sans); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.schedule tbody tr:last-child td { border-bottom: 0; }
.schedule .day { font-weight: 700; color: var(--ink); white-space: nowrap; width: 9rem; }
.schedule .ses { display: flex; gap: .9rem; padding: .12rem 0; }
.schedule .ses .t { color: var(--jade-deep); font-weight: 600; font-variant-numeric: tabular-nums; min-width: 11rem; }
.schedule .ses .n { color: var(--ink-soft); }
.schedule .closed { color: var(--ink-faint); font-style: italic; }
@media (max-width: 620px) {
  .schedule, .schedule thead, .schedule tbody, .schedule tr, .schedule td { display: block; }
  .schedule thead { display: none; }
  .schedule tr { border-bottom: 1px solid var(--line); }
  .schedule tbody tr:last-child { border-bottom: 0; }
  .schedule td { border: 0; padding: .3rem 1.1rem; }
  .schedule .day { width: auto; padding-top: .9rem; }
  .schedule .ses { flex-direction: column; gap: 0; }
  .schedule .ses .t { min-width: 0; }
}

/* tarieven */
.pricing { display: grid; grid-template-columns: 1fr; gap: clamp(1.25rem, 3vw, 1.75rem); }
.price-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.price-card h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.price-card > .sub { color: var(--ink-faint); font-size: .9rem; margin: 0 0 1rem; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th { text-align: left; font-family: var(--font-sans); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); padding: .55rem 0; border-bottom: 1px solid var(--line-soft); font-weight: 600; }
.price-table td { padding: .55rem 0; border-bottom: 1px solid var(--line-soft); font-size: .95rem; color: var(--ink-soft); }
.price-table td:first-child { color: var(--ink); font-weight: 600; }
.price-table td:last-child, .price-table th:last-child { text-align: right; }
.price-table tr:last-child td { border-bottom: 0; }
.price-note { font-size: .9rem; color: var(--ink-faint); margin-top: 1.1rem; }

/* contact: layout + formulier + kaart */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.form { display: grid; gap: 1.1rem; }
.form__row { display: grid; gap: .4rem; }
.form label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.form .req { color: var(--seal); }
.form input, .form select, .form textarea {
  font: inherit; color: var(--ink); background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .8rem .9rem; width: 100%;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--jade); box-shadow: 0 0 0 3px var(--jade-soft); }
.form textarea { min-height: 140px; resize: vertical; }
.form__note { font-size: .85rem; color: var(--ink-faint); }
@media (min-width: 560px) { .form__grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; } }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); line-height: 0; margin-top: 1.5rem; }
.map-embed iframe { width: 100%; height: 360px; border: 0; display: block; }

@media (min-width: 760px) {
  .trio { grid-template-columns: repeat(3, 1fr); }
  .pricing { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1fr 1.05fr; }
}
