/* =============================================================================
   Equiviento — Stylesheet
   Premium merkervaring: goud, zwart, wit, donkergrijs.
   Volgorde: 1) Variabelen  2) Reset/basis  3) Typografie  4) Layout
             5) Componenten  6) Secties  7) Animaties  8) Responsive
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* 1. Variabelen                                                              */
/* -------------------------------------------------------------------------- */
:root {
    /* Kleuren */
    --black:        #0b0b0c;
    --black-soft:   #141416;
    --charcoal:     #1c1c1f;
    --grey-800:     #2a2a2e;
    --grey-500:     #6b6b72;
    --grey-300:     #b7b7bd;
    --cream:        #faf7f1;
    --cream-2:      #f3ede2;
    --white:        #ffffff;

    /* Goud */
    --gold:         #c6a15b;
    --gold-light:   #e4c889;
    --gold-deep:    #a67c2e;
    --gold-grad:    linear-gradient(135deg, #e4c889 0%, #c6a15b 45%, #a67c2e 100%);

    /* Semantisch */
    --text:         #1c1c1f;
    --text-soft:    #55555c;
    --text-invert:  #f5f2ec;
    --bg:           #ffffff;
    --line:         rgba(28,28,31,.10);
    --line-light:   rgba(255,255,255,.14);

    /* Typografie */
    --font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Ritme */
    --container:    1200px;
    --container-narrow: 760px;
    --radius:       18px;
    --radius-sm:    12px;
    --radius-lg:    28px;
    --shadow-sm:    0 2px 10px rgba(11,11,12,.06);
    --shadow:       0 18px 50px -20px rgba(11,11,12,.28);
    --shadow-gold:  0 16px 40px -14px rgba(166,124,46,.55);
    --ease:         cubic-bezier(.22,.61,.36,1);
    --section-y:    clamp(4.5rem, 9vw, 8rem);
}

/* -------------------------------------------------------------------------- */
/* 2. Reset & basis                                                           */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 200;
    background: var(--black); color: var(--white); padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* -------------------------------------------------------------------------- */
/* 3. Typografie                                                              */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.1; letter-spacing: -.01em; }

.section-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 1rem;
}
.section-dark .section-title,
.eyebrow-light + .section-title,
.cta-content .section-title { color: var(--text-invert); }

.eyebrow {
    font-family: var(--font-sans);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-deep);
    margin-bottom: 1rem;
    display: inline-block;
}
.eyebrow-light { color: var(--gold-light); }

.lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    color: var(--text-soft);
    font-weight: 400;
}
.lead-light { color: rgba(245,242,236,.82); }
.body-text { color: var(--text-soft); font-size: 1.075rem; margin-bottom: 1.75rem; }

/* -------------------------------------------------------------------------- */
/* 4. Layout                                                                  */
/* -------------------------------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container.narrow { max-width: var(--container-narrow); }
.center { text-align: center; }
.section { padding-block: var(--section-y); position: relative; }
.section-dark { background: var(--black); color: var(--text-invert); }
.section-cream { background: var(--cream); }

/* -------------------------------------------------------------------------- */
/* 5. Componenten                                                             */
/* -------------------------------------------------------------------------- */

