/* ─── CSS Variables ─────────────────────────────────── */
:root {
    --primary-beige: #DCD4C1;
    --accent-bronze: #C8964A;
    --accent-sage: #818263;
    --avocado: #C2C395;
    --soft-pink: #EFD7CF;
    --peach: #DDBAAE;
    --honey: #F6EAD4;
    --dark-brown: #526248;
    --off-white: #FFFAF2;
    --text-dark: #5A5A5A;
}

/* ─── Reset ──────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── Base ───────────────────────────────────────────── */
body {
    background-color: var(--off-white);
    font-family: 'Jost', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

/* ─── Skip link ──────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -48px;
    left: 16px;
    background: var(--accent-bronze);
    color: white;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    z-index: 200;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* ─── Focus states ───────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--accent-bronze);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Inputs have a custom ring */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
}

/* ─── Typography ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--dark-brown);
}

p, li {
    font-family: 'Jost', sans-serif;
    line-height: 1.8;
}

.title {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.text-center { text-align: center; }

/* ─── Section system ─────────────────────────────────── */
/* Default: centred column with max-width */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Full-bleed: background stretches edge-to-edge */
section.bg-section {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

section.bg-section > .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Hero: also full-bleed */
section.hero {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Background colour helpers */
.bg-off-white { background-color: var(--off-white); }
.bg-beige     { background-color: var(--primary-beige); }

/* Inner-page top hero container */
.page-hero {
    padding-top: 100px;
    padding-bottom: 60px;
    text-align: center;
}

/* ─── Buttons ─────────────────────────────────────────── */
button, .btn {
    display: inline-block;
    background: var(--accent-bronze);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

button:hover, .btn:hover {
    background: #b3835c;
    box-shadow: 0 6px 16px rgba(200, 150, 74, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-sage);
    color: var(--dark-brown);
}

.btn-secondary:hover {
    background: var(--avocado);
    color: white;
    box-shadow: 0 6px 16px rgba(129, 130, 99, 0.3);
}

/* ─── Input fields ────────────────────────────────────── */
input, textarea, select {
    width: 100%;
    border: 1px solid #D0CCBF;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    margin-bottom: 1.5rem;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-sage);
    box-shadow: 0 0 0 3px rgba(129, 130, 99, 0.15);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-brown);
}

/* ─── Cards ──────────────────────────────────────────── */
.card {
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(220,212,193,0.3));
    border: 1px solid #D0CCBF;
    border-radius: 16px;
    padding: 40px 32px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.card:hover {
    border-color: var(--accent-bronze);
    box-shadow: 0 8px 24px rgba(200, 150, 74, 0.15);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem auto;
    color: var(--accent-bronze);
    display: block;
}

.card-title  { margin-bottom: 1rem; }

.card-price {
    font-weight: 500;
    margin: 1.5rem 0;
    color: var(--accent-bronze);
}

/* ─── Grid helpers ───────────────────────────────────── */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-2-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* ─── Header & Navigation ────────────────────────────── */
header {
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 250, 242, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(82, 98, 72, 0.08);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 68px;
    width: 68px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
    mix-blend-mode: multiply;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

nav a:hover,
nav a[aria-current="page"] {
    color: var(--accent-bronze);
}

nav a[aria-current="page"]::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-bronze);
}

/* Hamburger button — desktop hidden */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--dark-brown);
    border-radius: 6px;
    line-height: 0;
}

.hamburger:hover { background: rgba(0,0,0,0.06); }
.hamburger .icon-close { display: none; }
.hamburger.is-open .icon-open  { display: none; }
.hamburger.is-open .icon-close { display: inline; }

/* ─── Hero (index.html) ──────────────────────────────── */
.hero {
    width: 100%;
    min-height: calc(90vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/Afbeedling home page hero 1.png') no-repeat center center / cover;
    transform: scale(1.12);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        108deg,
        rgba(255, 250, 242, 0.96) 0%,
        rgba(255, 250, 242, 0.90) 42%,
        rgba(255, 250, 242, 0.48) 72%,
        rgba(255, 250, 242, 0.18) 100%
    );
}

/* Hero split layout */
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    min-height: calc(90vh - 60px);
}

.hero-left {
    padding: 80px 48px 80px 0;
}

.hero-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-bronze);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-eyebrow span {
    display: block;
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(200, 150, 74, 0.2);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--dark-brown);
    line-height: 1.9;
}

