
:root {
    --bg: #e8edeb;
    --bg-soft: #d3ece2;
    --bg-mid: #cfd6d3;
    --bg-deep: #2d3836;
    --bg-deepest: #1f2825;

    --ink: #2d3836;
    --ink-soft: #5a6b64;
    --ink-muted: #8a9692;

    --sage: #7a9890;
    --sage-light: #b4d3cb;
    --sage-deep: #4a6258;
    --mint: #d3ece2;

    --line: #c4d0ca;
    --line-soft: #dfe6e3;

    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Manrope', -apple-system, sans-serif;

    --maxw: 1280px;
    --padx: clamp(1.5rem, 5vw, 6rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ---------- NAV ---------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.5rem var(--padx);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    transition: background 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
    background: rgba(232, 237, 235, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.nav.light-mode { color: #e8edeb; }
.nav.light-mode.scrolled { color: var(--ink); }

.logo {
    grid-column: 2;
    justify-self: center;
    display: block;
    line-height: 0;
    text-decoration: none;
}
.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 2px 14px rgba(45, 56, 54, 0.18);
    transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1), box-shadow 0.5s ease;
}
.logo:hover img {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(45, 56, 54, 0.25);
}

.burger {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    color: inherit;
    width: 72px;
    height: 40px;
    border: 1.5px solid currentColor;
    border-radius: 999px;
    padding: 0;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.burger:hover { background: currentColor; }
.burger:hover .burger-icon span { background: var(--bg); }
.burger-icon {
    width: 22px; height: 14px;
    position: relative;
}
.burger-icon span {
    position: absolute;
    left: 0; right: 0;
    height: 1.5px;
    background: currentColor;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.burger-icon span:nth-child(1) { top: 0; }
.burger-icon span:nth-child(2) { top: 6px; }
.burger-icon span:nth-child(3) { top: 12px; }
.menu-open .burger-icon span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-open .burger-icon span:nth-child(2) { opacity: 0; }
.menu-open .burger-icon span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* ---------- MENU PANEL ---------- */
.menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100%);
    background: rgba(31, 40, 37, 0.82);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    color: var(--bg);
    z-index: 99;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem clamp(2rem, 5vw, 3.5rem);
    transform: translateX(100%);
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
    overflow-y: auto;
    box-shadow: -30px 0 80px rgba(0, 0, 0, 0.18);
}
.menu-open .menu { transform: translateX(0); }
.menu-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.menu-nav li { overflow: hidden; }
.menu-nav a {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4.2vw, 2.8rem);
    font-weight: 300;
    color: rgba(232, 237, 235, 0.85);
    text-decoration: none;
    display: block;
    line-height: 1.25;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.5s ease,
                transform 0.7s cubic-bezier(0.65, 0, 0.35, 1),
                color 0.3s ease;
    font-variation-settings: "opsz" 80;
}
.menu-nav a:hover {
    color: var(--sage-light);
    font-style: italic;
}
.menu-open .menu-nav a {
    transform: translateX(0);
    opacity: 1;
}
.menu-open .menu-nav li:nth-child(1) a { transition-delay: 0.15s; }
.menu-open .menu-nav li:nth-child(2) a { transition-delay: 0.22s; }
.menu-open .menu-nav li:nth-child(3) a { transition-delay: 0.29s; }
.menu-open .menu-nav li:nth-child(4) a { transition-delay: 0.36s; }
.menu-open .menu-nav li:nth-child(5) a { transition-delay: 0.43s; }
.menu-open .menu-nav li:nth-child(6) a { transition-delay: 0.5s; }
.menu-open .menu-nav li:nth-child(7) a { transition-delay: 0.57s; }

.menu-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 237, 235, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0;
    transition: opacity 0.4s ease 0.55s;
    font-size: 0.8rem;
    color: rgba(232, 237, 235, 0.55);
    letter-spacing: 0.05em;
}
.menu-open .menu-footer { opacity: 1; }
.menu-footer a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
.menu-footer a:hover { color: var(--sage-light); }