/* Knoppen */
.btn {
    --btn-py: .95rem; --btn-px: 1.9rem;
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    padding: var(--btn-py) var(--btn-px);
    font-family: var(--font-sans); font-size: .95rem; font-weight: 600; letter-spacing: .02em;
    border-radius: 100px; cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
    will-change: transform;
}
.btn .icon { width: 1.05em; height: 1.05em; }
.btn-sm { --btn-py: .6rem; --btn-px: 1.25rem; font-size: .85rem; }
.btn-lg { --btn-py: 1.1rem; --btn-px: 2.4rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-gold { background: var(--gold-grad); color: #241a06; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -14px rgba(166,124,46,.7); }
.btn-dark { background: var(--black); color: var(--text-invert); }
.btn-dark:hover { transform: translateY(-3px); background: var(--charcoal); box-shadow: var(--shadow); }
.btn-dark .icon { transition: transform .3s var(--ease); }
.btn-dark:hover .icon { transform: translateX(4px); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }

.link-arrow { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: var(--gold-deep); }
.link-arrow .icon { width: 1.1em; height: 1.1em; transition: transform .3s var(--ease); }
.link-arrow:hover .icon { transform: translateX(5px); }

/* Sterren */
.stars { display: inline-flex; gap: 2px; }
.star { fill: rgba(0,0,0,.12); }
.star.is-filled { fill: var(--gold); }
.section-dark .star { fill: rgba(255,255,255,.2); }
.section-dark .star.is-filled { fill: var(--gold-light); }

/* Iconen */
.icon { width: 24px; height: 24px; flex: none; }

/* -------------------------------------------------------------------------- */
/* Header / navigatie                                                         */
/* -------------------------------------------------------------------------- */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
    padding-block: .5rem;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand-logo { width: 74px; height: 74px; object-fit: contain; border-radius: 50%; transition: width .4s var(--ease), height .4s var(--ease); }

.site-header.scrolled {
    background: rgba(11,11,12,.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 1px 0 rgba(255,255,255,.06);
    padding-block: .25rem;
}
.site-header.scrolled .brand-logo { width: 56px; height: 56px; }

/* Solide, lichte header voor pagina's zonder donkere hero */
.site-header.solid {
    background: rgba(250,247,241,.88);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
    padding-block: .25rem;
}
.site-header.solid .brand-logo { width: 56px; height: 56px; }
.site-header.solid .nav-menu a { color: var(--text); }
.site-header.solid .nav-toggle span { background: var(--charcoal); }

/* Desktop-navigatie */
.nav-menu { display: flex; align-items: center; gap: 2rem; }
.nav-menu a {
    color: var(--text-invert); font-size: .92rem; font-weight: 500; letter-spacing: .01em;
    position: relative; padding: .35rem 0; opacity: .85; transition: opacity .25s;
}
.nav-menu a::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
    background: var(--gold); transition: width .3s var(--ease);
}
.nav-menu a:hover, .nav-menu a.is-active { opacity: 1; }
.nav-menu a:hover::after, .nav-menu a.is-active::after { width: 100%; }

.nav-cta-desktop { flex: none; }

/* Hamburger-knop (alleen mobiel) */
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; width: 26px; background: var(--white); border-radius: 2px; transition: background .3s; margin-inline: auto; }

/* -------------------------------------------------------------------------- */
/* Mobiel menu — volledig-scherm overlay (los van de header)                  */
/* -------------------------------------------------------------------------- */
.mobile-nav {
    position: fixed; inset: 0; z-index: 200;
    height: 100vh; height: 100svh;         /* kleine viewport: rekent browserbalken mee */
    display: flex; flex-direction: column;
    background: linear-gradient(180deg, #141416 0%, #0b0b0c 100%);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
body.nav-open .mobile-nav { opacity: 1; visibility: visible; pointer-events: auto; }

.mobile-nav__bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: .75rem clamp(1.25rem, 5vw, 2rem);
    min-height: 72px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav__bar .brand-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; }
.mobile-nav__close {
    display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
    color: var(--white); background: rgba(255,255,255,.06); transition: background .25s, transform .25s;
}
.mobile-nav__close:hover { background: rgba(255,255,255,.14); transform: rotate(90deg); }

.mobile-nav__links {
    flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; justify-content: center;
    padding: .5rem clamp(1.5rem, 6vw, 2.5rem);
    overflow-y: auto;
}
.mobile-nav__links ul { display: flex; flex-direction: column; width: 100%; }
.mobile-nav__links li {
    border-bottom: 1px solid rgba(255,255,255,.07);
    opacity: 0; transform: translateY(10px);
}
/* Vast onderblok: taalkeuze + bestelknop, altijd zichtbaar */
.mobile-nav__foot {
    flex: none;
    padding: 1rem clamp(1.5rem, 6vw, 2.5rem) calc(1.25rem + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255,255,255,.08);
    background: rgba(11,11,12,.6);
}
body.nav-open .mobile-nav__links li {
    opacity: 1; transform: none;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
    transition-delay: calc(120ms + var(--i, 0) * 45ms);
}
.mobile-nav__links a {
    display: block; padding: .7rem .25rem;
    font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; color: var(--text-invert);
    transition: color .2s, padding-left .25s var(--ease);
}
.mobile-nav__links a:hover, .mobile-nav__links a.is-active { color: var(--gold-light); padding-left: .6rem; }
.mobile-nav__cta { margin-top: .9rem; width: 100%; }
@media (prefers-reduced-motion: reduce) {
    .mobile-nav, body.nav-open .mobile-nav__links li { transition: none; }
    .mobile-nav__links li { opacity: 1; transform: none; }
}
/* Overlay bestaat alleen op mobiel */
@media (min-width: 861px) { .mobile-nav { display: none; } }

/* -------------------------------------------------------------------------- */
/* 6. Secties                                                                 */
/* -------------------------------------------------------------------------- */

/* HERO */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(11,11,12,.55) 0%, rgba(11,11,12,.25) 35%, rgba(11,11,12,.55) 70%, rgba(11,11,12,.9) 100%),
        radial-gradient(120% 90% at 20% 30%, rgba(11,11,12,.35), transparent 60%);
}
.hero-content { padding-top: 6rem; max-width: 780px; }
.hero-title {
    font-size: clamp(2.6rem, 6.5vw, 5rem);
    line-height: 1.04; color: var(--white); margin-bottom: 1.4rem;
    text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero-subtitle { font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.9); max-width: 560px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.hero-usps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem 2rem; max-width: 560px; }
