/* =========================================================
   Mirjam Broekhof Fotografie — huisstijl
   Warm, minimalistisch, persoonlijk.
   ========================================================= */

:root {
    /* Kleuren — afgeleid van het logo */
    --cream:        #F6F1E9;
    --cream-deep:   #EFE7D9;
    --gold:         #BE8C4A;
    --gold-dark:    #A6742F;
    --ink:          #3C362F;
    --ink-soft:     #6B6258;
    --line:         #E2D8C7;
    --white:        #FFFFFF;

    /* Typografie */
    --font-head: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Maatvoering */
    --maxw: 1140px;
    --gap: clamp(1rem, 3vw, 2rem);
    --radius: 4px;
    --shadow: 0 10px 40px rgba(60, 54, 47, 0.08);
    --shadow-lg: 0 20px 60px rgba(60, 54, 47, 0.14);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset / basis --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 500;
    line-height: 1.15;
    color: var(--ink);
    margin: 0 0 0.5em;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p { margin: 0 0 1.2em; }

a { color: var(--gold-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gap); }

.skip-link {
    position: absolute; left: -999px; top: 0;
    background: var(--ink); color: var(--cream); padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Accenten */
.eyebrow {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    display: inline-block;
}

.lead { font-size: 1.2rem; color: var(--ink-soft); }

.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 1.12rem; }
.prose p:first-of-type::first-letter { /* subtiel, geen drop-cap */ }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .25s var(--ease);
    text-align: center;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.05rem; }

/* =========================================================
   Header / navigatie
   ========================================================= */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(246, 241, 233, 0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(60,54,47,.07); }

.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; }

.brand { display: flex; align-items: center; color: var(--ink); }
.brand-logo { height: 58px; width: auto; display: block; }

.primary-nav ul { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.primary-nav a { color: var(--ink); font-weight: 500; font-size: 1rem; position: relative; }
.primary-nav a[aria-current="page"] { color: var(--gold-dark); }
.primary-nav a:not(.btn)::after {
    content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
    background: var(--gold); transition: width .25s var(--ease);
}
.primary-nav a:not(.btn):hover::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 0.4rem; min-width: 230px;
    display: flex; flex-direction: column; gap: 0; align-items: stretch;
    opacity: 0; visibility: hidden; transition: all .22s var(--ease);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown li { width: 100%; }
.dropdown a { display: block; padding: 0.5rem 0.8rem; border-radius: var(--radius); font-size: 0.95rem; line-height: 1.3; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--cream); color: var(--gold-dark); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: all .3s var(--ease); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    min-height: min(86vh, 760px);
    display: flex; align-items: center;
    color: var(--white);
    overflow: hidden;
}
.hero.hero-event { min-height: min(64vh, 540px); }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(105deg, rgba(60,54,47,.72) 0%, rgba(60,54,47,.35) 55%, rgba(60,54,47,.15) 100%);
}
.hero-content { max-width: 640px; padding: 4rem var(--gap); }
.hero .eyebrow { color: #E8D9BD; }
.hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.hero p { color: rgba(255,255,255,.92); font-size: 1.25rem; max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
/* Witte ghost-knop alleen op de homepage-hero (foto-achtergrond) */
.hero .hero-actions .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.7); }
.hero .hero-actions .btn-ghost:hover { background: var(--white); color: var(--ink); }

/* =========================================================
   Secties
   ========================================================= */
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.bg-cream-deep { background: var(--cream-deep); }
.bg-ink { background: var(--ink); color: var(--cream); }
.bg-ink h2, .bg-ink h3 { color: var(--cream); }

/* USP-rij */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.usp { text-align: center; }
.usp .usp-icon {
    width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
    display: grid; place-items: center; background: var(--cream-deep); color: var(--gold-dark);
}
.usp h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.usp p { color: var(--ink-soft); font-size: 1rem; margin: 0; }

/* Dienst-kaarten */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.service-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.8rem; display: flex; flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card h3 { margin-bottom: .5rem; }
.service-card p { color: var(--ink-soft); font-size: 1rem; flex: 1; }
.service-card .card-link { font-weight: 600; color: var(--gold-dark); margin-top: 1rem; display: inline-flex; align-items: center; gap: .4rem; }
.service-card .card-link span { transition: transform .25s var(--ease); }
.service-card:hover .card-link span { transform: translateX(4px); }

