/* ============================================================
   May-See Coaching — Design System
   "Waar inzicht ruimte geeft."

   Warm, zacht, elegant, minimalistisch, rustig, premium.
   Alle kleuren, spacing, radius, schaduw en typografie lopen
   via de custom properties hieronder (design tokens).
   ============================================================ */

/* ============================================================
   1. Design tokens
   ============================================================ */
:root {
    /* --- Basiskleuren: warm crème / ivoor (uit de logo-achtergrond) --- */
    --color-cream:      #F6EEE5;   /* pagina-achtergrond */
    --color-ivory:      #FCF6EE;   /* kaarten / lichte vlakken */
    --color-sand:       #EEE1D3;   /* subtiele sectie-achtergrond */
    --color-shell:      #E5D5C4;   /* iets dieper zand, randen van vlakken */

    /* --- Accenten: dusty rose / blush / taupe (uit vlinder + wordmerk) --- */
    --color-blush:      #EDD7CF;   /* zachte accent-achtergrond */
    --color-rose:       #DDB4AA;   /* dusty rose — CTA-achtergrond (vlindervleugel) */
    --color-rose-deep:  #CE9F94;   /* rose hover */
    --color-clay:       #8B5A50;   /* rose-bruin — links, accenten op licht (wordmerk) */
    --color-clay-deep:  #6E4139;   /* diepste rose-bruin (lijnwerk logo) */
    --color-taupe:      #8A5D52;   /* warm taupe/bruin ("COACHING"), AA op crème */

    /* --- Zeer subtiel saliegroen (spaarzaam gebruiken) --- */
    --color-sage:       #A9B49C;
    --color-sage-soft:  #E5E7DC;

    /* --- Tekst: donkere warme rose-bruine tinten i.p.v. hard zwart --- */
    --color-heading:    #4A322D;   /* koppen (warm, in lijn met het wordmerk) */
    --color-text:       #43352F;   /* bodytekst */
    --color-muted:      #6E625A;   /* secundaire tekst (AA op crème) */
    --color-on-dark:    #F6EEE5;   /* tekst op donkere vlakken */
    --color-on-dark-muted: rgba(246, 238, 229, 0.74);

    /* --- Randen --- */
    --color-border:     #E6D8C7;
    --color-border-strong: #D8C3B2;

    /* --- Donker warm vlak (footer / afsluit-CTA) --- */
    --color-espresso:   #43302B;
    --color-espresso-2: #35251F;

    /* --- Typografie --- */
    --font-heading: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --font-body: 'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --fs-eyebrow:  0.72rem;
    --fs-small:    0.875rem;
    --fs-body:     1.0625rem;   /* 17px — prettig leesbaar, ook mobiel */
    --fs-lead:     1.1875rem;
    --lh-body:     1.75;
    --measure:     34rem;       /* prettige tekstbreedte */

    /* --- Spacing --- */
    --space-2xs: 0.375rem;
    --space-xs:  0.625rem;
    --space-sm:  1rem;
    --space-md:  2rem;
    --space-lg:  3.5rem;
    --space-xl:  6rem;
    --space-2xl: 9rem;

    /* --- Radius --- */
    --radius-sm:  10px;
    --radius-md:  18px;
    --radius-lg:  28px;
    --radius-pill: 999px;

    /* --- Schaduw (zeer terughoudend) --- */
    --shadow-sm: 0 1px 2px rgba(55, 46, 40, 0.04);
    --shadow-md: 0 18px 40px -24px rgba(55, 46, 40, 0.22);
    --shadow-lg: 0 40px 80px -40px rgba(55, 46, 40, 0.28);

    /* --- Layout --- */
    --container: 1140px;
    --container-narrow: 780px;

    /* --- Transitions --- */
    --ease: cubic-bezier(0.33, 0.1, 0.25, 1);
    --dur: 0.4s;
    --dur-fast: 0.22s;

    --header-h: 84px;
}