.hero-usps li { display: flex; align-items: center; gap: .55rem; font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.92); }
.hero-usps .icon { width: 1.15em; height: 1.15em; color: var(--gold-light); }

.hero-scroll { position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 20px; display: grid; place-items: start center; padding-top: 7px; }
.hero-scroll span { width: 4px; height: 8px; background: var(--gold-light); border-radius: 2px; animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-2px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* USP-balk */
.usp-bar { background: var(--black-soft); color: var(--text-invert); padding-block: clamp(2.5rem, 5vw, 3.75rem); }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.usp-item { display: flex; gap: 1rem; align-items: flex-start; }
.usp-icon { display: grid; place-items: center; width: 52px; height: 52px; flex: none; border-radius: 14px; background: rgba(198,161,91,.14); color: var(--gold-light); }
.usp-icon .icon { width: 26px; height: 26px; }
.usp-item h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .2rem; }
.usp-item p { font-size: .9rem; color: rgba(245,242,236,.62); line-height: 1.45; }

/* Probleem */
.section-probleem { background: var(--cream); }
.probleem-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-block: 3rem; }
.probleem-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.75rem; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.probleem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.probleem-num { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad); color: #241a06; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 1.1rem; }
.probleem-card p { color: var(--text-soft); }
.probleem-closing { font-family: var(--font-serif); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; color: var(--text); max-width: 700px; margin-inline: auto; }

/* Split-secties (afbeelding + tekst) */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.section-reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
    width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
    aspect-ratio: 4/5; object-fit: cover;
}
.section-reverse .split-media img { aspect-ratio: 3/4; }
.split-media::after {
    content: ""; position: absolute; inset: auto -14px -14px auto; width: 55%; height: 55%;
    border: 1.5px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; opacity: .5;
}
.split-body { max-width: 520px; }

