:root {
    --primary: rgb(191, 0, 0);
    --primary-dark: rgb(140, 0, 0);
    --white: #ffffff;
    --text: #171717;
    --muted: #5a5a5a;
    --line: rgba(23, 23, 23, 0.08);
    --surface: #f6f6f6;
    --radius: 24px;
    --shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
    --container: 1200px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, strong { color: var(--text); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    line-height: 1.08;
    text-wrap: balance;
}

body[data-onsite-editor="1"] [data-onsite-edit-field] {
    position: relative;
    outline: 2px dashed rgba(191, 0, 0, .34);
    outline-offset: 8px;
    cursor: pointer;
    transition: outline-color .2s ease, box-shadow .2s ease, background .2s ease;
}
body[data-onsite-editor="1"] [data-onsite-edit-field]:hover,
body[data-onsite-editor="1"] [data-onsite-edit-field].is-onsite-selected {
    outline-color: rgba(191, 0, 0, .75);
    box-shadow: 0 0 0 10px rgba(191, 0, 0, .08);
}
body[data-onsite-editor="1"] [data-onsite-edit-field].is-onsite-selected {
    background: rgba(191, 0, 0, .03);
}
body[data-onsite-editor="1"] [data-onsite-edit-field]:focus {
    outline-color: rgba(191, 0, 0, .9);
    box-shadow:
        0 0 0 10px rgba(191, 0, 0, .1),
        0 10px 24px rgba(17, 17, 17, .08);
    background: rgba(191, 0, 0, .05);
    caret-color: var(--primary);
}

.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 4.5rem 0; position: relative; overflow: clip; }
.slant-top {
    overflow: visible;
    margin-top: 1.75rem;
    padding-top: 3.25rem;
}
.section--compact { padding: 3rem 0; }
.section--white { background: var(--white); }
.section--red {
    background: var(--primary);
    color: var(--white);
}
.section--red h2, .section--red h3, .section--red strong, .section--red p { color: var(--white); }
.slant-top::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 62px;
    background: url("../images/divider-red.svg") center top / 100% 100% no-repeat;
    transform: translateY(calc(-100% + 2px));
    pointer-events: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: var(--button-bg, var(--primary));
    border: 1px solid var(--button-bg, var(--primary));
    color: var(--button-text, var(--white));
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(var(--button-shadow-rgb, 191, 0, 0), .16);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--button-bg-hover, var(--primary-dark)); border-color: var(--button-bg-hover, var(--primary-dark)); box-shadow: 0 14px 28px rgba(var(--button-shadow-rgb, 191, 0, 0), .22); }
.button--ghost { background: transparent; color: var(--text); border-color: var(--line); box-shadow: none; }
.button--light { background: var(--white); color: var(--primary); border-color: transparent; box-shadow: none; }
.button--small { min-height: 40px; padding: .7rem 1rem; font-size: .95rem; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 12px 40px rgba(17,17,17,.06); }
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 82px;
}
.site-logo { display: flex; align-items: center; gap: .85rem; }
.site-logo__image {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    display: block;
}
.site-logo__mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
}
.site-logo strong { display: block; font-size: 1.1rem; }
.site-logo small { color: var(--muted); display: block; }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: 0;
    padding: .4rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); }

.site-nav {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow);
}
.site-nav.is-open { display: flex; }
.site-nav a.is-active { color: var(--primary); }

.hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    overflow: clip;
    background:
        radial-gradient(circle at 14% 12%, rgba(191,0,0,.22), transparent 28%),
        radial-gradient(circle at 82% 10%, rgba(191,0,0,.16), transparent 24%),
        linear-gradient(180deg, #fff 0%, #f7f4f4 100%);
    isolation: isolate;
}
.hero__media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: .24;
    transform: scale(1.03);
    filter: saturate(.95) contrast(1.02);
}
.hero__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(191,0,0,.22), transparent 23%),
        radial-gradient(circle at 78% 16%, rgba(191,0,0,.18), transparent 22%),
        radial-gradient(circle at 56% 64%, rgba(191,0,0,.08), transparent 18%),
        linear-gradient(135deg, rgba(191,0,0,.05), transparent 42%);
    pointer-events: none;
}
.hero--with-image {
    background:
        linear-gradient(90deg, rgba(14,14,14,var(--hero-overlay-opacity, .28)), rgba(14,14,14,calc(var(--hero-overlay-opacity, .28) * .52))),
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}
.hero--with-image .hero__backdrop {
    background:
        radial-gradient(circle at 18% 22%, rgba(191,0,0,calc(var(--hero-overlay-opacity, .28) + .08)), transparent 24%),
        radial-gradient(circle at 78% 16%, rgba(191,0,0,calc(var(--hero-overlay-opacity, .28) * .78)), transparent 23%),
        linear-gradient(120deg, rgba(191,0,0,calc(var(--hero-overlay-opacity, .28) * .72)), rgba(14,14,14,.16) 42%, rgba(14,14,14,calc(var(--hero-overlay-opacity, .28) + .06)));
}
.hero--with-image .hero__content h1,
.hero--with-image .hero__content p,
.hero--with-image .hero__content strong,
.hero--with-image .hero__stats span,
.hero--with-image .hero__ribbon {
    color: var(--white);
}
.hero--with-image .eyebrow { color: rgba(255,255,255,.82); }
.hero--with-image .button--ghost { color: var(--white); border-color: rgba(255,255,255,.28); }
.hero--with-image .hero__stats article {
    background: rgba(13,13,13,.38);
    border-color: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
}
.hero--with-image .hero__stats strong { color: var(--white); }
.hero--with-image .hero__ribbon {
    background: rgba(12,12,12,.68);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}
.hero--text-shadow .hero__content h1,
.hero--text-shadow .hero__content p,
.hero--text-shadow .hero__content .eyebrow {
    text-shadow: 0 3px 14px rgba(0, 0, 0, .18);
}
.hero--overlay-off {
    background: transparent;
}
.hero--overlay-off .hero__backdrop {
    display: none;
}
.hero--overlay-off .hero__media {
    opacity: .92;
    filter: none;
}
.hero__grid {
    position: relative;
    display: grid;
    gap: 2rem;
    align-items: center;
}
.hero__grid--single {
    grid-template-columns: minmax(0, 1fr) !important;
}
.hero__content h1 { font-size: clamp(2.5rem, 7vw, 5.3rem); line-height: .98; margin-bottom: 1rem; max-width: 17ch; }
.hero__title--home {
    font-size: clamp(1.72rem, 5.3vw, 4.4rem) !important;
    max-width: 24ch !important;
    text-wrap: normal;
}
.hero__content p { font-size: 1.05rem; max-width: 42rem; }
.hero__actions, .hero__stats { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.hero__actions--home { margin-top: 2.2rem; }
.hero__subtle-link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary);
}
.hero__subtle-link--light {
    color: var(--white);
    text-shadow: 0 4px 18px rgba(0, 0, 0, .22);
}
.hero__subtle-link::after {
    content: "›";
    font-size: 1.1rem;
    line-height: 1;
}
.hero__stats article {
    min-width: 140px;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(23,23,23,.06);
}
.hero__stats strong { display: block; font-size: 1.5rem; }
.hero__visual { position: relative; min-height: 320px; }
.hero__card, .hero__panel {
    position: relative;
    padding: 2rem;
    border-radius: 32px;
    background: linear-gradient(160deg, var(--primary) 0%, #750000 100%);
    color: var(--white);
    box-shadow: var(--shadow);
}
.hero__card strong, .hero__panel strong, .hero__panel p, .hero__card span { color: var(--white); }
.hero__card::after, .hero__panel::after {
    content: "";
    position: absolute;
    inset: auto -20px -20px auto;
    width: 140px;
    height: 140px;
    border-radius: 28px;
    background: rgba(255,255,255,.12);
    transform: rotate(14deg);
}
.hero__ribbon {
    position: absolute;
    bottom: 24px;
    left: -6px;
    padding: .85rem 1.15rem;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(17,17,17,.14);
    font-weight: 700;
}
.hero__panel-label, .eyebrow {
    display: inline-block;
    margin-bottom: .85rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 700;
    color: var(--primary);
}
.section--red .eyebrow { color: rgba(255,255,255,.8); }
.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 56px;
    background: url("../images/divider-white.svg") center bottom / 100% 100% no-repeat;
    pointer-events: none;
}

