/* =====================================================
   Aardbeienplukken.nl — Townhub-inspired Directory
   Fonts: DM Sans (body) + Playfair Display (hero heading)
   Palette: Strawberry reds, warm gold, farmer green
   ===================================================== */

/* === 1. CSS Variables === */
:root {
    --primary: #C62828;
    --primary-dark: #8E1C1C;
    --primary-light: #EF5350;
    --accent: #D4A843;
    --accent-dark: #B8922E;
    --text-dark: #334155;
    --text-body: #64748B;
    --text-muted: #94A3B8;
    --bg-light: #F8FAFC;
    --bg-section: #F1F5F9;
    --white: #ffffff;
    --border: #E2E8F0;
    --farmer-green: #1A472A;
    --farmer-green-light: #245C38;
    --shadow-card: 0 10px 14px 0 rgba(37,44,65,0.07);
    --shadow-card-hover: 0 16px 20px 0 rgba(37,44,65,0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-body: 'DM Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;

    /* Aliases for css-theming rule compliance */
    --secondary: #D4A843;
    --dark: #1E293B;
    --text: #334155;
    --text-light: #64748B;
    --cream: #F8FAFC;
}

/* === 2. Reset + Base Typography === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}
h2 { font-size: 2.125rem; }
h3 { font-size: 1.25rem; }

p { color: var(--text-body); line-height: 1.7; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
input, button, textarea, select { font: inherit; }
::selection { background: var(--primary); color: var(--white); }


/* === 3. Reusable: Section Title === */
.section-title { text-align: center; margin-bottom: 56px; }
.section-title--left { text-align: left; }
.section-title--light h2 { color: var(--white); }
.section-title--light p { color: rgba(255,255,255,0.7); }
.section-title__label {
    display: inline-block;
    font-size: 12px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--primary);
    margin-bottom: 10px;
}
.section-title__label--gold { color: var(--accent); }
.section-title h2 { margin-bottom: 16px; }
.section-title p { max-width: 520px; margin: 0 auto; font-size: 15px; }
.section-title--left p { margin: 0; }

.section-separator {
    display: block; width: 50px; height: 3px;
    background: var(--primary); border-radius: 3px;
    margin: 0 auto 20px;
}
.section-separator--left { margin: 0 0 20px; }
.section-separator--gold { background: var(--accent); }


/* === 4. Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; font-size: 15px; font-weight: 600;
    border-radius: var(--radius-sm); border: none;
    cursor: pointer; transition: var(--transition);
    text-decoration: none; line-height: 1.4; font-family: var(--font-body);
    letter-spacing: 0.3px; height: 48px;
}
.btn i { font-size: 14px; transition: var(--transition); }
.btn:hover i { transform: translateX(3px); }
.btn--primary { background: var(--primary); color: var(--white); }
.btn--primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(198,40,40,0.3); }
.btn--gold { background: var(--accent); color: var(--white); }
.btn--gold:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,67,0.3); }
.btn--full { width: 100%; }


/* === 5. Navbar === */
.nav {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white);
    height: 70px;
    transition: var(--transition);
}
.nav--scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }

.nav__inner {
    max-width: 1280px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between;
    height: 100%;
}

.nav__logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav__logo-icon { font-size: 24px; line-height: 1; }
.nav__logo-text {
    font-size: 18px; font-weight: 400; color: var(--text-dark);
    letter-spacing: -0.3px;
}
.nav__logo-text strong { font-weight: 700; color: var(--primary); }

.nav-links { display: flex; gap: 0; margin: 0; padding: 0; }
.nav-links__item {
    display: block; padding: 10px 18px; color: var(--text-body);
    font-size: 15px; font-weight: 500;
    transition: var(--transition);
}
.nav-links__item:hover { color: var(--primary); }

.nav__cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: var(--white); padding: 10px 20px;
    border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
    transition: var(--transition);
}
.nav__cta:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); }
.nav__cta i { font-size: 13px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }


/* === 6. Hero === */
.hero {
    position: relative;
    min-height: calc(100vh - 70px);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
}
.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        180deg,
        rgba(30,15,15,0.55) 0%,
        rgba(30,15,15,0.65) 50%,
        rgba(30,15,15,0.80) 100%
    );
}
.hero__content {
    position: relative; z-index: 2; text-align: center;
    padding: 80px 24px 120px; max-width: 800px; width: 100%;
}
.hero__separator {
    display: block; width: 50px; height: 3px;
    background: var(--primary); border-radius: 3px;
    margin: 0 auto 28px;
}
.hero__title {
    font-family: var(--font-heading);
    color: var(--white); font-size: 52px; font-weight: 700;
    line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px;
}
.hero__subtitle {
    color: rgba(255,255,255,0.8); font-size: 18px;
    max-width: 560px; margin: 0 auto 44px; line-height: 1.7;
}

