/* ===== Basisthema (ongewijzigd) ===== */
:root {
    --brand-dark: #3C3633;
    --text-light: #FEFEFE;
    --bg-main: #FDFCF9;
    --bg-section-light: #F9F6F2;
    --bg-section-medium: #F4EFEA;
    --accent-beige-light: #F0EAE4;
    --accent-beige-dark: #B5A696;
    --card-bg: #FFFFFF;
    --border-color: #EAE2D8;
    --navbar-height: 70px;
    --font-family: 'Montserrat', sans-serif;
    --whatsapp-green: #25D366;
}

/* Reset + basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--brand-dark);
    background: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--navbar-height);
}

:where(section[id]) {
    scroll-margin-top: calc(var(--navbar-height) + 16px)
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px
}

.section-padding {
    padding: 80px 0
}

#hero.section-padding {
    padding: 0;
    min-height: calc(100vh - var(--navbar-height));
    min-height: calc(100svh - var(--navbar-height));
    display: grid;
    place-items: center;
}

h1,
h2,
h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--brand-dark)
}

h1 {
    font-size: clamp(2.4rem, 1.6rem + 2.5vw, 3.2rem)
}

h2 {
    font-size: 2.3rem;
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: .85rem
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 3.5px;
    background: var(--accent-beige-dark);
    border-radius: 2px
}

h3 {
    font-size: 1.5rem;
    margin-bottom: .75rem
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 300
}

.section-intro-text,
.section-outro-text {
    font-size: 1.05rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #555
}

/* Full-width image between intro and content */
/* Werkwijze: intro layout (image left, text right) */
.werkwijze-intro {
    display: grid;
    grid-template-columns: 1.2fr 1.1fr;
    /* image a touch larger */
    grid-template-areas: "media text";
    gap: 2rem;
    align-items: center;
    margin: 0 auto 2.25rem;
    max-width: 1040px;
    /* slightly wider for balance with section above */
}

.werkwijze-intro-media {
    grid-area: media;
}

.werkwijze-intro-text {
    grid-area: text;
}

.werkwijze-intro-media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.werkwijze-intro-text .section-intro-text {
    margin: 0;
    text-align: left;
    max-width: none;
}

.section-outro-text {
    margin-top: 2.5rem;
    margin-bottom: 0;
    font-size: .95rem
}

.about-sections a {
    color: var(--accent-beige-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: from-font;
    text-decoration-color: color-mix(in srgb, var(--accent-beige-dark), #000 15%);
    transition: color .25s ease, text-decoration-color .25s ease, background-color .25s ease;
    border-radius: 4px;
    padding: 0 1px;
}

.about-sections a:hover {
    color: var(--brand-dark);
    text-decoration-color: currentColor;
}

.about-sections a:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent-beige-dark), #000 22%);
    outline-offset: 2px;
    background: rgba(240, 234, 228, 0.35);
}

/* ===== Over Mij: Collapsible ===== */
.about-collapsible {
    margin-top: 1rem;
}

.collapsible-toggle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

.collapsible-toggle .chevron {
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.collapsible-toggle[aria-expanded="true"] .chevron {
    transform: rotate(180deg) translateY(1px);
}

.collapsible-content {
    overflow: hidden;
    transition: grid-template-rows .4s ease, opacity .35s ease;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    margin-top: 1rem;
}

.collapsible-content>* {
    min-height: 0;
}

.collapsible-content.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
}

.collapsible-content .about-sections>* {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}

.collapsible-content.is-open .about-sections>* {
    opacity: 1;
    transform: translateY(0);
}

.collapsible-content.is-open .about-sections>*:nth-child(1) {
    transition-delay: .05s;
}

.collapsible-content.is-open .about-sections>*:nth-child(2) {
    transition-delay: .1s;
}

.collapsible-content.is-open .about-sections>*:nth-child(3) {
    transition-delay: .15s;
}

.collapsible-content.is-open .about-sections>*:nth-child(4) {
    transition-delay: .2s;
}

.collapsible-content.is-open .about-sections>*:nth-child(5) {
    transition-delay: .25s;
}

.collapsible-content.is-open .about-sections>*:nth-child(6) {
    transition-delay: .3s;
}

.collapsible-content.is-open .about-sections>*:nth-child(7) {
    transition-delay: .35s;
}