/* Split (beeld + tekst) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }

/* Quote / social proof */
.quote-band { text-align: center; }
.quote-band blockquote {
    font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.1rem); font-style: italic;
    line-height: 1.35; max-width: 800px; margin: 0 auto 1rem; color: var(--ink);
}
.quote-band cite { font-style: normal; font-weight: 600; color: var(--gold-dark); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.6rem; }
.testi {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); overflow: hidden; margin: 0;
    display: flex; flex-direction: column;
}
.testi-photo { overflow: hidden; }
.testi-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 20%; transition: transform .5s var(--ease); }
.testi:hover .testi-photo img { transform: scale(1.04); }
.testi-body { padding: 1.6rem 1.8rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.testi blockquote { margin: 0 0 1.2rem; flex: 1; }
.testi blockquote p { font-style: italic; margin: 0; }
.testi figcaption { margin-top: auto; }
.testi .testi-name { font-style: normal; font-weight: 600; color: var(--ink); margin: 0; }
.testi .testi-role { font-style: normal; color: var(--ink-soft); font-size: .9rem; margin: 0; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .8rem; }

/* =========================================================
   Dienstpagina's
   ========================================================= */
.page-hero { background: var(--cream-deep); padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.page-hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.page-hero h1 { margin-bottom: .5rem; }
.page-hero .lead { margin-bottom: 0; }
.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.page-hero .ph-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; object-position: center 25%; }

/* Werkwijze / stappen */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2rem; }
.step-num { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--gold); color: #fff; font-family: var(--font-head); font-size: 1.35rem; margin-bottom: 1rem; }
.step h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: 1rem; margin: 0; }

/* Prijspakketten */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 1.6rem; align-items: stretch; }
.price-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.7rem; display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-lg); position: relative; }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #fff; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; padding: .35rem .9rem; border-radius: 999px; white-space: nowrap; }
.price-card .plan-eyebrow { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.price-card h3 { font-size: 1.3rem; margin: .2rem 0 0; }
.price-card .price { font-family: var(--font-head); font-size: 2.3rem; color: var(--ink); margin: .6rem 0 0; line-height: 1; }
.price-card .price-note { display: block; font-size: .85rem; font-family: var(--font-body); color: var(--ink-soft); margin: .4rem 0 0; }
.price-card ul { list-style: none; padding: 0; margin: 1.3rem 0; flex: 1 0 auto; }
.price-card li { padding: .45rem 0 .45rem 1.7rem; position: relative; font-size: .96rem; border-bottom: 1px solid var(--cream); }
.price-card li:last-child { border-bottom: none; }
.price-card li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.price-card .btn { margin-top: 0; white-space: nowrap; padding-left: 1rem; padding-right: 1rem; }

/* Portfolio-galerij + filter */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.8rem; }
.filter-btn {
    font-family: var(--font-body); font-size: .95rem; font-weight: 500;
    padding: .55rem 1.2rem; border-radius: 999px; cursor: pointer;
    background: transparent; border: 1.5px solid var(--line); color: var(--ink-soft);
    transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--ink); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.gallery { column-count: 3; column-gap: 1rem; }