.menu-open .burger { color: var(--bg); }

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem var(--padx) 4rem;
    overflow: hidden;
    text-align: center;
    color: #e8edeb;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: #1f2825;
    overflow: hidden;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(31, 40, 37, 0.55) 0%,
        rgba(31, 40, 37, 0.45) 50%,
        rgba(31, 40, 37, 0.75) 100%);
}
.hero-bg img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center 40%;
    will-change: transform;
    filter: brightness(0.75) saturate(0.85);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}
.hero-logo {
    width: clamp(220px, 28vw, 320px);
    height: auto;
    border-radius: 50%;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(232, 237, 235, 0.08);
    opacity: 0;
    transform: scale(0.92);
    animation: heroLogoIn 1.4s cubic-bezier(0.2, 0.6, 0.2, 1) 0.2s forwards;
}
@keyframes heroLogoIn {
    to { opacity: 1; transform: scale(1); }}
.hero h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 5.5vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 144;
    opacity: 0;
    animation: fadeUp 1.1s ease 0.8s forwards;
}
.hero h1 em {
    font-style: italic;
    color: var(--sage-light);
}
.hero-sub {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 1.1s ease 1.1s forwards;
    color: rgba(232, 237, 235, 0.85);
}
.hero-sub::before,
.hero-sub::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: currentColor;
    vertical-align: middle;
    margin: 0 1rem;
    opacity: 0.6;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 1.1s ease 1.4s forwards;
    color: rgba(232, 237, 235, 0.7);
    text-align: center;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: currentColor;
    margin: 0.8rem auto 0;
    animation: scrollLine 2.5s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
    50%      { transform: scaleY(1); opacity: 1; }}

/* ---------- WELKOM ---------- */
.intro {
    padding: clamp(6rem, 14vh, 10rem) var(--padx);
    max-width: var(--maxw);
    margin: 0 auto;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: start;
}
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-deep);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--sage);
}
.intro-body h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    line-height: 1.25;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 80;
    margin-bottom: 2rem;
    color: var(--bg-deep);
}
.intro-body h2 em {
    font-style: italic;
    color: var(--sage-deep);
}
.intro-body p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 58ch;
    margin-bottom: 1.2rem;
}

/* ---------- AANBOD ---------- */
.services {
    padding: clamp(4rem, 10vh, 8rem) var(--padx) clamp(6rem, 12vh, 10rem);
    background: var(--bg-soft);
    position: relative;
}
.services-header {
    max-width: var(--maxw);
    margin: 0 auto 5rem;
}
.services-header h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-top: 1.5rem;
    max-width: 20ch;
    color: var(--bg-deep);
    font-variation-settings: "opsz" 144;
}
.services-header h2 em { font-style: italic; }

.service-block {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(2rem, 5vw, 5rem);
    padding: 3rem 0;
    border-top: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 1px solid var(--line); }

.service-title {
    position: sticky;
    top: 100px;
    align-self: start;
}
.service-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--sage);
    margin-bottom: 1rem;
    font-variation-settings: "opsz" 36;
}
.service-title h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.15;
    color: var(--bg-deep);
    font-variation-settings: "opsz" 80;
}

.service-content p {
    font-size: 1rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    max-width: 60ch;
}

.price-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.price-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-soft);
    align-items: baseline;
}
.price-item:last-child { border-bottom: none; }
.price-item-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--bg-deep);
    font-variation-settings: "opsz" 80;
    margin-bottom: 0.3rem;
}
.price-item-desc {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.5;
}
.price-item-amount {
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--sage-deep);
    white-space: nowrap;
    font-variation-settings: "opsz" 80;
}

.trajecten {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(180, 211, 203, 0.2);
    border-left: 2px solid var(--sage);
}
.trajecten-title {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sage-deep);
    font-weight: 500;
    margin-bottom: 1.2rem;
}
.trajecten-item { margin-bottom: 1.5rem; }
.trajecten-item:last-child { margin-bottom: 0; }
.trajecten-item h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.15rem;
    color: var(--bg-deep);
    margin-bottom: 0.4rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    font-variation-settings: "opsz" 80;
}
.trajecten-item h4 span {
    color: var(--sage-deep);
    font-style: italic;
}
.trajecten-item ul {
    list-style: none;
    font-size: 0.92rem;
    color: var(--ink-soft);
}
.trajecten-item li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.25rem;
}
.trajecten-item li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.6em;
    width: 8px; height: 1px;
    background: var(--sage);
}

