/* =========================================================
   TEXTIELDRUK ZUTPHEN
   main.css
   Exact afgestemd op huidige index.php
   ========================================================= */

:root {
    --bg: #ffffff;
    --bg-soft: #f7f8f4;
    --surface: #ffffff;
    --text: #101310;
    --text-soft: #676d67;
    --green: #3da51c;
    --green-hover: #318a16;
    --green-dark: #263b2a;
    --green-deep: #17271b;
    --green-soft: #edf5e8;
    --lime: #dff36a;
    --line: #dde1da;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow: 0 18px 50px rgba(22, 40, 25, .09);
    --container: 1440px;
    --font-body: "DM Sans", Arial, sans-serif;
    --font-heading: "Manrope", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }

h1, h2, h3 { margin: 0; color: var(--text); font-family: var(--font-heading); }
p { margin-top: 0; }

/* HEADER */
.site-header {
    position: relative; z-index: 500; width: 100%; padding: 14px 0;
    background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line);
}
.site-header__inner {
    display: grid; min-height: 68px; grid-template-columns: auto 1fr auto;
    align-items: center; gap: 38px;
}
.logo { display: inline-grid; line-height: 1; }
.logo__main { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; letter-spacing: -.055em; }
.logo__accent { width: 44px; height: 4px; margin: 7px 0 4px 6px; border-radius: 999px; background: var(--green); transform: rotate(-4deg); }
.logo__sub { margin-left: 50px; font-size: .67rem; font-weight: 900; letter-spacing: .19em; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; }
.main-nav__link {
    position: relative; padding: 0; border: 0; background: transparent; color: var(--text);
    cursor: pointer; font-size: .75rem; font-weight: 800; text-transform: uppercase;
}
.main-nav__link::after {
    position: absolute; bottom: -9px; left: 0; width: 0; height: 2px;
    background: var(--green); content: ""; transition: width .2s ease;
}
.main-nav__link:hover::after, .main-nav__link.is-active::after { width: 100%; }
.main-nav__toggle { display: flex; align-items: center; gap: 7px; }
.main-nav__dropdown { position: relative; }
.main-nav__chevron { font-size: .9rem; }

