/* ============================================================
██╗   ██╗██╗  ██╗██████╗     ██████╗ ███████╗███████╗██╗ ██████╗ ███╗   ██╗
██║   ██║╚██╗██╔╝██╔══██╗    ██╔══██╗██╔════╝██╔════╝██║██╔════╝ ████╗  ██║
██║   ██║ ╚███╔╝ ██████╔╝    ██║  ██║█████╗  ███████╗██║██║  ███╗██╔██╗ ██║
██║   ██║ ██╔██╗ ██╔══██╗    ██║  ██║██╔══╝  ╚════██║██║██║   ██║██║╚██╗██║
╚██████╔╝██╔╝ ██╗██████╔╝    ██████╔╝███████╗███████║██║╚██████╔╝██║ ╚████║
 ╚═════╝ ╚═╝  ╚═╝╚═════╝     ╚═════╝ ╚══════╝╚══════╝╚═╝ ╚═════╝ ╚═╝  ╚═══╝
   CSS Page (styles.css)
   Author: Bernd
   ============================================================ */

/* ===============================
   ROOT VARIABLES
   =============================== */
:root {
    --color-bg: #f7f5ef;
    --color-surface: #ffffff;
    --color-surface-soft: #efe9dd;
    --color-text: #1d241d;
    --color-text-muted: #5c665c;
    --color-heading: #0f160f;

    --color-primary: #3f5f45;
    --color-primary-dark: #2e4732;
    --color-secondary: #a78b60;

    --color-dark: #131814;
    --color-dark-soft: #1c241d;
    --color-white: #ffffff;

    --color-border: rgba(15, 22, 15, 0.08);

    --color-uxb: #00b6d1;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 14px 40px rgba(16, 24, 16, 0.08);
    --shadow-hover: 0 18px 50px rgba(16, 24, 16, 0.12);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container-width: 1240px;
    --container-wide: 1440px;

    --section-space: clamp(4rem, 7vw, 7rem);
    --card-gap: clamp(1rem, 2vw, 2rem);

    --transition: 220ms ease;
}

/* ===============================
   RESET
   =============================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

/* ===============================
   TYPOGRAPHY
   =============================== */
h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 5.25rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--color-heading);
}

h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--color-heading);
}

h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.15;
    color: var(--color-heading);
}

p,
li,
a,
input,
textarea,
select {
    font-size: clamp(1rem, 1.1vw, 1.05rem);
}

/* ===============================
   GLOBAL LAYOUT
   =============================== */
.container {
    width: min(100% - 2rem, var(--container-width));
    margin: 0 auto;
}

.container-wide {
    width: min(100% - 2rem, var(--container-wide));
    margin: 0 auto;
}

.section {
    padding: var(--section-space) 0;
}

.section-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.section-soft {
    background: var(--color-surface-soft);
}