/* ============================================================
   2. Reset & basis
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    font-weight: 400;
    color: var(--color-text);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.16;
    color: var(--color-heading);
    letter-spacing: 0;
}

h1 { font-size: clamp(2.9rem, 1.9rem + 4vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(2.15rem, 1.6rem + 2.3vw, 3.25rem); font-weight: 600; }
h3 { font-size: clamp(1.45rem, 1.25rem + 0.9vw, 1.85rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }

p {
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    max-width: var(--measure);
}
p:last-child { margin-bottom: 0; }

a {
    color: var(--color-clay);
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease);
}

strong { font-weight: 700; color: var(--color-heading); }

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

ul, ol { list-style: none; }

::selection {
    background: var(--color-rose);
    color: var(--color-heading);
}

/* Zichtbare, rustige focus-stijl overal */
:focus-visible {
    outline: 2px solid var(--color-clay);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================================
   3. Skip link
   ============================================================ */
.skip-link {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -120%);
    background: var(--color-espresso);
    color: var(--color-on-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-size: var(--fs-small);
    z-index: 2000;
    transition: transform var(--dur-fast) var(--ease);
}
.skip-link:focus {
    transform: translate(-50%, 0);
    color: var(--color-on-dark);
}

/* ============================================================
   4. Layout — container & section
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
    padding-block: var(--space-xl);
    position: relative;
}
.section--tight { padding-block: var(--space-lg); }
.section--sand { background: var(--color-sand); }
.section--ivory { background: var(--color-ivory); }
.section--blush { background: var(--color-blush); }
.section--dark {
    background: var(--color-espresso);
    color: var(--color-on-dark);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--color-on-dark); }
.section--dark p { color: var(--color-on-dark-muted); }

/* Zachte scheidingslijn tussen gelijk gekleurde secties */
.section + .section:not([class*="--"]) { border-top: 1px solid var(--color-border); }

/* Inhoud altijd boven de decoratieve blur-vormen */
.section > .container,
.hero > .container,
.page-hero > .container { position: relative; z-index: 1; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-taupe);
    margin-bottom: var(--space-sm);
}
.section--dark .eyebrow { color: var(--color-rose); }

.section-header {
    max-width: var(--measure);
    margin-bottom: var(--space-lg);
}
.section-header.is-centered {
    margin-inline: auto;
    text-align: center;
}
.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p { color: var(--color-muted); }
.section-header.is-centered p { margin-inline: auto; }

.lead {
    font-size: var(--fs-lead);
    line-height: 1.65;
    color: var(--color-text);
}

.text-block > * + * { margin-top: var(--space-sm); }
.text-block h3 { margin-top: var(--space-md); }

/* ============================================================
   5. Knoppen
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 0.95rem 1.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: background var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease),
                color var(--dur-fast) var(--ease),
                transform var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    background: var(--color-rose);
    color: var(--color-heading);
}
.btn--primary:hover {
    background: var(--color-rose-deep);
    color: var(--color-heading);
}

.btn--ghost {
    background: transparent;
    color: var(--color-clay);
    border-color: var(--color-border-strong);
}
.btn--ghost:hover {
    background: var(--color-ivory);
    border-color: var(--color-clay);
    color: var(--color-clay);
}

.btn--on-dark {
    background: transparent;
    color: var(--color-on-dark);
    border-color: rgba(246, 238, 229, 0.4);
}
.btn--on-dark:hover {
    background: var(--color-on-dark);
    color: var(--color-heading);
    border-color: var(--color-on-dark);
}

.btn--full { width: 100%; }

/* Tekstlink met elegante underline-animatie */
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: var(--fs-small);
    letter-spacing: 0.02em;
    color: var(--color-clay);
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size var(--dur) var(--ease);
    padding-bottom: 2px;
}
.link-arrow svg { transition: transform var(--dur-fast) var(--ease); }
.link-arrow:hover { background-size: 100% 1px; }
.link-arrow:hover svg { transform: translateX(4px); }
.section--dark .link-arrow { color: var(--color-rose); }

/* Inline tekstlinks binnen lopende tekst */
.prose a,
.text-block a {
    background-image: linear-gradient(var(--color-rose), var(--color-rose));
    background-size: 100% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    padding-bottom: 1px;
}
.prose a:hover,
.text-block a:hover { color: var(--color-heading); background-image: linear-gradient(var(--color-clay), var(--color-clay)); }

/* ============================================================
   6. Header / navigatie
   ============================================================ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease),
                border-color var(--dur) var(--ease),
                height var(--dur) var(--ease);
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-solid {
    background: rgba(246, 238, 229, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--color-border);
    height: 68px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}
.brand__icon {
    height: 42px;
    width: auto;
    flex-shrink: 0;
}
.site-header.is-scrolled .brand__icon,
.site-header.is-solid .brand__icon { height: 36px; }
.brand__wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.brand__name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.005em;
    color: var(--color-clay);
    background: linear-gradient(100deg, var(--color-clay-deep) 0%, var(--color-rose-deep) 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand__sub {
    font-family: var(--font-body);
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: var(--color-taupe);
    margin-top: 4px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2.1rem);
}
.nav__links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding-block: 0.4rem;
}
.nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--color-clay);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--color-heading); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--color-heading); }

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta { padding: 0.7rem 1.35rem; }

/* Hamburger */
.nav__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}
.nav__toggle span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 1.5px;
    background: var(--color-heading);
    transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav__toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobiel menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--color-cream);
    padding: calc(var(--header-h) + 1.5rem) clamp(1.5rem, 8vw, 3rem) 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), visibility var(--dur);
    overflow-y: auto;
}
.mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.mobile-menu a {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-heading);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--color-border);
}
.mobile-menu a[aria-current="page"] { color: var(--color-clay); }
.mobile-menu .btn { margin-top: 1.5rem; align-self: flex-start; }