.dropdown-menu {
    position: absolute; top: calc(100% + 20px); left: -20px; display: grid; min-width: 230px;
    gap: 2px; padding: 10px; border: 1px solid var(--line); border-radius: 13px;
    background: #fff; box-shadow: var(--shadow); visibility: hidden; opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.dropdown-menu a { padding: 10px 12px; border-radius: 8px; font-size: .86rem; font-weight: 600; }
.dropdown-menu a:hover { background: var(--green-soft); color: var(--green-dark); }
.main-nav__dropdown:hover .dropdown-menu, .main-nav__dropdown.is-open .dropdown-menu {
    visibility: visible; opacity: 1; transform: translateY(0);
}

.site-header__actions { display: flex; align-items: center; gap: 12px; }
.header-search {
    display: grid; width: 42px; height: 42px; place-items: center; padding: 0;
    border: 0; background: transparent; cursor: pointer; font-size: 1.3rem;
}
.header-cta {
    display: inline-flex; min-height: 48px; align-items: center; justify-content: center;
    gap: 12px; padding: 0 20px; border-radius: 8px; background: var(--green);
    color: #fff; font-size: .82rem; font-weight: 800;
}
.header-cta:hover { background: var(--green-hover); }
.mobile-menu-button { display: none; width: 48px; height: 48px; padding: 7px; border: 0; background: transparent; cursor: pointer; }
.mobile-menu-button span { display: block; width: 31px; height: 2px; margin: 7px auto; border-radius: 99px; background: var(--text); }
.mobile-nav__top, .mobile-nav__actions { display: none; }

/* CLASSIC HOMEPAGE */
.classic-home { width: 100%; overflow: hidden; background: #fff; }

/* HERO */
.classic-hero {
    position: relative; width: 100%; overflow: hidden;
    background: radial-gradient(circle at 22% 30%, rgba(61,165,28,.06), transparent 30%), #fff;
}
.classic-hero__grid {
    display: grid; min-height: 590px;
    grid-template-columns: minmax(390px,.82fr) minmax(0,1.18fr); align-items: stretch;
}
.classic-hero__copy {
    position: relative; z-index: 2; display: flex; flex-direction: column;
    justify-content: center; padding: 68px 60px 56px 0;
}
.classic-eyebrow {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 18px;
    color: var(--green-dark); font-size: .71rem; font-weight: 900; letter-spacing: .17em;
}
.classic-eyebrow i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }
.classic-hero h1 {
    max-width: 620px; margin: 0; color: var(--text); font-family: var(--font-heading);
    font-size: clamp(4rem,5.8vw,6.5rem); font-weight: 800; line-height: .9; letter-spacing: -.07em;
}
.classic-hero h1 span { color: var(--green); }
.classic-hero__copy > p {
    max-width: 590px; margin: 27px 0 0; color: var(--text-soft);
    font-size: 1.02rem; line-height: 1.65;
}
.classic-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.classic-btn {
    display: inline-flex; min-height: 52px; align-items: center; justify-content: center;
    gap: 20px; padding: 0 23px; border: 1px solid transparent; border-radius: 8px;
    cursor: pointer; font-size: .86rem; font-weight: 800;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.classic-btn:hover { transform: translateY(-2px); }
.classic-btn--green { background: var(--green); color: #fff; }
.classic-btn--green:hover { background: var(--green-hover); }
.classic-btn--outline { border-color: #cfd4cc; background: #fff; color: var(--text); }
.classic-btn--outline:hover { border-color: var(--green); color: var(--green-dark); }
.classic-btn--white { background: #fff; color: var(--green-deep); }

.classic-hero__usps {
    display: flex; flex-wrap: wrap; gap: 11px 22px; margin-top: 35px; padding-top: 23px;
    border-top: 1px solid var(--line); color: #565c56; font-size: .76rem; font-weight: 700;
}
.classic-hero__usps span { white-space: nowrap; }
.classic-hero__usps span::first-letter { color: var(--green); }

.classic-hero__visual { position: relative; min-width: 0; min-height: 590px; overflow: hidden; background: var(--green-soft); }
.classic-hero__visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.classic-hero__visual::after {
    position: absolute; inset: 0; background: linear-gradient(90deg,rgba(255,255,255,.17),transparent 25%);
    content: ""; pointer-events: none;
}
.classic-hero__tag {
    position: absolute; z-index: 3; top: 22%; right: 8%; padding: 17px 20px;
    background: rgba(244,249,241,.95); box-shadow: 0 18px 40px rgba(20,40,22,.13);
    color: var(--green-deep); font-family: Georgia,serif; font-size: 1.35rem;
    font-style: italic; line-height: 1.1; transform: rotate(5deg);
}
.classic-hero__note {
    position: absolute; z-index: 3; right: 5%; bottom: 8%; color: var(--green-dark);
    font-family: Georgia,serif; font-size: 1.5rem; font-style: italic; line-height: 1.05;
    text-align: center; transform: rotate(-7deg);
}

/* GENERAL SECTIONS */
.classic-section { padding: 78px 0; }
.classic-heading {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px; margin-bottom: 30px;
}
.classic-label { margin-bottom: 8px; color: var(--green); font-size: .69rem; font-weight: 900; letter-spacing: .15em; }
.classic-label--light { color: var(--lime); }
.classic-heading h2 {
    margin: 0; font-family: var(--font-heading); font-size: clamp(2.2rem,3.4vw,4rem);
    font-weight: 800; line-height: .98; letter-spacing: -.055em;
}
.classic-heading__link { flex: 0 0 auto; padding-bottom: 5px; font-size: .83rem; font-weight: 800; }
.classic-heading__link span { margin-left: 7px; }
.classic-heading__link:hover { color: var(--green); }

/* PRODUCTS */
.classic-products { background: #fff; }
.classic-product-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 13px; }
.classic-product {
    min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 9px;
    background: #fff; box-shadow: 0 8px 24px rgba(22,40,25,.035);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.classic-product:hover { border-color: #cbd8c5; transform: translateY(-4px); box-shadow: var(--shadow); }
.classic-product__image { position: relative; width: 100%; aspect-ratio: 1.1/1; overflow: hidden; background: var(--bg-soft); }
.classic-product__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.classic-product:hover .classic-product__image img { transform: scale(1.04); }
.classic-product__body {
    display: flex; min-height: 90px; align-items: flex-start; justify-content: space-between;
    gap: 10px; padding: 14px;
}
.classic-product__body > div { min-width: 0; }
.classic-product__body h3 { margin: 0; font-family: var(--font-heading); font-size: .92rem; font-weight: 800; line-height: 1.15; }
.classic-product__body p { margin: 6px 0 0; color: var(--text-soft); font-size: .72rem; line-height: 1.4; }
.classic-product__body > span {
    display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center;
    border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: .9rem;
    transition: background .2s ease,border-color .2s ease,color .2s ease;
}
.classic-product:hover .classic-product__body > span { border-color: var(--green); background: var(--green); color: #fff; }

/* ABOUT / QUALITY */
.classic-about { width: 100%; overflow: hidden; background: var(--bg-soft); }
.classic-about__grid {
    display: grid; width: min(100%,1700px); margin-inline: auto;
    grid-template-columns: minmax(0,1.15fr) minmax(390px,.75fr) minmax(230px,.42fr);
    align-items: stretch;
}
.classic-about__image { position: relative; min-height: 520px; overflow: hidden; }
.classic-about__image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.classic-about__badge {
    position: absolute; z-index: 2; top: 35px; right: 35px; display: flex;
    width: 130px; height: 130px; flex-direction: column; align-items: center; justify-content: center;
    padding: 15px; border-radius: 50%; background: rgba(255,255,255,.95);
    box-shadow: 0 15px 35px rgba(22,40,25,.13); color: var(--green-dark);
    text-align: center; line-height: 1.3;
}
.classic-about__badge span { font-size: .62rem; letter-spacing: .09em; }
.classic-about__badge strong { margin: 2px 0; font-size: .75rem; letter-spacing: .05em; }
.classic-about__badge b { margin-top: 4px; color: var(--green); font-size: 1.05rem; }

.classic-about__content { display: flex; flex-direction: column; justify-content: center; padding: 60px 45px; }
.classic-about__content h2 {
    margin: 0; font-family: var(--font-heading); font-size: clamp(2.7rem,3.8vw,4.5rem);
    font-weight: 800; line-height: .96; letter-spacing: -.055em;
}
.classic-about__content > p { max-width: 560px; margin: 23px 0 20px; color: var(--text-soft); font-size: .95rem; line-height: 1.65; }
.classic-about__content ul { display: grid; gap: 7px; margin: 0 0 27px; padding: 0; list-style: none; }
.classic-about__content li { position: relative; padding-left: 26px; font-size: .87rem; }
.classic-about__content li::before { position: absolute; left: 0; color: var(--green); content: "✓"; font-weight: 900; }
.classic-about__content .classic-btn { align-self: flex-start; }

.classic-about__local {
    display: flex; flex-direction: column; justify-content: center; gap: 30px; padding: 45px 35px 45px 0;
}
.classic-about__quote {
    color: var(--green-dark); font-family: Georgia,serif; font-size: clamp(1.45rem,2vw,2.15rem);
    font-style: italic; line-height: 1.08; transform: rotate(-5deg);
}
.classic-postcard { padding: 9px 9px 21px; background: #fff; box-shadow: 0 18px 40px rgba(22,40,25,.13); transform: rotate(5deg); }
.classic-postcard img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.classic-postcard span {
    display: block; margin-top: 8px; color: var(--green-dark); text-align: center;
    font-family: Georgia,serif; font-size: 1rem; font-style: italic;
}

/* PREMIUM VOORDELEN */
.classic-benefits-premium {
    position: relative;
    padding: 72px 0 78px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%,rgba(61,165,28,.08),transparent 42%), #f2f7ee;
}
.classic-benefits-premium__intro { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.classic-benefits-premium__kicker {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    margin-bottom: 14px; color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .18em;
}
.classic-benefits-premium__kicker i { width: 75px; height: 1px; background: #cbdcc4; }
.classic-benefits-premium__intro h2 {
    margin: 0; color: var(--text); font-family: var(--font-heading);
    font-size: clamp(2.5rem,4vw,4.2rem); font-weight: 800; line-height: .98; letter-spacing: -.055em;
}
.classic-benefits-premium__grid { display: grid; max-width: 1050px; margin-inline: auto; gap: 14px; }
.classic-benefit-premium {
    display: grid; grid-template-columns: 72px minmax(0,1fr) 48px; align-items: center;
    gap: 20px; min-height: 112px; padding: 18px 22px;
    border: 1px solid rgba(38,59,42,.08); border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 30px rgba(23,39,27,.045), 0 2px 8px rgba(23,39,27,.025);
}
.classic-benefit-premium__icon {
    display: grid; width: 68px; height: 68px; place-items: center;
    border: 1px solid #dce9d7; border-radius: 50%; background: #f1f8ed;
    color: var(--green); font-size: 1.55rem; line-height: 1;
}
.classic-benefit-premium__text { display: flex; min-width: 0; flex-direction: column; }
.classic-benefit-premium__text strong {
    display: block; color: var(--text); font-family: var(--font-heading);
    font-size: 1.25rem; font-weight: 800; line-height: 1.05; letter-spacing: -.025em;
}
.classic-benefit-premium__text > span { display: block; margin-top: 3px; color: var(--text); font-size: 1rem; font-weight: 500; line-height: 1.25; }
.classic-benefit-premium__text small { display: block; margin-top: 5px; color: #8a9088; font-size: .79rem; font-weight: 400; line-height: 1.4; }
.classic-benefit-premium__arrow {
    display: grid; width: 44px; height: 44px; place-items: center; justify-self: end;
    border: 1px solid #dce9d7; border-radius: 50%; background: #f5f9f2;
    color: var(--green-dark); font-size: 1.1rem;
}

/* PROJECTS */
.classic-projects { background: #fff; }
.classic-project-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 13px; }
.classic-project-grid a {
    position: relative; min-width: 0; overflow: hidden; aspect-ratio: 1/.82;
    border-radius: 9px; background: var(--bg-soft);
}
.classic-project-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.classic-project-grid a:hover img { transform: scale(1.045); }
.classic-project-grid a::after {
    position: absolute; inset: 0; background: linear-gradient(180deg,transparent 60%,rgba(15,30,18,.22));
    content: ""; pointer-events: none;
}

/* REVIEWS */
.classic-reviews {
    background: radial-gradient(circle at 10% 30%,rgba(61,165,28,.07),transparent 25%),
                linear-gradient(180deg,var(--green-soft),#f8faf6);
}
.classic-review-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.classic-review-grid article {
    display: flex; min-width: 0; min-height: 215px; flex-direction: column; padding: 26px;
    border: 1px solid #d7e3d2; border-radius: 12px; background: rgba(255,255,255,.94);
    box-shadow: 0 12px 30px rgba(22,40,25,.045);
}
.classic-stars { margin-bottom: 14px; color: var(--green); font-size: .94rem; letter-spacing: .08em; }
.classic-review-grid article p { margin: 0 0 24px; font-size: .96rem; line-height: 1.58; }
.classic-review-grid article strong { display: block; margin-top: auto; font-family: var(--font-heading); font-size: .85rem; }
.classic-review-grid article > span { display: block; margin-top: 3px; color: var(--text-soft); font-size: .75rem; }

/* CTA */
.classic-cta { padding: 76px 0; background: var(--green-deep); color: #fff; }
.classic-cta__inner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.classic-cta h2 {
    margin: 0; color: #fff; font-family: var(--font-heading);
    font-size: clamp(2.6rem,4vw,4.6rem); font-weight: 800; line-height: .97; letter-spacing: -.055em;
}
.classic-cta__inner > div:last-child { max-width: 470px; }
.classic-cta p { margin: 0 0 25px; color: #cbd6ca; line-height: 1.65; }

/* FOOTER */
.site-footer { background: #f7f8f4; border-top: 1px solid var(--line); }
.site-footer__top {
    display: grid; grid-template-columns: 1.35fr .55fr .55fr .75fr 1.15fr .75fr 1fr;
    gap: 30px; align-items: start; padding-top: 60px; padding-bottom: 48px;
}
.footer-column, .footer-contact { display: grid; gap: 8px; }
.footer-column a, .footer-contact a, .footer-contact p { margin: 0; color: var(--text-soft); font-size: .82rem; }
.footer-column a:hover, .footer-contact a:hover { color: var(--green); }
.footer-socials { display: flex; flex-wrap: wrap; gap: 9px; }
.footer-socials a {
    display: grid; width: 36px; height: 36px; place-items: center;
    border: 1px solid var(--line); border-radius: 50%; background: #fff;
    font-size: .68rem; font-weight: 900;
}
.footer-socials a:hover { border-color: var(--green); background: var(--green); color: #fff; }
.footer-signature { color: var(--green-dark); font-family: Georgia,serif; font-size: 1.35rem; font-style: italic; line-height: 1.05; transform: rotate(-5deg); }
.site-footer__bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding-top: 20px; padding-bottom: 29px; border-top: 1px solid var(--line);
    color: #81877f; font-size: .71rem;
}
.site-footer__bottom > div, .footer-legal { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-powered a:hover { color: var(--green); }

/* TABLET */
@media (max-width:1180px) {
    .site-header__inner { gap: 20px; }
    .main-nav { gap: 16px; }
    .main-nav__link { font-size: .7rem; }
    .header-cta { display: none; }
    .classic-hero__grid { grid-template-columns: .92fr 1.08fr; }
    .classic-hero__copy { padding-right: 38px; }
    .classic-product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .classic-about__grid { grid-template-columns: 1fr 1fr; }
    .classic-about__local { display: none; }
    .classic-project-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .site-footer__top { grid-template-columns: 1.4fr repeat(3,1fr); }
}

/* MOBILE */
@media (max-width:860px) {
    .container { width: calc(100% - 40px); }
    .classic-section { padding: 64px 0; }

    .site-header { padding: 10px 0; background: #fff; }
    .site-header__inner { min-height: 74px; grid-template-columns: 1fr auto; gap: 16px; }
    .header-search, .header-cta { display: none; }
    .site-header__actions { justify-content: flex-end; }
    .mobile-menu-button { display: block; }

    .main-nav {
        position: fixed; z-index: 1000; inset: 0; display: flex; width: 100%; height: 100dvh;
        flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
        margin: 0; padding: 0; overflow-y: auto; background: #fff; visibility: hidden;
        opacity: 0; pointer-events: none; transform: translateX(100%);
        transition: transform .28s ease,opacity .2s ease,visibility .28s ease;
    }
    .main-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(0); }
    .mobile-nav__top {
        position: sticky; z-index: 10; top: 0; display: flex; min-height: 96px;
        align-items: center; justify-content: space-between;
        padding: calc(10px + env(safe-area-inset-top)) 24px 10px;
        border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98);
        backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    }
    .mobile-nav__close { position: relative; width: 50px; height: 50px; padding: 0; border: 0; background: transparent; cursor: pointer; }
    .mobile-nav__close span { position: absolute; top: 24px; left: 8px; width: 34px; height: 2px; border-radius: 99px; background: var(--text); }
    .mobile-nav__close span:first-child { transform: rotate(45deg); }
    .mobile-nav__close span:last-child { transform: rotate(-45deg); }
    .mobile-nav__content { display: flex; width: 100%; flex-direction: column; padding: 30px 24px 16px; }
    .main-nav__link {
        display: flex; width: 100%; min-height: 74px; align-items: center; justify-content: space-between;
        padding: 0; border: 0; border-bottom: 1px solid var(--line); background: transparent;
        font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800; line-height: 1;
        letter-spacing: -.045em; text-align: left; text-transform: none;
    }
    .main-nav__link::after { display: none; }
    .main-nav__link.is-active { color: var(--green); }
    .main-nav__dropdown { position: static; width: 100%; }
    .main-nav__toggle { justify-content: space-between; }
    .main-nav__chevron { margin-left: 20px; transition: transform .2s ease; }
    .main-nav__dropdown.is-open .main-nav__chevron { transform: rotate(180deg); }
    .dropdown-menu {
        position: static; display: none; width: 100%; min-width: 0; margin: 0;
        padding: 8px 0 18px 18px; border: 0; border-bottom: 1px solid var(--line);
        border-radius: 0; background: var(--green-soft); box-shadow: none;
        visibility: visible; opacity: 1; transform: none; transition: none;
    }
    .main-nav__dropdown:hover .dropdown-menu { visibility: visible; opacity: 1; transform: none; }
    .main-nav__dropdown.is-open .dropdown-menu { display: grid; }
    .dropdown-menu a { padding: 11px 9px; color: var(--green-dark); font-size: .95rem; font-weight: 700; }
    .mobile-nav__actions {
        display: grid; gap: 12px; margin-top: auto;
        padding: 22px 24px calc(26px + env(safe-area-inset-bottom));
    }
    .mobile-nav__button { width: 100%; min-height: 60px; }

    .classic-hero__grid { width: 100%; min-height: 0; grid-template-columns: 1fr; }
    .classic-hero__copy { width: calc(100% - 40px); margin-inline: auto; padding: 54px 0 43px; }
    .classic-eyebrow { margin-bottom: 16px; font-size: .65rem; gap: 8px; }
    .classic-hero h1 { max-width: 100%; font-size: clamp(3.5rem,15vw,5rem); line-height: .9; letter-spacing: -.07em; }
    .classic-hero__copy > p { margin-top: 23px; font-size: .96rem; line-height: 1.58; }
    .classic-hero__actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 25px; }
    .classic-btn { min-height: 52px; padding-inline: 18px; }
    .classic-hero__usps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-top: 28px; padding-top: 20px; font-size: .72rem; }
    .classic-hero__visual { width: 100%; min-height: 430px; }
    .classic-hero__visual > img { object-position: center; }
    .classic-hero__tag { top: 24px; right: 22px; padding: 14px 16px; font-size: 1.1rem; }
    .classic-hero__note { right: 23px; bottom: 27px; font-size: 1.25rem; }

    .classic-heading { align-items: flex-start; flex-direction: column; gap: 11px; margin-bottom: 25px; }
    .classic-heading h2 { font-size: clamp(2.35rem,10vw,3.5rem); line-height: .98; }
    .classic-heading__link { padding: 0; font-size: .82rem; }

    .classic-product-grid {
        display: flex; width: calc(100% + 20px); gap: 13px; padding: 0 20px 8px 0;
        overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: 0;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .classic-product-grid::-webkit-scrollbar { display: none; }
    .classic-product { width: 270px; min-width: 270px; flex: 0 0 270px; scroll-snap-align: start; }
    .classic-product__image { height: 235px; aspect-ratio: auto; }
    .classic-product__body { min-height: 84px; padding: 14px; }
    .classic-product__body h3 { font-size: .93rem; }
    .classic-product__body p { font-size: .72rem; }

    .classic-about__grid { width: 100%; grid-template-columns: 1fr; }
    .classic-about__image { min-height: 420px; }
    .classic-about__image > img { position: absolute; object-position: center; }
    .classic-about__badge { top: 25px; right: 22px; width: 115px; height: 115px; }
    .classic-about__content { width: calc(100% - 40px); margin-inline: auto; padding: 55px 0 60px; }
    .classic-about__content h2 { font-size: clamp(3rem,12vw,4.2rem); }
    .classic-about__content > p { margin-top: 20px; font-size: .94rem; }
    .classic-about__content li { font-size: .88rem; }
    .classic-about__local {
        display: flex; width: calc(100% - 40px); margin-inline: auto; flex-direction: row;
        align-items: center; gap: 30px; padding: 0 0 60px;
    }
    .classic-about__quote { width: 42%; font-size: 1.45rem; }
    .classic-postcard { width: 58%; }

    .classic-benefits-premium { padding: 58px 0 64px; }
    .classic-benefits-premium__intro { margin-bottom: 30px; }
    .classic-benefits-premium__kicker { gap: 13px; margin-bottom: 15px; font-size: .66rem; letter-spacing: .17em; }
    .classic-benefits-premium__kicker i { width: 45px; }
    .classic-benefits-premium__intro h2 { max-width: 600px; margin-inline: auto; font-size: clamp(2.25rem,8vw,3.5rem); line-height: .99; }
    .classic-benefits-premium__grid { gap: 13px; }
    .classic-benefit-premium {
        grid-template-columns: 64px minmax(0,1fr) 44px; gap: 16px; min-height: 106px;
        padding: 17px 18px; border-radius: 20px;
    }
    .classic-benefit-premium__icon { width: 62px; height: 62px; font-size: 1.4rem; }
    .classic-benefit-premium__arrow { width: 42px; height: 42px; }

    .classic-project-grid {
        display: flex; width: calc(100% + 20px); gap: 13px; padding: 0 20px 8px 0;
        overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .classic-project-grid::-webkit-scrollbar { display: none; }
    .classic-project-grid a { width: 285px; min-width: 285px; flex: 0 0 285px; aspect-ratio: 1/.85; scroll-snap-align: start; }

    .classic-review-grid {
        display: flex; width: calc(100% + 20px); gap: 13px; padding: 0 20px 8px 0;
        overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .classic-review-grid::-webkit-scrollbar { display: none; }
    .classic-review-grid article { width: 290px; min-width: 290px; flex: 0 0 290px; scroll-snap-align: start; }

    .classic-cta { padding: 65px 0; }
    .classic-cta__inner { grid-template-columns: 1fr; gap: 28px; }
    .classic-cta h2 { font-size: clamp(2.8rem,11vw,4rem); }
    .classic-cta__inner > div:last-child { max-width: 100%; }

    .site-footer__top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}

/* SMALL MOBILE */
@media (max-width:560px) {
    .container { width: calc(100% - 36px); }
    .logo__main { font-size: 1.55rem; }
    .logo__accent { width: 38px; }
    .logo__sub { margin-left: 39px; }

    .classic-hero__copy { width: calc(100% - 36px); padding: 47px 0 39px; }
    .classic-hero h1 { font-size: clamp(3.35rem,16vw,4.65rem); }
    .classic-hero__actions { grid-template-columns: 1fr; }
    .classic-hero__actions .classic-btn { width: 100%; }
    .classic-hero__usps { grid-template-columns: 1fr 1fr; }
    .classic-hero__visual { min-height: 360px; }

    .classic-product { width: 245px; min-width: 245px; flex-basis: 245px; }
    .classic-product__image { height: 210px; }

    .classic-about__image { min-height: 350px; }
    .classic-about__content { width: calc(100% - 36px); padding: 49px 0 54px; }
    .classic-about__content h2 { font-size: 3rem; }
    .classic-about__local {
        width: calc(100% - 36px); align-items: flex-start; flex-direction: column; padding-bottom: 55px;
    }
    .classic-about__quote, .classic-postcard { width: 100%; }
    .classic-about__quote { padding-left: 12px; }
    .classic-postcard { max-width: 290px; margin-inline: auto; }

    .classic-benefits-premium { padding: 52px 0 58px; }
    .classic-benefits-premium__intro { margin-bottom: 27px; }
    .classic-benefits-premium__kicker { gap: 10px; font-size: .61rem; letter-spacing: .15em; }
    .classic-benefits-premium__kicker i { width: 30px; }
    .classic-benefits-premium__intro h2 { font-size: clamp(2.15rem,10vw,2.85rem); line-height: 1; }
    .classic-benefits-premium__intro h2 br { display: none; }
    .classic-benefit-premium {
        grid-template-columns: 58px minmax(0,1fr) 38px; gap: 13px;
        min-height: 101px; padding: 15px; border-radius: 18px;
    }
    .classic-benefit-premium__icon { width: 56px; height: 56px; font-size: 1.25rem; }
    .classic-benefit-premium__text strong { font-size: 1.08rem; }
    .classic-benefit-premium__text > span { margin-top: 2px; font-size: .9rem; }
    .classic-benefit-premium__text small { margin-top: 4px; font-size: .69rem; line-height: 1.3; }
    .classic-benefit-premium__arrow { width: 36px; height: 36px; font-size: .95rem; }

    .classic-project-grid a { width: 260px; min-width: 260px; flex-basis: 260px; }
    .classic-review-grid article { width: 270px; min-width: 270px; flex-basis: 270px; }
    .classic-cta h2 { font-size: 2.85rem; }
    .classic-cta .classic-btn { width: 100%; }
    .site-footer__top { grid-template-columns: 1fr; }
}

/* VERY SMALL PHONES */
@media (max-width:380px) {
    .classic-hero h1 { font-size: 3.05rem; }
    .classic-hero__usps { grid-template-columns: 1fr; }
    .classic-heading h2 { font-size: 2.25rem; }
    .classic-product { width: 230px; min-width: 230px; flex-basis: 230px; }

    .classic-benefit-premium {
        grid-template-columns: 52px minmax(0,1fr) 34px; gap: 10px; padding: 13px;
    }
    .classic-benefit-premium__icon { width: 50px; height: 50px; font-size: 1.15rem; }
    .classic-benefit-premium__text strong { font-size: 1rem; }
    .classic-benefit-premium__text > span { font-size: .84rem; }
    .classic-benefit-premium__text small { font-size: .64rem; }
    .classic-benefit-premium__arrow { width: 32px; height: 32px; }

    .classic-project-grid a { width: 245px; min-width: 245px; flex-basis: 245px; }
    .classic-review-grid article { width: 255px; min-width: 255px; flex-basis: 255px; }
}


/* VOORDELEN - SVG LIJNICONEN
   Alleen de icoonweergave; bestaande layout blijft ongewijzigd. */
.classic-benefit-premium__icon svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 560px) {
    .classic-benefit-premium__icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 380px) {
    .classic-benefit-premium__icon svg {
        width: 23px;
        height: 23px;
    }
}