.section-heading { max-width: 52rem; margin-bottom: 2rem; }
.section-heading h2 { font-size: clamp(2rem, 5vw, 3.3rem); line-height: 1.02; margin-bottom: .8rem; }
.price-note {
    max-width: 44rem;
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 500;
}
.price-note strong {
    color: var(--text);
}

.card-grid, .feature-grid, .price-grid {
    display: grid;
    gap: 1.25rem;
}
.offer-card, .feature-card, .price-card, .highlight-box, .split-card, .table-card, .event-card, .empty-state, .form-card {
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 16px 48px rgba(17,17,17,.06);
}
.offer-card, .price-card, .highlight-box, .empty-state, .form-card { padding: 1.6rem; }
.offer-card h3, .price-card h3, .highlight-box h3 { font-size: 1.35rem; margin-bottom: .7rem; }
.offer-card a { color: var(--primary); font-weight: 700; }
.lesson-moment__time {
    margin-bottom: .35rem;
    color: var(--text);
    font-size: 1.35rem;
    font-weight: 700;
}
.lesson-moment__sport {
    margin-bottom: 0;
    color: var(--primary);
    font-weight: 600;
}
.lesson-moment__note {
    margin-top: .55rem;
    margin-bottom: 0;
    font-size: .94rem;
    font-weight: 600;
    color: var(--muted);
}
.lesson-day-group + .lesson-day-group {
    margin-top: 2rem;
}
.lesson-day-group__header {
    margin-bottom: 1rem;
}
.lesson-day-group__header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}
.feature-card { overflow: hidden; }
.feature-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: #f0f0f0; }
.feature-card__body { padding: 1.3rem; }
.section--red .feature-card h3 { color: var(--text); }
.section--red .feature-card p { color: var(--muted); }
.split-card, .event-card { overflow: hidden; display: grid; }
.split-card__content, .event-card__content { padding: 2rem; }
.split-card__lead { font-size: 1.4rem; font-weight: 700; color: var(--text); }
.split-card__visual img, .event-card__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }

.party-grid {
    display: grid;
    gap: 1.4rem;
    align-items: stretch;
}
.parents-grid {
    display: grid;
    gap: 1.4rem;
}
.groepen-points {
    margin-top: 1.5rem;
}
.groepen-media-card {
    margin: 0;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(191,0,0,.04), rgba(191,0,0,.01)),
        var(--surface);
    box-shadow: 0 20px 56px rgba(17,17,17,.08);
    min-height: 100%;
}
.groepen-media-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}
.parents-card {
    display: grid;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 54px rgba(17,17,17,.08);
}
.parents-card__media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #f0f0f0;
}
.parents-card__body {
    padding: 1.5rem;
}
.parents-card__body h3 {
    font-size: 1.55rem;
    margin-bottom: .75rem;
}
.parents-card__body p {
    margin-bottom: 0;
}
.party-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: var(--white);
    color: var(--text);
    border: 1px solid rgba(255,255,255,.24);
    box-shadow: 0 18px 54px rgba(17,17,17,.14);
}
.party-card__media {
    position: relative;
    min-height: 240px;
    overflow: hidden;
}
.party-card__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background: linear-gradient(180deg, transparent, rgba(16,16,16,.44));
    pointer-events: none;
}
.party-card__media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    background: #f0f0f0;
}
.party-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: .25rem .85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #c99513, #f1d26f);
    color: #553500;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(176, 121, 17, .24);
}
.party-card__duration {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: inline-flex;
    padding: .7rem 1rem;
    border-radius: 999px;
    background: rgba(18,18,18,.78);
    color: var(--white);
    font-weight: 700;
    backdrop-filter: blur(8px);
}
.party-card__body {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 1.5rem;
}
.party-card__body .button {
    margin-top: auto;
}
.party-card__body h3 {
    font-size: 1.7rem;
    margin-bottom: 0;
    color: var(--text);
}
.party-card__body p {
    color: var(--muted);
}
.party-card__price {
    display: inline-flex;
    width: fit-content;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(191,0,0,.1);
    color: var(--primary);
    font-weight: 700;
}
.party-card__teaser {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text) !important;
}
.party-card__extras {
    display: grid;
    gap: .65rem;
    padding-top: .5rem;
    border-top: 1px solid var(--line);
}
.party-card__extras strong {
    color: var(--text);
}
.party-card--featured {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, rgba(201, 149, 19, .95), rgba(241, 210, 111, .98), rgba(201, 149, 19, .95)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 24px 64px rgba(176, 121, 17, .18);
}