/* Specificaties */
.specs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-block: 3rem; }
.spec-card { border-radius: var(--radius); padding: 2rem 1.75rem; background: rgba(255,255,255,.04); border: 1px solid var(--line-light); transition: transform .35s var(--ease), background .35s var(--ease); }
.spec-card:hover { transform: translateY(-6px); background: rgba(198,161,91,.08); }
.specs-grid-light .spec-card { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.specs-grid-light .spec-card:hover { box-shadow: var(--shadow); background: var(--white); }
.spec-check { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(198,161,91,.16); color: var(--gold-light); margin-bottom: 1.1rem; }
.specs-grid-light .spec-check { color: var(--gold-deep); background: rgba(198,161,91,.14); }
.spec-card h3 { font-family: var(--font-sans); font-size: 1.08rem; font-weight: 600; margin-bottom: .4rem; color: inherit; }
.section-dark .spec-card h3 { color: var(--white); }
.spec-card p { font-size: .95rem; color: rgba(245,242,236,.66); }
.specs-grid-light .spec-card p { color: var(--text-soft); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.25rem 2rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review-card blockquote { font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.4; color: var(--text); }
.review-card figcaption { font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-deep); margin-top: auto; }

/* CTA-sectie met beeld */
.section-cta { color: var(--white); overflow: hidden; }
.cta-media { position: absolute; inset: 0; z-index: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,11,12,.72), rgba(11,11,12,.82)); }
.cta-content { position: relative; z-index: 1; max-width: 720px; }
.cta-content .lead { margin-block: 1rem 2rem; }
.cta-note { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.5rem; font-size: .9rem; color: rgba(255,255,255,.8); }
.cta-note .icon { width: 1.1em; height: 1.1em; color: var(--gold-light); }
.section-cta-plain { background: var(--black); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: .85rem; margin-block: 3rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; transition: box-shadow .3s var(--ease), border-color .3s; }
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: rgba(198,161,91,.4); }
.faq-item summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.35rem 1.5rem; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 18px; height: 18px; flex: none; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--gold-deep); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq-plus::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq-item[open] .faq-plus::after { transform: scaleY(0); }
.faq-answer { padding: 0 1.5rem 1.4rem; }
.faq-answer p { color: var(--text-soft); }