.verhaal-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--accent-bronze);
    margin-top: 1.25rem;
    margin-bottom: 0;
    letter-spacing: 0.01em;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(3.5rem, 5.5vw, 6.5rem);
    line-height: 1.05;
    letter-spacing: -0.015em;
    color: var(--dark-brown);
    margin-bottom: 2rem;
}

.hero-headline em {
    font-style: italic;
    color: var(--accent-bronze);
    display: block;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 380px;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

.hero-botanical {
    width: min(320px, 40vw);
    height: min(320px, 40vw);
    color: var(--accent-sage);
    opacity: 0.14;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* ─── Testimonials ───────────────────────────────────── */
.testimonial {
    background: white;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #E4DFD6;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--accent-bronze);
    line-height: 0.8;
    margin-bottom: 1rem;
    opacity: 0.45;
    display: block;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 500;
    color: var(--dark-brown);
    font-size: 0.875rem;
}

/* ─── Footer ─────────────────────────────────────────── */
footer {
    background-color: var(--primary-beige);
    padding: 60px 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    text-decoration: none;
    color: var(--dark-brown);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-bronze);
}

.footer-social {
    margin-bottom: 1.5rem;
}

.footer-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-brown);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.footer-instagram:hover {
    color: var(--accent-bronze);
}

.disclaimer {
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    color: var(--dark-brown);
    opacity: 0.8;
}

.copyright {
    font-size: 0.9rem;
    color: var(--dark-brown);
    opacity: 0.7;
}

.designed-by {
    font-size: 0.78rem;
    color: var(--dark-brown);
    opacity: 0.45;
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
}

/* ─── Misc components ────────────────────────────────── */
.medical-alert {
    background-color: rgba(220, 212, 193, 0.4);
    border-left: 4px solid var(--accent-bronze);
    padding: 24px;
    border-radius: 0 8px 8px 0;
    margin: 40px 0;
}

/* ─── Safe Space Section ─────────────────────────────── */
.safe-space-section {
    background: linear-gradient(160deg, #7A8C62 0%, #5E7048 55%, #4D5E39 100%);
}

.safe-space-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: 100px 20px;
}

/* Left column: headline */
.safe-space-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.safe-space-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--off-white);
    opacity: 0.75;
}

.safe-space-headline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(3.2rem, 5.5vw, 5.5rem);
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--off-white);
    margin: 0;
}

/* Right column: pillars */
.safe-space-pillars {
    display: flex;
    flex-direction: column;
}

.safe-space-pillar {
    display: flex;
    align-items: baseline;
    gap: 1.25rem;
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.safe-space-pillar:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.pillar-mark {
    font-size: 0.7rem;
    color: var(--accent-bronze);
    flex-shrink: 0;
    margin-top: 0.2em;
}

.pillar-text {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    font-weight: 300;
    line-height: 1.5;
    color: var(--primary-beige);
    letter-spacing: 0.01em;
    margin: 0;
}

@media (max-width: 768px) {
    .safe-space-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 80px 20px;
    }
}

/* Botanical divider (over-mij.html) */
.botanical-divider {
    text-align: center;
    margin: 40px 0;
    color: var(--accent-sage);
    opacity: 0.5;
}

.botanical-divider::before {
    content: '— \2736 —';
    font-size: 1.1rem;
    letter-spacing: 0.35em;
}

/* Benefits list (wet-cupping & chi-nei-tsang) */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--primary-beige);
    display: flex;
    align-items: center;
}

.benefits-list li::before {
    content: '\2713';
    color: var(--accent-bronze);
    margin-right: 14px;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 1024px) {
    .title { font-size: 2.5rem; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    button, .btn {
        padding: 16px 24px;
        text-align: center;
    }

    section { padding: 60px 16px; }

    section.bg-section > .container { padding: 60px 16px; }

    .grid-2,
    .grid-2-cards,
    .grid-3,
    .behandelingen-images {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .title { font-size: 2rem; }

    /* Mobile header */
    header {
        padding: 16px 20px;
        flex-wrap: wrap;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    nav {
        display: none;
        width: 100%;
        order: 3;
    }

    nav.open { display: block; }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 0 4px;
    }

    nav ul li a {
        display: block;
        padding: 11px 4px;
        border-bottom: 1px solid rgba(82, 98, 72, 0.1);
    }

    /* Mobile hero CTAs stack vertically */
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-group .btn { text-align: center; }

    .page-hero {
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

/* ─── Visual Quote Banner ───────────────────────────── */
.visual-quote-section {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--honey);
}

.visual-quote-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.visual-quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(246, 234, 212, 0.3) 0%,
        rgba(246, 234, 212, 0.3) 100%
    );
}

.visual-quote-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 24px;
    max-width: 700px;
    width: 100%;
}