.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--text-dark);
    padding: 14px 28px; border-radius: 50px;
    font-size: 15px; font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transition: var(--transition); cursor: pointer;
    text-decoration: none;
}
.hero__pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    color: var(--text-dark);
}

.hero__scroll {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%); z-index: 2;
    color: rgba(255,255,255,0.5); font-size: 24px;
    animation: heroScroll 2s ease-in-out infinite;
}
@keyframes heroScroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}


/* === 7. Directory Section (Map + Listings) === */
.directory { background: var(--white); }

.directory__title-bar {
    padding: 64px 32px 40px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.directory__title-bar .section-title { margin-bottom: 0; }
.directory__title-bar .section-title p { color: var(--text-muted); font-size: 14px; }

.directory__split {
    display: grid;
    grid-template-columns: 58% 42%;
}

/* Listings Column */
.directory__list {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px; padding: 28px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    align-content: start;
    background: var(--bg-section);
}

/* Listing Card — Townhub pattern */
.listing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: visible;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 2px 8px rgba(37,44,65,0.06);
}
.listing-card::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: -4px;
    z-index: -1;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 10px 14px 0 rgba(37,44,65,0.10);
    transition: var(--transition);
}
.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(37,44,65,0.10);
}
.listing-card:hover::after {
    box-shadow: 0 16px 20px 0 rgba(37,44,65,0.14);
}
.listing-card--active {
    border-color: var(--primary);
    box-shadow: inset 3px 0 0 var(--primary), 0 4px 16px rgba(198,40,40,0.10);
}

.listing-card__accent {
    height: 4px; border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}
.listing-card__body { padding: 20px; }
.listing-card__name {
    font-size: 16px; font-weight: 700; color: var(--text-dark);
    margin-bottom: 6px; line-height: 1.3;
}
.listing-card__city {
    font-size: 13px; color: var(--text-muted); font-weight: 500;
    display: flex; align-items: center; gap: 5px; margin-bottom: 10px;
}
.listing-card__city i { font-size: 12px; color: var(--primary); }
.listing-card__info {
    font-size: 14px; color: var(--text-body); line-height: 1.6;
    margin-bottom: 16px;
}
.listing-card__link {
    font-size: 13px; color: var(--primary); font-weight: 600;
    display: inline-flex; align-items: center; gap: 5px;
    transition: var(--transition);
}
.listing-card__link i { font-size: 12px; transition: var(--transition); }
.listing-card:hover .listing-card__link i { transform: translateX(3px); }

/* Map Column */
.directory__map-wrap {
    position: sticky; top: 70px;
    height: calc(100vh - 70px);
    border-left: 1px solid var(--border);
}
.directory__map { width: 100%; height: 100%; z-index: 1; }

/* Map popup styling */
.directory__map .leaflet-popup-content { font-family: var(--font-body); font-size: 13px; }
.directory__map .leaflet-popup-content strong { color: var(--primary); font-size: 14px; }
.directory__map .leaflet-popup-content em { color: var(--text-body); font-size: 12px; font-style: italic; }

/* CTA bar */
.directory__cta {
    background: var(--bg-section); padding: 20px 32px; text-align: center;
    border-top: 1px solid var(--border);
}
.directory__cta p { font-size: 15px; color: var(--text-body); margin: 0; }
.directory__cta a {
    color: var(--primary); font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
}
.directory__cta a:hover { color: var(--primary-dark); }
.directory__cta a i { font-size: 13px; transition: var(--transition); }
.directory__cta a:hover i { transform: translateX(3px); }

/* Scrollbar styling */
.directory__list::-webkit-scrollbar { width: 6px; }
.directory__list::-webkit-scrollbar-track { background: var(--bg-section); }
.directory__list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.directory__list::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }


/* === 8. How It Works === */
.how {
    padding: 100px 32px;
    background: var(--bg-section);
}
.how__inner { max-width: 960px; margin: 0 auto; }