/* ============================================================
   7. Decoratieve organische vormen
   ============================================================ */
.blur-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.blur-shape--rose  { background: var(--color-rose); }
.blur-shape--blush { background: var(--color-blush); }
.blur-shape--sage  { background: var(--color-sage-soft); }

.arc-line {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    color: var(--color-border-strong);
    opacity: 0.7;
}

/* Vlindermotief — Macey's spirit animal, heel subtiel als watermerk.
   Gebruikt de aangeleverde asset; grootte/positie per plek via inline-style. */
.motif {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    background: url("../images/maysee-logo-transparant.png") no-repeat center / contain;
    opacity: 0.1;
}
.motif--soft { opacity: 0.075; }
.motif--on-dark { opacity: 0.14; }
/* Secties met een motief klippen het overhangende deel netjes af */
.section:has(> .motif) { overflow: hidden; }

/* ============================================================
   8. Hero
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-h) + var(--space-md));
    padding-bottom: var(--space-lg);
    overflow: hidden;
}
.hero > .container { width: 100%; }
.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.hero__content { max-width: 34rem; }
.hero__title {
    margin-bottom: var(--space-md);
    font-size: clamp(2.7rem, 1.7rem + 4.4vw, 5rem);
    line-height: 1.08;
}
.hero__title em {
    font-style: italic;
    font-weight: 500;
    color: var(--color-clay);
}
.hero__subtitle {
    font-size: var(--fs-lead);
    line-height: 1.65;
    color: var(--color-muted);
    margin-bottom: var(--space-md);
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: var(--space-md);
}
.hero__slogan {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--color-taupe);
}

.hero__media {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero__media::before {
    content: "";
    position: absolute;
    inset: -6%;
    border-radius: 50%;
    background: radial-gradient(closest-side, var(--color-blush), transparent 72%);
    opacity: 0.55;
    filter: blur(36px);
    z-index: 0;
}
.hero__logo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    height: auto;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-taupe);
    z-index: 1;
}
.hero__scroll svg { transition: transform var(--dur) var(--ease); }
.hero__scroll:hover { color: var(--color-clay); }
.hero__scroll:hover svg { transform: translateY(3px); }
@media (max-width: 1000px) { .hero__scroll { display: none; } }

/* ============================================================
   9. Foto-placeholder
   ============================================================ */
.photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-ivory);
}
.photo img { width: 100%; height: 100%; object-fit: cover; }

.photo-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(120% 90% at 20% 15%, var(--color-blush), transparent 60%),
        linear-gradient(160deg, var(--color-sand), var(--color-shell));
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--color-taupe);
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.photo-placeholder::after {
    content: "";
    position: absolute;
    width: 140%;
    height: 60%;
    left: -20%;
    bottom: -25%;
    background: radial-gradient(50% 50% at 50% 50%, var(--color-rose), transparent 70%);
    opacity: 0.35;
    filter: blur(30px);
}
.photo-placeholder__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 1rem;
    opacity: 0.6;
}
.photo-placeholder__label {
    font-size: var(--fs-small);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.photo-placeholder__note {
    font-size: 0.78rem;
    margin-top: 0.35rem;
    max-width: 22ch;
    opacity: 0.8;
}
.photo-placeholder--wide { aspect-ratio: 3 / 2; }
.photo-placeholder--square { aspect-ratio: 1 / 1; }

/* ============================================================
   10. Herkenningssectie
   ============================================================ */
.recognition-grid {
    display: grid;
    /* Vaste 3 kolommen (i.p.v. auto-fit) zodat 6 items altijd netjes vullen —
       auto-fit liet bij bepaalde breedtes een lege, gekleurde cel over. */
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.recognition-item {
    background: var(--color-ivory);
    padding: 1.75rem;
    display: flex;
    gap: 0.9rem;
}
.recognition-item__mark {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-rose);
    margin-top: 0.65rem;
}
.recognition-item p { margin: 0; color: var(--color-text); }

/* ============================================================
   11. Kaarten & feature-lijst
   ============================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
}
.card {
    background: var(--color-ivory);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--color-muted); }
.card__num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-clay);
    display: block;
    margin-bottom: 0.75rem;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}
.feature-list { display: flex; flex-direction: column; gap: 1rem; margin-top: var(--space-md); }
.feature-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    color: var(--color-text);
}
.feature-list li::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 0.3rem;
    border-radius: 50%;
    background: var(--color-blush);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B5A50' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ============================================================
   12. Processstappen
   ============================================================ */
.steps {
    display: grid;
    gap: var(--space-md);
    counter-reset: step;
}
.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    align-items: start;
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step__num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-rose-deep);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.step__body h3 { margin-bottom: 0.4rem; font-size: 1.25rem; }
.step__body p { color: var(--color-muted); }

