/* ============================================================
   Studio Front — v2 design system (IKEA-first redesign)
   Namespace: .spuithuys-*  |  Loaded only by the /preview layout
   Palette: oudroze #C99288 · saliegroen #9BAA97 · off-white #F8F6F3
            antraciet #2D2D2D · zand/beige #DCCFC2
   Fonts: Montserrat (Light tekst / SemiBold koppen) · Allura accent
   ============================================================ */

:root {
    --sh-ink: #2D2D2D;          /* antraciet — koppen, teksten, "FRONT" */
    --sh-ink-2: #4b4847;        /* lopende tekst */
    --sh-muted: #847e7a;
    --sh-rose: #C99288;         /* oudroze — knoppen, accenten */
    --sh-rose-dark: #b67c71;    /* oudroze hover / tekst-accent */
    --sh-rose-light: #e2bcb3;   /* licht oudroze — accenten op donkere fotos/vlakken */
    --sh-sage: #9BAA97;         /* saliegroen — lijnen, iconen */
    --sh-sage-dark: #82937e;
    --sh-soft: #F8F6F3;         /* warm off-white — site-achtergrond */
    --sh-soft-2: #ece4db;       /* verzacht zand voor secties */
    --sh-beige: #DCCFC2;        /* zand/beige — vlakken */
    --sh-line: rgba(45, 45, 45, .09);
    --sh-white: #ffffff;
    /* aliases: oude tokennamen blijven werken in views */
    --sh-gold: var(--sh-rose);
    --sh-gold-dark: var(--sh-rose-dark);
    --sh-shadow: 0 18px 50px rgba(45, 45, 45, .08);
    --sh-shadow-sm: 0 8px 24px rgba(45, 45, 45, .06);
    --sh-radius: 26px;
    --sh-radius-sm: 18px;
    --sh-container: 1180px;
    --sh-header-h: 76px;
    --sh-font: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --sh-script: 'Brittany Signature', 'Allura', cursive;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.sh-body {
    margin: 0;
    font-family: var(--sh-font);
    font-weight: 300;
    color: var(--sh-ink-2);
    background: var(--sh-soft);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.sh-body img { max-width: 100%; height: auto; display: block; }
/* :where() houdt specificiteit op 0, zodat knop-/nav-/footerkleuren altijd winnen */
:where(.sh-body) a { color: var(--sh-rose-dark); }
.sh-body b, .sh-body strong { font-weight: 600; }

/* script-accent (Brittany Signature / Allura) */
.sh-script {
    font-family: var(--sh-script);
    font-weight: 400;
    color: var(--sh-rose-dark);
}

.spuithuys-container {
    width: min(var(--sh-container), calc(100% - 40px));
    margin: 0 auto;
}
.spuithuys-narrow { max-width: 880px; }

/* ---------- header / nav ---------- */
.sh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--sh-line);
}
/* frosted glass on a pseudo-element so .sh-header does NOT become a
   containing block for the position:fixed mobile nav drawer */
.sh-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(248, 246, 243, .92);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    backdrop-filter: saturate(140%) blur(10px);
}
.sh-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: var(--sh-header-h);
    /* header may run a touch wider than the 1180 content column so the full
       nav + phone + offerte fit on one line without shrinking links */
    width: min(1280px, calc(100% - 40px));
}
.sh-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.sh-logo img { height: 42px; width: auto; }

.sh-nav { display: flex; align-items: center; flex-wrap: nowrap; gap: 2px; }
.sh-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--sh-ink);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;            /* never break a label mid-word */
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.sh-nav a:hover { background: var(--sh-soft-2); }
.sh-nav .sh-nav__primary { color: var(--sh-rose-dark); font-weight: 600; }
.sh-nav .sh-nav__primary:hover { background: var(--sh-soft-2); }