.visual-quote-content blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.55;
    color: #4B3A2D;
    margin: 0 0 2rem 0;
    letter-spacing: 0.02em;
}

.visual-quote-heart {
    color: var(--soft-pink);
    font-size: 1.2rem;
    opacity: 0.8;
    letter-spacing: 0.5em;
}

/* ─── Behandelingen Grid (image + kaart per behandeling) */
.behandelingen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.behandeling-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.behandeling-item .card {
    flex: 1;
}

@media (max-width: 768px) {
    .behandelingen-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ─── Behandelingen Images ──────────────────────────── */
.behandelingen-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.behandelingen-image-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    aspect-ratio: 4 / 3;
}

.behandelingen-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.behandelingen-image-item:hover img {
    transform: scale(1.03);
}

.behandelingen-image-item--portrait {
    aspect-ratio: 2 / 3;
}

.behandelingen-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(90, 65, 45, 0.72) 0%, transparent 100%);
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ─── Gallery Mosaic ────────────────────────────────── */
.gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
}

.gallery-mosaic--single {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.gallery-item--full img {
    height: 480px;
    min-height: unset;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
}

.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    background: var(--primary-beige);
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.gallery-item--featured {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-section-intro .subtitle {
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .gallery-item--featured {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .gallery-item--featured img {
        min-height: 320px;
    }
}

@media (max-width: 480px) {
    .gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .gallery-item--featured {
        grid-column: 1;
    }

    .gallery-item img {
        min-height: 240px;
    }
}

/* ─── TasteSkill: Grain Texture ─────────────────────── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px;
    pointer-events: none;
    opacity: 0.022;
    z-index: 9998;
    mix-blend-mode: overlay;
}

/* ─── TasteSkill: Scroll Reveal ─────────────────────── */
html {
    scroll-behavior: smooth;
}

body {
    max-width: 100%;
    overflow-x: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.20s; }
.stagger-3 { transition-delay: 0.34s; }
.stagger-4 { transition-delay: 0.50s; }

/* ─── TasteSkill: Gallery Hover Overlay ─────────────── */
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(75, 58, 45, 0.50) 0%,
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.45s ease;
    border-radius: inherit;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ─── TasteSkill: Editorial Testimonials ────────────── */
.testimonial {
    background: transparent;
    border: none;
    border-top: 1px solid rgba(200, 150, 74, 0.2);
    border-radius: 0;
    padding: 32px 4px 16px 4px;
}

.testimonial-quote {
    font-size: 5.5rem;
    line-height: 0.65;
    opacity: 0.18;
    margin-bottom: 1.25rem;
}

/* ─── TasteSkill: Button Tactile Feedback ───────────── */
.btn:active {
    transform: translateY(1px) scale(0.985);
}

/* ─── TasteSkill: Hero Mobile ───────────────────────── */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding: 0 20px;
        min-height: calc(85dvh - 60px);
    }

    .hero-left {
        padding: 80px 0 60px 0;
    }

    .hero-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 60px 0 50px 0;
    }
}

/* ─── Page entrance animation ───────────────────────── */
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

main {
    animation: pageFadeIn 0.45s ease forwards;
}

/* ─── Ervaringen Divider ─────────────────────────────── */
.ervaringen-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 0.5rem 0 2.5rem;
}

.divider-sprigs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.sprig-wrap {
    animation: floatLeaf 5s ease-in-out infinite;
}

.sprig {
    width: 52px;
    height: 80px;
    display: block;
}

.sprig-wrap--right {
    animation: floatLeafRight 5s ease-in-out infinite 1.4s;
}

.divider-ornament {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.ornament-glow {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 150, 74, 0.16) 0%, transparent 70%);
    animation: glowPulse 3.5s ease-in-out infinite;
}

.flower-svg {
    width: 60px;
    height: 60px;
    display: block;
    position: relative;
    animation: gentleSpin 28s linear infinite;
}