/* -------------------------------------------------------------------------- */
/* Productpagina                                                              */
/* -------------------------------------------------------------------------- */
.product-hero { padding-top: 8rem; padding-bottom: var(--section-y); }
.product-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.gallery-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--cream-2); }
.gallery-main img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-main:hover img { transform: scale(1.05); }
.gallery-badge { position: absolute; top: 1rem; left: 1rem; background: var(--gold-grad); color: #241a06; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .45rem .9rem; border-radius: 100px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: .75rem; margin-top: .85rem; }
.gallery-thumb { border-radius: var(--radius-sm); overflow: hidden; border: 2px solid transparent; transition: border-color .25s, transform .25s; background: var(--cream-2); }
.gallery-thumb img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.gallery-thumb:hover { transform: translateY(-2px); }
.gallery-thumb.is-active { border-color: var(--gold); }

.product-title { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-block: .5rem .75rem; }
.product-rating-text { font-size: .85rem; color: var(--text-soft); margin-left: .6rem; }
.product-intro { font-size: 1.1rem; color: var(--text-soft); margin-block: 1.5rem; }
.product-checklist { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.75rem; }
.product-checklist li { display: flex; align-items: center; gap: .65rem; font-weight: 500; }
.product-checklist .icon { width: 1.15em; height: 1.15em; color: var(--gold-deep); flex: none; }
.product-colors { display: flex; align-items: center; gap: .6rem; margin-bottom: 1.75rem; }
.product-label { font-size: .85rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); }
.color-chip { font-size: .85rem; font-weight: 500; padding: .3rem .8rem; border-radius: 100px; border: 1px solid var(--line); display: inline-flex; align-items: center; gap: .4rem; }
.color-chip::before { content: ""; width: 12px; height: 12px; border-radius: 50%; }
.color-chip.color-zwart::before { background: #141416; }
.color-chip.color-taupe::before,
.color-chip.color-beige::before { background: #b49b78; }
.color-chip.color-blauw::before { background: #6fb3c4; }

/* Kleurstip in de bestelkaarten */
.color-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); }
.color-dot.color-zwart { background: #141416; }
.color-dot.color-beige, .color-dot.color-taupe { background: #b49b78; }
.color-dot.color-blauw { background: #6fb3c4; }
.product-cta { margin-top: .5rem; }
.product-delivery { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text-soft); margin-top: 1rem; }
.product-delivery .icon { width: 1.1em; height: 1.1em; color: var(--gold-deep); }

/* Bestellen */
.order-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 340px)); gap: 1.5rem; justify-content: center; margin-block: 3rem; }
.order-color { display: inline-flex; align-items: center; gap: .5rem; color: rgba(245,242,236,.75); font-size: .9rem; margin-bottom: .6rem; }
.order-flag-new { background: linear-gradient(135deg, #7fc4d6, #3f8fa6); color: #041318; }
.order-card { position: relative; background: rgba(255,255,255,.04); border: 1px solid var(--line-light); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; transition: transform .35s var(--ease), border-color .35s; }
.order-card:hover { transform: translateY(-6px); }
.order-card-featured { border-color: var(--gold); background: rgba(198,161,91,.08); }
.order-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold-grad); color: #241a06; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 100px; white-space: nowrap; }
.order-size { font-size: 2rem; color: var(--white); margin-bottom: .75rem; }
.order-capacity { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-light); font-weight: 600; margin-bottom: .75rem; }
.order-capacity .icon { width: 1.15em; height: 1.15em; }
.order-bestfor { color: rgba(245,242,236,.66); font-size: .95rem; margin-bottom: 1.5rem; min-height: 2.6em; }
.order-price { font-family: var(--font-serif); font-size: 2.6rem; color: var(--white); line-height: 1; }
.order-price-note { font-size: .8rem; color: rgba(245,242,236,.5); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; }
.order-reassurance { display: inline-flex; align-items: center; gap: .6rem; color: rgba(245,242,236,.7); font-size: .95rem; }
.order-reassurance .icon { width: 1.2em; height: 1.2em; color: var(--gold-light); }
.order-reassurance a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------------------------------------------------------- */
/* Pagina-hero (subpagina's)                                                  */
/* -------------------------------------------------------------------------- */
.page-hero { padding-top: 9rem; padding-bottom: 3.5rem; }
.page-hero-image { position: relative; padding-top: 12rem; padding-bottom: 5rem; color: var(--white); overflow: hidden; }
.page-hero-media { position: absolute; inset: 0; z-index: -1; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-hero-title { font-size: clamp(2.4rem, 5.5vw, 4rem); margin-bottom: 1rem; }
.page-hero-image .page-hero-title { color: var(--white); }
.page-hero-lead { font-size: 1.2rem; color: var(--text-soft); max-width: 620px; margin-inline: auto; }
.page-hero-image .page-hero-lead { color: rgba(255,255,255,.88); }
.page-hero-lead a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.page-hero-image .page-hero-lead a { color: var(--gold-light); }

/* Over ons */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.story-block { position: relative; }
.story-index { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); opacity: .5; display: block; margin-bottom: .5rem; }
.story-block h2 { font-size: 1.6rem; margin-bottom: .75rem; }
.story-block p { color: var(--text-soft); }