.how__steps {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 0;
}
.how__step {
    text-align: center; flex: 1; position: relative;
    padding: 0 24px;
}
.how__num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 700;
    margin: 0 auto 20px;
    position: relative; z-index: 2;
    box-shadow: 0 6px 20px rgba(198,40,40,0.25);
}
.how__icon {
    color: var(--text-muted); font-size: 36px;
    margin-bottom: 16px;
}
.how__step h3 {
    font-size: 18px; font-weight: 700; margin-bottom: 10px;
}
.how__step p {
    font-size: 14px; color: var(--text-body); line-height: 1.6;
}

.how__connector {
    width: 80px; flex-shrink: 0;
    border-top: 2px dashed var(--border);
    margin-top: 30px;
    align-self: flex-start;
}


/* === 9. Seizoenswerk === */
.werk {
    padding: 100px 32px;
    background: var(--white);
}
.werk__inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: start;
}
.werk__intro {
    font-size: 16px; line-height: 1.7; color: var(--text-body);
    margin-bottom: 36px;
}

.werk__benefits { display: flex; flex-direction: column; gap: 24px; }
.werk__benefit { display: flex; gap: 16px; align-items: flex-start; }
.werk__benefit-icon {
    width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
    background: rgba(198,40,40,0.08); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.werk__benefit strong {
    display: block; font-size: 15px; color: var(--text-dark); margin-bottom: 2px;
}
.werk__benefit span {
    font-size: 14px; color: var(--text-body); line-height: 1.5;
}

.werk__form-col { position: sticky; top: 94px; }


/* === 10. Card (shared form container) === */
.card {
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.card::after {
    content: '';
    position: absolute;
    left: 20px; right: 20px; bottom: 0;
    z-index: -1; height: 50px; border-radius: 50%;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.card--form {
    padding: 36px 32px;
}
.card--form h3 {
    font-size: 1.25rem; text-align: center; margin-bottom: 6px;
}
.card__subtitle {
    font-size: 14px; color: var(--text-muted); text-align: center;
    margin-bottom: 24px;
}

/* Dark card variant */
.card--dark {
    background: var(--white);
    border-color: var(--border);
}


/* === 11. Form Styles === */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label {
    font-size: 13px; font-weight: 600; color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px; border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 15px; background: var(--white); color: var(--text-dark);
    transition: var(--transition); width: 100%;
    font-family: var(--font-body); height: 48px;
}
.form-group textarea { height: auto; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(198,40,40,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

/* Form success state */
.form-success {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; text-align: center; padding: 48px 24px;
}
.form-success i { font-size: 48px; color: var(--primary); margin-bottom: 12px; }
.form-success h4 { margin-bottom: 6px; font-size: 1.2rem; color: var(--text-dark); }
.form-success p { font-size: 15px; color: var(--text-body); }


/* === 12. Voor de Boer === */
.boer {
    padding: 100px 32px; position: relative;
    background: var(--farmer-green);
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
}
.boer__inner { max-width: 1100px; margin: 0 auto; }

.boer__cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    margin-bottom: 48px;
}
.boer__card {
    text-align: center; padding: 32px 20px; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    transition: var(--transition);
}
.boer__card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.12); }
.boer__card-icon {
    width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
    background: rgba(212,168,67,0.15); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.boer__card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.boer__card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

.boer__stats {
    display: flex; justify-content: center; gap: 64px;
    margin-bottom: 56px; padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.boer__stat { text-align: center; }
.boer__stat-num {
    display: block; font-size: 2.4rem; font-weight: 700;
    color: var(--accent); margin-bottom: 4px; line-height: 1.2;
}
.boer__stat-num i { font-size: 2rem; }
.boer__stat-label { font-size: 14px; color: rgba(255,255,255,0.6); }

.boer__form-wrap {
    max-width: 580px; margin: 0 auto 40px;
}
.boer__form-wrap .card { border-color: var(--border); }

.boer__footnote { text-align: center; font-size: 14px; color: rgba(255,255,255,0.4); }
.boer__footnote a { color: var(--accent); }
.boer__footnote a:hover { color: var(--white); }


/* === 13. Contact === */
.contact {
    padding: 80px 32px;
    background: var(--bg-section);
}
.contact__inner { max-width: 640px; margin: 0 auto; }
.contact__form-wrap { margin-bottom: 24px; }
.contact__email {
    text-align: center; font-size: 15px; color: var(--text-body);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.contact__email i { color: var(--primary); }
.contact__email a { color: var(--text-body); }
.contact__email a:hover { color: var(--primary); }


/* === 14. Footer === */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner { max-width: 1200px; margin: 0 auto; padding: 56px 32px 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; gap: 40px; }

.footer__logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; text-decoration: none; }
.footer__logo-icon { font-size: 22px; }
.footer__logo-text { font-size: 17px; font-weight: 400; color: var(--white); }
.footer__logo-text strong { font-weight: 700; color: var(--accent); }
.footer__desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer__desc a { color: var(--accent); }
.footer__desc a:hover { color: var(--white); }

.footer__heading { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: rgba(255,255,255,0.5); font-size: 14px; }
.footer__links a:hover { color: var(--accent); }

.footer__contact li {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; margin-bottom: 10px;
}
.footer__contact i { color: var(--accent); font-size: 14px; }
.footer__contact a { color: rgba(255,255,255,0.5); }
.footer__contact a:hover { color: var(--accent); }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 40px;
    padding: 20px 0; text-align: center;
    color: rgba(255,255,255,0.3); font-size: 13px;
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.footer__bottom a { color: var(--accent); font-size: 13px; }
.footer__bottom a:hover { color: var(--white); }


/* === 15. Responsive — Tablet (max-width: 992px) === */
@media (max-width: 992px) {
    /* Nav */
    .nav-toggle { display: flex; }
    .nav-links {
        display: none; position: absolute; top: 70px; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 8px 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 999;
        border-bottom: 1px solid var(--border);
    }
    .nav-links--open { display: flex; }
    .nav-links__item { padding: 12px 24px; }
    .nav__cta { display: none; }

    /* Hero */
    .hero { min-height: 80vh; }
    .hero__title { font-size: 38px; }
    .hero__subtitle { font-size: 16px; }
    .hero__content { padding: 60px 24px 100px; }

    /* Directory */
    .directory__split { grid-template-columns: 1fr; }
    .directory__map-wrap {
        position: relative; top: auto;
        height: 400px; border-left: none;
        border-bottom: 1px solid var(--border);
        order: -1;
    }
    .directory__list {
        max-height: none; overflow-y: visible;
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }

    /* How */
    .how { padding: 80px 24px; }
    .how__steps { flex-direction: column; align-items: center; gap: 0; }
    .how__step { padding: 0 0 32px; max-width: 360px; }
    .how__connector {
        width: 2px; height: 40px; border-top: none;
        border-left: 2px dashed var(--border);
        margin: 0;
    }

    /* Werk */
    .werk { padding: 80px 24px; }
    .werk__inner { grid-template-columns: 1fr; gap: 40px; }
    .werk__form-col { position: static; }

    /* Boer */
    .boer { padding: 80px 24px; }
    .boer__cards { grid-template-columns: repeat(2, 1fr); }
    .boer__stats { gap: 40px; }

    /* Contact */
    .contact { padding: 60px 24px; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}


/* === 16. Responsive — Mobile (max-width: 576px) === */
@media (max-width: 576px) {
    /* Nav */
    .nav { height: 64px; }
    .nav__inner { padding: 0 16px; }
    .nav__logo-text { font-size: 16px; }
    .nav-links { top: 64px; }

    /* Hero */
    .hero { min-height: 0; }
    .hero__content { padding: 48px 16px 80px; }
    .hero__title { font-size: 28px; }
    .hero__subtitle { font-size: 15px; margin-bottom: 28px; }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__pill { width: 100%; max-width: 280px; justify-content: center; padding: 12px 24px; font-size: 14px; }
    .hero__scroll { bottom: 20px; }

    /* Directory */
    .directory__title-bar { padding: 40px 16px 24px; }
    .directory__title-bar h2 { font-size: 1.5rem; }
    .directory__map-wrap { height: 280px; }
    .directory__list { grid-template-columns: 1fr; padding: 16px; gap: 16px; }
    .directory__cta { padding: 16px; }

    /* How */
    .how { padding: 60px 16px; }
    .how__inner h2 { font-size: 1.5rem; }

    /* Werk */
    .werk { padding: 60px 16px; }
    .werk__inner h2 { font-size: 1.5rem; }
    .card--form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    /* Boer */
    .boer { padding: 60px 16px; }
    .boer__inner h2 { font-size: 1.5rem; }
    .boer__cards { grid-template-columns: 1fr; }
    .boer__stats { flex-direction: column; gap: 24px; }
    .boer__form-wrap { margin-bottom: 24px; }

    /* Contact */
    .contact { padding: 48px 16px; }
    .contact__inner h2 { font-size: 1.5rem; }

    /* Footer */
    .footer__grid { grid-template-columns: 1fr; }
    .footer__inner { padding: 32px 16px 0; }
    .footer__bottom { padding: 16px 0; }

    /* Typography */
    h2 { font-size: 1.5rem; }
}