.divider-waveline {
    width: min(520px, 80%);
    height: 28px;
    display: block;
}

.divider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.divider-dots span {
    display: block;
    border-radius: 50%;
    background: var(--accent-bronze);
    animation: dotBreathe 2.2s ease-in-out infinite;
}

.divider-dots span:nth-child(1) {
    width: 5px;
    height: 5px;
    opacity: 0.35;
    animation-delay: 0s;
}

.divider-dots span:nth-child(2) {
    width: 8px;
    height: 8px;
    opacity: 0.65;
    animation-delay: 0.35s;
}

.divider-dots span:nth-child(3) {
    width: 5px;
    height: 5px;
    opacity: 0.35;
    animation-delay: 0.7s;
}

@keyframes floatLeaf {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50%       { transform: translateY(-8px) rotate(2deg); }
}

@keyframes floatLeafRight {
    0%, 100% { transform: scaleX(-1) translateY(0px) rotate(0deg); }
    50%       { transform: scaleX(-1) translateY(-8px) rotate(-2deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.2); }
}

@keyframes gentleSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes dotBreathe {
    0%, 100% { transform: scale(1);   opacity: 0.4; }
    50%       { transform: scale(1.5); opacity: 0.9; }
}

/* ─── Service Hero (wet-cupping, chi-nei-tsang) ──────── */
.service-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100%;
}

.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(60, 45, 33, 0.72) 0%,
        rgba(40, 30, 22, 0.80) 100%
    );
}

.service-hero-content {
    position: relative;
    z-index: 1;
    padding: 80px 24px;
    max-width: 680px;
    width: 100%;
}

.service-hero-content .hero-eyebrow {
    color: rgba(245, 240, 235, 0.65);
}

.service-hero-content .title {
    font-size: clamp(3rem, 6vw, 6rem);
    color: var(--off-white);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.service-hero-content .subtitle {
    color: rgba(245, 240, 235, 0.82);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

/* Service content layout */
.service-lead {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 5rem;
}

.service-lead-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-lead-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-lead-image:hover img {
    transform: scale(1.03);
}

.service-details {
    max-width: 720px;
    margin: 0 auto;
}

.service-block {
    padding: 40px 0;
    border-bottom: 1px solid rgba(200, 150, 74, 0.15);
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
}

.service-block:last-child {
    border-bottom: none;
}

.service-block-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--accent-bronze);
    padding-top: 4px;
}

.service-block h2 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--dark-brown);
}

/* ─── Over-mij timeline layout ───────────────────────── */
.over-mij-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    align-items: stretch;
}

.over-mij-hero-image {
    position: relative;
    overflow: hidden;
}

.over-mij-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    transform: scale(1.12);
    will-change: transform;
}

.over-mij-hero-text {
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--off-white);
}

.story-timeline {
    max-width: 740px;
    margin: 0 auto;
}

.story-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 28px;
    padding: 52px 0;
    border-bottom: 1px solid rgba(200, 150, 74, 0.13);
}

.story-item:last-child {
    border-bottom: none;
}

.story-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-style: italic;
    color: var(--accent-bronze);
    opacity: 0.28;
    line-height: 1;
    padding-top: 2px;
    user-select: none;
}

.story-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.9rem;
    color: var(--dark-brown);
    letter-spacing: 0.02em;
}