/* -------------------------------------------------------------------------- */
/* Contact                                                                    */
/* -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info h2 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.contact-line { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.contact-line span { font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-soft); }
.contact-line a { font-size: 1.1rem; color: var(--gold-deep); font-weight: 500; }
.contact-line a + a { margin-left: 1rem; }
.contact-usps { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .7rem; }
.contact-usps p { display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.contact-usps .icon { width: 1.15em; height: 1.15em; color: var(--gold-deep); }

.contact-form-wrap { background: var(--cream); border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem); box-shadow: var(--shadow-sm); }
.form-row { margin-bottom: 1.25rem; display: flex; flex-direction: column; }
.form-row label { font-size: .9rem; font-weight: 600; margin-bottom: .45rem; }
.form-row label span { color: var(--gold-deep); }
.form-row input, .form-row textarea {
    font: inherit; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: var(--white); color: var(--text); transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.18); outline: none; }
.form-row input.has-error, .form-row textarea.has-error { border-color: #c0392b; }
.field-error { color: #c0392b; font-size: .85rem; margin-top: .35rem; }
.form-error-banner { background: #fdecea; color: #a5281b; padding: .9rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.25rem; font-size: .92rem; }
.form-privacy { font-size: .82rem; color: var(--text-soft); margin-top: 1rem; text-align: center; }
.form-privacy a { color: var(--gold-deep); text-decoration: underline; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success { text-align: center; padding: 2rem 1rem; }
.form-success-icon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--gold-grad); color: #241a06; margin: 0 auto 1.5rem; }
.form-success-icon .icon { width: 32px; height: 32px; }
.form-success h2 { font-size: 1.8rem; margin-bottom: .75rem; }
.form-success p { color: var(--text-soft); margin-bottom: 1.75rem; }

/* Legal */
.legal-content h2 { font-size: 1.5rem; margin-block: 2rem .75rem; }
.legal-content p { color: var(--text-soft); margin-bottom: 1rem; }
.legal-content a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */
.site-footer { background: var(--black); color: var(--text-invert); padding-top: clamp(3.5rem, 6vw, 5rem); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { width: 90px; height: 90px; object-fit: contain; border-radius: 50%; }
.footer-tagline { color: rgba(245,242,236,.6); max-width: 260px; margin-top: 1rem; font-size: .95rem; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.25rem; }
.footer-social a { font-size: .85rem; color: var(--gold-light); font-weight: 500; }
.footer-social a:hover { text-decoration: underline; }
.footer-col h3 { font-family: var(--font-sans); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--gold-light); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: rgba(245,242,236,.72); font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-contact address { font-style: normal; color: rgba(245,242,236,.72); font-size: .95rem; line-height: 1.9; }
.footer-contact a { color: var(--gold-light); }
.footer-legal-ids { font-size: .82rem; color: rgba(245,242,236,.5); margin-top: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.5rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .85rem; color: rgba(245,242,236,.5); }
.footer-bottom-inner a { color: rgba(245,242,236,.7); }
.footer-bottom-inner a:hover { color: var(--gold-light); }

/* Cookie notice */
.cookie-notice { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 150; max-width: 640px; margin-inline: auto; background: rgba(20,20,22,.95); backdrop-filter: blur(10px); color: var(--text-invert); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); box-shadow: var(--shadow); animation: cookieUp .5s var(--ease); }
.cookie-inner { display: flex; align-items: center; gap: 1.25rem; padding: 1rem 1.25rem; flex-wrap: wrap; }
.cookie-inner p { font-size: .88rem; color: rgba(245,242,236,.8); flex: 1; min-width: 220px; }
.cookie-inner a { color: var(--gold-light); text-decoration: underline; }
@keyframes cookieUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* -------------------------------------------------------------------------- */
/* 7. Scroll-animaties                                                        */
/* -------------------------------------------------------------------------- */
/* Alleen verbergen wanneer JavaScript actief is (progressive enhancement):
   zonder JS blijft alle content gewoon zichtbaar. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1; transform: none; transition: none; }
    .hero-scroll span { animation: none; }
}

/* -------------------------------------------------------------------------- */
/* 8. Responsive                                                              */
/* -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    /* Op mobiel: verberg de desktop-navigatie en toon de hamburger.
       Het menu zelf is het .mobile-nav overlay (buiten de header). */
    .main-nav, .header-actions { display: none; }
    .nav-toggle { display: flex; }
    body.nav-open { overflow: hidden; }

    /* Layout naar 1 kolom */
    .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .section-reverse .split-media { order: 0; }
    .split-media img { aspect-ratio: 3/4; }
    .section-reverse .split-media img { aspect-ratio: 3/4; }
    .split-body { max-width: none; }
    .probleem-points, .specs-grid, .reviews-grid, .story-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; gap: 2rem; }
    .order-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 520px) {
    body { font-size: 1rem; }
    .hero-content { padding-top: 5rem; }
    .hero-title { font-size: clamp(2rem, 9vw, 2.7rem); }
    .hero-title, .hero-subtitle, .section-title, .body-text, .lead, .review-card blockquote { overflow-wrap: break-word; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-usps { grid-template-columns: 1fr; gap: .75rem; }
    .usp-grid { grid-template-columns: 1fr; }
    .gallery-thumbs { grid-template-columns: repeat(5, 1fr); gap: .5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; }
    .section { padding-block: clamp(3.5rem, 12vw, 5rem); }
    /* Cookiemelding netjes stapelen op smalle schermen */
    .cookie-inner { flex-direction: column; align-items: stretch; text-align: center; gap: .85rem; }
    .cookie-inner p { min-width: 0; }
    .cookie-inner .btn { width: 100%; }
}

/* =============================================================================
   Meertaligheid + Red Light Therapy (toevoegingen)
   ========================================================================== */

/* Header-acties: taalwisselaar + CTA */
.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.lang-switch { display: inline-flex; align-items: center; gap: .1rem; }
.lang-switch a {
    font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--text-invert);
    opacity: .6; padding: .3rem .5rem; border-radius: 8px; transition: opacity .2s, background .2s;
}
.lang-switch a:hover { opacity: 1; }
.lang-switch a.is-active { opacity: 1; color: var(--gold-light); }
.site-header.solid .lang-switch a { color: var(--text); }
.site-header.solid .lang-switch a.is-active { color: var(--gold-deep); }

