/* Naomi's Holistic Care — huisstijl
   bruin #3F2819 · zand #C9A46C · salie #7A9A7E · licht #F5EFE6
   Cormorant Garamond (koppen) + Lato (tekst) */
:root {
  --brown: #3F2819; --brown-2: #5A3B27; --sand: #C9A46C; --sand-2: #E5CEAE;
  --sage: #7A9A7E; --sage-2: #A9BFAB; --light: #F5EFE6; --cream: #FBF8F2; --ink: #2A1A10;
  --font-d: "Cormorant Garamond", Georgia, serif; --font-b: "Lato", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px; --gutter: clamp(1.25rem, 4vw, 2.5rem); --radius: 4px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
body { margin: 0; font: 300 1.0625rem/1.65 var(--font-b); color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brown); text-decoration: underline; text-decoration-color: var(--sand); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--brown); }
:focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; }
h1, h2, h3 { font-family: var(--font-d); font-weight: 500; line-height: 1.08; color: var(--brown); margin: 0 0 .5em; letter-spacing: -.005em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 72ch; }
.muted { color: #6E5A4B; }
.small { font-size: .9rem; }
.lede { font-family: var(--font-d); font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.4; color: var(--brown-2); max-width: 60ch; }
.skip { position: absolute; left: -999px; } .skip:focus { left: 1rem; top: 1rem; background: var(--brown); color: #fff; padding: .5rem 1rem; z-index: 99; }
ul.plain { list-style: none; margin: 0; padding: 0; } ul.plain li { margin: .2em 0; }
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
section.alt { background: var(--light); }
.section-title { margin-bottom: .4em; }
.section-intro { max-width: 62ch; color: var(--brown-2); font-size: 1.1rem; margin-bottom: 2.5rem; }

/* Buttons */
.btn { display: inline-block; font: 400 .95rem/1 var(--font-b); letter-spacing: .02em; padding: .95rem 1.6rem; border-radius: var(--radius); text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.btn-sand { background: var(--sand); color: var(--brown); border-color: var(--sand); }
.btn-sand:hover { background: var(--brown); color: var(--sand-2); border-color: var(--brown); }
.btn-outline { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--light); }
.btn-ghost { background: transparent; color: var(--sand-2); border-color: var(--sand); }
.btn-ghost:hover { background: var(--sand); color: var(--brown); }
.btn-small { padding: .55rem 1rem; font-size: .85rem; background: var(--light); color: var(--brown); border-color: var(--sand-2); }
.btn-small:hover { background: var(--sand); }
.link-arrowless { font-weight: 400; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,248,242,.94); backdrop-filter: blur(8px); border-bottom: 1px solid #E8DDCC; }
.header-row { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 1rem; }
.brand img { height: 46px; width: auto; } .brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; font-family: var(--font-d); font-size: 1.45rem; color: var(--brown); }
.brand em { font-style: italic; font-weight: 400; }
.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a:not(.btn) { text-decoration: none; font-size: .95rem; font-weight: 400; padding: .25rem 0; border-bottom: 1px solid transparent; }
.nav a[aria-current="page"], .nav a:not(.btn):hover { border-bottom-color: var(--sand); }
.nav .btn { padding: .7rem 1.2rem; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; height: 2px; background: var(--brown); margin: 6px 0; transition: transform .2s; }
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 76px; background: var(--cream); border-bottom: 1px solid #E8DDCC; flex-direction: column; align-items: stretch; padding: 1rem var(--gutter) 1.5rem; gap: .2rem; }
  .nav.open { display: flex; }
  .nav a:not(.btn) { padding: .75rem 0; border-bottom: 1px solid #EFE6D8; font-size: 1.05rem; }
  .nav .btn { margin-top: 1rem; text-align: center; }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
}

/* Hero */
.hero { background: var(--brown); color: var(--light); padding: 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; min-height: min(78vh, 720px); align-items: stretch; }
.hero-text { padding: clamp(3rem, 8vw, 6rem) var(--gutter) clamp(3rem, 8vw, 6rem) 0; align-self: center; }
.hero-kicker { color: var(--sand); font-size: .9rem; letter-spacing: .04em; margin-bottom: 1.8rem; }
.hero h1 { color: var(--light); font-size: clamp(3rem, 7vw, 5.6rem); font-weight: 400; margin-bottom: .35em; }
.hero .lede { color: var(--sand-2); font-family: var(--font-b); font-weight: 300; font-size: 1.1rem; line-height: 1.6; max-width: 48ch; }
.hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; margin-top: 2.2rem; }
.hero-actions a:not(.btn) { color: var(--sand-2); text-decoration-color: var(--sand); }
.hero-figure { margin: 0; position: relative; }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--brown) 0%, rgba(63,40,25,0) 22%); pointer-events: none; }
.hero-figure img { object-position: center top; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-text { padding: 3rem var(--gutter) 2.5rem; order: 2; }
  .hero-figure { order: 1; max-height: 46vh; } .hero-figure::after { background: linear-gradient(0deg, var(--brown) 0%, rgba(63,40,25,0) 40%); }
  .hero .lede { font-size: 1.05rem; }
}