/* ─── Responsive: service and over-mij ──────────────── */
@media (max-width: 900px) {
    .service-lead {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-lead-image img {
        height: 300px;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .over-mij-hero-inner {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .over-mij-hero-image img {
        min-height: 320px;
    }

    .over-mij-hero-text {
        padding: 48px 24px;
    }
}

@media (max-width: 600px) {
    .story-item {
        grid-template-columns: 48px 1fr;
        gap: 20px;
        padding: 36px 0;
    }

    .story-number {
        font-size: 2.5rem;
    }
}

/* ─── Responsive: aanvullende fixes ─────────────────── */

/* Tablet: iets compacter header */
@media (max-width: 1024px) {
    header { padding: 16px 28px; }
}

/* Mobiel */
@media (max-width: 768px) {
    /* Kleinere logo houdt header compact op mobiel */
    .logo-img {
        height: 44px;
        width: 44px;
    }

    /* Behandelingen afbeelding label kleiner */
    .behandelingen-image-label {
        font-size: 1.2rem;
        padding: 14px 16px;
    }

    /* Form container minder padding op mobiel */
    .form-container {
        padding: 28px 20px;
    }

    /* Sfeer & Inspiratie: grid verwijderen op mobiel zodat
       afbeelding gegarandeerd gecentreerd onder de titel valt */
    .gallery-mosaic--single {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .gallery-mosaic--single .gallery-item {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .gallery-item--full img {
        display: block;
        width: 100%;
        height: 300px;
        max-height: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .behandelingen-image-label {
        font-size: 1rem;
    }

    /* Service hero content iets minder verticale ruimte */
    .service-hero-content {
        padding: 60px 20px;
    }

    /* Visual quote banner minder padding */
    .visual-quote-content {
        padding: 60px 20px;
    }
}

/* ─── WhatsApp Floating Button ───────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.whatsapp-float__label {
    background: #fff;
    color: #25D366;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__label,
.whatsapp-float:focus-visible .whatsapp-float__label {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float__btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.whatsapp-float:hover .whatsapp-float__btn,
.whatsapp-float:focus-visible .whatsapp-float__btn {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.48);
}

.whatsapp-float__btn svg {
    width: 28px;
    height: 28px;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.38); }
    50%       { box-shadow: 0 4px 28px rgba(37, 211, 102, 0.60); }
}

.whatsapp-float__btn {
    animation: wa-pulse 2.8s ease-in-out infinite;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float__btn {
        width: 52px;
        height: 52px;
    }
}

/* ─── Behandelingen pagina: Pakketten ────────────────── */
.pakketten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.pakket-kaart {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(220,212,193,0.2));
    border: 1px solid #D0CCBF;
    border-radius: 20px;
    padding: 44px 32px 36px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pakket-kaart:hover {
    border-color: var(--accent-bronze);
    box-shadow: 0 12px 32px rgba(200, 150, 74, 0.12);
    transform: translateY(-4px);
}

.pakket-kaart--featured {
    border-color: var(--accent-bronze);
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(200,150,74,0.06));
    box-shadow: 0 8px 28px rgba(200, 150, 74, 0.14);
    padding-top: 52px;
}

.pakket-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-bronze);
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.pakket-naam {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--dark-brown);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.pakket-meta {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.pakket-duur {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: var(--text-dark);
    opacity: 0.65;
}

.pakket-prijs {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--accent-bronze);
    line-height: 1;
}

.pakket-divider {
    width: 36px;
    height: 1px;
    background: var(--accent-bronze);
    opacity: 0.28;
    margin-bottom: 1.5rem;
}

.pakket-items {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
}

.pakket-items li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(220, 212, 193, 0.55);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.pakket-items li:last-child {
    border-bottom: none;
}

.pakket-items li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-bronze);
    opacity: 0.55;
    flex-shrink: 0;
}

.pakket-btn {
    text-align: center;
    width: 100%;
}

@media (max-width: 1024px) {
    .pakketten-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ─── Behandelingen pagina: Losse behandelingen ──────── */
.losse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.categorie-blok {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E4DFD6;
    transition: box-shadow 0.3s ease;
}

.categorie-blok:hover {
    box-shadow: 0 8px 24px rgba(200, 150, 74, 0.1);
}

.categorie-header {
    background: var(--accent-sage);
    padding: 24px 28px;
    border-bottom: none;
}

.categorie-oogje {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-bronze);
    margin-bottom: 0.35rem;
    display: block;
}

.categorie-naam {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--off-white);
    line-height: 1.2;
    margin: 0;
}

.categorie-body {
    padding: 4px 0 8px;
}

.behandeling-rij {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 13px 28px;
    border-bottom: 1px solid rgba(220, 212, 193, 0.4);
    transition: background 0.2s ease;
}

.behandeling-rij:last-child {
    border-bottom: none;
}

.behandeling-rij:hover {
    background: rgba(220, 212, 193, 0.18);
}

.behandeling-naam-blok {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.behandeling-naam {
    font-family: 'Jost', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark-brown);
    line-height: 1.3;
}

.behandeling-duur {
    font-family: 'Jost', sans-serif;
    font-size: 0.76rem;
    color: var(--text-dark);
    opacity: 0.58;
}

.behandeling-prijs {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-bronze);
    white-space: nowrap;
    flex-shrink: 0;
}

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

    .losse-grid .categorie-blok:last-child {
        grid-column: 1 / -1;
        max-width: 460px;
        margin: 0 auto;
        width: 100%;
    }
}

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

    .losse-grid .categorie-blok:last-child {
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }
}