/* ============================================================
   13. Aanbod-kaart
   ============================================================ */
.offer {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-ivory);
}
.offer__main { padding: clamp(1.75rem, 4vw, 3rem); }
.offer__aside {
    padding: clamp(1.75rem, 4vw, 3rem);
    background: var(--color-blush);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
}
.offer__price {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--color-heading);
    line-height: 1;
}
.offer__tag {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-clay);
    background: var(--color-ivory);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-pill);
}
.offer__meta { display: grid; gap: 1.1rem; margin-top: var(--space-md); }
.offer__meta dt {
    font-weight: 700;
    color: var(--color-heading);
    font-size: var(--fs-small);
    margin-bottom: 0.15rem;
}
.offer__meta dd { color: var(--color-muted); font-size: var(--fs-small); }

/* ============================================================
   14. CTA-band
   ============================================================ */
.cta-band {
    text-align: center;
    max-width: 40rem;
    margin-inline: auto;
}
.cta-band h2 { margin-bottom: var(--space-sm); }
.cta-band p { margin-inline: auto; color: var(--color-muted); margin-bottom: var(--space-md); }
.cta-band .btn + .btn { margin-left: 0.5rem; }

/* ============================================================
   15. Pagina-hero (binnenpagina's)
   ============================================================ */
.page-hero {
    position: relative;
    padding-top: calc(var(--header-h) + var(--space-lg));
    padding-bottom: var(--space-lg);
    overflow: hidden;
}
.page-hero__inner { max-width: 46rem; }
.page-hero h1 { margin-bottom: var(--space-sm); }
.page-hero p {
    font-size: var(--fs-lead);
    color: var(--color-muted);
    line-height: 1.6;
}

/* Breadcrumb-achtige mini-nav */
.crumb {
    font-size: var(--fs-small);
    color: var(--color-muted);
    margin-bottom: var(--space-sm);
}
.crumb a { color: var(--color-muted); }
.crumb a:hover { color: var(--color-clay); }

/* ============================================================
   16. Prose (privacy / lange tekst)
   ============================================================ */
.prose { max-width: var(--container-narrow); }
.prose > * + * { margin-top: var(--space-sm); }
.prose h2 { margin-top: var(--space-lg); margin-bottom: 0.25rem; }
.prose h3 { margin-top: var(--space-md); }
.prose ul { list-style: disc; padding-left: 1.4rem; }
.prose ul li { margin-top: 0.4rem; }
.prose p, .prose li { color: var(--color-text); }

.callout {
    border-left: 3px solid var(--color-rose);
    background: var(--color-ivory);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1.25rem 1.5rem;
}
.callout p { color: var(--color-muted); }
.callout--todo {
    border-left-color: var(--color-taupe);
    background: var(--color-sand);
}
.callout--todo strong { letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.78rem; }

/* ============================================================
   17. Contactpagina
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: start;
}
.contact-methods { display: grid; gap: 1.5rem; margin-top: var(--space-md); }
.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-method__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-blush);
    display: grid;
    place-items: center;
    color: var(--color-clay);
}
.contact-method__icon svg { width: 20px; height: 20px; }
.contact-method h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 0.15rem; }
.contact-method p { color: var(--color-muted); font-size: var(--fs-small); margin: 0; }

/* ============================================================
   18. Formulier
   ============================================================ */
.form {
    background: var(--color-ivory);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}