/* Vier werelden */
.worlds-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--sage-2); }
.world { display: flex; flex-direction: column; padding: 2rem 1.5rem 2rem 0; border-right: 1px solid var(--sage-2); margin-right: 1.5rem; text-decoration: none; min-height: 260px; transition: padding-left .25s; }
.world:last-child { border-right: 0; margin-right: 0; }
.world h3 { font-size: 1.6rem; margin-bottom: .6em; }
.world p { color: var(--brown-2); flex: 1; }
.world-count { font-size: .85rem; color: var(--sage); }
.world:hover { padding-left: .5rem; } .world:hover h3 { color: var(--sage); }
@media (max-width: 960px) { .worlds-grid { grid-template-columns: 1fr 1fr; } .world:nth-child(2n) { border-right: 0; } .world { min-height: 0; } }
@media (max-width: 560px) { .worlds-grid { grid-template-columns: 1fr; } .world { border-right: 0; border-bottom: 1px solid var(--sage-2); margin-right: 0; } }

/* Methode */
.method { background: var(--light); }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.steps { counter-reset: s; list-style: none; margin: 0; padding: 0; }
.steps li { counter-increment: s; display: grid; grid-template-columns: 2.4rem 1fr; gap: 1rem; align-items: start; padding: 1rem 0; border-bottom: 1px solid var(--sand-2); }
.steps li > div { color: var(--brown-2); }
.steps li::before { content: counter(s); font-family: var(--font-d); font-size: 1.8rem; color: var(--sand); line-height: 1; }
.steps strong { display: block; font-weight: 700; font-size: .95rem; margin-bottom: .1rem; }
@media (max-width: 760px) { .method-grid { grid-template-columns: 1fr; } }