/* ─── FAQ Accordeon ──────────────────────────────────── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(200, 150, 74, 0.18);
}

.faq-item:first-child {
    border-top: 1px solid rgba(200, 150, 74, 0.18);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    border-radius: 0;
    padding: 22px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--dark-brown);
    cursor: pointer;
    transition: color 0.2s ease;
    box-shadow: none;
}

.faq-question:hover {
    color: var(--accent-bronze);
    background: none;
    box-shadow: none;
}

.faq-question:active {
    transform: none;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--accent-bronze);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    opacity: 0;
}

.faq-answer:not([hidden]) {
    max-height: 400px;
    opacity: 1;
}

.faq-answer[hidden] {
    display: block !important;
    max-height: 0;
    opacity: 0;
}

.faq-answer p {
    padding: 0 4px 24px 4px;
    color: var(--text-dark);
    font-size: 0.975rem;
    line-height: 1.85;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1.15rem;
        padding: 18px 4px;
    }
}

/* ─── Behandelingen pagina: Visuele verrijking ────────── */

/* Hero ornament */
.behandelingen-hero-ornament {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent-bronze);
    opacity: 0.5;
}

/* Pakket icon wrap */
.pakket-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(200, 150, 74, 0.09);
    border: 1px solid rgba(200, 150, 74, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.pakket-kaart:hover .pakket-icon-wrap {
    background: rgba(200, 150, 74, 0.16);
    border-color: rgba(200, 150, 74, 0.38);
}

.pakket-kaart--featured .pakket-icon-wrap {
    background: rgba(200, 150, 74, 0.15);
    border-color: rgba(200, 150, 74, 0.35);
}

.pakket-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-bronze);
}

/* Pakket subtle top accent stripe */
.pakket-kaart::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 150, 74, 0.38), transparent);
    border-radius: 20px 20px 0 0;
}

.pakket-kaart--featured::before {
    background: linear-gradient(90deg, transparent, var(--accent-bronze), transparent);
    opacity: 0.6;
}

/* Sfeer images boven losse behandelingen grid */
.losse-sfeer-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 2.75rem;
}

.losse-sfeer-image {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.losse-sfeer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.losse-sfeer-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .losse-sfeer-images { display: none; }
}

/* Category header kleurvarianten */
.categorie-header--cupping {
    background: linear-gradient(140deg, #C2C395 0%, #818263 100%);
}

.categorie-header--womb {
    background: linear-gradient(140deg, #EFD7CF 0%, #DDBAAE 100%);
}

.categorie-header--womb .categorie-naam,
.categorie-header--womb .categorie-oogje {
    color: var(--dark-brown);
}

.categorie-header--womb .categorie-tagline {
    color: rgba(82, 98, 72, 0.6);
}

.categorie-header--chinese {
    background: linear-gradient(140deg, #526248 0%, #3D4A34 100%);
}

/* Category icon in header */
.categorie-header-icon {
    width: 26px;
    height: 26px;
    color: rgba(255,255,255,0.55);
    display: block;
    margin-bottom: 0.55rem;
}

/* Category tagline */
.categorie-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1.45;
    margin-top: 0.35rem;
    letter-spacing: 0.02em;
}

/* FAQ ornament */
.faq-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.1rem;
    color: var(--accent-bronze);
    opacity: 0.38;
}

.faq-ornament-line {
    height: 1px;
    width: 44px;
    background: currentColor;
    display: block;
}

.faq-ornament-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* CTA decoratief element */
.cta-botanical-mark {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--dark-brown);
    opacity: 0.22;
}

/* ─── Behandelingen pagina: Editorial Redesign ──────── */

/* Featured pakket — dark hero card */
.pakket-featured {
    background: linear-gradient(140deg, #EFD7CF 0%, #DDBAAE 100%);
    border-radius: 20px;
    padding: 52px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 52px;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.pakket-featured::after {
    content: '';
    position: absolute;
    top: -30%;
    right: 5%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(200, 150, 74, 0.1) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
}

.pakket-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-bronze);
    border: 1px solid rgba(200, 150, 74, 0.36);
    padding: 5px 14px;
    border-radius: 20px;
}