.collapsible-content.is-open .about-sections>*:nth-child(8) {
    transition-delay: .4s;
}

.collapsible-content.opening .about-sections {
    animation: pulseBorder .6s ease-out;
}

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(181, 166, 150, 0), inset 0 0 0 0 rgba(240, 234, 228, 0);
    }

    50% {
        box-shadow: 0 10px 28px rgba(181, 166, 150, 0.22);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(181, 166, 150, 0);
    }
}

.about-sections h3 {
    font-size: 1.1rem;
    margin: 1rem 0 .5rem;
}

.about-sections p+p {
    margin-top: .5rem;
}

/* Inline mobile-only photo inside Over Mij -> Lees meer */
.about-inline-photo-mobile {
    display: none;
    margin: 1rem 0 1.5rem;
}

.about-inline-photo-mobile img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

/* ===== Skip link ===== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    position: fixed;
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: #fff;
    color: #111;
    z-index: 1000;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

/* ===== Navbar ===== */
#page-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000
}

.navbar {
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    background: rgba(252, 249, 243, .92);
    transition: background-color .4s ease, box-shadow .4s ease
}

#page-header.scrolled .navbar {
    background: var(--bg-main);
    box-shadow: 0 3px 10px rgba(0, 0, 0, .07)
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center
}

.nav-links li {
    margin-left: 2.2rem
}

.nav-link {
    font-weight: 500;
    font-size: .95rem;
    transition: color .3s ease;
    position: relative;
    padding-bottom: 5px
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--accent-beige-dark);
    transition: width .3s ease, left .3s ease
}

.nav-link:hover::after,
.nav-link.active-link::after {
    width: 100%;
    left: 0
}

.nav-link.active-link {
    color: var(--accent-beige-dark);
    font-weight: 700
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 8px;
    border-radius: 8px
}

.hamburger-menu:focus-visible {
    outline: 3px solid var(--accent-beige-dark)
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--brand-dark);
    margin: 6px 0;
    border-radius: 1px;
    transition: .3s ease
}

/* ===== Hero (clean & simple, no background image) ===== */
.hero-section {
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--accent-beige-light);
}

.hero-section::before {
    content: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: clamp(24px, 3vw, 40px) clamp(18px, 3vw, 34px);
    display: grid;
    gap: clamp(12px, 2.6vh, 22px);
    justify-items: center;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.hero-section h1,
.hero-section p {
    text-shadow: none;
}

.hero-section h1 {
    color: var(--brand-dark);
    font-size: clamp(2.4rem, 1.8rem + 2.2vw, 3.2rem);
    line-height: 1.2;
    letter-spacing: 0.1px;
    font-weight: 700;
}

.hero-section p {
    color: #555;
    font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
    margin: 0 auto 2rem;
    font-weight: 300;
    max-width: 700px;
}

.hero-section .btn-primary {
    box-shadow: none;
    border-color: var(--brand-dark);
}

.hero-section .btn-primary:hover {
    box-shadow: none;
}

/* Ken Burns animation removed (no image) */


/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: .9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color .3s ease, transform .2s ease, border-color .3s ease, color .3s ease, box-shadow .2s ease;
    border: 2px solid transparent;
    cursor: pointer
}

.btn-primary {
    background: var(--brand-dark);
    color: var(--text-light);
    border-color: var(--brand-dark)
}

.btn-primary:hover {
    background: var(--accent-beige-dark);
    color: var(--brand-dark);
    border-color: var(--accent-beige-dark);
    transform: translateY(-3px)
}

.btn-secondary {
    background: transparent;
    color: var(--accent-beige-dark);
    border-color: var(--accent-beige-dark)
}

.btn-secondary:hover {
    background: var(--accent-beige-dark);
    color: var(--card-bg);
    transform: translateY(-3px)
}

.btn:active {
    transform: translateY(-1px) scale(.98);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .15)
}

.btn:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent-beige-dark), #000 10%);
    outline-offset: 2px
}

/* ===== Content ===== */
.bg-section-light {
    background: var(--bg-section-light)
}

/* Over Mij */
#over-mij .flex-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

#over-mij .text-content {
    flex: 1
}

#over-mij .image-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center
}

#over-mij .image-content img {
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    width: 100%;
    height: 100%;
    object-fit: cover
}

#over-mij .image-content img:first-child {
    transform: rotate(-3deg) translateY(-10px)
}