/* Taalkeuze in mobiel overlay */
.mobile-nav__lang { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; justify-content: center; }
.mobile-nav__lang a {
    font-size: .9rem; font-weight: 600; color: rgba(245,242,236,.7);
    border: 1px solid rgba(255,255,255,.16); border-radius: 100px; padding: .5rem 1.1rem; transition: all .2s;
}
.mobile-nav__lang a.is-active, .mobile-nav__lang a:hover { color: #241a06; background: var(--gold-grad); border-color: transparent; }

/* Prijs met doorgestreepte 'oud' + pre-orderprijs */
.order-price { font-family: var(--font-serif); line-height: 1; margin-bottom: .1rem; display: flex; align-items: baseline; justify-content: center; gap: .6rem; }
.order-price-old { font-size: 1.4rem; color: rgba(245,242,236,.45); text-decoration: line-through; }
.order-price-now { font-size: 2.6rem; color: var(--white); }

/* --- Red Light Therapy pagina --- */
.rlt-hero { position: relative; min-height: 82svh; display: flex; align-items: center; color: var(--white); overflow: hidden; }
.rlt-hero-media { position: absolute; inset: 0; z-index: -1; }
.rlt-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.rlt-hero-content { padding-top: 7rem; max-width: 760px; }
.rlt-brand-line { margin-top: 1.75rem; font-size: .8rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-light); }
.rlt-intro { margin-bottom: 1.25rem; }

.rlt-showcase { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.rlt-showcase img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 3/4; }
.rlt-showcase img:first-child { aspect-ratio: 3/2; grid-row: span 1; }