.pakket-featured-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.66rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(82, 98, 72, 0.65);
    display: block;
    margin-bottom: 0.85rem;
}

.pakket-featured-naam {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    font-weight: 500;
    font-style: italic;
    color: var(--dark-brown);
    line-height: 1.1;
    margin-bottom: 0.6rem;
    letter-spacing: 0.01em;
}

.pakket-featured-meta {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 1.75rem;
}

.pakket-featured-duur {
    font-family: 'Jost', sans-serif;
    font-size: 0.83rem;
    color: rgba(82, 98, 72, 0.55);
}

.pakket-featured-prijs {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.9rem;
    font-weight: 500;
    color: var(--accent-bronze);
    line-height: 1;
}

.pakket-featured-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
}

.pakket-featured-items li {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    color: rgba(82, 98, 72, 0.75);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pakket-featured-items li::before {
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--accent-bronze);
    opacity: 0.7;
    flex-shrink: 0;
}

.pakket-featured-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 164px;
    position: relative;
    z-index: 1;
}

.pakket-featured .btn,
.pakketten-secondary .btn {
    background: transparent;
    border: 2px solid var(--dark-brown);
    color: var(--dark-brown);
    box-shadow: none;
}

.pakket-featured .btn:hover,
.pakketten-secondary .btn:hover {
    background: var(--dark-brown);
    color: var(--off-white);
    box-shadow: none;
}

.pakket-featured-note {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    color: rgba(82, 98, 72, 0.45);
    letter-spacing: 0.08em;
    text-align: center;
}

/* Secondary 3-column pakketten */
.pakketten-secondary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ─── Bento behandelingen grid ──────────────────────── */
.bento-behandelingen {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bento-behandelingen .bento-behandeling:nth-child(1) { grid-column: 1 / span 2; }
.bento-behandelingen .bento-behandeling:nth-child(2) { grid-column: 3; }
.bento-behandelingen .bento-behandeling:nth-child(3) { grid-column: 1; }
.bento-behandelingen .bento-behandeling:nth-child(4) { grid-column: 2 / span 2; }

.bento-behandeling {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 420px;
}

.bento-behandeling img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bento-behandeling:hover img {
    transform: scale(1.04);
}

.bento-behandeling::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,12,8,0.85) 0%, rgba(20,12,8,0.35) 55%, rgba(20,12,8,0.05) 100%);
    transition: background 0.35s ease;
}

.bento-behandeling:hover::after {
    background: linear-gradient(to top, rgba(20,12,8,0.92) 0%, rgba(20,12,8,0.45) 60%, rgba(20,12,8,0.08) 100%);
}

.bento-behandeling--mist::after {
    background:
        linear-gradient(to top, rgba(10,5,2,0.94) 0%, rgba(10,5,2,0.70) 38%, rgba(10,5,2,0.30) 62%, rgba(255,248,238,0.22) 100%);
}

.bento-behandeling--mist:hover::after {
    background:
        linear-gradient(to top, rgba(10,5,2,0.96) 0%, rgba(10,5,2,0.75) 40%, rgba(10,5,2,0.35) 65%, rgba(255,248,238,0.25) 100%);
}

.bento-behandeling-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 1;
    color: white;
}

.bento-oogje {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.5rem;
}

.bento-naam {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 500;
    font-style: italic;
    color: white;
    line-height: 1.15;
    margin: 0 0 0.6rem;
}

.bento-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 1rem;
    line-height: 1.55;
}

.bento-prijzen {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 1.4rem;
}

.bento-rij {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.bento-behandeling-naam {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.72);
}

.bento-duur {
    color: rgba(255,255,255,0.36);
    font-size: 0.74rem;
    margin-left: 6px;
}

.bento-prijs {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--accent-bronze);
    white-space: nowrap;
    flex-shrink: 0;
}

.bento-btn {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.22);
    padding-bottom: 2px;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.bento-btn:hover {
    color: white;
    border-color: rgba(255,255,255,0.65);
}