.section-head {
    max-width: 760px;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-label {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.section-label-light {
    color: rgba(255, 255, 255, 0.72);
}

.section-head h2 {
    margin-bottom: 1rem;
}

.section-text {
    margin: 0;
    color: var(--color-text-muted);
}

.section-head-light h2,
.section-head-light p,
.section-head-light .section-label {
    color: var(--color-white);
}

.section-head-light .section-text {
    color: rgba(255, 255, 255, 0.75);
}

/* ===============================
   HEADER
   =============================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 245, 239, 0.96);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(14px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: clamp(72px, 6vw, 88px);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    height: clamp(38px, 4vw, 60px);
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
}

.main-nav a {
    position: relative;
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-primary);
}

.header-cta {
    flex-shrink: 0;
}

/* ===============================
   BUTTONS
   =============================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition:
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-secondary-light {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid rgba(63, 95, 69, 0.3);
}

.btn-secondary-light:hover {
    background: rgba(63, 95, 69, 0.08);
    border-color: var(--color-primary);
}

.btn-light {
    background: var(--color-white);
    color: var(--color-heading);
}

.btn-light:hover {
    background: #f4f4f1;
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.22);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ===============================
   HERO
   =============================== */
.hero {
    position: relative;
    min-height: min(92vh, 980px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(11, 16, 11, 0.35), rgba(11, 16, 11, 0.55)),
        url("../assets/images/tuinaanleg-schutting.png") center center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left center, rgba(63, 95, 69, 0.5), transparent 42%),
        linear-gradient(90deg, rgba(13, 18, 13, 0.75) 0%, rgba(13, 18, 13, 0.2) 58%, rgba(13, 18, 13, 0.15) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 720px;
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: var(--color-white);
}

.hero h1 {
    margin: 0;
    color: var(--color-white);
}

.eyebrow {
    margin: 0 0 1rem;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.text-accent {
    color: #d8c4a3;
}

.hero-intro {
    max-width: 620px;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* ===============================
   TRUST BAR
   =============================== */
.trust-bar {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 22, 15, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
}

.trust-item {
    padding: 1.2rem 1.1rem;
    border-radius: var(--radius-md);
    background: #fbfaf7;
}

.trust-item strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 1rem;
    color: var(--color-heading);
}

.trust-item span {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ===============================
   FADE SHOWCASE
   =============================== */

.fade-showcase {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.fade-showcase__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* before image */
.fade-showcase__image--before {
    z-index: 1;
}

/* after image fades in and out */
.fade-showcase__image--after {
    z-index: 2;
    animation: fadeCompare 10s ease-in-out infinite;
}

/* labels */
.fade-showcase__labels {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;

    display: flex;
    justify-content: space-between;
}

.fade-showcase__labels span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;

    background: rgba(15, 22, 15, 0.72);
    color: #ffffff;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* fade animation */
@keyframes fadeCompare {

    0%,
    40% {
        opacity: 0;
    }

    50%,
    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ===============================
   SERVICES
   =============================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--card-gap);
}

.service-card {
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.service-number {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--color-secondary);
}

.service-card h3 {
    margin: 0 0 0.8rem;
}

.service-card p {
    margin: 0 0 1.2rem;
    color: var(--color-text-muted);
}

.service-card a {
    font-weight: 700;
    color: var(--color-primary);
    margin-top: auto;
}

/* ===============================
   PROJECTS
   =============================== */
.project-grid,
.project-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--card-gap);
}

.project-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-dark-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}


.project-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.project-card-content {
    padding: 1.25rem 1.25rem 1.4rem;
}

.project-card-content h3 {
    margin: 0 0 0.35rem;
    color: var(--color-white);
    font-size: 1.15rem;
}

.project-card-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.project-card-light {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.project-card-content-light h3 {
    color: var(--color-heading);
}

.project-card-content-light p {
    color: var(--color-text-muted);
}

.section-action {
    margin-top: 2rem;
}

/* ===============================
   SPLIT SECTION
   =============================== */
.split-layout {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: center;
}

.split-image img {
    width: 100%;
    min-height: 320px;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.split-content>p {
    margin: 0 0 1.5rem;
    color: var(--color-text-muted);
}

.feature-list {
    display: grid;
    gap: 1rem;
}

.feature-item {
    padding: 1.2rem 1.25rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.feature-item h3 {
    margin: 0 0 0.35rem;
    font-size: 1.08rem;
}

.feature-item p {
    margin: 0;
    color: var(--color-text-muted);
}

/* ===============================
   REGION TAGS
   =============================== */
.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.region-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.75rem 1rem;
    background: var(--color-surface);
    border: 1px solid rgba(15, 22, 15, 0.08);
    border-radius: 999px;
    font-weight: 700;
    color: var(--color-heading);
    box-shadow: var(--shadow-soft);
}

/* ===============================
   CTA BLOCK
   =============================== */
.cta-block {
    padding: clamp(4rem, 6vw, 5rem) 0;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-white);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-inner h2 {
    margin: 0 0 0.85rem;
    color: var(--color-white);
}

.cta-inner p {
    margin: 0;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.82);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===============================
   PAGE HERO
   =============================== */
.page-hero {
    padding: clamp(5rem, 8vw, 7rem) 0 clamp(3.5rem, 5vw, 5rem);
    background: linear-gradient(180deg, #f1ede4 0%, #f7f5ef 100%);
}

.page-hero-dark {
    background: linear-gradient(135deg, #1a211b, #2f4532);
}

.page-hero h1 {
    margin: 0 0 1rem;
    max-width: 900px;
}

.page-hero-dark h1 {
    color: var(--color-white);
}

.page-hero-text {
    max-width: 760px;
    margin: 0;
    color: var(--color-text-muted);
}

.page-hero-text-light {
    color: rgba(255, 255, 255, 0.8);
}

/* ===============================
   DETAIL STACK
   =============================== */
.detail-stack {
    display: grid;
    gap: 2rem;
}

.detail-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: center;
    padding: 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    scroll-margin-top: 100px;
}

.detail-card-reverse .detail-card-content {
    order: 2;
}

.detail-card-reverse .detail-card-image {
    order: 1;
}

.detail-card-content h2 {
    margin: 0 0 1rem;
}

.detail-card-content p {
    color: var(--color-text-muted);
}

.detail-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
}

.detail-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===============================
   CONTACT PAGE
   =============================== */
.contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    align-items: start;
}

.contact-info-card,
.contact-form-card {
    padding: 2rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-info-card h2,
.contact-form-card h2 {
    margin: 0 0 1rem;
}

.contact-info-card>p {
    margin: 0 0 1.5rem;
    color: var(--color-text-muted);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field label {
    font-weight: 700;
    color: var(--color-heading);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 48px;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(15, 22, 15, 0.12);
    border-radius: 14px;
    background: #fcfbf8;
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(63, 95, 69, 0.5);
    box-shadow: 0 0 0 4px rgba(63, 95, 69, 0.08);
}

.form-field textarea {
    resize: vertical;
    min-height: 160px;
}

.form-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    display: block;
    background: #e6f4ea;
    color: #2e7d32;
}

.form-message.error {
    display: block;
    background: #fdecea;
    color: #c62828;
}

/* ===============================
   FOOTER
   =============================== */
.site-footer {
    padding: 4rem 0 3rem;
    background: #101510;
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-copy {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
}

.footer-col h3 {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    color: var(--color-white);
}

.footer-col a,
.footer-col p {
    display: block;
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit {
    color: var(--color-uxb);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* subtle hover animation */
.footer-credit::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.footer-credit:hover::after {
    width: 100%;
}

.footer-credit:hover {
    color: #ffffff;
}

/* ===============================
   STICKY WHATSAPP BUTTON
   =============================== */
.whatsapp-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: block;
}

.whatsapp-button img {
    width: 95px;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

.whatsapp-button img:hover {
    transform: scale(1.08);
}

.whatsapp-button {
    display: none;
}

@media (max-width: 768px) {

    .whatsapp-button {
        display: flex;
    }
}

/* ===============================
   HAMBURGER MENU
   =============================== */
.menu-toggle {
    display: none;
    position: relative;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: var(--color-white);
    cursor: pointer;
    transition:
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.menu-toggle:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.menu-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(63, 95, 69, 0.12);
    border-color: rgba(63, 95, 69, 0.35);
}

.menu-toggle__line {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--color-heading);
    border-radius: 999px;
    transform: translateX(-50%);
    transition:
        transform 260ms ease,
        opacity 180ms ease,
        top 260ms ease;
}

.menu-toggle__line:nth-child(1) {
    top: 19px;
}

.menu-toggle__line:nth-child(2) {
    top: 27px;
}

.menu-toggle__line:nth-child(3) {
    top: 35px;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(1) {
    top: 27px;
    transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(3) {
    top: 27px;
    transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    width: min(100% - 2rem, var(--container-width));
    transform: translateX(-50%) translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 220ms ease,
        transform 260ms ease,
        visibility 220ms ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mobile-menu__nav {
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: var(--color-surface);
    box-shadow: 0 18px 50px rgba(16, 24, 16, 0.12);
}

.mobile-menu__nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    font-weight: 700;
    color: var(--color-heading);
    transition:
        background-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.mobile-menu__nav a:hover {
    background: #f3efe6;
    color: var(--color-primary);
    transform: translateX(2px);
}

.mobile-menu__nav a.active {
    background: #efe9dd;
    color: var(--color-primary);
}

.mobile-menu__cta {
    margin-top: 0.4rem;
    width: 100%;
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(10, 14, 10, 0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
}

.mobile-menu-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

body.menu-open {
    overflow: hidden;
}

/* ===============================
   Hero Image Overlay
   =============================== */
.page-hero-image {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: var(--color-white);
}

.page-hero-image h1,
.page-hero-image .page-hero-text,
.page-hero-image .section-label {
    color: var(--color-white);
}

/* Diensten */
.page-hero-diensten {
    background:
        linear-gradient(rgba(11, 16, 11, 0.45), rgba(11, 16, 11, 0.65)),
        url("../assets/images/schep-onkruid.png") center center / cover no-repeat;
}

/* Projecten */
.page-hero-projecten {
    background:
        linear-gradient(rgba(11, 16, 11, 0.45), rgba(11, 16, 11, 0.65)),
        url("../assets/images/bloembak-afgewerkt.png") center center / cover no-repeat;
}

/* Over ons */
.page-hero-over-ons {
    background:
        linear-gradient(rgba(11, 16, 11, 0.45), rgba(11, 16, 11, 0.65)),
        url("../assets/images/bloembak-border.png") center center / cover no-repeat;
}

/* Contact */
.page-hero-contact {
    background:
        linear-gradient(rgba(11, 16, 11, 0.45), rgba(11, 16, 11, 0.65)),
        url("../assets/images/straatwerk.png") center center / cover no-repeat;
}

/* ===============================
   RESPONSIVE
   =============================== */

/* 4K / very large screens */
@media (min-width: 1600px) {
    :root {
        --container-width: 1380px;
        --section-space: 7rem;
    }

    .hero-copy {
        max-width: 780px;
    }

    .project-grid,
    .project-grid-page {
        gap: 1.75rem;
    }
}

/* medium desktop */
@media (max-width: 1200px) {

    .split-layout,
    .detail-card,
    .contact-layout {
        gap: 2rem;
    }
}

/* tablet landscape / small laptop */
@media (max-width: 992px) {

    .split-layout,
    .detail-card,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        max-width: 100%;
    }

    .split-image img,
    .detail-card-image img {
        min-height: 260px;
    }

    .detail-card-reverse .detail-card-content,
    .detail-card-reverse .detail-card-image {
        order: initial;
    }
}

/* tablet / mobile nav switch */
@media (max-width: 860px) {
    .site-header {
        position: sticky;
    }

    .header-inner {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 1rem;
        min-height: 84px;
    }

    .brand {
        justify-content: flex-start;
    }

    .menu-toggle {
        display: inline-block;
        justify-self: end;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .trust-bar {
        margin-top: -2rem;
    }
}

/* tablet */
@media (max-width: 768px) {
    .section {
        padding: 4.5rem 0;
    }

    .container,
    .container-wide {
        width: min(100% - 1.5rem, var(--container-width));
    }

    .hero-copy {
        padding: 4.5rem 0 5rem;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .whatsapp-button img {
        width: 75px;
    }

    @media (max-width: 640px) {
        .brand-logo {
            height: 65px;
        }
    }
}

/* phone */
@media (max-width: 640px) {
    .site-header {
        position: sticky;
    }

    .section {
        padding: 4rem 0;
    }

    .hero-copy {
        padding: 4rem 0 4.5rem;
    }

    .hero-actions,
    .cta-buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .page-hero {
        padding: 5rem 0 3.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.35rem;
    }

    .mobile-menu {
        width: min(100% - 1rem, var(--container-width));
    }
}

/* ===============================
   RESPONSIVE SPLIT IMAGES
   =============================== */

.mobile-image {
    display: none;
}

@media (max-width: 768px) {

    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
        margin: 2rem 0;
    }
}

/* desktop only */
@media (min-width: 861px) {
    .mobile-menu {
        display: none;
    }
}