#over-mij .image-content img:last-child {
    transform: rotate(3deg) translateY(10px)
}

/* Werkwijze Grid */
.werkwijze-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.werkwijze-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(176, 166, 149, 0.08);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.werkwijze-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(176, 166, 149, 0.14);
}

.werkwijze-step-number {
    position: absolute;
    top: -15px;
    background: var(--accent-beige-dark);
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--bg-main);
}

.werkwijze-icon {
    font-size: 2.2rem;
    color: var(--accent-beige-dark);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.werkwijze-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.werkwijze-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    flex-grow: 1;
}


/* Galerij */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    transition: transform .4s ease, box-shadow .4s ease
}

.gallery-item img:hover,
.gallery-item video:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15)
}

/* Tarieven */
.tarieven-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem
}

.tarief-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(176, 166, 149, .08);
    transition: transform .4s cubic-bezier(.25, .8, .25, 1), box-shadow .4s cubic-bezier(.25, .8, .25, 1);
    display: flex;
    flex-direction: column
}

.tarief-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(176, 166, 149, .18)
}

.tarief-card-highlighted {
    border: 2px solid var(--accent-beige-dark);
    box-shadow: 0 10px 30px rgba(176, 166, 149, .15)
}

.tarief-icon {
    font-size: 2.2rem;
    color: var(--accent-beige-dark);
    margin-bottom: 1rem
}

.tarief-prijs {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 1rem
}

.tarief-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: .95rem;
    text-align: left;
    flex-grow: 1
}

.tarief-features li {
    margin-bottom: .5rem;
    padding-left: 1.5em;
    position: relative
}

.tarief-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-beige-dark);
    position: absolute;
    left: 0
}

/* Reviews / Carousel */
.testimonial-section-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative
}

.testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box
}

.testimonial-carousel {
    overflow: hidden;
    width: 100%
}

.testimonial-track {
    display: flex;
    transition: transform .5s cubic-bezier(.645, .045, .355, 1)
}

.testimonial-slide {
    flex: 0 0 70%;
    margin: 0 1.5%;
    opacity: .4;
    transform: scale(.85);
    transition: opacity .5s ease, transform .5s ease;
    will-change: transform, opacity
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1)
}

.testimonial-content {
    background: var(--card-bg);
    padding: 2rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    border-left: 5px solid var(--accent-beige-dark);
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #444;
    flex-grow: 1
}

.testimonial-content h4 {
    font-weight: 600;
    color: var(--brand-dark);
    font-size: .95rem;
    text-align: right
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .9);
    border: 1px solid var(--border-color);
    color: var(--brand-dark);
    font-size: 1.6rem;
    padding: .55rem .85rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background-color .3s ease, color .3s ease, box-shadow .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    line-height: 1
}

.carousel-btn:hover {
    background: var(--accent-beige-dark);
    color: var(--text-light)
}

.carousel-btn.prev {
    left: 0
}

.carousel-btn.next {
    right: 0
}

.carousel-dots {
    text-align: center;
    margin-top: 2rem
}

.carousel-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color .3s ease, transform .3s ease
}

.carousel-dots .dot.active {
    background: var(--accent-beige-dark);
    transform: scale(1.3)
}

/* Contact */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .07);
    border: 1px solid var(--border-color)
}

.form-group {
    margin-bottom: 1.5rem
}

.form-group label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 600
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: .9rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-main);
    transition: border-color .3s ease, box-shadow .3s ease
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-beige-dark);
    box-shadow: 0 0 0 3px rgba(176, 166, 149, .25)
}

.contact-form button[type="submit"] {
    display: block;
    width: 100%
}

.contact-details {
    text-align: center;
    margin-top: 2.5rem
}

.contact-details a {
    font-weight: 600
}

.contact-details a:hover {
    color: var(--accent-beige-dark)
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--whatsapp-green);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    z-index: 999;
    transition: transform .3s cubic-bezier(.25, .8, .25, 1), background-color .3s ease
}

.whatsapp-fab:hover {
    transform: scale(1.1) rotate(5deg);
    background: #128C7E
}

/* Footer */
footer {
    background: var(--brand-dark);
    color: var(--bg-section-light);
    padding: 50px 0 0;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    padding-bottom: 40px
}