.gallery-item {
    display: block; width: 100%; margin: 0 0 1rem; break-inside: avoid;
    border-radius: var(--radius); overflow: hidden; cursor: zoom-in; background: var(--cream-deep);
}
.gallery-item img { width: 100%; display: block; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-empty { text-align: center; max-width: 540px; margin: 1rem auto 0; color: var(--ink-soft); }
.gallery-empty h3 { color: var(--ink); margin-bottom: .5rem; }

@media (max-width: 760px) { .gallery { column-count: 2; } }
@media (max-width: 480px) { .gallery { column-count: 1; } }

/* Event-galerij gegroepeerd per event */
.event-group { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.event-group:last-child { margin-bottom: 0; }
.event-group-title { font-size: 1.5rem; margin-bottom: 1.3rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(40, 36, 31, .93); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox figure { margin: 0; display: flex; flex-direction: column; align-items: center; }
.lightbox img { max-width: 88vw; max-height: 82vh; width: auto; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: var(--cream); margin-top: 1rem; font-family: var(--font-head); font-size: 1.1rem; }
.lightbox button { background: rgba(255, 255, 255, .14); border: none; color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center; line-height: 1; transition: background .2s var(--ease); }
.lightbox button:hover { background: var(--gold); }
.lightbox-close { position: absolute; top: 1.2rem; right: 1.2rem; width: 44px; height: 44px; font-size: 1.7rem; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }
@media (max-width: 560px) { .lightbox-prev { left: .4rem; } .lightbox-next { right: .4rem; } }

/* Data-pills (netwerk fotowandelingen) */
.dates { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.date-pill { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .75rem 1.5rem; font-weight: 500; box-shadow: var(--shadow); }
.date-pill .d-day { color: var(--gold-dark); font-weight: 600; }

/* Praktische feiten */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.6rem; }
.fact { text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.2rem; }
.fact .fact-value { font-family: var(--font-head); font-size: 1.8rem; color: var(--gold-dark); line-height: 1.1; }
.fact .fact-label { color: var(--ink-soft); font-size: .95rem; margin-top: .3rem; }

/* Checklist (wat je leert) */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem 2.4rem; list-style: none; padding: 0; margin: 0 auto; max-width: 820px; }
.checklist li { position: relative; padding-left: 1.9rem; font-size: 1.05rem; }
.checklist li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; font-size: 1.05rem; }
@media (max-width: 560px) { .checklist { grid-template-columns: 1fr; } }

/* Scroll-anker footer (Contact-menu) niet onder de sticky header */
#contact { scroll-margin-top: 100px; }

/* Formulier (plan je shoot) */
.form-wrap { max-width: 760px; margin: 0 auto; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { margin-bottom: 1.2rem; }
.form-field label { display: block; font-weight: 500; margin-bottom: .4rem; font-size: .98rem; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius);
    font-family: var(--font-body); font-size: 1rem; background: var(--white); color: var(--ink); transition: border-color .2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field .req { color: var(--gold-dark); }
.field-error { color: #b3402a; font-size: .85rem; margin-top: .35rem; }
.form-field.has-error input, .form-field.has-error textarea, .form-field.has-error select { border-color: #cf6a4f; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: .6rem; }
.alert { padding: 1.1rem 1.3rem; border-radius: var(--radius); margin-bottom: 1.6rem; }
.alert h3 { margin: 0 0 .3rem; color: inherit; font-family: var(--font-head); }
.alert p { margin: 0; }
.alert-success { background: #eaf2e4; border: 1px solid #bcd6ab; color: #3c5a2c; }
.alert-error { background: #f8e9e2; border: 1px solid #e3b9a8; color: #8a3a22; }
.form-field fieldset { border: 0; padding: 0; margin: 0; }
.form-field legend { padding: 0; font-weight: 500; margin-bottom: .55rem; font-size: .98rem; }
.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 1.4rem; }
.checkbox-group label { display: flex; align-items: center; gap: .55rem; font-weight: 400; margin: 0; cursor: pointer; font-size: 1rem; }
.checkbox-group input[type="checkbox"] { width: auto; accent-color: var(--gold); margin: 0; flex: none; }
@media (max-width: 560px) { .booking-form .form-row, .checkbox-group { grid-template-columns: 1fr; } }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq summary { font-family: var(--font-head); font-size: 1.18rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--gold-dark); font-size: 1.5rem; line-height: 1; transition: transform .2s var(--ease); }
.faq details[open] summary::after { content: '\2013'; }
.faq details p { margin: .9rem 0 0; color: var(--ink-soft); }

/* =========================================================
   CTA-band (footer-aanloop)
   ========================================================= */
.cta-band { background: var(--ink); color: var(--cream); text-align: center; }
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(246,241,233,.82); max-width: 540px; margin: 0 auto 2rem; font-size: 1.15rem; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--cream-deep); color: var(--ink); padding-top: clamp(3rem,6vw,4.5rem); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 3rem; }
.footer-logo { display: block; width: 165px; height: auto; margin-bottom: 1rem; }
.footer-tag { color: var(--ink-soft); font-size: .95rem; }
.footer-nav h3, .footer-contact h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; color: var(--gold-dark); margin-bottom: 1rem; }
.footer-nav ul { list-style: none; padding: 0; margin: 0; }
.footer-nav li { margin-bottom: .6rem; }
.footer-nav a, .footer-contact a { color: var(--ink); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-dark); }
.footer-address { font-style: normal; color: var(--ink); margin: 0 0 1.2em; line-height: 1.7; }
.footer-address .footer-area { color: var(--ink-soft); font-size: .92rem; }

.social-links { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.social-links a {
    display: grid; place-items: center; width: 40px; height: 40px;
    border: 1px solid var(--line); border-radius: 50%; color: var(--ink);
    transition: all .25s var(--ease);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }

.footer-bottom { border-top: 1px solid var(--line); padding: 1.5rem 0; }
.footer-bottom p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* =========================================================
   Animatie bij scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .split, .split.reverse .split-media { grid-template-columns: 1fr; order: 0; }
    .split.reverse .split-media { order: 0; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .page-hero .container { grid-template-columns: 1fr; }
    .page-hero .ph-media { order: -1; max-width: 420px; }
}

@media (max-width: 540px) {
    .service-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    body { font-size: 17px; }
    /* backdrop-filter maakt de header een containing block voor het fixed-menu;
       op mobiel uitschakelen zodat het menu het hele scherm vult */
    .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(246, 241, 233, 0.96); }
    .nav-toggle { display: block; z-index: 110; }
    .primary-nav {
        position: fixed; inset: 0 0 0 30%;
        background: var(--cream); flex-direction: column;
        padding: 6rem 2rem 2rem; box-shadow: var(--shadow-lg);
        transform: translateX(100%); transition: transform .35s var(--ease);
        overflow-y: auto;
    }
    .primary-nav.open { transform: translateX(0); }
    .primary-nav ul { flex-direction: column; align-items: flex-start; gap: 0.4rem; width: 100%; }
    .primary-nav li { width: 100%; }
    .primary-nav a:not(.btn) { display: block; padding: .6rem 0; font-size: 1.1rem; }
    .has-dropdown .dropdown {
        position: static; transform: none; opacity: 1; visibility: visible;
        box-shadow: none; border: none; background: transparent; padding: 0 0 0 1rem; min-width: 0;
    }
    .nav-cta { margin-top: 1rem; }
    .nav-cta .btn { display: block; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .footer-inner { grid-template-columns: 1fr; }
}
