:root {
    --soft-white: #fdfcfc;
    --blush-pink: #f9e2e1;
    --rose-pink: #edcdce;
    --dusty-pink: #e7b3b8;
    --warm-rose: #d2989a;
    --deep-rose: #b26b6c;
    --champagne-gold: #f5cc7d;
    --classic-gold: #cc8a3a;
    --bronze-gold: #944c22;
    --dark-bronze: #4e1f04;
    --text: #3d2a27;
    --muted: #75615e;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(78, 31, 4, 0.12);
    --radius: 22px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--soft-white);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--dark-bronze);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.15;
}

h1 {
    font-size: clamp(2.7rem, 7vw, 5.8rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
    font-size: 1.45rem;
}

p {
    margin-top: 0;
}

.container {
    width: min(calc(100% - 36px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 9999;
    padding: 12px 18px;
    background: var(--dark-bronze);
    color: var(--white);
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(204, 138, 58, 0.22);
    background: rgba(253, 252, 252, 0.94);
    backdrop-filter: blur(14px);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-copy {
    display: grid;
    gap: 1px;
}

.brand-copy strong {
    color: var(--dark-bronze);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
}

.brand-copy span {
    color: var(--deep-rose);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav a {
    position: relative;
    color: var(--dark-bronze);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--classic-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--rose-pink);
    border-radius: 50%;
    background: var(--white);
    color: var(--dark-bronze);
    cursor: pointer;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--champagne-gold), var(--classic-gold));
    color: var(--dark-bronze);
    box-shadow: 0 12px 26px rgba(204, 138, 58, 0.24);
}

.btn-secondary {
    border-color: var(--classic-gold);
    background: transparent;
    color: var(--dark-bronze);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 78px 0 88px;
    background:
        radial-gradient(circle at 85% 25%, rgba(245, 204, 125, 0.42), transparent 22%),
        radial-gradient(circle at 15% 80%, rgba(231, 179, 184, 0.48), transparent 25%),
        linear-gradient(135deg, var(--soft-white), var(--blush-pink));
}

.hero::before,
.hero::after {
    position: absolute;
    border: 1px solid rgba(204, 138, 58, 0.28);
    border-radius: 50%;
    content: "";
}

.hero::before {
    top: -150px;
    right: -140px;
    width: 420px;
    height: 420px;
}

.hero::after {
    bottom: -190px;
    left: -120px;
    width: 360px;
    height: 360px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 64px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--deep-rose);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 42px;
    height: 1px;
    background: var(--classic-gold);
    content: "";
}

.hero h1 span {
    display: block;
    color: var(--classic-gold);
    font-size: 0.55em;
    letter-spacing: 0.04em;
}

.hero-copy > p {
    max-width: 660px;
    color: var(--muted);
    font-size: 1.13rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-card {
    position: relative;
    padding: 22px;
    border: 1px solid rgba(204, 138, 58, 0.25);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow);
}

.hero-card img {
    width: 100%;
    border-radius: 50%;
}

.hero-badge {
    position: absolute;
    right: -70px;
    bottom: 12%;
    max-width: 190px;
    padding: 18px;
    border: 1px solid rgba(204, 138, 58, 0.35);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-badge strong {
    display: block;
    margin-bottom: 2px;
    color: var(--classic-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
}

.section {
    padding: 88px 0;
}

.section-soft {
    background: var(--blush-pink);
}

.section-rose {
    background: var(--rose-pink);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.section-heading p {
    max-width: 600px;
    margin-bottom: 8px;
    color: var(--muted);
}

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

.card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border: 1px solid rgba(204, 138, 58, 0.2);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(78, 31, 4, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.card-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 16px;
    background: var(--blush-pink);
    color: var(--classic-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.6rem;
}

.card p {
    color: var(--muted);
}

.text-link {
    color: var(--bronze-gold);
    font-weight: 700;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.usp {
    padding: 22px;
    border-left: 3px solid var(--champagne-gold);
    background: rgba(255, 255, 255, 0.72);
}

.usp strong {
    display: block;
    margin-bottom: 5px;
    color: var(--dark-bronze);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 58px;
}

.decorative-panel {
    min-height: 420px;
    display: grid;
    place-items: center;
    padding: 40px;
    border-radius: 40% 18% 40% 18%;
    background:
        radial-gradient(circle at 25% 25%, rgba(245, 204, 125, 0.9), transparent 14%),
        linear-gradient(145deg, var(--warm-rose), var(--blush-pink));
    box-shadow: var(--shadow);
}

.decorative-panel img {
    width: min(100%, 330px);
    border-radius: 50%;
    box-shadow: 0 16px 45px rgba(78, 31, 4, 0.2);
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--classic-gold);
    content: "✦";
}

.page-hero {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--blush-pink), var(--soft-white));
    text-align: center;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1.05rem;
}

.price-groups {
    display: grid;
    gap: 30px;
}

.price-group {
    overflow: hidden;
    border: 1px solid rgba(204, 138, 58, 0.22);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(78, 31, 4, 0.06);
}

.price-group h2 {
    margin: 0;
    padding: 22px 28px;
    background: var(--blush-pink);
    font-size: 1.8rem;
}

.price-list {
    margin: 0;
    padding: 0 28px;
    list-style: none;
}

.price-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(210, 152, 154, 0.26);
}

.price-list li:last-child {
    border-bottom: 0;
}

.price-list span:last-child {
    color: var(--bronze-gold);
    font-weight: 800;
}

.hours-table {
    width: 100%;
    overflow: hidden;
    border-collapse: collapse;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.hours-table th,
.hours-table td {
    padding: 18px 22px;
    border-bottom: 1px solid var(--rose-pink);
    text-align: left;
}

.hours-table th {
    color: var(--dark-bronze);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 36px;
}

.contact-card {
    padding: 32px;
    border-radius: var(--radius);
    background: var(--blush-pink);
}

.contact-list {
    display: grid;
    gap: 17px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list strong {
    display: block;
    color: var(--dark-bronze);
}

.map-wrap {
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(204, 138, 58, 0.24);
    border-radius: var(--radius);
    background: var(--rose-pink);
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--rose-pink);
    border-radius: 16px;
    background: var(--white);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--dark-bronze);
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 0 22px 22px;
    color: var(--muted);
}

.faq-item.is-open .faq-answer {
    display: block;
}

.cta {
    padding: 58px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--deep-rose), var(--warm-rose));
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.cta h2,
.cta p {
    color: var(--white);
}

.cta .hero-actions {
    justify-content: center;
}

.site-footer {
    padding: 64px 0 28px;
    background: var(--dark-bronze);
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 44px;
}

.site-footer h3 {
    color: var(--champagne-gold);
}

.site-footer a:hover {
    color: var(--champagne-gold);
}

.footer-links {
    display: grid;
    gap: 9px;
    padding: 0;
    list-style: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .main-nav {
        position: fixed;
        top: 82px;
        right: 18px;
        left: 18px;
        display: none;
        padding: 22px;
        border: 1px solid var(--rose-pink);
        border-radius: 18px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        align-items: stretch;
        flex-direction: column;
    }

    .header-cta {
        display: none;
    }

    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        width: min(100%, 520px);
        margin-inline: auto;
    }

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

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

@media (max-width: 660px) {
    .brand-copy {
        display: none;
    }

    .hero {
        padding-top: 52px;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero-actions,
    .hero-actions .btn {
        width: 100%;
    }

    .cards,
    .usp-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 66px 0;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .cta {
        padding: 38px 22px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* Prijslijst toelichtingen */
.price-note {
    margin: 1rem 0 0;
    color: var(--color-text-muted, #6f5555);
    font-size: 0.92rem;
    line-height: 1.65;
}

.price-notes {
    display: grid;
    gap: 0.35rem;
    margin-top: 1rem;
}

.price-notes .price-note {
    margin: 0;
}

.notice-card {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid rgba(204, 138, 58, 0.28);
    border-radius: 1.25rem;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 1rem 3rem rgba(78, 31, 4, 0.08);
}

.notice-card h2 {
    margin-top: 0;
}

.notice-card .button {
    margin-top: 0.75rem;
}