.price-section + .price-section {
    margin-top: 2.5rem;
}
.price-section__header {
    margin-bottom: 1.25rem;
}
.price-section__title {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .35rem;
}
.price-section__header h3 {
    font-size: 1.5rem;
    margin-bottom: .35rem;
}
.price-card {
    position: relative;
}
.price-expand {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}
.price-grid--extended {
    margin-top: 1.25rem;
}
.price-card strong { display: block; font-size: 2rem; margin-bottom: .6rem; }
.price-card--outline { border: 2px solid rgba(191,0,0,.12); }
.price-card--featured {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, rgba(201, 149, 19, .88), rgba(241, 210, 111, .95), rgba(201, 149, 19, .88)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 20px 54px rgba(176, 121, 17, .12);
}
.price-card__ribbon {
    position: absolute;
    top: 1.15rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: .2rem .7rem;
    border-radius: 999px;
    background: rgba(201, 149, 19, .12);
    color: #8f6300;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.price-info-trigger {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(191,0,0,.16);
    border-radius: 999px;
    background: rgba(191,0,0,.08);
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.price-info-trigger:hover {
    transform: translateY(-1px);
    background: rgba(191,0,0,.14);
    border-color: rgba(191,0,0,.26);
}

.two-column, .footer-grid, .admin-grid { display: grid; gap: 1.5rem; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.check-list li::before { content: "•"; color: var(--primary); font-weight: 800; margin-right: .65rem; }
.check-list--light li::before { color: rgba(255,255,255,.82); }
.highlight-box { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: var(--white); }
.highlight-box--light { background: var(--surface); border-color: var(--line); color: var(--text); }
.highlight-box--light h3, .highlight-box--light p { color: var(--text); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; }
.hours-table th { width: 24%; }

.form-card form, .admin-form { display: grid; gap: 1rem; }
label { display: grid; gap: .45rem; font-weight: 600; }
input, textarea, select {
    width: 100%;
    border: 1px solid rgba(23,23,23,.12);
    border-radius: 16px;
    padding: .9rem 1rem;
    font: inherit;
    color: var(--text);
    background: var(--white);
}
textarea { resize: vertical; }

.contact-meta { display: grid; gap: .5rem; }
.faq-list {
    display: grid;
    gap: 1rem;
}
.faq-item {
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 16px 42px rgba(17,17,17,.05);
    overflow: hidden;
}
.faq-item summary {
    position: relative;
    display: block;
    padding: 1.35rem 4.4rem 1.35rem 1.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 1.35rem;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(191,0,0,.08);
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 600;
    transform: translateY(-50%);
    transition: transform .2s ease, background .2s ease;
}
.faq-item[open] summary::after {
    content: "−";
    background: rgba(191,0,0,.12);
}
.faq-item__answer {
    padding: 0 1.35rem 1.35rem;
}
.faq-item__answer p {
    margin-bottom: 0;
}
.alert {
    margin-bottom: 1rem;
    padding: .95rem 1rem;
    border-radius: 16px;
    font-weight: 600;
}
.alert--success { background: rgba(27, 153, 91, .12); color: #17663f; }
.alert--error { background: rgba(191,0,0,.12); color: var(--primary-dark); }

.site-footer {
    padding: 3.5rem 0;
    background: #121212;
    color: rgba(255,255,255,.8);
}
.site-footer h3, .site-footer strong, .site-footer a { color: var(--white); }
.footer-links, .footer-hours { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-hours li { display: flex; justify-content: space-between; gap: 1rem; }
.footer-link-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--white);
    font: inherit;
    cursor: pointer;
}
.footer-link-button:hover {
    text-decoration: underline;
}
.footer-hours-cta {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--white);
    border-color: rgba(255,255,255,.22);
}
.footer-hours-cta:hover {
    border-color: rgba(255,255,255,.38);
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background: rgba(18,18,18,.96);
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.cookie-banner p { color: rgba(255,255,255,.82); margin: 0; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.cookie-banner .button--ghost { color: var(--white); border-color: rgba(255,255,255,.2); }

.floating-cta {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 39;
    padding: .9rem 1.15rem;
    border-radius: 999px;
    background: var(--floating-cta-bg, var(--primary));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 16px 40px rgba(var(--floating-cta-rgb, 191, 0, 0), .28);
    border: 1px solid rgba(255,255,255,.18);
}
.floating-cta:hover {
    box-shadow:
        0 18px 42px rgba(var(--floating-cta-rgb, 191, 0, 0), .34),
        0 0 0 8px rgba(var(--floating-cta-rgb, 191, 0, 0), .12);
}
body.has-cookie-banner .floating-cta { bottom: 8.25rem; }
.cookie-banner:not([hidden]) ~ .floating-cta { bottom: 8.25rem; }

.event-popup {
    position: fixed;
    inset: 0;
    z-index: 45;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: .5rem;
}
.event-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .56);
    backdrop-filter: blur(8px);
}
.event-popup__panel {
    position: relative;
    width: min(100%, 1080px);
    margin: 0 auto;
    background: var(--white);
    color: var(--text);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(17,17,17,.28);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    max-height: calc(100dvh - 1rem);
}
.event-popup__media {
    max-height: min(34vh, 260px);
    overflow: hidden;
}
.event-popup__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 0;
}
.event-popup__content {
    padding: 1.5rem;
    overflow-y: auto;
}
.event-popup__content h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    margin-bottom: .8rem;
}
.event-popup__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.5rem;
}
.event-popup__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(18,18,18,.62);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}
.event-popup--fullscreen .event-popup__panel {
    margin: auto;
}
.event-popup--top {
    inset: 0 auto auto 0;
    width: 100%;
    pointer-events: none;
    padding-top: .5rem;
}
.event-popup--top .event-popup__backdrop {
    display: none;
}
.event-popup--top .event-popup__panel {
    width: min(100%, 840px);
    margin: 0 auto;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(17,17,17,.24);
    pointer-events: auto;
}
.info-modal {
    position: fixed;
    inset: 0;
    z-index: 46;
    display: grid;
    place-items: center;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.info-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .58);
    backdrop-filter: blur(8px);
}
.info-modal__panel {
    position: relative;
    width: min(100%, 560px);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 30px 80px rgba(17,17,17,.28);
    overflow: hidden;
    max-height: calc(100dvh - 2rem);
    display: grid;
    grid-template-rows: minmax(0, 1fr);
}
.info-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(18,18,18,.62);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}
.info-modal__content {
    padding: 1.8rem;
    overflow-y: auto;
}
.info-modal__content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: .9rem;
}
.info-modal__text {
    color: var(--muted);
    line-height: 1.7;
}
.check-list__item-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .85rem;
}
.check-list__item-row span {
    flex: 1 1 auto;
}
.check-list__info-button {
    flex: 0 0 auto;
    min-width: max-content;
    padding: .35rem .75rem;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: var(--white);
    font: inherit;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
}
.check-list__info-button:hover {
    background: rgba(255,255,255,.2);
}
.jump-waiver {
    display: grid;
    gap: 1rem;
}
.jump-waiver h2,
.jump-waiver p {
    margin-bottom: 0;
}