/* ---------- QUOTE ---------- */
.quote-section {
    padding: clamp(8rem, 18vh, 14rem) var(--padx);
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
.quote-mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 5rem;
    line-height: 0.5;
    color: var(--sage);
    margin-bottom: 2rem;
    font-variation-settings: "opsz" 144;
}
.quote-section blockquote {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(1.6rem, 3.6vw, 3rem);
    line-height: 1.25;
    color: var(--bg-deep);
    max-width: 24ch;
    font-variation-settings: "opsz" 144;
}
.quote-section cite {
    display: block;
    margin-top: 3rem;
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

/* ---------- ABOUT ---------- */
.about {
    padding: clamp(5rem, 12vh, 9rem) var(--padx);
    background: var(--bg-deep);
    color: var(--bg);
    position: relative;
    overflow: hidden;
}
.about-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
}
.about-img {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}
.about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.15) contrast(0.98);
    transition: transform 1.2s cubic-bezier(0.2, 0, 0.2, 1);
}
.about-img:hover img { transform: scale(1.04); }

.about-text .section-label { color: var(--sage-light); }
.about-text .section-label::before { background: var(--sage-light); }
.about-text h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 1.5rem 0 2rem;
    font-variation-settings: "opsz" 144;
}
.about-text h2 em { font-style: italic; color: var(--sage-light); }
.about-text p {
    font-size: 1rem;
    color: rgba(232, 237, 235, 0.75);
    margin-bottom: 1.1rem;
    max-width: 52ch;
}
.about-credentials {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 237, 235, 0.12);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(232, 237, 235, 0.6);
}
.about-credentials strong {
    color: var(--sage-light);
    font-weight: 500;
    letter-spacing: 0.05em;
}
.about-signature {
    margin-top: 2.5rem;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.4rem;
    color: var(--sage-light);
    font-variation-settings: "opsz" 80;
}

/* ---------- PRAKTISCH ---------- */
.praktisch {
    padding: clamp(6rem, 14vh, 10rem) var(--padx);
    max-width: var(--maxw);
    margin: 0 auto;
}
.praktisch-header {
    max-width: 720px;
    margin: 0 auto 5rem;
    text-align: center;
}
.praktisch-header .section-label { justify-content: center; }
.praktisch-header .section-label::before,
.praktisch-header .section-label::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--sage);
}
.praktisch-header h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-top: 1.5rem;
    font-variation-settings: "opsz" 144;
}
.praktisch-header h2 em { font-style: italic; color: var(--sage-deep); }

.praktisch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
}
.praktisch-item {
    padding: 2rem 0;
    border-top: 1px solid var(--line);
}
.praktisch-item .icon {
    width: 32px; height: 32px;
    margin-bottom: 1.5rem;
    color: var(--sage);
}
.praktisch-item h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--bg-deep);
    font-variation-settings: "opsz" 80;
}
.praktisch-item p {
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}
.praktisch-item p strong {
    color: var(--bg-deep);
    font-weight: 500;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
    padding: clamp(5rem, 12vh, 9rem) var(--padx);
    background: var(--bg-soft);
}
.testimonials-inner {
    max-width: var(--maxw);
    margin: 0 auto;
}
.testimonials-header { margin-bottom: 5rem; }
.testimonials-header h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    margin-top: 1.5rem;
    max-width: 18ch;
    font-variation-settings: "opsz" 144;
}
.testimonials-header h2 em { font-style: italic; color: var(--sage-deep); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 4rem;
}
.testimonial {
    border-left: 2px solid var(--sage);
    padding-left: 2rem;
}
.testimonial p {
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.55;
    color: var(--bg-deep);
    margin-bottom: 1.5rem;
    font-variation-settings: "opsz" 80;
}
.testimonial cite {
    font-family: var(--sans);
    font-style: normal;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-muted);
    font-weight: 500;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: clamp(6rem, 14vh, 10rem) var(--padx);
    background: var(--bg-deep);
    color: var(--bg);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: 'Respira';
    position: absolute;
    bottom: -3rem;
    right: -1rem;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(8rem, 22vw, 22rem);
    color: rgba(180, 211, 203, 0.06);
    line-height: 1;
    pointer-events: none;
    font-variation-settings: "opsz" 144;
}
.contact-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
}
.contact-info h2 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 1.5rem 0 2.5rem;
    font-variation-settings: "opsz" 144;
}
.contact-info h2 em { font-style: italic; color: var(--sage-light); }
.contact-details {
    font-size: 0.95rem;
    color: rgba(232, 237, 235, 0.75);
    line-height: 2;
}
.contact-details strong {
    color: var(--sage-light);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
}
.contact-details a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(180, 211, 203, 0.3);
    transition: border-color 0.3s ease;
}
.contact-details a:hover { border-color: var(--sage-light); }
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: scale(1); }}