.footer-col h4 {
    font-size: inherit;
    margin-bottom: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    padding-bottom: .5rem
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-beige-dark)
}

.footer-col p {
    font-size: inherit;
    line-height: 1.7;
    color: #ccc
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: .75rem
}

.footer-col a {
    color: #ccc;
    transition: color .3s ease, padding-left .3s ease
}

.footer-col a:hover {
    color: var(--accent-beige-light);
    padding-left: 5px
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, .1);
    color: var(--text-light);
    border-radius: 50%;
    margin-right: .5rem;
    font-size: 1rem;
    transition: background-color .3s ease, transform .3s ease
}

.social-links a:hover {
    background: var(--accent-beige-dark);
    color: var(--brand-dark);
    transform: translateY(-3px)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
    padding: 20px 0;
    font-size: inherit;
    color: #aaa
}

/* Footer legal links: subtle animated underline + focus visibility */
.footer-bottom a {
    color: var(--accent-beige-light);
    position: relative;
    text-decoration: none;
    padding-bottom: 1px;
    letter-spacing: 0.1px;
    transition: color .28s cubic-bezier(.2, .8, .2, 1);
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    /* slankere underline */
    width: 100%;
    background: currentColor;
    /* beige door currentColor */
    transform: scaleX(0);
    transform-origin: 50% 50%;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
    opacity: .95;
}

.footer-bottom a:hover {
    color: var(--accent-beige-dark);
    /* premium contrast on hover */
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
}

.footer-bottom a:focus-visible {
    outline: 2px solid var(--accent-beige-dark);
    outline-offset: 3px;
}

/* ===== Animaties ===== */
.animate-on-load {
    opacity: 0;
    animation: fadeInUp .8s ease-out forwards
}

.animate-on-load.delay-1 {
    animation-delay: .3s
}

.animate-on-load.delay-2 {
    animation-delay: .6s
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.175, .885, .32, 1.275), transform .8s cubic-bezier(.175, .885, .32, 1.275)
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0)
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 80%;
        margin: 0 1%
    }

    .testimonial-carousel-wrapper {
        padding: 0 40px
    }

    .nav-links li {
        margin-left: 1.5rem
    }

    .werkwijze-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section .container {
        padding: 22px 18px;
        border-radius: 12px;
    }

    h2 {
        font-size: 1.8rem
    }


    #over-mij .flex-container {
        display: flex;
        align-items: center;
        gap: 0rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--navbar-height);
        left: 0;
        width: 100%;
        background: var(--bg-main);
        box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        z-index: 1000
    }

    .nav-links.active {
        display: flex
    }

    .nav-links li {
        margin: 0;
        width: 100%
    }

    .nav-link {
        display: block;
        padding: .85rem 1.5rem;
        text-align: center;
        width: 100%
    }

    .nav-link::after {
        display: none
    }

    .nav-link.active-link {
        background: var(--accent-beige-light)
    }

    .hamburger-menu {
        display: block
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg)
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg)
    }

    #over-mij .flex-container {
        flex-direction: column
    }

    #over-mij .image-content {
        display: none;
    }

    /* Show the inline photo only on mobile */
    .about-inline-photo-mobile {
        display: block;
    }

    .testimonial-slide {
        flex: 0 0 90%;
        transform: scale(.95);
        opacity: .5;
        margin: 0 .5%
    }

    .testimonial-slide.active {
        transform: scale(1);
        opacity: 1
    }

    .testimonial-carousel-wrapper {
        padding: 0 30px
    }

    .werkwijze-grid {
        grid-template-columns: 1fr;
    }

    /* Stack Werkwijze intro on mobile */
    .werkwijze-intro {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "media";
        gap: 1.25rem;
        max-width: 680px;
    }

    .werkwijze-intro-text .section-intro-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .testimonial-slide {
        flex: 0 0 100%;
        margin: 0
    }

    .testimonial-carousel-wrapper {
        padding: 0 20px
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: .4rem .7rem
    }
}

/* ===== Motion reduce ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }

    .hero-section {
        background: var(--accent-beige-light)
    }

    .hero-section::before {
        animation: none !important;
    }
}

/* ===== Form Status ===== */
.form-status {
    font-size: 0.95rem;
}

.form-status.info {
    opacity: 0.85;
}

.form-status.success {
    color: #137333;
}

.form-status.error {
    color: #b3261e;
}