.reviews-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-marquee__track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: reviews-marquee 34s linear infinite;
    will-change: transform;
}
.reviews-marquee:hover .reviews-marquee__track {
    animation-play-state: paused;
}
.review-card {
    width: min(360px, calc(100vw - 4rem));
    display: grid;
    gap: .85rem;
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 18px 40px rgba(12, 12, 12, .16);
}
.review-card__stars {
    color: #f6cf58;
    font-size: 1.05rem;
    letter-spacing: .14em;
}
.review-card__text,
.review-card__author,
.review-card__source {
    color: var(--white);
}
.review-card__text {
    margin-bottom: 0;
    font-size: 1rem;
}
.review-card__author {
    font-size: 1rem;
}
.review-card__source {
    font-size: .83rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .8;
}

@keyframes reviews-marquee {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (max-width: 767px) {
    .reviews-marquee {
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 .2rem .35rem;
        margin: 0 -.2rem;
        mask-image: none;
        -webkit-mask-image: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        touch-action: pan-x;
        cursor: grab;
    }
    .reviews-marquee:active {
        cursor: grabbing;
    }
    .reviews-marquee__track {
        width: max-content;
        animation: none;
        padding-right: .2rem;
    }
    .review-card {
        flex: 0 0 min(320px, calc(100vw - 4rem));
        scroll-snap-align: start;
    }
    .review-card--duplicate {
        display: none;
    }
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .22s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.empty-state--center { text-align: center; padding: 4rem 2rem; }
.prose p:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
    .section { padding: 6rem 0; }
    .slant-top {
        margin-top: 2.5rem;
        padding-top: 4rem;
    }
    .slant-top::before { height: 86px; }
    .hero { padding: 6.5rem 0 5rem; }
    .wave-divider { height: 84px; }
    .card-grid--three, .feature-grid, .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .price-grid--secondary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .two-column, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero__grid, .split-card, .event-card { grid-template-columns: 1.15fr .85fr; }
    .party-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .parents-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .event-popup {
        padding: 1rem;
    }
    .event-popup__panel {
        border-radius: 32px;
        max-height: calc(100dvh - 2rem);
    }
    .event-popup__media {
        max-height: none;
    }
    .event-popup--fullscreen .event-popup__panel {
        grid-template-columns: 1.05fr .95fr;
        grid-template-rows: none;
    }
    .event-popup--top .event-popup__panel {
        grid-template-columns: .82fr 1.18fr;
        grid-template-rows: none;
    }
}

@media (min-width: 1080px) {
    .nav-toggle { display: none; }
    .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
    .site-nav .button {
        white-space: nowrap;
        flex-shrink: 0;
    }
    .site-nav .button--small {
        padding: .68rem .95rem;
        font-size: .88rem;
    }
    .hero__title--home {
        font-size: clamp(2.9rem, 3.7vw, 3.7rem) !important;
        max-width: 22ch !important;
    }
    .hero__visual { min-height: 420px; }
    .footer-grid { grid-template-columns: 1.2fr .8fr .9fr .9fr; }
    .party-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .party-card__media {
        min-height: 220px;
    }
    .party-card__media img {
        min-height: 220px;
    }
    body.has-cookie-banner .floating-cta,
    .cookie-banner:not([hidden]) ~ .floating-cta { bottom: 2rem; }
    .cookie-banner {
        left: 50%;
        right: auto;
        width: min(720px, calc(100% - 2rem));
        transform: translateX(-50%);
    }
}