/* Over teaser / about */
.about-teaser-grid, .about-grid { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-grid { align-items: start; }
.about-teaser-grid figure, .about-grid figure { margin: 0; }
.about-teaser-grid img, .about-grid img { border-radius: var(--radius); }
@media (max-width: 760px) { .about-teaser-grid, .about-grid { grid-template-columns: 1fr; } .about-teaser-grid figure { max-width: 420px; } }
.prose h2 { font-size: 1.7rem; margin-top: 2.2rem; }
.checks li { padding-left: 1.4rem; position: relative; }
.checks li::before { content: ""; position: absolute; left: 0; top: .7em; width: .6rem; height: .6rem; border-radius: 50%; background: var(--sage); }
.pyramid { list-style: none; margin: 0; padding: 0; }
.pyramid li { padding: .75rem 1rem; background: var(--light); border-left: 3px solid var(--sand); margin-bottom: .4rem; }
.pyramid li:nth-child(1) { margin-right: 0; } .pyramid li:nth-child(2) { margin-right: 8%; } .pyramid li:nth-child(3) { margin-right: 16%; } .pyramid li:nth-child(4) { margin-right: 24%; }

/* Reviews */
.reviews { background: var(--brown); color: var(--light); }
.reviews .section-title { color: var(--sand-2); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.reviews blockquote { margin: 0; padding-top: 1.2rem; border-top: 1px solid var(--sand); }
.reviews blockquote p { font-family: var(--font-d); font-size: 1.35rem; line-height: 1.35; color: var(--light); }
.reviews cite { font-style: normal; font-size: .85rem; color: var(--sand); }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
details { border-bottom: 1px solid var(--sand-2); padding: .9rem 0; }
summary { cursor: pointer; font-weight: 400; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; gap: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--sand); font-family: var(--font-d); font-size: 1.5rem; line-height: 1; }
details[open] summary::after { content: "–"; }
details p { margin: .75rem 0 0; color: var(--brown-2); max-width: 60ch; }
@media (max-width: 760px) { .faq-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* CTA band */
.cta-band { background: var(--sage); color: var(--light); padding: 2.5rem 0; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cta-row p { margin: 0; font-family: var(--font-d); font-size: 1.45rem; }
.cta-row p a { color: var(--light); margin-right: 1rem; }
.cta-row .btn-sand { border-color: var(--sand); }
.cta-row .btn-ghost { color: var(--light); border-color: var(--light); margin-left: .6rem; }
.cta-row .btn-ghost:hover { background: var(--light); color: var(--brown); }

/* Page head */
.page-head { background: var(--light); padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid #E8DDCC; }
.crumbs { font-size: .9rem; color: var(--sage); margin-bottom: 1rem; } .crumbs a { color: var(--sage); }

/* Behandelingen */
.cat-block { padding: clamp(2.5rem, 5vw, 4rem) 0; border-bottom: 1px solid #E8DDCC; }
.cat-grid { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(2rem, 5vw, 5rem); }
.cat-side h2 { font-size: 2rem; }
.cat-side p { color: var(--brown-2); }
.treatment-list { list-style: none; margin: 0; padding: 0; }
.treatment-list li { display: grid; grid-template-columns: 1fr auto auto auto; gap: 1.5rem; align-items: center; padding: 1.4rem 0; border-bottom: 1px solid var(--sand-2); }
.treatment-list.compact li { padding: .8rem 0; grid-template-columns: 1fr auto auto; }
.treatment-list h3 { font-size: 1.5rem; margin-bottom: .25em; }
.treatment-list .t-main p { margin: 0; color: var(--brown-2); max-width: 58ch; }
.treatment-list .note { font-size: .85rem; color: var(--sage); margin-top: .3rem; }
.t-dur { font-size: .9rem; color: #6E5A4B; white-space: nowrap; }
.t-price { font-family: var(--font-d); font-size: 1.35rem; color: var(--brown); white-space: nowrap; min-width: 6.5rem; text-align: right; }
.tag { display: inline-block; font: 400 .7rem/1 var(--font-b); letter-spacing: .03em; color: var(--sage); border: 1px solid var(--sage-2); padding: .3rem .5rem; border-radius: 99px; vertical-align: middle; margin-left: .4rem; }
@media (max-width: 860px) {
  .cat-grid { grid-template-columns: 1fr; }
  .treatment-list li { grid-template-columns: 1fr auto; grid-template-areas: "main price" "dur btn"; }
  .treatment-list .t-main { grid-area: main; } .treatment-list .t-price { grid-area: price; } .treatment-list .t-dur { grid-area: dur; } .treatment-list .btn { grid-area: btn; justify-self: end; }
  .treatment-list.compact li { grid-template-columns: 1fr auto; grid-template-areas: "name price" "dur dur"; }
  .treatment-list.compact .t-name { grid-area: name; } .treatment-list.compact .t-dur { grid-area: dur; }
}

/* Memberships */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 1.5rem; }
.tier { padding: 2rem 1.75rem; border: 1px solid var(--sand-2); border-radius: var(--radius); background: #fff; display: flex; flex-direction: column; }
.tier-featured { background: var(--brown); color: var(--light); border-color: var(--brown); }
.tier-featured h2, .tier-featured .tier-price { color: var(--sand-2); }
.tier h2 { font-size: 1.7rem; }
.tier-price { font-family: var(--font-d); font-size: 2.4rem; color: var(--brown); margin-bottom: 1rem; } .tier-price span { font-size: 1rem; font-family: var(--font-b); }
.tier ul { padding-left: 1.1rem; margin: 0 0 1.5rem; flex: 1; } .tier li { margin: .35rem 0; }
.tier-featured .btn-sand:hover { background: var(--light); color: var(--brown); }
.traject-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; }
.traject-grid h3 { font-size: 1.4rem; } .traject-grid p { color: var(--brown-2); margin: 0; }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } .traject-grid { grid-template-columns: 1fr; } }

/* Media */
.media-list article { padding: 1.5rem 0; border-bottom: 1px solid var(--sand-2); } .media-list h2 { font-size: 1.6rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(2rem, 6vw, 5rem); }
.contact-info h2 { font-size: 1.5rem; margin-top: 1.5rem; } .contact-info h2:first-child { margin-top: 0; }
address { font-style: normal; }
.hours { display: grid; grid-template-columns: auto 1fr; gap: .3rem 1.5rem; margin: 0; } .hours dt { font-weight: 400; } .hours dd { margin: 0; color: var(--brown-2); }
.book-box { margin-top: 2rem; padding: 1.5rem; background: var(--light); border-left: 3px solid var(--sand); }
.book-box h2 { margin-top: 0; }
.contact-form { background: #fff; border: 1px solid var(--sand-2); padding: 2rem; border-radius: var(--radius); }
.contact-form h2 { font-size: 1.6rem; }
.contact-form label { display: block; font-size: .9rem; margin-bottom: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea { display: block; width: 100%; margin-top: .35rem; padding: .75rem .9rem; font: inherit; border: 1px solid #D9CBB6; border-radius: var(--radius); background: var(--cream); color: var(--ink); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid var(--sage); border-color: var(--sage); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp { position: absolute; left: -9999px; }
.alert { padding: 1rem 1.2rem; border-radius: var(--radius); margin-bottom: 1.2rem; }
.alert.ok { background: #E6EEE7; color: #2F4B33; } .alert.err { background: #F3E4DC; color: #6B2E1E; } .alert ul { margin: 0; padding-left: 1.2rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } .two { grid-template-columns: 1fr; } }

/* Footer */
.site-footer { background: var(--brown); color: var(--sand-2); padding: 4rem 0 2rem; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-motto { font-family: var(--font-d); font-size: 1.9rem; color: var(--light); line-height: 1.15; margin-bottom: .6rem; }
.site-footer h3 { color: var(--sand); font-size: 1.15rem; margin-bottom: .6rem; }
.site-footer a { color: var(--sand-2); text-decoration-color: rgba(201,164,108,.5); }
.site-footer .muted { color: #C9B49B; }
.site-footer .small { font-size: .85rem; color: #C9B49B; }
.footer-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(201,164,108,.3); font-size: .85rem; color: #C9B49B; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Ronde 2 --- */
.hero-figure figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem var(--gutter) 1.5rem 2.5rem; display: flex; flex-direction: column; gap: .3rem; font-size: .9rem; color: var(--light); background: linear-gradient(0deg, rgba(63,40,25,.85), rgba(63,40,25,0)); z-index: 1; }
.hero-figure figcaption span::before { content: ""; display: inline-block; width: .45rem; height: .45rem; border-radius: 50%; background: var(--sand); margin-right: .6rem; vertical-align: middle; }
@media (max-width: 860px) { .hero-figure figcaption { display: none; } }
.trust { padding: 0; background: var(--light); border-bottom: 1px solid #E8DDCC; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 2rem; padding-top: 1rem; padding-bottom: 1rem; font-size: .85rem; color: var(--brown-2); }
.trust-row span::before { content: "✓"; color: var(--sage); margin-right: .45rem; }
@media (max-width: 760px) { .trust-row { justify-content: flex-start; font-size: .8rem; } }
.tag-sand { color: var(--brown); border-color: var(--sand); background: var(--sand-2); }
.book-actions { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.book-actions .btn { padding: .75rem 1.2rem; }
.map { padding: 0; line-height: 0; }
.map iframe { width: 100%; height: 380px; border: 0; filter: saturate(.6) sepia(.15); }
.mobile-cta { display: none; }
@media (max-width: 860px) {
  .mobile-cta { display: grid; grid-template-columns: 1.4fr 1fr; gap: .5rem; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: .6rem var(--gutter); background: rgba(251,248,242,.96); border-top: 1px solid #E8DDCC; backdrop-filter: blur(8px); }
  .mobile-cta .btn { text-align: center; padding: .8rem 1rem; }
  body { padding-bottom: 4.2rem; }
}
select optgroup { font-style: normal; font-weight: 700; color: var(--brown); }

/* --- Ronde 3 --- */
fieldset.choice { border: 0; padding: 0; margin: 0 0 1rem; }
fieldset.choice legend { font-size: .9rem; margin-bottom: .4rem; padding: 0; }
fieldset.choice label { display: inline-flex; align-items: center; gap: .4rem; margin: 0 1.2rem .4rem 0; font-size: .95rem; cursor: pointer; }
fieldset.choice input { width: auto; margin: 0; accent-color: var(--sage); }
@media print { .site-header, .site-footer, .cta-band, .mobile-cta, .map, .btn { display: none !important; } body { background: #fff; color: #000; } section { padding: 1rem 0; } }

/* --- Boeken --- */
.bsteps { list-style: none; display: flex; gap: 2rem; padding: 0; margin: .5rem 0 0; font-size: .9rem; color: #8A7460; counter-reset: b; }
.bsteps li { counter-increment: b; } .bsteps li::before { content: counter(b) " "; font-family: var(--font-d); font-size: 1.3rem; color: var(--sand-2); margin-right: .2rem; }
.bsteps li.on { color: var(--brown); font-weight: 400; } .bsteps li.on::before, .bsteps li.done::before { color: var(--sage); }
.bcat { font-size: 1.5rem; margin-top: 2rem; }
.pick .t-name a { text-decoration: none; font-weight: 400; } .pick li:hover { background: var(--light); }
.bsummary { padding: 1rem 1.2rem; background: var(--light); border-left: 3px solid var(--sand); margin-bottom: 2rem; } .bsummary a { margin-left: .5rem; font-size: .9rem; }
.bgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; } .bgrid h2 { font-size: 1.5rem; }
.days { display: flex; flex-wrap: wrap; gap: .5rem; } .days .month { width: 100%; margin: .8rem 0 .2rem; font-size: .85rem; color: var(--sage); }
.day { display: flex; flex-direction: column; align-items: center; width: 3.4rem; padding: .45rem 0; border: 1px solid var(--sand-2); border-radius: var(--radius); text-decoration: none; font-family: var(--font-d); font-size: 1.3rem; line-height: 1; }
.day small { font-family: var(--font-b); font-size: .7rem; color: #8A7460; margin-bottom: .2rem; } .day.on, .day:hover { background: var(--brown); color: var(--light); border-color: var(--brown); } .day.on small { color: var(--sand-2); }
.times { display: flex; flex-wrap: wrap; gap: .5rem; } .time { padding: .6rem 1rem; border: 1px solid var(--sand-2); border-radius: var(--radius); text-decoration: none; } .time:hover { background: var(--sand); }
label.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; margin: 1rem 0 1.5rem; } label.check input { width: auto; margin-top: .3rem; }
@media (max-width: 760px) { .bgrid { grid-template-columns: 1fr; gap: 1.5rem; } .bsteps { gap: 1rem; } }

.footer-logo { margin-bottom: 1rem; opacity: .9; }

/* --- Cadeaukaart, login, tagline --- */
.hero-tagline { font-family: var(--font-d); font-style: italic; font-size: 1.35rem; color: var(--sand); margin: -.2rem 0 1.4rem; }
.nav-login { font-size: .9rem !important; color: var(--sage); }
.gift-grid { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.gift-card { margin-bottom: 1.5rem; }
.amounts { display: flex; flex-wrap: wrap; gap: .5rem; } .amounts legend { width: 100%; }
.amt { border: 1px solid var(--sand-2); border-radius: var(--radius); padding: .55rem .9rem; margin: 0 !important; }
.amt:has(input:checked) { background: var(--brown); color: var(--light); border-color: var(--brown); }
.amt input { position: absolute; opacity: 0; }
@media (max-width: 860px) { .gift-grid { grid-template-columns: 1fr; } }

/* --- Dropdown menu --- */
.menu { position: relative; }
.menu-btn { background: none; border: 0; font: inherit; font-size: .95rem; font-weight: 400; color: var(--brown); cursor: pointer; padding: .25rem 0; border-bottom: 1px solid transparent; display: inline-flex; align-items: center; gap: .35rem; }
.menu.active > .menu-btn, .menu-btn:hover { border-bottom-color: var(--sand); }
.chev { width: .45rem; height: .45rem; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform .2s; }
.menu.open .chev { transform: translateY(1px) rotate(225deg); }
.menu-panel { position: absolute; top: 100%; left: -1.5rem; display: none; margin-top: 1rem; grid-template-columns: 220px 1fr; gap: 1.5rem; min-width: 560px; padding: 1.5rem; background: var(--cream); border: 1px solid #E8DDCC; border-radius: 6px; box-shadow: 0 18px 40px rgba(63,40,25,.14); z-index: 60; }
.menu-panel-small { grid-template-columns: 1fr; min-width: 240px; }
@media (min-width: 861px) { .menu::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 1.2rem; } .menu:hover .menu-panel, .menu.hover .menu-panel { display: grid; } .menu:hover .chev, .menu.hover .chev { transform: translateY(1px) rotate(225deg); } }
.menu.open .menu-panel { display: grid; }
.menu-intro { padding-right: 1.5rem; border-right: 1px solid var(--sand-2); display: flex; flex-direction: column; }
.menu-title { font-family: var(--font-d); font-size: 1.5rem; color: var(--brown); margin-bottom: .2rem; }
.menu-intro p:not(.menu-title) { font-size: .9rem; color: #8A7460; flex: 1; }
.menu-intro .btn { align-self: flex-start; padding: .7rem 1.2rem; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { border-bottom: 1px solid #EFE6D8; } .menu-list li:last-child { border-bottom: 0; }
.nav .menu-list a { display: flex; justify-content: space-between; align-items: center; padding: .7rem 0 !important; border-bottom: 0 !important; font-size: 1rem; white-space: nowrap; }
.nav .menu-list a::after { content: ""; width: .5rem; height: .5rem; border-right: 1.5px solid var(--sand); border-top: 1.5px solid var(--sand); transform: rotate(45deg); margin-left: 1.5rem; opacity: 0; transition: opacity .15s, transform .15s; }
.nav .menu-list a:hover::after, .nav .menu-list a[aria-current]::after { opacity: 1; transform: rotate(45deg) translate(2px, -2px); }
.nav .menu-list a[aria-current] { color: var(--sage); }
@media (max-width: 860px) {
  .menu { width: 100%; }
  .menu-btn { width: 100%; justify-content: space-between; padding: .75rem 0; border-bottom: 1px solid #EFE6D8; font-size: 1.05rem; }
  .menu-panel { position: static; display: none; grid-template-columns: 1fr; min-width: 0; padding: .25rem 0 .5rem 1rem; border: 0; box-shadow: none; background: transparent; gap: 0; }
  .menu.open .menu-panel { display: block; }
  .menu-intro { display: none; }
  .nav .menu-list a { padding: .6rem 0 !important; font-size: 1rem; }
}

/* --- 癒 (iyashi: heling) — zwevende decoratie in de hero --- */
.hero { position: relative; }
.hero-glyphs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-glyphs span { position: absolute; font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif; font-weight: 300; color: var(--sand); line-height: 1; user-select: none; }
.hero-glyphs span:first-child { font-size: clamp(14rem, 34vw, 30rem); left: -.12em; bottom: -.28em; opacity: .12; animation: glyph-float 22s ease-in-out infinite; }
.hero-glyphs span:last-child { font-size: clamp(5rem, 9vw, 8rem); left: 46%; top: 8%; opacity: .16; animation: glyph-float 16s ease-in-out infinite reverse; }
.hero-grid { position: relative; z-index: 1; }
@keyframes glyph-float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 50% { transform: translate(1.5%, -3%) rotate(-1.5deg); } }
@media (prefers-reduced-motion: reduce) { .hero-glyphs span { animation: none; } }
@media (max-width: 860px) { .hero-glyphs span:last-child { display: none; } .hero-glyphs span:first-child { opacity: .09; } }

/* --- Partners: bewegende logostrip + golf --- */
.partners { background: var(--light); padding: 2.5rem 0 0; overflow: hidden; }
.partners-title { text-align: center; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: #8A7460; margin-bottom: 1.5rem; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; align-items: center; gap: clamp(3rem, 8vw, 7rem); width: max-content; padding: 0 2rem; animation: marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.partner { display: flex; align-items: center; justify-content: center; height: 64px; flex: 0 0 auto; text-decoration: none; }
.partner img { max-height: 56px; max-width: 180px; width: auto; filter: grayscale(1) opacity(.65); transition: filter .25s; }
.partner:hover img { filter: grayscale(0) opacity(1); }
.partner-name { font-family: var(--font-d); font-size: 1.5rem; color: #8A7460; white-space: nowrap; letter-spacing: .01em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.wave { display: block; width: 100%; height: 110px; margin-top: 1.5rem; }
.wave-line { fill: none; stroke: var(--sage-2); stroke-width: 2.5; animation: wave-drift 12s ease-in-out infinite; }
.wave-line-2 { stroke: var(--sand-2); stroke-width: 1.5; animation-duration: 16s; animation-direction: reverse; }
@keyframes wave-drift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-2.5%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track, .wave-line { animation: none; } .marquee-track { flex-wrap: wrap; width: auto; justify-content: center; gap: 2rem 3rem; } .marquee-track > [aria-hidden] { display: none; } }

/* --- Interactieve boom (behandelpagina's) --- */
.tree-cta { position: relative; background: var(--brown); color: var(--light); padding: clamp(5rem, 12vw, 8rem) 0; overflow: hidden; text-align: center; }
.tree-cta canvas { --tree-color: #7A9A7E; position: absolute; inset: 0; width: 100%; height: 100%; }
.tree-content { position: relative; z-index: 1; max-width: 720px; }
.tree-kicker { display: inline-block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--light); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 99px; padding: .55rem 1.2rem; margin-bottom: 1.6rem; }
.tree-cta h2 { color: var(--light); font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 400; margin-bottom: .5em; }
.tree-cta h2 em { font-style: italic; color: var(--sage-2); }
.tree-cta p:not(.tree-kicker) { font-size: 1.15rem; color: var(--sand-2); max-width: 56ch; margin: 0 auto 2.2rem; }
.btn-light { background: var(--light); color: var(--brown); border-color: var(--light); border-radius: 99px; padding: 1.05rem 2.2rem; font-weight: 700; }
.btn-light:hover { background: var(--sand); border-color: var(--sand); }

/* --- Achtergrondfoto in de kop van een wereld-pagina (assets/img/worlds/<slug>.jpg) --- */
.page-head-img { position: relative; background: var(--light); min-height: min(72vh, 640px); display: flex; align-items: center; }
.page-head-img::before { content: ""; position: absolute; inset: 0; background: var(--bg) center right/cover no-repeat; }
.page-head-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(245,239,230,.92) 0%, rgba(245,239,230,.78) 38%, rgba(245,239,230,.15) 62%, rgba(245,239,230,0) 100%), linear-gradient(0deg, var(--light) 0%, rgba(245,239,230,0) 22%); }
.page-head-img .lede { max-width: 52ch; }
.page-head-img .head-glyph { opacity: .12; }
@media (max-width: 860px) { .page-head-img { min-height: 60vh; align-items: flex-end; } .page-head-img::before { background-position: 70% center; } .page-head-img::after { background: linear-gradient(0deg, var(--light) 30%, rgba(245,239,230,.55) 70%, rgba(245,239,230,.2) 100%); } }
.page-head-img .wrap { position: relative; z-index: 1; }

/* --- Voordelen (wereld-pagina) --- */
.benefits { padding: clamp(2.5rem, 6vw, 4rem) 0; border-bottom: 1px solid #E8DDCC; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.benefits-grid h2 { font-size: 1.6rem; margin-bottom: .3em; } .benefits-grid p { color: var(--brown-2); margin: 0; }
.benefits-grid > div { padding-top: 1rem; border-top: 2px solid var(--sage-2); }
@media (max-width: 760px) { .benefits-grid { grid-template-columns: 1fr; gap: 1.5rem; } }

/* --- Subkopjes in behandellijst + karakter in de kop --- */
.treatment-list li.t-group { display: block; padding: 2.4rem 0 .4rem; border-bottom: 2px solid var(--sage-2); }
.treatment-list li.t-group:first-child { padding-top: 0; }
.treatment-list li.t-group h2 { font-size: 1.7rem; margin: 0; }
.head-glyph { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif; font-weight: 300; font-size: clamp(8rem, 16vw, 15rem); color: var(--sand); opacity: .18; line-height: 1; pointer-events: none; user-select: none; }
.page-head { position: relative; overflow: hidden; }
@media (max-width: 760px) { .head-glyph { opacity: .1; right: -4%; } }

/* --- Over Naomi --- */
.page-head h1 .accent { font-style: italic; color: var(--sage); }
.quote { margin: 1.8rem 0; padding: 1.4rem 1.6rem; background: var(--light); border-left: 3px solid var(--sand); }
.quote p { font-family: var(--font-d); font-size: 1.3rem; line-height: 1.4; color: var(--brown); margin: 0; }
.benefits-grid.four { grid-template-columns: repeat(4, 1fr); } .benefits-grid h3 { font-size: 1.35rem; margin-bottom: .3em; }
@media (max-width: 960px) { .benefits-grid.four { grid-template-columns: 1fr 1fr; } } @media (max-width: 560px) { .benefits-grid.four { grid-template-columns: 1fr; } }
.about-cols { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); } .about-cols h2 { font-size: 1.7rem; margin-top: 1.5rem; } .about-cols h2:first-child { margin-top: 0; }
.edu { width: 100%; border-collapse: collapse; font-size: .92rem; } .edu td { padding: .5rem .4rem; border-bottom: 1px solid var(--sand-2); vertical-align: top; } .edu td:last-child { white-space: nowrap; color: #8A7460; }
@media (max-width: 760px) { .about-cols { grid-template-columns: 1fr; } }

/* --- Opgemaakte teksten uit het beheer --- */
.lede u, .prose u { text-decoration-color: var(--sand); }
.prose h3 { font-size: 1.35rem; margin-top: 1.5rem; }
.page-head-img .wrap { max-width: none; margin: 0; padding-left: clamp(1.25rem, 3vw, 3rem); padding-right: var(--gutter); }

/* --- Fotoband op de wereld-pagina (assets/img/worlds/<slug>-2.jpg) --- */
.world-band { position: relative; min-height: min(60vh, 520px); padding: 0; display: flex; align-items: center; background: var(--bg) center/cover no-repeat; }
.world-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(245,239,230,.85) 0%, rgba(245,239,230,.55) 40%, rgba(245,239,230,0) 70%); }
.world-band .wrap { position: relative; max-width: none; margin: 0; padding-left: clamp(1.25rem, 3vw, 3rem); }
.world-band-text { font-family: var(--font-d); font-size: clamp(1.5rem, 2.6vw, 2.2rem); line-height: 1.25; color: var(--brown); max-width: 24ch; margin: 0; }
@media (max-width: 860px) { .world-band { min-height: 46vh; background-position: 65% center; align-items: flex-end; padding-bottom: 1.5rem; } .world-band::before { background: linear-gradient(0deg, rgba(245,239,230,.9) 20%, rgba(245,239,230,.2) 70%); } }