/* Honeypot — visueel verborgen, blijft in de tab-volgorde onbereikbaar */
.form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.field { margin-bottom: 1.25rem; }
.field label {
    display: block;
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 0.4rem;
}
.field .req { color: var(--color-clay); }
.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--color-text);
    background: var(--color-cream);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-sm);
    padding: 0.8rem 0.95rem;
    transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--color-clay);
    box-shadow: 0 0 0 3px rgba(139, 90, 80, 0.18);
}
.field input:user-invalid,
.field textarea:user-invalid {
    border-color: #a8433a;
}
.field__error {
    display: none;
    margin-top: 0.4rem;
    font-size: 0.82rem;
    color: #9a3b32;
}
.field.has-error .field__error { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #a8433a; }

.field-hint { font-size: 0.82rem; color: var(--color-muted); margin-top: 0.35rem; }

fieldset { border: none; }
fieldset legend {
    font-size: var(--fs-small);
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 0.6rem;
}
.radio-group { display: grid; gap: 0.5rem; }
.radio {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: var(--fs-small);
    transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.radio:hover { border-color: var(--color-clay); }
.radio input { width: auto; accent-color: var(--color-clay); }
.radio:has(input:checked) { background: var(--color-blush); border-color: var(--color-rose-deep); }

.form__status {
    display: none;
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: var(--fs-small);
    line-height: 1.6;
}
.form__status.is-visible { display: block; }
.form__status.is-success {
    background: var(--color-sage-soft);
    color: #3f5236;
    border-left: 3px solid var(--color-sage);
}
.form__status.is-error {
    background: #f8e4e1;
    color: #8a352c;
    border-left: 3px solid #c0685c;
}

/* ============================================================
   18b. FAQ / accordion (native <details>)
   ============================================================ */
.faq { border-top: 1px solid var(--color-border); }
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__q {
    list-style: none;
    cursor: pointer;
    display: block;
    padding: 1.35rem 2.75rem 1.35rem 0;
    position: relative;
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
    font-weight: 600;
    color: var(--color-heading);
    transition: color var(--dur-fast) var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--color-clay); }
.faq__q::after {
    content: "";
    position: absolute;
    right: 0.4rem;
    top: 1.6rem;
    width: 11px;
    height: 11px;
    border-right: 1.5px solid var(--color-clay);
    border-bottom: 1.5px solid var(--color-clay);
    transform: rotate(45deg);
    transition: transform var(--dur) var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }
.faq__a { padding: 0 2.75rem 1.6rem 0; }
.faq__a > * + * { margin-top: var(--space-sm); }
.faq__a p { color: var(--color-muted); }

/* ============================================================
   19. Footer — compact (bevat de afsluitende CTA)
   ============================================================ */
.site-footer {
    background: var(--color-espresso);
    color: var(--color-on-dark-muted);
    padding-block: var(--space-lg) var(--space-md);
}
.footer-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    text-align: center;
    padding-bottom: var(--space-md);
}
.footer-cta__mark {
    width: 56px;
    height: auto;
    opacity: 0.9;
}
.footer-cta__slogan {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--color-on-dark);
    margin: 0;
}
.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(246, 238, 229, 0.14);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem var(--space-lg);
}
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.3rem;
}
.footer-nav a {
    font-size: var(--fs-small);
    color: var(--color-on-dark-muted);
}
.footer-nav a:hover { color: var(--color-on-dark); }
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: right;
    font-size: 0.78rem;
    max-width: none;
    color: var(--color-on-dark-muted);
}
@media (max-width: 700px) {
    .footer-bottom { flex-direction: column; }
    .footer-legal { text-align: left; }
}

/* ============================================================
   20. Micro-interacties / scroll-animatie
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.is-visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   21. Responsief
   ============================================================ */
@media (max-width: 1000px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__logo { max-width: 360px; }
    .offer { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .recognition-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    .nav__links,
    .nav__actions { display: none; }
    .nav__toggle { display: block; }
}

@media (max-width: 560px) {
    :root { --space-xl: 4.5rem; --space-2xl: 6rem; }
    .recognition-grid { grid-template-columns: 1fr; }
    .form__row { grid-template-columns: 1fr; }
    .step { grid-template-columns: 1fr; gap: 0.5rem; }
    .hero__actions .btn { width: 100%; }
    .cta-band .btn { width: 100%; }
    .cta-band .btn + .btn { margin-left: 0; margin-top: 0.6rem; }
}

/* ============================================================
   22. prefers-reduced-motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .fade-up { opacity: 1; transform: none; }
}

/* ============================================================
   23. Print
   ============================================================ */
@media print {
    .site-header, .mobile-menu, .site-footer, .blur-shape, .arc-line, .motif { display: none; }
    body { background: #fff; color: #000; }
}