/* dropdown */
.sh-has-sub { position: relative; }
.sh-has-sub .sh-caret { transition: transform .2s ease; }
.sh-submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 250px;
    list-style: none;
    margin: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--sh-line);
    border-radius: 16px;
    box-shadow: var(--sh-shadow-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all .18s ease;
}
.sh-submenu li { display: block; }
.sh-submenu a { display: block; border-radius: 10px; font-size: 14px; }
.sh-has-sub:hover .sh-submenu,
.sh-has-sub:focus-within .sh-submenu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.sh-has-sub:hover .sh-caret { transform: rotate(180deg); }

/* in-drawer offerte button + bel-link: only on mobile */
.sh-nav > .spuithuys-btn-primary { display: none; }
.sh-nav .sh-nav__bel { display: none; }

.sh-header__cta { display: flex; align-items: center; gap: 12px; }
.sh-phone {
    display: inline-flex; align-items: center; gap: 7px;
    font-weight: 600; color: var(--sh-ink); text-decoration: none; white-space: nowrap;
}
.sh-phone:hover { color: var(--sh-rose-dark); }

/* hamburger */
.sh-burger {
    display: none;
    width: 46px; height: 46px;
    border: 1px solid var(--sh-line);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    align-items: center; justify-content: center;
}
.sh-burger svg { width: 24px; height: 24px; stroke: var(--sh-ink); }

