/* =========================================================
BASIS
========================================================= */

:root {
    --green: #556F60;
    --green-dark: #3F5548;
    --dark: #242D28;
    --text: #5F6B65;
    --cream: #F9F8F3;
    --light: #EAEFEA;
    --border: #E2E6E2;
    --white: #FFFFFF;

    --display: 'Gabarito', sans-serif;
    --body: 'Instrument Sans', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body);
    color: var(--dark);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 48px));
    margin-inline: auto;
}


/* =========================================================
HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    width: 155px;
    height: 55px;
    object-fit: contain;
    display: block;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation a {
    position: relative;
    padding: 11px 14px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.main-navigation a:not(.nav-button):hover {
    color: var(--dark);
    background: var(--cream);
}

.main-navigation a.active {
    color: var(--dark);
    background: var(--cream);
    font-weight: 700;
}

.main-navigation a.active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
}

.main-navigation .nav-button {
    color: var(--white);
    background: var(--green);
    margin-left: 8px;
    padding-inline: 20px;
}

.main-navigation .nav-button:hover {
    color: var(--white);
    background: var(--green-dark);
    transform: translateY(-1px);
}

.main-navigation .nav-button.active {
    color: var(--white);
    background: var(--green);
    font-weight: 700;
}

.main-navigation .nav-button::after,
.main-navigation .nav-button.active::after {
    display: none;
}


/* =========================================================
MOBIELE MENU
========================================================= */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
}