/* ---------- FOOTER ---------- */
.footer {
    padding: 3rem var(--padx) 2rem;
    background: var(--bg-deepest);
    color: rgba(232, 237, 235, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}
.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.hero {
    margin-top: clamp(0.75rem, 2vw, 1.25rem);
    min-height: calc(100vh - 3rem);
}

/* Kleine verticale adempauze tussen testimonials en contact
   omdat ze beide afgerond en gekleurd zijn */
.testimonials {
    margin-bottom: clamp(0.5rem, 1.2vw, 0.875rem);
}

.footer {
    margin: clamp(0.75rem, 2vw, 1.25rem);
    border-radius: clamp(16px, 2.2vw, 28px);
}

/* ---------- REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1.1s cubic-bezier(0.2, 0.6, 0.2, 1),
                transform 1.1s cubic-bezier(0.2, 0.6, 0.2, 1);
    transition-delay: var(--delay, 0s);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
/* Het beeld is altijd zichtbaar. De animatie is een toevoeging, geen voorwaarde:
   als de IntersectionObserver niet vuurt, blijft de foto gewoon staan. */
.reveal-img {
    opacity: 1;
    transform: translateY(24px);
    transition: transform 1.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.reveal-img.in-view { transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
    .service-block { grid-template-columns: 1fr; gap: 1.5rem; }
    .service-title { position: static; }
    .praktisch-grid { grid-template-columns: 1fr; gap: 0; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { aspect-ratio: 4/3; max-width: 420px; }
    .contact-inner { grid-template-columns: 1fr; }
    .hero-scroll { display: none; }
    .price-item { grid-template-columns: 1fr; }
    .trajecten-item h4 { flex-direction: column; gap: 0.2rem; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-img, .logo-mark, .hero-scroll::after,
    .hero-logo, .hero h1, .hero-sub, .hero-scroll {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
    }}
/* ============================================================
   Aanvullingen op de demo-stijl, voor de echte site.
   Alles hieronder is nieuw: veren in de hero, extra aanbod,
   vragenblok, contactacties, uitgebreide voettekst.
   ============================================================ */

/* --- hero: veren in plaats van een stockfoto --- */
.hero-veer {
    position: absolute;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    animation: veerIn 2.4s cubic-bezier(.2,.6,.2,1) .5s forwards;
}
/* De regel .hero-bg img hierboven is bedoeld voor de achtergrondfoto en zet
   height op 115% met object-fit: cover. De veren zijn ook img's in dat blok,
   dus die werden mee uitgerekt en daarna bijgesneden: er bleef nog ongeveer
   veertig procent van de veer over. Deze regel is specifieker en zet dat
   terug, zodat een veer haar eigen verhouding houdt en volledig te zien is. */
.hero-bg img.hero-veer {
    height: auto;
    object-fit: contain;
    filter: none;
}
/* Groter en iets sterker dan de eerste opzet. Toen werden de veren door
   object-fit: cover uitgerekt tot over de volle hoogte van de hero; zodra dat
   hersteld was, vielen ze op hun eigen maat bijna weg. Deze maten geven
   ongeveer dezelfde aanwezigheid terug, maar dan met de echte vorm. */
.hero-veer.een { width: 70vw; max-width: 900px; top: -8%; left: -14%; transform: rotate(-8deg); }
.hero-veer.twee { width: 64vw; max-width: 800px; bottom: -12%; right: -12%; transform: rotate(6deg); }
@keyframes veerIn { to { opacity: .20; } }
.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 45%, rgba(31,40,37,0) 0%, rgba(31,40,37,.85) 78%);
}

/* --- extra aanbod: groepen en bedrijven --- */
.aanbod-extra {
    max-width: var(--maxw);
    margin: clamp(3rem,7vw,5rem) auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}
.aanbod-extra-item {
    padding: 1.8rem 1.6rem;
    background: rgba(255,255,255,.5);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
}
.aanbod-extra-item h4 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.05rem;
    margin: 0 0 .6rem;
    color: var(--ink);
}
.aanbod-extra-item p { font-size: .88rem; color: var(--ink-soft); margin: 0; line-height: 1.7; }

/* --- vragenblok --- */
.vragen { padding: clamp(5rem,12vh,9rem) var(--padx); background: var(--bg); }
.vragen-inner { max-width: 900px; margin: 0 auto; }
.vragen-header { margin-bottom: clamp(2.5rem,5vw,4rem); }
.vraag {
    border-bottom: 1px solid var(--line);
}
.vraag summary {
    list-style: none;
    cursor: pointer;
    padding: 1.35rem 2.5rem 1.35rem 0;
    position: relative;
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--ink);
    transition: color .2s;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.vraag summary::-webkit-details-marker { display: none; }
.vraag summary:hover { color: var(--sage-deep); }
.vraag summary::after {
    content: "";
    position: absolute;
    right: .4rem;
    top: 50%;
    width: 11px; height: 11px;
    border-right: 1.5px solid var(--sage);
    border-bottom: 1.5px solid var(--sage);
    transform: translateY(-70%) rotate(45deg);
    transition: transform .25s;
}
.vraag[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.vraag-antwoord {
    padding: 0 3rem 1.6rem 0;
    color: var(--ink-soft);
    font-size: .95rem;
    line-height: 1.8;
    max-width: 65ch;
}

/* --- contactacties in plaats van het formulier --- */
.contact-acties { display: flex; flex-direction: column; gap: 1rem; align-self: center; }
.actie {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.35rem 1.6rem;
    min-height: 44px;
    border: 1px solid rgba(232,237,235,.22);
    border-radius: 4px;
    color: #e8edeb;
    text-decoration: none;
    transition: background .25s, border-color .25s, transform .25s;
}
.actie:hover, .actie:focus-visible {
    background: rgba(232,237,235,.06);
    border-color: rgba(232,237,235,.42);
    transform: translateX(3px);
}
.actie svg { flex: none; width: 22px; height: 22px; stroke: var(--sage-light); }
.actie-label {
    display: block;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(232,237,235,.55);
    margin-bottom: .25rem;
}
.actie-waarde { font-size: 1.05rem; font-family: var(--serif); }

/* --- ontbrekende foto, zichtbaar gemarkeerd --- */
.foto-ontbreekt {
    aspect-ratio: 4/5;
    border: 2px dashed #c46b6b;
    background: repeating-linear-gradient(45deg, rgba(196,107,107,.05) 0 12px, transparent 12px 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: #a24444;
    font-size: .82rem;
    line-height: 1.7;
}

/* --- voettekst --- */
.footer-baseline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: rgba(232,237,235,.65);
    letter-spacing: .02em;
    margin-bottom: 2rem;
    text-align: center;
}
.footer-inner { flex-wrap: wrap; gap: .6rem 2rem; }
.footer a { color: rgba(232,237,235,.6); text-decoration: none; border-bottom: 1px solid rgba(232,237,235,.2); }
.footer a:hover { color: rgba(232,237,235,.9); }

/* --- mobiel --- */
@media (max-width: 900px) {
    .aanbod-extra { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .hero-veer.een { width: 92vw; top: -3%; left: -24%; }
    .hero-veer.twee { width: 84vw; bottom: -6%; right: -22%; }
    .vraag summary { font-size: 1rem; padding-right: 2rem; }
    .vraag-antwoord { padding-right: 1rem; }
    .contact-acties { gap: .8rem; }
}

/* Het witte logo is transparant, dus geen schijf en geen slagschaduw eromheen. */
.hero-logo {
    border-radius: 0;
    box-shadow: none;
    width: clamp(230px, 30vw, 340px);
}

/* Meer lucht onderaan de hero, zodat het scroll-woord niet tegen het onderschrift botst. */
.hero { padding-bottom: 7rem; }
@media (max-width: 700px) { .hero { padding-bottom: 6rem; } }