/* ---------- buttons ---------- */
.spuithuys-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.spuithuys-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 50px;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.spuithuys-btn:hover { transform: translateY(-1px); }
.spuithuys-btn-primary {
    background: var(--sh-rose); color: #fff;
    box-shadow: 0 12px 30px rgba(201, 146, 136, .35);
}
.spuithuys-btn-primary:hover { background: var(--sh-rose-dark); color: #fff; }
.spuithuys-btn-secondary {
    background: rgba(255, 255, 255, .12);
    color: currentColor;
    border-color: rgba(255, 255, 255, .35);
}
.spuithuys-btn-secondary:hover { background: rgba(255, 255, 255, .2); }
.spuithuys-section .spuithuys-btn-secondary,
.spuithuys-on-light .spuithuys-btn-secondary {
    background: #fff; color: var(--sh-ink); border-color: var(--sh-line);
}
.spuithuys-section .spuithuys-btn-secondary:hover { background: var(--sh-ink); color: #fff; }
.spuithuys-btn-light { background: #fff; color: var(--sh-ink); }
.spuithuys-btn-light:hover { background: var(--sh-soft-2); color: var(--sh-ink); }
.spuithuys-btn-block { width: 100%; }

/* ---------- sections / typography ---------- */
.spuithuys-section { padding: 84px 0; background: var(--sh-soft); }
.spuithuys-section-soft { background: var(--sh-soft-2); }
.spuithuys-section-dark { background: var(--sh-ink); color: #fff; }
.spuithuys-section-tight { padding: 56px 0; }

.spuithuys-eyebrow {
    display: inline-block; margin: 0 0 10px;
    font-family: var(--sh-script);
    font-size: clamp(26px, 3vw, 32px); line-height: 1; font-weight: 400;
    letter-spacing: .01em; text-transform: none; color: var(--sh-rose-dark);
}
.spuithuys-section-dark .spuithuys-eyebrow { color: var(--sh-rose); }
.spuithuys-hero .spuithuys-eyebrow { color: var(--sh-rose-light); }

.spuithuys-section h2 {
    margin: 0 0 22px;
    font-weight: 600;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08; letter-spacing: -.02em; color: var(--sh-ink);
}
.spuithuys-section-dark h2 { color: #fff; }
.spuithuys-section h3 { margin: 0 0 12px; font-weight: 600; font-size: 22px; line-height: 1.2; color: var(--sh-ink); }
.spuithuys-section p { font-size: 17px; line-height: 1.8; color: var(--sh-ink-2); }
.spuithuys-section-dark p { color: rgba(255, 255, 255, .88); }

.spuithuys-section-heading { max-width: 820px; margin: 0 auto 44px; text-align: center; }
.spuithuys-center-text { max-width: 780px; margin: 36px auto 0; text-align: center; }
.spuithuys-lead { font-size: 20px !important; line-height: 1.7; }

/* ---------- hero ---------- */
.spuithuys-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(72px, 12vw, 120px) 0;
    background: var(--sh-ink) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.spuithuys-hero::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(115deg, rgba(45, 45, 45, .9) 0%, rgba(45, 45, 45, .58) 55%, rgba(45, 45, 45, .32) 100%);
}
.spuithuys-hero__video {
    position: absolute; inset: 0; z-index: -2;
    width: 100%; height: 100%; object-fit: cover;
}
.spuithuys-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    gap: 48px; align-items: center;
}
.spuithuys-hero h1 {
    margin: 0 0 18px;
    font-weight: 600;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.02; letter-spacing: -.03em;
}
.spuithuys-hero-subtitle {
    margin: 0 0 18px;
    font-size: clamp(20px, 3vw, 30px); line-height: 1.2; font-weight: 500;
    color: rgba(255, 255, 255, .95);
}
.spuithuys-hero p { max-width: 640px; font-size: 18px; line-height: 1.7; color: rgba(255, 255, 255, .9); }

/* centered inner-page hero */
.spuithuys-hero--center { text-align: center; padding: clamp(60px, 9vw, 92px) 0; }
.spuithuys-hero--center h1 { font-size: clamp(34px, 5vw, 56px); }
.spuithuys-hero--center .spuithuys-hero-subtitle,
.spuithuys-hero--center > .spuithuys-container > p { margin-left: auto; margin-right: auto; }
.spuithuys-hero--center .spuithuys-buttons { justify-content: center; }

.spuithuys-hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px;
    list-style: none; padding: 0;
}
.spuithuys-hero-badges li {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 500; font-size: 15px; color: #fff;
}
.spuithuys-hero-badges li::before { content: "✓"; color: var(--sh-rose); font-weight: 700; }

/* cards / panels */
.spuithuys-hero-card,
.spuithuys-card,
.spuithuys-list-card,
.spuithuys-panel,
.spuithuys-step,
.spuithuys-compare > div,
.spuithuys-stat,
.spuithuys-review {
    border-radius: var(--sh-radius);
    background: #fff;
    color: var(--sh-ink-2);
    box-shadow: var(--sh-shadow);
}
.spuithuys-hero-card { padding: 34px; background: rgba(255, 255, 255, .96); }
.spuithuys-hero-card h2 { margin: 0 0 16px; font-weight: 600; font-size: 26px; line-height: 1.15; color: var(--sh-ink); }

.spuithuys-hero-card ul,
.spuithuys-check-list,
.spuithuys-compare ul {
    margin: 0; padding: 0; list-style: none;
}
.spuithuys-hero-card li,
.spuithuys-check-list li,
.spuithuys-compare li {
    position: relative; padding-left: 30px; margin: 12px 0; line-height: 1.55;
}
.spuithuys-hero-card li::before,
.spuithuys-check-list li::before,
.spuithuys-compare li::before {
    content: "✓"; position: absolute; left: 0; top: 0; color: var(--sh-sage-dark); font-weight: 700;
}

/* grids */
.spuithuys-card-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px;
}
.spuithuys-two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.spuithuys-four-columns { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.spuithuys-card { padding: 30px; }
.spuithuys-card .spuithuys-card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--sh-soft-2); color: var(--sh-sage-dark);
    display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.spuithuys-card .spuithuys-card-icon svg { width: 26px; height: 26px; }
.spuithuys-card p { font-size: 16px; }

.spuithuys-list-card { padding: 34px; }
.spuithuys-list-card h3 { margin-bottom: 16px; }

.spuithuys-two-column { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 48px; align-items: center; }
.spuithuys-two-column--media img { border-radius: var(--sh-radius); box-shadow: var(--sh-shadow); }

/* split section */
.spuithuys-split-section { background: linear-gradient(90deg, var(--sh-soft) 0%, var(--sh-soft) 50%, var(--sh-soft-2) 50%, var(--sh-soft-2) 100%); }
.spuithuys-panel { padding: 38px; }
.spuithuys-panel-dark { background: var(--sh-ink); color: #fff; }
.spuithuys-panel-dark h2, .spuithuys-panel-dark h3, .spuithuys-panel-dark p { color: #fff; }

/* steps */
.spuithuys-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.spuithuys-step { padding: 30px; }
.spuithuys-step > span,
.spuithuys-step span.spuithuys-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; margin-bottom: 18px;
    border-radius: 50%; background: var(--sh-sage); color: #fff; font-weight: 600;
}

/* compare */
.spuithuys-compare { display: grid; gap: 18px; }
.spuithuys-compare > div { padding: 30px; }
.spuithuys-compare-highlight { border: 2px solid var(--sh-rose); }
.spuithuys-compare-bad li::before { content: "–"; color: #b03434; }

/* stats / trust */
.spuithuys-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.spuithuys-stat { padding: 26px; text-align: center; }
.spuithuys-stat strong { display: block; font-size: clamp(30px, 4vw, 44px); line-height: 1; font-weight: 600; color: var(--sh-rose-dark); letter-spacing: -.02em; }
.spuithuys-stat span { font-size: 15px; font-weight: 500; color: var(--sh-ink); }

.spuithuys-trust-row {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 34px;
}
.spuithuys-trust-row img { height: 58px; width: auto; opacity: .9; }

/* reviews */
.spuithuys-reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.spuithuys-review { padding: 28px; display: flex; flex-direction: column; gap: 12px; }
.spuithuys-review .spuithuys-stars { color: var(--sh-rose); letter-spacing: 2px; font-size: 18px; }
.spuithuys-review p { font-size: 16px; margin: 0; }
.spuithuys-review .spuithuys-review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.spuithuys-review .spuithuys-review-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.spuithuys-review .spuithuys-review-author b { display: block; font-size: 15px; color: var(--sh-ink); }
.spuithuys-review .spuithuys-review-author small { color: var(--sh-muted); }

/* brands */
.spuithuys-brands { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 22px; }
.spuithuys-brand {
    display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start;
    padding: 18px; border-radius: var(--sh-radius-sm); background: var(--sh-soft-2);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.spuithuys-brand:hover { transform: translateY(-2px); box-shadow: var(--sh-shadow-sm); background: #fff; }
.spuithuys-brand-icon {
    width: 48px; height: 48px; border-radius: 12px; background: #fff;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--sh-line);
}
.spuithuys-brand-icon svg, .spuithuys-brand-icon img { width: 30px; height: 30px; object-fit: contain; }
.spuithuys-brand h3 { margin: 0 0 2px; font-size: 16px; }
.spuithuys-brand p { margin: 0; font-size: 14px; line-height: 1.45; color: var(--sh-muted); }
.spuithuys-brand-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin: 16px 0 0; padding: 0; list-style: none;
}
.spuithuys-brand-tags li {
    display: inline-flex; align-items: center; line-height: 1;
    padding: 8px 14px; border-radius: 999px;
    background: var(--sh-soft-2); border: 1px solid var(--sh-line);
    font-size: 14px; font-weight: 500; color: var(--sh-ink-2);
}

/* gallery */
.spuithuys-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.spuithuys-gallery img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--sh-radius-sm); }
.spuithuys-gallery a { display: block; overflow: hidden; border-radius: var(--sh-radius-sm); }
.spuithuys-gallery a img { transition: transform .4s ease; }
.spuithuys-gallery a:hover img { transform: scale(1.05); }

/* FAQ */
.spuithuys-faq { display: grid; gap: 14px; margin-top: 30px; }
.spuithuys-faq details { padding: 20px 24px; border-radius: var(--sh-radius-sm); background: #fff; border: 1px solid var(--sh-line); transition: border-color .15s ease; }
.spuithuys-faq details[open] { border-color: var(--sh-sage); }
.spuithuys-faq summary {
    cursor: pointer; font-weight: 600; color: var(--sh-ink); list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.spuithuys-faq summary::-webkit-details-marker { display: none; }
.spuithuys-faq summary::after { content: "+"; font-size: 24px; color: var(--sh-sage-dark); line-height: 1; }
.spuithuys-faq details[open] summary::after { content: "–"; }
.spuithuys-faq p { margin: 14px 0 0; }

/* forms */
.spuithuys-form-card {
    background: #fff; border-radius: var(--sh-radius); box-shadow: var(--sh-shadow); padding: 36px;
}
.spuithuys-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.spuithuys-field { display: flex; flex-direction: column; gap: 7px; }
.spuithuys-field--full { grid-column: 1 / -1; }
.spuithuys-field label { font-weight: 500; font-size: 14px; color: var(--sh-ink); }
.spuithuys-field input,
.spuithuys-field select,
.spuithuys-field textarea {
    font: inherit; color: var(--sh-ink);
    padding: 13px 15px;
    border: 1px solid var(--sh-beige);
    border-radius: 12px;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
}
.spuithuys-field textarea { min-height: 130px; resize: vertical; }
.spuithuys-field input:focus,
.spuithuys-field select:focus,
.spuithuys-field textarea:focus {
    outline: none; border-color: var(--sh-rose); box-shadow: 0 0 0 3px rgba(201, 146, 136, .2);
}
.spuithuys-field small { color: var(--sh-muted); font-size: 13px; }
.spuithuys-alert {
    padding: 16px 18px; border-radius: 14px; margin-bottom: 22px;
    background: #eef2ed; border: 1px solid #c5d1c2; color: #3c4d38; font-weight: 500;
}
.spuithuys-error { color: #b03434; font-size: 13px; }

/* final CTA */
.spuithuys-final-cta { padding: 96px 0; background: var(--sh-ink); color: #fff; text-align: center; }
.spuithuys-final-cta .spuithuys-container { max-width: 900px; }
.spuithuys-final-cta h2 { margin: 0 0 18px; font-weight: 600; font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -.03em; }
.spuithuys-final-cta p { margin: 0 auto 8px; max-width: 700px; color: rgba(255, 255, 255, .86); font-size: 18px; }
.spuithuys-final-cta .spuithuys-buttons { justify-content: center; }

/* footer */
.sh-footer { background: var(--sh-ink); color: #d8d2cc; padding: 64px 0 28px; }
.sh-footer__grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px;
}
.sh-footer h3 { color: #fff; font-weight: 600; font-size: 16px; margin: 0 0 16px; letter-spacing: .02em; }
.sh-footer a { color: #d8d2cc; text-decoration: none; display: block; margin: 0 0 9px; transition: color .15s ease; }
.sh-footer a:hover { color: var(--sh-rose); }
.sh-footer p { margin: 0 0 9px; font-size: 15px; }
.sh-footer ul { margin: 0; padding-left: 18px; }
.sh-footer ul li { margin-bottom: 7px; }
.sh-footer__logo img { height: 54px; margin-bottom: 14px; }
.sh-footer__cbw { display: inline-block; margin-top: 8px; }
.sh-footer__cbw img { height: 60px; background: #fff; padding: 6px; border-radius: 8px; }
.sh-footer__bottom {
    margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: space-between; align-items: center;
    font-size: 14px; color: #a89f99;
}
.sh-footer__bottom a { display: inline; color: #a89f99; }
.sh-disclaimer { font-size: 13px; color: #9b918b; margin-top: 14px; max-width: 70ch; }

/* preview ribbon */
.sh-preview-ribbon {
    position: fixed; bottom: 16px; left: 16px; z-index: 1200;
    background: var(--sh-rose); color: #fff; font-weight: 600; font-size: 13px;
    padding: 9px 14px; border-radius: 999px; box-shadow: var(--sh-shadow-sm);
    text-decoration: none;
}
.sh-preview-ribbon:hover { background: var(--sh-rose-dark); color: #fff; }

/* utilities */
.spuithuys-mt-0 { margin-top: 0 !important; }
.spuithuys-text-center { text-align: center; }

/* ---------- responsive ---------- */
/* mid-desktop: drop the (redundant) phone text, keep the offerte button —
   phone stays reachable in the burger drawer + footer */
@media (max-width: 1300px) {
    .sh-header__cta .sh-phone { display: none; }
}

/* header collapses to the burger drawer before the horizontal bar gets cramped */
@media (max-width: 1180px) {
    .sh-burger { display: inline-flex; }
    .sh-nav {
        position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
        flex-direction: column; align-items: stretch; gap: 4px;
        background: #fff; padding: 88px 18px 24px;
        transform: translateX(100%); transition: transform .25s ease;
        box-shadow: -20px 0 60px rgba(0, 0, 0, .2); overflow-y: auto;
    }
    .sh-nav.is-open { transform: translateX(0); }
    .sh-nav a { font-size: 18px; padding: 12px 14px; white-space: normal; }
    .sh-submenu {
        position: static; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border: none; padding: 0 0 0 12px; min-width: 0;
        display: none;
    }
    .sh-submenu a { white-space: normal; }
    .sh-has-sub.is-open .sh-submenu { display: block; }
    .sh-nav .sh-nav__bel { display: flex; color: var(--sh-rose-dark); }
    .sh-nav > .spuithuys-btn-primary { display: flex; margin-top: 12px; }
    .sh-header__offerte { display: none; }
    .sh-nav-overlay {
        position: fixed; inset: 0; background: rgba(0, 0, 0, .45);
        opacity: 0; visibility: hidden; transition: opacity .25s ease; z-index: 999;
    }
    .sh-nav-overlay.is-open { opacity: 1; visibility: visible; }
}

@media (max-width: 1000px) {
    .spuithuys-stats { grid-template-columns: repeat(2, 1fr); }
    .spuithuys-gallery { grid-template-columns: repeat(2, 1fr); }
    .sh-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
    .spuithuys-hero-grid,
    .spuithuys-two-column,
    .spuithuys-card-grid,
    .spuithuys-steps,
    .spuithuys-reviews,
    .spuithuys-brands,
    .spuithuys-two-columns,
    .spuithuys-four-columns { grid-template-columns: 1fr; }
    .spuithuys-form-grid { grid-template-columns: 1fr; }
    .spuithuys-section { padding: 64px 0; }
    .spuithuys-split-section { background: var(--sh-soft); }
}

@media (max-width: 560px) {
    .spuithuys-container { width: calc(100% - 28px); }
    .spuithuys-hero { padding: 64px 0; }
    .spuithuys-hero-card, .spuithuys-card, .spuithuys-list-card,
    .spuithuys-panel, .spuithuys-step, .spuithuys-compare > div,
    .spuithuys-form-card { padding: 24px; border-radius: 20px; }
    .spuithuys-buttons { display: grid; }
    .spuithuys-stats { grid-template-columns: 1fr 1fr; }
    .spuithuys-gallery { grid-template-columns: 1fr 1fr; }
    .spuithuys-gallery img { height: 170px; }
    .sh-footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto; }
    .spuithuys-btn:hover, .spuithuys-brand:hover, .spuithuys-gallery a:hover img { transform: none; }
    .spuithuys-hero__video { display: none; }
}

/* ---------- prijslijst per front (maattabel) ---------- */
.sh-pricelist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: start;
}
.sh-pricelist__card {
    background: var(--sh-white);
    border: 1px solid var(--sh-line);
    border-radius: var(--sh-radius-sm);
    box-shadow: var(--sh-shadow-sm);
    padding: 22px 22px 14px;
}
.sh-pricelist__card h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--sh-ink);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sh-sage);
}
.sh-pricelist__rows {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sh-pricelist__rows li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px dashed var(--sh-line);
    font-size: 15px;
}
.sh-pricelist__rows li:last-child { border-bottom: 0; }
.sh-pricelist__rows li span { color: var(--sh-ink-2); font-weight: 400; white-space: nowrap; }
.sh-pricelist__rows li strong { color: var(--sh-rose-dark); font-weight: 600; white-space: nowrap; }
.sh-pricelist__note {
    margin: 18px auto 0;
    max-width: 720px;
    text-align: center;
    font-size: 14px;
    color: var(--sh-muted);
}
@media (max-width: 980px) {
    .sh-pricelist { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .sh-pricelist { grid-template-columns: 1fr; }
}