.mobile-navigation {
    display: none;
    padding: 8px 24px 20px;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.mobile-navigation a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.mobile-navigation a:hover {
    color: var(--green);
}

.mobile-navigation.open {
    display: block;
}


/* =========================================================
TYPOGRAFIE
========================================================= */

h1,
h2,
h3 {
    font-family: var(--display);
    color: var(--dark);
    line-height: 1.1;
}

h1 {
    font-size: clamp(46px, 6vw, 70px);
    font-weight: 800;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.025em;
}

h3 {
    font-size: 20px;
}

.eyebrow {
    display: inline-block;
    color: var(--green);
    background: var(--light);
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}


/* =========================================================
HOMEPAGE HERO
========================================================= */

.hero-section {
    background: var(--cream);
    overflow: hidden;
    padding: 80px 0 90px;
    border-bottom: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    min-height: 570px;
}

.hero-content {
    max-width: 590px;
}

.hero-text {
    max-width: 580px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
    margin: 25px 0 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-visual {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: contain;
    display: block;
    background: transparent;
}


/* =========================================================
BUTTONS
========================================================= */

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 7px;
    border: 2px solid var(--green);
    font-weight: 600;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.button-primary {
    color: var(--white);
    background: var(--green);
}

.button-primary:hover {
    color: var(--white);
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
}

.button-secondary {
    color: var(--green);
    background: transparent;
}

.button-secondary:hover {
    color: var(--green-dark);
    background: var(--light);
}


/* =========================================================
ALGEMENE SECTIES
========================================================= */

.quality-section,
.about-preview-section,
.services-section,
.portfolio-section,
.content-section,
.steps-section,
.contact-section,
.questions-section {
    padding: 95px 0;
}

.quality-section {
    background: var(--white);
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading p {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--text);
}


/* =========================================================
QUALITY
========================================================= */

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.quality-card {
    padding: 34px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.icon-box {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--light);
    color: var(--green);
    font-size: 27px;
    margin-bottom: 24px;
}

.quality-card h3 {
    margin-bottom: 13px;
}

.quality-card p,
.service-card p,
.portfolio-card p,
.step-card p,
.content-section p,
.contact-details-grid p {
    color: var(--text);
    line-height: 1.75;
}


/* =========================================================
ABOUT PREVIEW
========================================================= */

.about-preview-section {
    background: var(--cream);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.about-image-wrapper {
    min-height: 500px;
    background: transparent;
    border-radius: 16px;
    display: flex;
    align-items: end;
    justify-content: center;
    overflow: hidden;
}

.about-image-wrapper img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.about-person-image {
    background: transparent;
}

.about-preview-content p {
    color: var(--text);
    line-height: 1.8;
    margin: 24px 0;
}

.text-link {
    color: var(--green);
    font-weight: 700;
}

.text-link:hover {
    text-decoration: underline;
}


/* =========================================================
PAGINA HERO
========================================================= */

.page-hero {
    width: 100%;
    background: var(--cream);
    padding: 75px 0;
    border-bottom: none;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.page-hero-content {
    max-width: 650px;
}

.page-hero-content h1 {
    max-width: 650px;
}

.page-hero-content p {
    max-width: 650px;
    margin-top: 22px;
    color: var(--text);
    font-size: 17px;
    line-height: 1.75;
}

.page-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
    background: transparent;
}

.page-hero-image img {
    display: block;
    width: 100%;
    max-width: 430px;
    height: auto;
    object-fit: contain;
    background: transparent;
}


/* =========================================================
CONTENT / OVER
========================================================= */

.split-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: start;
}

.split-content > div:first-child p + p {
    margin-top: 22px;
}

.quote-card {
    padding: 38px;
    background: var(--light);
    border-radius: 14px;
}

.quote-card blockquote,
.quote-card-large blockquote {
    font-family: var(--display);
    font-size: 24px;
    line-height: 1.5;
    font-weight: 600;
}

.quote-card p,
.quote-card-large p {
    margin-top: 22px;
    color: var(--text);
}


/* =========================================================
STAPPEN
========================================================= */

.steps-section {
    background: var(--cream);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.step-number,
.service-number,
.portfolio-number {
    display: block;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 17px;
}

.step-card h3 {
    margin-bottom: 13px;
}


/* =========================================================
DIENSTEN
========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 13px;
    display: flex;
    flex-direction: column;
}

.service-card > img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card h2 {
    font-size: 27px;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 25px;
}

.service-card .button {
    margin-top: auto;
}


/* =========================================================
PORTFOLIO
========================================================= */

.portfolio-section {
    background: var(--white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.portfolio-card {
    padding: 36px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 13px;
    text-align: center;
}

.portfolio-card h2 {
    font-size: 30px;
    margin-bottom: 18px;
    text-align: center;
}

.portfolio-card p {
    color: var(--text);
    line-height: 1.75;
    text-align: center;
}

.portfolio-card strong {
    display: block;
    color: var(--green);
    background: #EAEFEA;
    padding: 10px 16px;
    margin-top: 22px;
    border-radius: 7px;
    line-height: 1.6;
    text-align: center;
}


/* =========================================================
QUOTE
========================================================= */

.quote-section {
    padding: 80px 0;
    background: var(--light);
}

.quote-card-large {
    max-width: 850px;
    text-align: center;
}


/* =========================================================
CONTACT
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-image {
    min-height: 520px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--light);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-card {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(36, 45, 40, 0.06);
}

.small-label {
    color: var(--green);
    font-weight: 800;
    margin-bottom: 8px;
}

.appointment-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.appointment-info {
    background: var(--cream);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 28px;
}

.appointment-info h3 {
    margin-bottom: 5px;
}

.appointment-info span {
    color: var(--green);
    font-size: 14px;
    font-weight: 700;
}

.appointment-info p {
    color: var(--text);
    line-height: 1.7;
    margin-top: 15px;
}

.appointment-form {
    display: grid;
    gap: 10px;
}

.appointment-form label {
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--white);
    color: var(--dark);
}

.appointment-form input,
.appointment-form select {
    height: 48px;
}

.appointment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.full-button {
    width: 100%;
    margin-top: 15px;
}


/* =========================================================
VRAGEN / CONTACT DETAILS
========================================================= */

.questions-section {
    background: var(--cream);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
}

.contact-details-grid article {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-details-grid h3 {
    margin-bottom: 12px;
}

.contact-details-grid a {
    color: var(--green);
    font-weight: 700;
}


/* =========================================================
FOOTER
========================================================= */

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 55px;
    padding-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    color: var(--white);
    font-family: var(--display);
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 16px;
}

.site-footer h3 {
    color: var(--white);
    font-family: var(--body);
    font-size: 15px;
    margin-bottom: 18px;
}

.site-footer p,
.footer-list,
.footer-quality-list {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.7;
}

.footer-list,
.footer-quality-list {
    list-style: none;
}

.footer-list li,
.footer-quality-list li {
    margin-bottom: 9px;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    min-height: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.footer-links {
    display: flex;
    gap: 22px;
    font-size: 13px;
}


/* =========================================================
TABLET
========================================================= */

@media (max-width: 950px) {

    .main-navigation {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-grid,
    .about-preview-grid,
    .split-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .quality-grid,
    .services-grid,
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-hero-content {
        max-width: 700px;
    }

    .page-hero-image {
        justify-content: flex-start;
        min-height: auto;
    }

    .page-hero-image img {
        max-width: 400px;
    }

}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 650px) {

    .container {
        width: min(100% - 32px, 1120px);
    }

    .header-inner {
        min-height: 70px;
    }

    .site-logo {
        width: 135px;
        height: 50px;
    }

    .hero-section,
    .quality-section,
    .about-preview-section,
    .services-section,
    .portfolio-section,
    .content-section,
    .steps-section,
    .contact-section,
    .questions-section {
        padding: 65px 0;
    }

    .hero-grid {
        min-height: auto;
    }

    .page-hero {
        padding: 65px 0;
    }

    h1 {
        font-size: 43px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-main-image {
        max-width: 100%;
    }

    .quality-grid,
    .services-grid,
    .steps-grid,
    .contact-details-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .quality-card,
    .service-card-content,
    .step-card,
    .portfolio-card,
    .appointment-card {
        padding: 26px;
    }

    .about-image-wrapper {
        min-height: 390px;
    }

    .about-image-wrapper img {
        max-height: 390px;
    }

    .contact-image {
        min-height: 350px;
    }

    .footer-bottom {
        padding: 22px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .mobile-navigation {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-hero {
        padding: 65px 0;
    }

    .page-hero-grid {
        gap: 30px;
    }

    .page-hero-content h1 {
        font-size: 43px;
    }

    .page-hero-content p {
        font-size: 16px;
    }

    .page-hero-image {
        justify-content: center;
        min-height: auto;
    }

    .page-hero-image img {
        max-width: 320px;
    }

}


/* =========================================================
   AFSPRAAKPLANNER — FRIS & LICHT
========================================================= */

.appointment-section {
    padding: 105px 0;
    background: #FFFFFF;
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}


/* =========================================================
   LINKERKANT
========================================================= */

.booking-intro {
    max-width: 100%;
    padding: 18px 0;
    display: flex;
    flex-direction: column;
}

.booking-intro h2 {
    font-size: clamp(38px, 4vw, 52px);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.booking-intro > p {
    color: var(--text);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 560px;
}


/* =========================================================
   INFO BLOKKEN
========================================================= */

.booking-info-list {
    display: grid;
    gap: 12px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 17px 18px;
    background: #F9F8F3;
    border: 1px solid #E2E6E2;
    border-radius: 12px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.booking-info-item:hover {
    transform: translateY(-2px);
    border-color: rgba(85, 111, 96, 0.25);
    box-shadow: 0 8px 22px rgba(36, 45, 40, 0.05);
}

.booking-info-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: grid;
    place-items: center;
    background: #EAEFEA;
    color: var(--green);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}

.booking-info-item span {
    display: block;
    color: var(--text);
    font-size: 12px;
    margin-bottom: 2px;
}

.booking-info-item strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
}


/* =========================================================
   CONTACT / VRAGEN
========================================================= */

.booking-help {
    margin-top: 30px;
    padding: 30px;
    background: #F9F8F3;
    border: 1px solid #E2E6E2;
    border-radius: 14px;
}

.booking-help h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.booking-help p {
    color: var(--text);
    line-height: 1.7;
}

.booking-contact-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 18px;
}

.booking-contact-links a {
    color: var(--green);
    font-weight: 700;
}

.booking-contact-links a:hover {
    color: var(--green-dark);
    text-decoration: underline;
}


/* =========================================================
   BOEKINGSKAART
========================================================= */

.booking-card {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #E2E6E2;
    border-radius: 20px;
    padding: 38px;
    box-shadow: 0 18px 50px rgba(36, 45, 40, 0.07);
}


/* =========================================================
   MERK
========================================================= */

.booking-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 30px;
}

.booking-brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex: 0 0 40px;
}

.booking-brand span {
    display: block;
    font-family: var(--display);
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.booking-brand strong {
    display: block;
    color: var(--text);
    font-size: 11px;
    font-weight: 500;
    margin-top: 3px;
}


/* =========================================================
   BOEKINGS HEADER
========================================================= */

.booking-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 27px;
    margin-bottom: 28px;
    border-bottom: 1px solid #E2E6E2;
}

.booking-card-header h3 {
    font-family: var(--display);
    font-size: 30px;
    margin: 0;
}

.booking-duration {
    background: #EAEFEA;
    color: var(--green);
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}


/* =========================================================
   DATUM
========================================================= */

.booking-date {
    display: grid;
    gap: 9px;
    margin-bottom: 30px;
}

.booking-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.booking-label-row label,
.booking-times label {
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.booking-label-row > span {
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
}

.booking-date input {
    width: 100%;
    height: 54px;
    padding: 0 15px;
    border: 1px solid #E2E6E2;
    border-radius: 9px;
    background: #FFFFFF;
    color: var(--dark);
    cursor: pointer;
}

.booking-date input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(85, 111, 96, 0.08);
}

.booking-date small {
    color: var(--text);
    font-size: 12px;
}


/* =========================================================
   TIJDEN
========================================================= */

.booking-times {
    display: grid;
    gap: 13px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.time-button {
    min-height: 48px;
    border: 1px solid #E2E6E2;
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.time-button:hover:not(:disabled) {
    border-color: var(--green);
    color: var(--green);
    background: #F9F8F3;
    transform: translateY(-1px);
}

.time-button.selected {
    background: var(--green);
    border-color: var(--green);
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(85, 111, 96, 0.18);
}

.time-button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}


/* =========================================================
   GEKOZEN AFSPRAAK
========================================================= */

.booking-selection {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 23px;
    padding: 16px 18px;
    background: #EAEFEA;
    border: 1px solid rgba(85, 111, 96, 0.08);
    border-radius: 10px;
}

.selection-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 800;
}

.selection-content span {
    display: block;
    color: var(--text);
    font-size: 11px;
    margin-bottom: 2px;
}

.selection-content strong {
    display: block;
    color: var(--green-dark);
    font-size: 14px;
}


/* =========================================================
   FORMULIER
========================================================= */

.booking-form {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid #E2E6E2;
}

.booking-form-heading {
    margin-bottom: 21px;
}

.booking-form-heading h3 {
    font-size: 25px;
    margin: 0 0 7px;
}

.booking-form-heading p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-field {
    display: grid;
    gap: 8px;
    margin-bottom: 15px;
}

.form-field label {
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #E2E6E2;
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--dark);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field input {
    height: 49px;
}

.form-field textarea {
    min-height: 105px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(85, 111, 96, 0.08);
}

.booking-submit {
    width: 100%;
    margin-top: 8px;
}

.booking-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.booking-note {
    color: var(--text);
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 13px;
}


/* =========================================================
   ONDERSTE INFORMATIE
========================================================= */

.booking-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 65px;
    align-items: stretch;
}

.booking-bottom-card {
    padding: 34px 28px;
    background: #F9F8F3;
    border: 1px solid #E2E6E2;
    border-radius: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 210px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.booking-bottom-card:hover {
    transform: translateY(-3px);
    border-color: rgba(85, 111, 96, 0.3);
    box-shadow: 0 12px 30px rgba(36, 45, 40, 0.07);
}

.booking-bottom-card .small-label {
    display: block;
    margin-bottom: 7px;
    text-align: center;
}

.booking-bottom-card h3 {
    font-size: 21px;
    margin: 0 0 12px;
    text-align: center;
}

.booking-bottom-card p {
    max-width: 390px;
    margin: 0 auto;
    color: var(--text);
    line-height: 1.7;
    text-align: center;
}

.booking-bottom-card a {
    display: inline-block;
    color: var(--green);
    font-weight: 700;
    text-align: center;
}

.booking-bottom-card a:hover {
    color: var(--green-dark);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .booking-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .booking-intro {
        max-width: 700px;
    }

    .booking-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-bottom-card:first-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   MOBIEL
========================================================= */

@media (max-width: 650px) {

    .appointment-section {
        padding: 65px 0;
    }

    .booking-intro {
        padding-top: 0;
    }

    .booking-intro h2 {
        font-size: 37px;
    }

    .booking-intro > p {
        font-size: 16px;
    }

    .booking-card {
        padding: 24px;
        border-radius: 15px;
    }

    .booking-brand {
        margin-bottom: 24px;
    }

    .booking-card-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .booking-card-header h3 {
        font-size: 25px;
    }

    .booking-duration {
        align-self: flex-start;
    }

    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .booking-selection {
        align-items: flex-start;
    }

    .booking-bottom {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 45px;
    }

    .booking-bottom-card:first-child {
        grid-column: auto;
    }

    .booking-bottom-card {
        min-height: 190px;
        padding: 28px 22px;
    }
}

/* =========================================================
   MOOIE SAMENUWZORG HEADER
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #E8EBE8;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* =========================================================
   LOGO
========================================================= */

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.site-logo {
    width: 160px;
    height: 58px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

/* =========================================================
   NAVIGATIE
========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 15px;
    color: #5F6B65;
    font-size: 15px;
    font-weight: 500;
    border-radius: 9px;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.main-navigation a:not(.nav-button):hover {
    color: #242D28;
    background: #F9F8F3;
}

.main-navigation a.active:not(.nav-button) {
    color: #242D28;
    background: #F9F8F3;
    font-weight: 700;
}

.main-navigation a.active:not(.nav-button)::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 5px;
    height: 2px;
    background: #556F60;
    border-radius: 999px;
}

/* =========================================================
   KENNISMAKEN KNOP
========================================================= */

.main-navigation .nav-button {
    margin-left: 12px;
    padding: 0 21px;
    color: #FFFFFF;
    background: #556F60;
    border-radius: 9px;
    font-weight: 700;
    box-shadow: 0 5px 16px rgba(85, 111, 96, 0.15);
}

.main-navigation .nav-button:hover {
    color: #FFFFFF;
    background: #3F5548;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(85, 111, 96, 0.20);
}

.main-navigation .nav-button.active {
    color: #FFFFFF;
    background: #556F60;
}

.main-navigation .nav-button::after,
.main-navigation .nav-button.active::after {
    display: none;
}

/* =========================================================
   MOBIELE MENU KNOP
========================================================= */

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 9px;
    border: 1px solid #E2E6E2;
    border-radius: 9px;
    background: #FFFFFF;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #242D28;
    border-radius: 999px;
}

/* =========================================================
   MOBIELE NAVIGATIE
========================================================= */

.mobile-navigation {
    display: none;
    padding: 8px 24px 20px;
    background: #FFFFFF;
    border-top: 1px solid #E8EBE8;
}

.mobile-navigation a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #E8EBE8;
    color: #5F6B65;
    font-size: 15px;
    font-weight: 500;
}

.mobile-navigation a:hover {
    color: #556F60;
}

.mobile-navigation.open {
    display: block;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .header-inner {
        min-height: 76px;
    }

    .main-navigation {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-logo {
        width: 150px;
        height: 54px;
    }
}

/* =========================================================
   MOBIEL
========================================================= */

@media (max-width: 650px) {

    .header-inner {
        min-height: 70px;
    }

    .site-logo {
        width: 140px;
        height: 50px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-navigation {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* =========================================================
   HEADER — MEER VULLING & BALANS
========================================================= */

.header-inner {
    width: min(1120px, calc(100% - 48px));
    min-height: 82px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 35px;
}

/* LOGO */

.site-logo {
    width: 158px;
    height: 56px;
}

/* NAVIGATIE */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.main-navigation a {
    min-height: 44px;
    padding: 0 15px;

    font-size: 14.5px;
    letter-spacing: 0.005em;
}

/* iets meer ruimte rond de navigatie,
   maar geen overdreven grote gaten */

.main-navigation a:not(.nav-button) {
    padding-left: 14px;
    padding-right: 14px;
}

/* KENNISMAKEN */

.main-navigation .nav-button {
    min-height: 44px;
    margin-left: 10px;
    padding: 0 20px;

    border-radius: 8px;
}

/* subtiele scheiding tussen logo en navigatie */

.logo-link {
    position: relative;
    padding-right: 28px;
}

.logo-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 28px;
    background: var(--border);
    transform: translateY(-50%);
}

/* =========================================================
   LAPTOP — NAVIGATIE IETS MEER NAAR HET MIDDEN
========================================================= */

@media (min-width: 951px) {

    .main-navigation {
        margin-left: auto;
        margin-right: 8px;
    }

    .header-inner {
        justify-content: space-between;
    }

}

/* =========================================================
   TABLET / MOBIEL
========================================================= */

@media (max-width: 950px) {

    .header-inner {
        min-height: 72px;
    }

    .logo-link {
        padding-right: 0;
    }

    .logo-link::after {
        display: none;
    }

    .site-logo {
        width: 145px;
        height: 52px;
    }

}

/* =========================================================
   HOMEPAGE CTA
========================================================= */

.home-cta-section {
    padding: 80px 0;
    background: var(--light);
}

.home-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 45px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.home-cta h2 {
    max-width: 650px;
    margin-bottom: 15px;
}

.home-cta p {
    max-width: 650px;
    color: var(--text);
    line-height: 1.75;
}

.home-cta .eyebrow {
    margin-bottom: 18px;
}

@media (max-width: 700px) {

    .home-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 24px;
    }

    .home-cta .button {
        width: 100%;
    }
}

/* =========================================================
   PRIVACY- EN COOKIEPAGINA'S
========================================================= */

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 0;
}

.legal-content > p:first-child {
    margin-bottom: 45px;
    padding-bottom: 18px;

    border-bottom: 1px solid var(--border);

    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.legal-content h2 {
    position: relative;

    margin: 45px 0 14px;
    padding-left: 18px;

    font-size: 28px;
    letter-spacing: -0.02em;
}

.legal-content h2::before {
    content: "";

    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;

    width: 3px;
    border-radius: 999px;
    background: var(--green);
}

.legal-content p {
    max-width: 760px;
    margin: 0 0 18px;

    color: var(--text);
    font-size: 16px;
    line-height: 1.85;
}

.legal-content ul {
    display: grid;
    gap: 10px;

    max-width: 760px;
    padding: 22px 28px;
    margin: 22px 0 28px;

    list-style: none;

    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.legal-content li {
    position: relative;
    padding-left: 25px;

    color: var(--text);
    line-height: 1.7;
}

.legal-content li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    color: var(--green);
    font-weight: 800;
}

.legal-content a {
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: var(--green-dark);
}

.legal-content strong {
    color: var(--dark);
}


/* =========================================================
   PAGINA-HEADER VOOR PRIVACY EN COOKIES
========================================================= */

.legal-content-section {
    background: var(--white);
}

.page-hero:has(+ .content-section) {
    background: var(--cream);
}


/* =========================================================
   MOBIEL
========================================================= */

@media (max-width: 650px) {

    .legal-content {
        padding: 0;
    }

    .legal-content > p:first-child {
        margin-bottom: 35px;
    }

    .legal-content h2 {
        margin-top: 36px;
        font-size: 25px;
    }

    .legal-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .legal-content ul {
        padding: 20px;
    }

}

.about-story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-story-text {
    text-align: center;
}

.about-story-text .eyebrow {
    display: block;
    margin-bottom: 24px;
}

.about-story-text p {
    margin: 0 auto 24px;
    text-align: center;
}

.about-story-layout .quote-card {
    width: 100%;
    text-align: center;
}

.about-story-layout .quote-card blockquote {
    margin: 0 auto 24px;
    text-align: center;
}

.about-story-layout .quote-card p {
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {

    .about-story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

/* =========================================================
   GROTE SUCCESPAGINA
========================================================= */

.booking-success-section {
    width: 100%;
    min-height: calc(100vh - 180px);
    padding: 90px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9F8F3;
}

.booking-success-section .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-success {
    width: 100%;
    max-width: 1150px;
    min-height: 560px;
    margin: 0 auto;
    padding: 110px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #E2E6E2;
    border-radius: 24px;
    box-shadow: 0 15px 45px rgba(36, 45, 40, 0.10);
}

.booking-success .eyebrow {
    display: block;
    margin-bottom: 22px;
}

.booking-success h1 {
    max-width: 950px;
    margin: 0 0 30px;
    color: var(--dark);
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.booking-success p {
    max-width: 780px;
    margin: 0 auto 15px;
    color: var(--text);
    font-size: 20px;
    line-height: 1.8;
}

.booking-success .button {
    margin-top: 38px;
    padding: 18px 34px;
    font-size: 16px;
}

@media (max-width: 700px) {
    .booking-success-section {
        min-height: calc(100vh - 120px);
        padding: 55px 18px;
    }

    .booking-success {
        min-height: 450px;
        padding: 60px 25px;
        border-radius: 18px;
    }

    .booking-success h1 {
        font-size: 40px;
    }

    .booking-success p {
        font-size: 17px;
        line-height: 1.6;
    }
}

@media (min-width: 951px) {
    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: min(1120px, calc(100% - 48px));
        margin: 0 auto;
    }

    .logo-link {
        justify-self: start;
    }

    .main-navigation {
        display: flex;
        justify-self: center;
        align-items: center;
        gap: 5px;
        margin: 0;
        position: static;
        transform: none;
    }

    .menu-toggle {
        justify-self: end;
    }
}

@media (min-width: 951px) {
    .header-inner {
        width: min(1240px, calc(100% - 48px));
        min-height: 82px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .logo-link {
        flex-shrink: 0;
    }

    .main-navigation {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        margin-left: auto;
        margin-right: 0;
        position: static;
        transform: none;
    }

    .main-navigation a:not(.nav-button) {
        padding-left: 18px;
        padding-right: 18px;
    }

    .main-navigation .nav-button {
        margin-left: 14px;
        padding-left: 24px;
        padding-right: 24px;
    }
}