.rlt-price-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; margin-top: 3rem; }
.rlt-price-card { background: rgba(255,255,255,.04); border: 1px solid var(--line-light); border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center; transition: transform .35s var(--ease), background .35s; display: flex; flex-direction: column; gap: .4rem; }
.rlt-price-card:hover { transform: translateY(-6px); background: rgba(198,161,91,.08); }
.rlt-price-card h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 600; color: var(--white); min-height: 2.6em; display: flex; align-items: center; justify-content: center; }
.rlt-rent { font-family: var(--font-serif); font-size: 1.9rem; color: var(--gold-light); line-height: 1; }
.rlt-rent span { font-family: var(--font-sans); font-size: .8rem; color: rgba(245,242,236,.6); display: block; margin-top: .2rem; }
.rlt-buy { font-size: .85rem; color: rgba(245,242,236,.6); margin-bottom: .75rem; }

.rlt-checklist { display: flex; flex-direction: column; gap: .85rem; }
.rlt-checklist li { display: flex; align-items: flex-start; gap: .65rem; color: var(--text-soft); }
.rlt-checklist .icon { width: 1.15em; height: 1.15em; color: var(--gold-deep); flex: none; margin-top: .2em; }

.rlt-buy-title { font-family: var(--font-sans); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; text-align: center; }
.rlt-buy-list { max-width: 460px; margin: 0 auto; }
.rlt-buy-list li { display: flex; justify-content: space-between; align-items: center; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.rlt-buy-list li strong { font-family: var(--font-serif); font-size: 1.3rem; color: var(--text); }

@media (max-width: 1024px) {
    .rlt-price-grid { grid-template-columns: repeat(2, 1fr); }
    .rlt-showcase { grid-template-columns: 1fr 1fr; }
    .rlt-showcase img:first-child { grid-column: span 2; }
}
@media (max-width: 560px) {
    .rlt-price-grid { grid-template-columns: 1fr; }
    .rlt-showcase { grid-template-columns: 1fr; }
    .rlt-showcase img, .rlt-showcase img:first-child { aspect-ratio: 16/10; grid-column: auto; }
    .order-price { flex-direction: column; gap: .1rem; }
}

/* =============================================================================
   Split-hero (desktop + mobiel) — scherpe, contained afbeelding i.p.v. uitgerekt
   ========================================================================== */
.hero-split { background: linear-gradient(140deg, #0b0b0c 0%, #17140d 55%, #0b0b0c 100%); }
.hero-split::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(55% 45% at 82% 28%, rgba(198,161,91,.16), transparent 70%);
}
.hero-split-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
    align-items: center; padding-top: 7rem; padding-bottom: 3.5rem;
}
.hero-split .hero-text { max-width: 600px; }
.hero-visual { position: relative; }
.hero-visual img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 58%;
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.hero-visual::after {
    content: ""; position: absolute; inset: auto -14px -14px auto; width: 55%; height: 55%;
    border: 1.5px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; opacity: .55;
}
@media (max-width: 860px) {
    .hero-split-inner { grid-template-columns: 1fr; gap: 2.25rem; padding-top: 5.5rem; padding-bottom: 2.5rem; }
    .hero-visual { order: 2; }
    .hero-visual img { aspect-ratio: 4/3; object-position: center 55%; max-height: 60vh; }
    .hero-visual::after { display: none; }
}

/* Mobiele header: alleen logo + hamburger, nette logo-grootte zonder clipping.
   Deze regel staat bewust ná de basis-.header-actions{display:flex} zodat hij wint. */
@media (max-width: 860px) {
    .main-nav, .header-actions { display: none !important; }
    .nav-toggle { display: flex; }
    .header-inner { gap: 1rem; min-height: 60px; }
    .brand-logo,
    .site-header.solid .brand-logo,
    .site-header.scrolled .brand-logo { width: 54px; height: 54px; }
    .brand { display: inline-flex; align-items: center; flex: none; }
    .nav-toggle { margin-left: auto; flex: none; }
}