@media (max-width: 900px) {
    .bento-behandelingen {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .bento-behandelingen .bento-behandeling:nth-child(1) { grid-column: span 2; }
    .bento-behandelingen .bento-behandeling:nth-child(2) { grid-column: auto; }
    .bento-behandelingen .bento-behandeling:nth-child(3) { grid-column: auto; }
    .bento-behandelingen .bento-behandeling:nth-child(4) { grid-column: span 2; }

    .bento-behandeling { min-height: 340px; }
}

@media (max-width: 560px) {
    .bento-behandelingen {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bento-behandelingen .bento-behandeling:nth-child(1),
    .bento-behandelingen .bento-behandeling:nth-child(4) { grid-column: span 1; }

    .bento-behandeling { min-height: 300px; }
}

/* ─── Losse behandelingen: editorial card layout ─────── */

.losse-editorial-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.losse-editorial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(220, 212, 193, 0.5);
    transition: box-shadow 0.35s ease;
}

.losse-editorial-card:hover {
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.08);
}

.losse-editorial-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 300px;
}

.losse-editorial-grid--reverse {
    grid-template-columns: 56% 44%;
}

.losse-editorial-img-wrap {
    position: relative;
    overflow: hidden;
}

.losse-editorial-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.losse-editorial-card:hover .losse-editorial-img-wrap img {
    transform: scale(1.045);
}

.losse-editorial-grid--reverse .losse-editorial-img-wrap {
    order: 2;
}

.losse-editorial-body {
    padding: 44px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.losse-edit-oogje {
    font-family: 'Jost', sans-serif;
    font-size: 0.63rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--accent-bronze);
    display: block;
    margin-bottom: 0.5rem;
}

.losse-edit-naam {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.65rem, 2.4vw, 2.1rem);
    font-weight: 500;
    color: var(--dark-brown);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.losse-edit-tagline {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.52;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

.losse-edit-rule {
    width: 28px;
    height: 1px;
    background: var(--accent-bronze);
    opacity: 0.28;
    margin-bottom: 1.5rem;
}

.losse-edit-rij {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(220, 212, 193, 0.42);
}

.losse-edit-rij:last-child { border-bottom: none; }

.losse-edit-naam-blok {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.losse-edit-behandeling-naam {
    font-family: 'Jost', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-brown);
}

.losse-edit-behandeling-duur {
    font-family: 'Jost', sans-serif;
    font-size: 0.73rem;
    color: var(--text-dark);
    opacity: 0.5;
}

.losse-edit-prijs {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-bronze);
    white-space: nowrap;
    flex-shrink: 0;
}

/* 2-kolommen rijen (Chinese massage) */
.losse-edit-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

/* CTA met achtergrondafbeelding */
.cta-bg-section {
    background-image:
        linear-gradient(rgba(220, 212, 193, 0.90), rgba(220, 212, 193, 0.90)),
        url('images/brand-collage.jpg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 900px) {
    .pakket-featured {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        gap: 28px;
    }

    .pakket-featured-right {
        align-items: flex-start;
        flex-direction: row;
        align-items: center;
    }

    .pakketten-secondary {
        grid-template-columns: repeat(2, 1fr);
    }

    .losse-editorial-grid,
    .losse-editorial-grid--reverse {
        grid-template-columns: 1fr;
    }

    .losse-editorial-img-wrap {
        height: 260px;
    }

    .losse-editorial-grid--reverse .losse-editorial-img-wrap {
        order: 0;
    }

    .losse-editorial-body {
        padding: 32px 28px;
    }

    .losse-edit-2col {
        grid-template-columns: 1fr;
    }
}

/* ─── Stappen flow (Hoe werkt het?) ─────────────────── */
.stappen-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-bronze);
    text-align: center;
    margin-bottom: 2rem;
}

.stappen-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.stap-blok {
    text-align: center;
    flex: 1;
    max-width: 280px;
    padding: 0 16px;
}

.stap-blok-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(200, 150, 74, 0.08);
    border: 1px solid rgba(200, 150, 74, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.stap-blok-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-bronze);
}

.stap-blok-titel {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 0.4rem;
}

.stap-blok-tekst {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.stap-pijl-blok {
    display: flex;
    align-items: flex-start;
    padding-top: 26px;
    color: var(--accent-bronze);
    opacity: 0.35;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stappen-flow {
        flex-direction: column;
        align-items: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .stap-blok {
        max-width: 100%;
        padding: 0;
        width: 100%;
    }

    .stap-pijl-blok {
        padding-top: 0;
        padding: 0.25rem 0;
        transform: rotate(90deg);
    }
}

@media (max-width: 560px) {
    .pakketten-secondary {
        grid-template-columns: 1fr;
    }
}
