/* =========================================================
   GLOBALE DESIGN TOKENS
   Eén keer bovenaan style.css zetten.
   Oude secties kunnen we tijdens de cleanup hierop aansluiten.
   ========================================================= */

:root {
    --site-ink: #29332F;
    --site-blush: #F8C3D0;
    --site-blush-strong: #F0AFC0;
    --site-wash: #F7F4F5;
    --site-white: #FFFFFF;
    --site-text: #626864;
    --site-border: rgba(41, 51, 47, .13);
    --site-gold: #C6A15B;
    --site-gold-soft: rgba(198, 161, 91, .68);
    --site-max: 1240px;
}


/* =========================================
   RESET
   ========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: #F7F4F5;
    color: #29332F;

    font-family: "Manrope", sans-serif;

    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}


/* =========================================================
   DOORLOPENDE SECTIERINGEN
   Decoratieve laag tussen secties. De ringen liggen boven de
   sectie-achtergronden, maar onder alle echte content.
   ========================================================= */

.hero-shell,
.availability-shell,
.fv-shell,
.contact-shell {
    position: relative;
    z-index: 2;
}

.section-ring-bridge {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 0;
    pointer-events: none;
}

.section-ring {
    position: absolute;
    left: 50%;
    top: 0;
    width: clamp(760px, 64vw, 1180px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: clamp(18px, 1.75vw, 30px) solid rgba(240, 175, 192, .16);
    box-shadow:
        0 0 0 1px rgba(240, 175, 192, .38),
        inset 0 0 0 1px rgba(248, 195, 208, .38);
    transform: translate(-50%, -50%);
}

/* Een tweede, zeer dunne lijn geeft het latex/ring-effect meer finesse. */
.section-ring::after {
    content: "";
    position: absolute;
    inset: clamp(24px, 2.4vw, 42px);
    border: 1px solid rgba(240, 175, 192, .34);
    border-radius: 50%;
}

/* 01 → 02: groot en rechts, deels buiten beeld. */
.section-ring-bridge--01 .section-ring {
    left: 82%;
    width: clamp(820px, 67vw, 1240px);
    opacity: .86;
}

/* 02 → 03: tweede ring links voor ritme en afwisseling. */
.section-ring-bridge--02 .section-ring {
    left: 15%;
    width: clamp(880px, 72vw, 1320px);
    opacity: .72;
}

/* 03 → 04: iets kleiner, terug naar rechts. */
.section-ring-bridge--03 .section-ring {
    left: 78%;
    width: clamp(700px, 58vw, 1080px);
    opacity: .78;
}

@media (max-width: 820px) {
    .section-ring {
        width: clamp(430px, 115vw, 720px);
        border-width: 14px;
        opacity: .58 !important;
    }

    .section-ring::after {
        inset: 20px;
    }

    .section-ring-bridge--01 .section-ring {
        left: 93%;
    }

    .section-ring-bridge--02 .section-ring {
        left: 5%;
    }

    .section-ring-bridge--03 .section-ring {
        left: 90%;
    }
}


/* =========================================
   HERO
   ========================================= */

.hero {
    width: 100%;
    min-height: 100svh;

    display: flex;
    align-items: center;

    padding:
        clamp(32px, 4vw, 64px) 5%;
}


.hero-shell {
    width: 100%;
    max-width: var(--site-max);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr) minmax(340px, .75fr);

    gap: clamp(45px, 7vw, 110px);

    align-items: center;
}


/* =========================================
   LINKERKANT
   ========================================= */

.hero-copy {
    width: 100%;
}


/* kleine bovenregel */

.hero-kicker {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom:
        clamp(28px, 4vw, 52px);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .18em;

    color: #6D736F;
}


.hero-kicker-line {
    width: 44px;
    height: 2px;

    flex-shrink: 0;

    background: #F8C3D0;
}


/* =========================================
   TITEL
   ========================================= */

.hero-title {
    margin: 0;

    display: flex;
    flex-direction: column;

    font-family: "Rubik Mono One", sans-serif;

    font-size:
        clamp(54px, 7vw, 104px);

    line-height: .93;

    letter-spacing: -.045em;

    color: #29332F;
}


.hero-title span {
    display: block;
}


.hero-title-accent {
    color: #F0AFC0;

    margin-left:
        clamp(0px, 4vw, 70px);
}


/* =========================================
   INTRO
   ========================================= */

.hero-intro {
    width: 72%;
    max-width: 680px;

    margin-top:
        clamp(34px, 5vw, 62px);

    font-size:
        clamp(16px, 1.25vw, 19px);

    line-height: 1.75;

    color: #545B57;
}


.hero-intro p {
    margin: 0 0 1.25em;
}


.hero-intro p:last-child {
    margin-bottom: 0;
}


/* =========================================
   BUTTONS
   ========================================= */

.hero-actions {
    margin-top:
        clamp(34px, 4.5vw, 58px);

    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}


.hero-button {
    min-height: 54px;

    padding:
        0 clamp(22px, 2.2vw, 34px);

    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 24px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: .04em;

    text-decoration: none;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}


.hero-button-primary {
    background: #29332F;
    color: white;
}


.hero-button-primary:hover {
    transform: translateY(-3px);

    background: #F0AFC0;

    color: #29332F;
}


.hero-button-secondary {
    border: 1px solid rgba(41, 51, 47, .20);

    background: rgba(255, 255, 255, .55);

    color: #29332F;
}


.hero-button-secondary:hover {
    transform: translateY(-3px);

    background: white;
}


.button-arrow {
    font-size: 17px;
}


/* =========================================
   RECHTER PREMIUM CARD
   ========================================= */

.hero-card {
    min-height:
        clamp(580px, 65vw, 720px);

    position: relative;

    overflow: hidden;

    padding:
        clamp(24px, 3vw, 38px);

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    border-radius:
        clamp(28px, 3vw, 44px);

    background: #29332F;

    color: white;
}


/* grote achtergrondcirkel */

.hero-card::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    border:
        1px solid rgba(248, 195, 208, .18);

    top: 16%;
    right: -45%;
}


.hero-card::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .08);

    top: 27%;
    right: -9%;
}


/* bovenkant */

.hero-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;

    align-items: center;
}


.hero-card-number {
    font-size: 11px;

    letter-spacing: .20em;

    color: rgba(255, 255, 255, .45);
}


.hero-card-pill {
    padding:
        10px 17px;

    border:
        1px solid rgba(255, 255, 255, .18);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, .05);

    color: #F8C3D0;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .18em;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease;
}


.hero-card-pill:hover {
    background: #F8C3D0;

    color: #29332F;
}


/* =========================================
   XXX VISUAL
   ========================================= */

.hero-card-center {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    align-items: center;

    padding:
        30px 0;
}


.hero-card-small {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: .38em;

    color: rgba(255, 255, 255, .45);
}


.hero-card-small-bottom {
    margin-top: 12px;
}


.hero-card-xxx {
    margin:
        10px 0 0;

    font-family:
        "Rubik Mono One",
        sans-serif;

    font-size:
        clamp(80px, 10vw, 140px);

    line-height: .9;

    letter-spacing: -.08em;

    color: #F8C3D0;
}


/* =========================================
   LINKS ONDERAAN CARD
   ========================================= */

.hero-card-links {
    position: relative;
    z-index: 2;

    border-top:
        1px solid rgba(255, 255, 255, .12);
}


.hero-card-link {
    min-height: 82px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    text-decoration: none;

    border-bottom:
        1px solid rgba(255, 255, 255, .12);

    transition:
        padding .2s ease,
        color .2s ease;
}


.hero-card-link:hover {
    padding-left: 8px;

    color: #F8C3D0;
}


.card-link-label {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .18em;

    color: rgba(255, 255, 255, .38);
}


.card-link-title {
    display: block;

    font-size: 16px;

    font-weight: 600;
}


.card-link-arrow {
    font-size: 21px;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1050px) {

    .hero-shell {
        grid-template-columns:
            minmax(0, 1.1fr) minmax(300px, .9fr);

        gap: 5%;
    }


    .hero-title {
        font-size:
            clamp(48px, 7vw, 74px);
    }


    .hero-intro {
        width: 88%;
    }


    .hero-card {
        min-height: 570px;
    }

}



/* =========================================
   02 — BESCHIKBAARHEID
   ========================================= */

.availability {
    width: 100%;

    padding:
        clamp(90px, 10vw, 150px) 5%;

    background: #FFFFFF;

    color: #29332F;
}


.availability-shell {
    width: 100%;
    max-width: var(--site-max);

    margin: 0 auto;
}


/* =========================================
   HEADER
   ========================================= */

.availability-header {
    margin-bottom:
        clamp(50px, 7vw, 90px);
}


.availability-eyebrow {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom:
        clamp(28px, 4vw, 46px);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .20em;

    color: #858A87;
}


.availability-eyebrow-line {
    width: 44px;
    height: 1px;

    background: #F0AFC0;
}


.availability-heading-row {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;
}


.availability-title {
    margin: 0;

    font-family: "Rubik Mono One", sans-serif;

    font-size:
        clamp(48px, 6.8vw, 96px);

    line-height: .94;

    letter-spacing: -.05em;

    color: #29332F;
}


.availability-title span {
    color: #F0AFC0;
}


.availability-heading-side {
    padding-bottom: 8px;

    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: 16px;
}


.availability-data {
    font-size:
        clamp(21px, 2vw, 30px);

    font-weight: 500;

    letter-spacing: .13em;
}


.availability-xxx {
    font-size: 11px;

    font-weight: 700;

    letter-spacing: .18em;

    text-decoration: none;

    color: #29332F;

    border-bottom:
        1px solid rgba(41, 51, 47, .25);

    padding-bottom: 5px;

    transition:
        color .2s ease,
        border-color .2s ease;
}


.availability-xxx:hover {
    color: #F0AFC0;

    border-color: #F0AFC0;
}


/* =========================================
   GRID
   ========================================= */

.availability-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        clamp(18px, 2.5vw, 34px);
}


/* =========================================
   LOCATION CARD
   ========================================= */

.location-card {
    position: relative;

    min-width: 0;

    overflow: hidden;

    padding:
        clamp(28px, 3vw, 44px);

    border:
        1px solid rgba(41, 51, 47, .13);

    border-radius:
        clamp(26px, 3vw, 42px);

    background: #F7F4F5;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.location-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 28px 70px rgba(41, 51, 47, .10);
}


/* tweede kaart donker */

.location-card-dark {
    background: #29332F;

    color: #FFFFFF;

    border-color: #29332F;
}


/* =========================================
   CARD TOP
   ========================================= */

.location-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom:
        clamp(42px, 5vw, 70px);
}


.location-number {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: .18em;

    opacity: .45;
}


.location-status {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        8px 13px;

    border-radius: 999px;

    border:
        1px solid rgba(41, 51, 47, .14);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .16em;
}


.location-status::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #F0AFC0;
}


.location-card-dark .location-status {
    border-color:
        rgba(255, 255, 255, .14);
}


/* =========================================
   LOCATIENAAM
   ========================================= */

.location-name {
    margin:
        0 0 clamp(32px, 4vw, 52px);

    font-family:
        "Rubik Mono One",
        sans-serif;

    font-size:
        clamp(32px, 4vw, 57px);

    line-height: 1;

    letter-spacing: -.04em;

    overflow-wrap: anywhere;
}


.location-card-dark .location-name {
    color: #F8C3D0;
}


/* =========================================
   DATUMRIJEN
   ========================================= */

.location-dates {
    border-top:
        1px solid rgba(41, 51, 47, .15);

    margin-bottom:
        clamp(34px, 4vw, 50px);
}


.location-card-dark .location-dates {
    border-color:
        rgba(255, 255, 255, .13);
}


.location-date {
    min-height: 67px;

    display: grid;

    grid-template-columns:
        46px 1fr auto;

    align-items: center;

    gap: 14px;

    border-bottom:
        1px solid rgba(41, 51, 47, .15);
}


.location-card-dark .location-date {
    border-color:
        rgba(255, 255, 255, .13);
}


.date-day {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: .14em;

    opacity: .45;
}


.date-name {
    font-size:
        clamp(14px, 1.2vw, 17px);

    font-weight: 500;
}


.date-number {
    font-size:
        clamp(19px, 1.7vw, 24px);

    font-weight: 600;

    letter-spacing: -.03em;
}


/* =========================================
   COPY
   ========================================= */

.location-copy {
    max-width: 540px;

    font-size:
        clamp(15px, 1.15vw, 17px);

    line-height: 1.75;

    color: #626864;
}


.location-card-dark .location-copy {
    color:
        rgba(255, 255, 255, .68);
}


.location-copy p {
    margin:
        0 0 1.15em;
}


.location-copy p:last-child {
    margin-bottom: 0;
}


.location-intro {
    font-size:
        clamp(18px, 1.5vw, 22px);

    line-height: 1.5;

    font-weight: 600;

    color: #29332F !important;
}


.location-card-dark .location-intro {
    color: #FFFFFF !important;
}


/* =========================================
   WHATSAPP KNOP LOCATIEKAARTEN
   ========================================= */

.location-whatsapp-button {
    width: 100%;
    min-height: 54px;
    margin-top: clamp(30px, 3.5vw, 46px);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid #29332F;
    border-radius: 999px;
    background: #29332F;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.location-whatsapp-button:hover {
    transform: translateY(-2px);
    background: #F8C3D0;
    border-color: #F8C3D0;
    color: #29332F;
}

.location-card-dark .location-whatsapp-button {
    background: #F8C3D0;
    border-color: #F8C3D0;
    color: #29332F;
}

.location-card-dark .location-whatsapp-button:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
}

/* =========================================
   DECORATIEVE CIRCLE DARK CARD
   ========================================= */

.location-card-dark::after {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    border-radius: 50%;

    border:
        1px solid rgba(248, 195, 208, .09);

    right: -180px;
    bottom: -170px;

    pointer-events: none;
}


/* =========================================================
   03 — MIJN FAVORIETE VIDEO'S
   Past bij het bestaande design system:
   #29332F charcoal / #F8C3D0 blush / Rubik Mono One / Manrope
   ========================================================= */

.fv-section {
    --fv-ink: #29332F;
    --fv-blush: #F8C3D0;
    --fv-blush-strong: #F0AFC0;
    --fv-wash: #F7F4F5;
    --fv-white: #FFFFFF;
    --fv-border: rgba(41, 51, 47, .12);
    --fv-gold: var(--site-gold);
    --fv-gold-soft: var(--site-gold-soft);

    width: 100%;
    padding: clamp(90px, 9vw, 140px) 5%;
    background: var(--fv-wash);
    color: var(--fv-ink);
}

.fv-section button,
.fv-section a {
    -webkit-tap-highlight-color: transparent;
}

.fv-shell {
    width: 100%;
    max-width: var(--site-max);
    margin: 0 auto;
}


/* =========================
   SECTION HEADER
   ========================= */

.fv-section-header {
    margin-bottom: clamp(50px, 6vw, 82px);
}

.fv-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(26px, 3vw, 42px);
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .20em;
    color: #858A87;
}

.fv-eyebrow-line {
    width: 44px;
    height: 1px;
    background: var(--fv-blush-strong);
}

.fv-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
}

.fv-heading {
    margin: 0;
    font-family: "Rubik Mono One", sans-serif;
    font-size: clamp(46px, 6.5vw, 92px);
    line-height: .94;
    letter-spacing: -.05em;
    color: var(--fv-ink);
}

.fv-heading span {
    color: var(--fv-blush-strong);
}

.fv-all-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(41, 51, 47, .25);
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .17em;
    color: var(--fv-ink);
    text-decoration: none;
    transition:
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.fv-all-link:hover {
    color: var(--fv-blush-strong);
    border-color: var(--fv-blush-strong);
    transform: translateY(-2px);
}


/* =========================
   VERTICAL LIST
   ========================= */

.fv-list {
    display: grid;
    gap: clamp(34px, 5vw, 72px);
}


/* =========================
   CARD
   ========================= */

.fv-card {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1.04fr) minmax(0, .96fr);
    overflow: hidden;
    min-width: 0;
    border: 1px solid var(--fv-gold-soft);
    border-radius: clamp(28px, 3vw, 44px);
    background: var(--fv-white);
    box-shadow:
        0 28px 80px rgba(41, 51, 47, .075),
        0 0 0 1px rgba(198, 161, 91, .10);
    opacity: 1;
    transform: translateY(0);
}

.fv-card--reverse .fv-media {
    order: 2;
}

.fv-card--reverse .fv-content {
    order: 1;
}


/* =========================
   MEDIA / VIDEO
   ========================= */

.fv-media {
    position: relative;
    min-width: 0;
    padding: clamp(22px, 2.8vw, 40px);
    background: #1F2724;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fv-media::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    right: -190px;
    top: -185px;
    border: 1px solid rgba(248, 195, 208, .10);
    border-radius: 50%;
    pointer-events: none;
}

.fv-media-top {
    position: relative;
    z-index: 1;
    min-height: 37px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.fv-card-number,
.fv-preview-counter {
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    color: rgba(255, 255, 255, .42);
}

.fv-preview-counter {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fv-preview-counter strong {
    color: var(--fv-blush);
}

.fv-video-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: clamp(18px, 2vw, 28px);
    background: #0F1512;
    box-shadow: 0 22px 50px rgba(0, 0, 0, .18);
}

.fv-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* =========================
   PREVIEW SELECTOR
   ========================= */

.fv-preview-controls {
    position: relative;
    z-index: 1;
    margin-top: 15px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    touch-action: pan-y;
}

.fv-preview-pills {
    min-width: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.fv-preview-pills::-webkit-scrollbar {
    display: none;
}

.fv-round-button,
.fv-preview-pill,
.fv-tab,
.fv-copy-arrow {
    appearance: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.fv-round-button {
    min-height: 50px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .06);
    color: #FFFFFF;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.fv-round-button:hover:not(:disabled) {
    background: var(--fv-blush);
    color: var(--fv-ink);
    transform: translateY(-2px);
}

.fv-round-button:disabled {
    opacity: .23;
    cursor: default;
}

.fv-preview-pill {
    scroll-snap-align: start;
    min-width: 116px;
    min-height: 50px;
    flex: 1 0 116px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
    color: #FFFFFF;
    font-family: "Manrope", sans-serif;
    text-align: left;
    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.fv-preview-pill>span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    opacity: .45;
}

.fv-preview-pill>strong {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .10em;
}

.fv-preview-pill.is-active {
    background: var(--fv-blush);
    border-color: var(--fv-blush);
    color: var(--fv-ink);
}

.fv-swipe-hint {
    position: relative;
    z-index: 1;
    display: none;
    margin: 11px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .34);
}


/* =========================
   CONTENT
   ========================= */

.fv-content {
    min-width: 0;
    padding: clamp(30px, 4vw, 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fv-content-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(27px, 3vw, 42px);
}

.fv-label,
.fv-label-dot {
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    color: #949895;
}

.fv-label-dot {
    margin: 0 7px;
    color: var(--fv-blush-strong);
}

.fv-xxx {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(41, 51, 47, .13);
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
    color: var(--fv-blush-strong);
}

.fv-title {
    margin: 0;
    font-family: "Rubik Mono One", sans-serif;
    font-size: clamp(29px, 3.6vw, 52px);
    line-height: 1.03;
    letter-spacing: -.045em;
    color: var(--fv-ink);
    overflow-wrap: anywhere;
}

.fv-title span {
    display: block;
    color: var(--fv-blush-strong);
}

.fv-subtitle {
    max-width: 600px;
    margin: 18px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.65;
    color: #6B716E;
}


/* =========================
   META
   ========================= */

.fv-meta {
    margin-top: clamp(27px, 3vw, 40px);
    display: grid;
    grid-template-columns: .7fr .7fr 1.6fr;
    border-top: 1px solid var(--fv-border);
    border-bottom: 1px solid var(--fv-border);
}

.fv-meta-item {
    min-width: 0;
    padding: 15px 14px 15px 0;
}

.fv-meta-item+.fv-meta-item {
    padding-left: 15px;
    border-left: 1px solid var(--fv-border);
}

.fv-meta-item span {
    display: block;
    margin-bottom: 5px;
    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
    color: #A0A4A1;
}

.fv-meta-item strong {
    display: block;
    font-family: "Manrope", sans-serif;
    font-size: clamp(11px, .9vw, 13px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--fv-ink);
    overflow-wrap: anywhere;
}


/* =========================
   COPY SLIDER
   ========================= */

.fv-copy {
    margin-top: clamp(27px, 3vw, 40px);
}

.fv-tabs {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.fv-tabs::-webkit-scrollbar {
    display: none;
}

.fv-tab {
    flex: 0 0 auto;
    padding: 9px 13px;
    border-radius: 999px;
    background: transparent;
    color: #9A9E9B;
    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
    white-space: nowrap;
    transition:
        background .2s ease,
        color .2s ease;
}

.fv-tab:hover {
    color: var(--fv-ink);
}

.fv-tab.is-active {
    background: rgba(248, 195, 208, .27);
    color: var(--fv-ink);
}

.fv-copy-viewport {
    margin-top: 18px;
    overflow: hidden;
    min-height: 218px;
    touch-action: pan-y;
}

.fv-copy-track {
    display: flex;
    width: 100%;
    transition:
        transform .42s cubic-bezier(.2, .7, .2, 1);
}

.fv-copy-slide {
    flex: 0 0 100%;
    width: 100%;
    padding-right: 3px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.7;
    color: #686F6B;
}

.fv-copy-slide p {
    margin: 0 0 1em;
}

.fv-copy-slide p:last-child {
    margin-bottom: 0;
}

.fv-copy-lead {
    font-size: clamp(16px, 1.2vw, 19px);
    font-weight: 700;
    line-height: 1.55;
    color: var(--fv-ink);
}

.fv-feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fv-feature-list li {
    position: relative;
    padding: 9px 0 9px 19px;
    border-bottom: 1px solid rgba(41, 51, 47, .08);
}

.fv-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--fv-blush-strong);
}

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

.fv-copy-footer {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fv-copy-progress {
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    color: #A0A4A1;
}

.fv-copy-progress strong {
    color: var(--fv-blush-strong);
}

.fv-copy-arrows {
    display: flex;
    gap: 6px;
}

.fv-copy-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--fv-ink);
    color: #FFFFFF;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.fv-copy-arrow:hover {
    background: var(--fv-blush);
    color: var(--fv-ink);
    transform: translateY(-2px);
}


/* =========================
   ORDER BUTTONS
   ========================= */

.fv-actions {
    margin-top: clamp(28px, 3vw, 42px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.fv-order-button {
    min-height: 52px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--fv-border);
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .04em;
    color: var(--fv-ink);
    text-decoration: none;
    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.fv-order-button:hover {
    transform: translateY(-2px);
    background: var(--fv-wash);
}

.fv-order-button--primary {
    border-color: var(--fv-ink);
    background: var(--fv-ink);
    color: #FFFFFF;
}

.fv-order-button--primary:hover {
    border-color: var(--fv-blush);
    background: var(--fv-blush);
    color: var(--fv-ink);
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1050px) {

    .fv-card {
        grid-template-columns:
            minmax(0, 1fr) minmax(340px, .9fr);
    }

    .fv-title {
        font-size: clamp(27px, 3.4vw, 42px);
    }

    .fv-content {
        padding: clamp(27px, 3vw, 40px);
    }

    .fv-copy-viewport {
        min-height: 245px;
    }

    .fv-actions {
        grid-template-columns: 1fr;
    }
}


/* =========================
   MOBILE / SMALL TABLET
   ========================= */

@media (max-width: 820px) {

    .fv-section {
        padding:
            76px 5% 88px;
    }

    .fv-heading-row {
        display: block;
    }

    .fv-heading {
        font-size: clamp(39px, 11.5vw, 58px);
    }

    .fv-all-link {
        margin-top: 27px;
    }

    .fv-list {
        gap: 26px;
    }

    .fv-card,
    .fv-card--reverse {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .fv-card .fv-media,
    .fv-card--reverse .fv-media {
        order: 1;
    }

    .fv-card .fv-content,
    .fv-card--reverse .fv-content {
        order: 2;
    }

    .fv-media {
        padding: 19px;
    }

    .fv-video-frame {
        border-radius: 20px;
    }

    .fv-preview-controls {
        grid-template-columns: 40px minmax(0, 1fr) 40px;
    }

    .fv-preview-pill {
        min-width: 108px;
        flex-basis: 108px;
    }

    .fv-swipe-hint {
        display: block;
    }

    .fv-content {
        padding:
            29px 22px 31px;
    }

    .fv-content-top {
        margin-bottom: 27px;
    }

    .fv-title {
        font-size: clamp(28px, 8.6vw, 42px);
    }

    .fv-subtitle {
        font-size: 14px;
    }

    .fv-meta {
        grid-template-columns: 1fr 1fr;
    }

    .fv-meta-item--wide {
        grid-column: 1 / -1;
        padding-left: 0 !important;
        border-left: 0 !important;
        border-top: 1px solid var(--fv-border);
    }

    .fv-copy-viewport {
        min-height: 260px;
    }

    .fv-copy-slide {
        font-size: 15px;
    }

    .fv-copy-lead {
        font-size: 17px;
    }

    .fv-actions {
        grid-template-columns: 1fr;
    }

    .fv-order-button {
        min-height: 54px;
    }
}


/* =========================
   EXTRA SMALL PHONE
   ========================= */

@media (max-width: 380px) {

    .fv-heading {
        font-size: clamp(34px, 10.6vw, 43px);
    }

    .fv-media {
        padding-left: 15px;
        padding-right: 15px;
    }

    .fv-content {
        padding-left: 19px;
        padding-right: 19px;
    }

    .fv-title {
        font-size: clamp(25px, 7.8vw, 34px);
    }

    .fv-preview-controls {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
    }

    .fv-preview-pill>span {
        display: none;
    }
}


/* =========================
   ACCESSIBILITY / REDUCED MOTION
   ========================= */

@media (prefers-reduced-motion: reduce) {

    .fv-section *,
    .fv-section *::before,
    .fv-section *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}



/* =========================================================
   04 — CONTACT
   Geen JavaScript nodig.
   ========================================================= */

.contact-section {
    width: 100%;
    padding: clamp(90px, 9vw, 140px) 5%;
    background: var(--site-white);
    color: var(--site-ink);
}

.contact-shell {
    width: 100%;
    max-width: var(--site-max);
    margin: 0 auto;
}


/* eyebrow */

.contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: clamp(30px, 4vw, 52px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .20em;
    color: #858A87;
}

.contact-eyebrow-line {
    width: 44px;
    height: 1px;
    background: var(--site-blush-strong);
}


/* hoofdpanel */

.contact-panel {
    display: grid;
    grid-template-columns:
        minmax(0, .92fr) minmax(420px, 1.08fr);
    overflow: hidden;
    border-radius: clamp(28px, 3vw, 44px);
    background: var(--site-ink);
}


/* =========================
   INTRO
   ========================= */

.contact-intro {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 5vw, 70px);
    color: var(--site-white);
}

.contact-intro::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    left: -245px;
    bottom: -220px;
    border: 1px solid rgba(248, 195, 208, .10);
    border-radius: 50%;
    pointer-events: none;
}

.contact-intro-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(38px, 5vw, 72px);
}

.contact-small-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    color: rgba(255, 255, 255, .42);
}

.contact-xxx {
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    color: var(--site-blush);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-decoration: none;
    transition:
        background .2s ease,
        color .2s ease;
}

.contact-xxx:hover {
    background: var(--site-blush);
    color: var(--site-ink);
}

.contact-title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: "Rubik Mono One", sans-serif;
    font-size: clamp(40px, 5.2vw, 74px);
    line-height: .98;
    letter-spacing: -.05em;
}

.contact-title span {
    display: block;
    color: var(--site-blush);
}

.contact-copy {
    position: relative;
    z-index: 1;
    max-width: 570px;
    margin-top: clamp(30px, 4vw, 52px);
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.75;
    color: rgba(255, 255, 255, .66);
}

.contact-copy p {
    margin: 0 0 1.1em;
}

.contact-copy p:last-child {
    margin-bottom: 0;
}

.contact-copy .contact-lead {
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 600;
    line-height: 1.6;
    color: var(--site-white);
}


/* directe contactlinks */

.contact-direct {
    position: relative;
    z-index: 1;
    margin-top: clamp(38px, 5vw, 66px);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.contact-direct-link {
    min-height: 78px;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    color: var(--site-white);
    text-decoration: none;
    transition:
        color .2s ease,
        padding-left .2s ease;
}

.contact-direct-link:hover {
    padding-left: 7px;
    color: var(--site-blush);
}

.contact-direct-meta {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .17em;
    color: rgba(255, 255, 255, .34);
}

.contact-direct-value {
    min-width: 0;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.contact-direct-arrow {
    font-size: 19px;
}


/* =========================
   FORM CARD
   ========================= */

.contact-form-card {
    padding: clamp(32px, 5vw, 70px);
    background: var(--site-wash);
}

.contact-form-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(35px, 4vw, 55px);
}

.contact-form-number,
.contact-form-status {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em;
}

.contact-form-number {
    color: #A0A4A1;
}

.contact-form-status {
    padding: 8px 12px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    color: var(--site-ink);
}


/* velden */

.contact-form {
    display: grid;
    gap: 26px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-field {
    min-width: 0;
}

.contact-field label {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #777D79;
}

.contact-field label>span {
    color: var(--site-blush-strong);
}

.contact-field label small {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: none;
    color: #A0A4A1;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(41, 51, 47, .20);
    border-radius: 0;
    outline: none;
    padding: 11px 0 13px;
    background: transparent;
    color: var(--site-ink);
    font: inherit;
    font-size: 16px;
    line-height: 1.5;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.contact-field textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #A7AAA8;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: var(--site-blush-strong);
    box-shadow: 0 1px 0 var(--site-blush-strong);
}


/* submit */

.contact-submit-row {
    margin-top: 8px;
    padding-top: 22px;
    border-top: 1px solid var(--site-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-privacy-note {
    max-width: 270px;
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
    color: #909592;
}

.contact-submit {
    min-height: 54px;
    min-width: 190px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 0;
    border-radius: 999px;
    background: var(--site-ink);
    color: var(--site-white);
    font: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
    background: var(--site-blush);
    color: var(--site-ink);
}



/* =========================================================
   FOOTER
   Gebruikt bestaande:
   .contact-shell
   --site-ink / --site-blush / --site-white / --site-border
   ========================================================= */

.site-footer {
    padding: clamp(55px, 6vw, 85px) 5% 28px;
    background: var(--site-ink);
    color: rgba(255, 255, 255, .66);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: clamp(35px, 6vw, 90px);
}

.site-footer-logo {
    width: min(210px, 70%);
    height: auto;
    margin-bottom: 25px;
}

.site-footer p,
.site-footer address {
    margin: 0 0 12px;
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
}

.site-footer-brand {
    max-width: 420px;
}

.site-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.site-footer-label {
    margin-bottom: 12px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em;
    color: var(--site-blush);
}

.site-footer-link,
.site-footer-bottom a {
    color: var(--site-white);
    text-decoration: none;
    overflow-wrap: anywhere;
    transition: color .2s ease;
}

.site-footer-link:hover,
.site-footer-bottom a:hover {
    color: var(--site-blush);
}

.site-footer-bottom {
    margin-top: clamp(45px, 5vw, 70px);
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 10px;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .40);
}

@media (max-width: 767px) {
    .site-footer {
        padding: 55px 5% 24px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .site-footer-logo {
        width: min(190px, 60%);
    }

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


/* =========================
   TABLET
   ========================= */

@media (max-width: 1000px) {

    .contact-panel {
        grid-template-columns:
            minmax(0, .9fr) minmax(360px, 1.1fr);
    }

    .contact-title {
        font-size: clamp(36px, 5vw, 58px);
    }

    .contact-direct-link {
        grid-template-columns: 74px minmax(0, 1fr) auto;
    }

}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    .contact-section {
        padding: 75px 5% 85px;
    }

    .contact-panel {
        grid-template-columns: 1fr;
        border-radius: 28px;
    }

    .contact-intro,
    .contact-form-card {
        padding: 29px 22px 33px;
    }

    .contact-intro-top {
        margin-bottom: 42px;
    }

    .contact-title {
        font-size: clamp(34px, 10.5vw, 50px);
    }

    .contact-copy {
        margin-top: 30px;
        font-size: 15px;
    }

    .contact-direct {
        margin-top: 38px;
    }

    .contact-direct-link {
        grid-template-columns: 1fr auto;
        gap: 7px 16px;
        min-height: 74px;
        padding: 13px 0;
    }

    .contact-direct-meta {
        grid-column: 1 / -1;
    }

    .contact-direct-arrow {
        grid-column: 2;
        grid-row: 2;
    }

    .contact-form-top {
        margin-bottom: 35px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .contact-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-privacy-note {
        max-width: none;
    }

    .contact-submit {
        width: 100%;
    }

}


/* =========================
   EXTRA KLEINE TELEFOONS
   ========================= */

@media (max-width: 380px) {

    .contact-title {
        font-size: clamp(31px, 9.8vw, 40px);
    }

    .contact-intro,
    .contact-form-card {
        padding-left: 19px;
        padding-right: 19px;
    }

}












/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .availability-title {
        font-size:
            clamp(45px, 7vw, 70px);
    }


    .location-name {
        font-size:
            clamp(29px, 4vw, 42px);
    }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .availability {
        padding:
            75px 5% 85px;
    }


    .availability-header {
        margin-bottom: 42px;
    }


    .availability-eyebrow {
        font-size: 9px;

        margin-bottom: 26px;
    }


    .availability-heading-row {
        display: block;
    }


    .availability-title {
        font-size:
            clamp(42px, 12.5vw, 60px);

        line-height: .96;
    }


    .availability-heading-side {
        margin-top: 26px;

        padding-bottom: 0;

        flex-direction: row;

        justify-content: space-between;
        align-items: center;
    }


    .availability-data {
        font-size: 20px;
    }


    .availability-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .location-card {
        padding:
            27px 22px 31px;

        border-radius: 28px;
    }


    .location-card-top {
        margin-bottom: 44px;
    }


    .location-name {
        font-size:
            clamp(31px, 9vw, 44px);

        margin-bottom: 32px;
    }


    .location-date {
        grid-template-columns:
            38px 1fr auto;

        min-height: 62px;

        gap: 10px;
    }


    .date-name {
        font-size: 15px;
    }


    .date-number {
        font-size: 20px;
    }


    .location-copy {
        font-size: 15px;

        line-height: 1.7;
    }


    .location-intro {
        font-size: 18px;
    }

}


/* =========================================
   EXTRA KLEINE TELEFOONS
   ========================================= */

@media (max-width: 380px) {

    .availability-title {
        font-size:
            clamp(37px, 11.5vw, 45px);
    }


    .location-card {
        padding-left: 19px;
        padding-right: 19px;
    }


    .location-name {
        font-size:
            clamp(28px, 8.5vw, 36px);
    }

}







/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 767px) {

    .hero {
        min-height: auto;

        padding:
            60px 5% 70px;
    }


    .hero-shell {
        display: flex;
        flex-direction: column;

        gap: 55px;
    }


    .hero-copy {
        width: 100%;
    }


    .hero-kicker {
        margin-bottom: 30px;

        font-size: 9px;

        line-height: 1.5;
    }


    .hero-kicker-line {
        width: 28px;
    }


    .hero-title {
        font-size:
            clamp(42px, 13vw, 62px);

        line-height: .96;
    }


    .hero-title-accent {
        margin-left: 0;
    }


    .hero-intro {
        width: 100%;

        margin-top: 32px;

        font-size: 16px;

        line-height: 1.7;
    }


    .hero-actions {
        width: 100%;

        margin-top: 32px;

        flex-direction: column;
    }


    .hero-button {
        width: 100%;
    }


    .hero-card {
        width: 100%;

        min-height: 560px;

        border-radius: 28px;

        padding:
            25px 22px;
    }


    .hero-card-xxx {
        font-size:
            clamp(82px, 28vw, 120px);
    }

}


@media (max-width: 380px) {

    .hero-title {
        font-size: clamp(38px, 12vw, 46px);
        letter-spacing: -0.055em;
    }

    .hero-card {
        min-height: 520px;
    }

    .hero-card-xxx {
        font-size: clamp(74px, 26vw, 100px);
    }

}

/* =========================================================
   DESKTOP AIR / SCALE — 90% FEEL
   Meer ruimte links/rechts en een iets kleinere visuele schaal,
   zonder browser-zoom te gebruiken. Tablet en mobiel blijven
   op hun bestaande responsive regels draaien.
   ========================================================= */

@media (min-width: 1051px) {

    /* Meer buitenruimte rond de hoofdcompositie. */
    .hero,
    .availability,
    .fv-section,
    .contact-section {
        padding-left: 6.5vw;
        padding-right: 6.5vw;
    }

    .site-footer {
        padding-left: 6.5vw;
        padding-right: 6.5vw;
    }

    /* HERO — circa 8–10% compacter, maar met dezelfde hiërarchie. */
    .hero-shell {
        grid-template-columns: minmax(0, 1.24fr) minmax(320px, .76fr);
        gap: clamp(42px, 6vw, 92px);
    }

    .hero-title {
        font-size: clamp(50px, 6.3vw, 94px);
    }

    .hero-title-accent {
        margin-left: clamp(0px, 3.6vw, 62px);
    }

    .hero-intro {
        max-width: 620px;
        font-size: clamp(15px, 1.12vw, 17.5px);
    }

    .hero-button {
        min-height: 50px;
        padding-left: clamp(20px, 2vw, 30px);
        padding-right: clamp(20px, 2vw, 30px);
        font-size: 12px;
    }

    .hero-card {
        min-height: clamp(530px, 58vw, 650px);
        padding: clamp(22px, 2.6vw, 34px);
    }

    .hero-card-xxx {
        font-size: clamp(72px, 9vw, 126px);
    }

    .hero-card-link {
        min-height: 74px;
    }

    /* BESCHIKBAARHEID */
    .availability-title {
        font-size: clamp(44px, 6.1vw, 86px);
    }

    .availability-heading-row {
        gap: 34px;
    }

    .availability-data {
        font-size: clamp(19px, 1.8vw, 27px);
    }

    .availability-grid {
        gap: clamp(18px, 2.2vw, 30px);
    }

    .location-card {
        padding: clamp(26px, 2.7vw, 40px);
    }

    .location-card-top {
        margin-bottom: clamp(38px, 4.5vw, 62px);
    }

    .location-name {
        font-size: clamp(30px, 3.6vw, 52px);
    }

    .location-date {
        min-height: 62px;
    }

    .location-copy {
        max-width: 500px;
        font-size: clamp(14.5px, 1.02vw, 16px);
    }

    .location-intro {
        font-size: clamp(17px, 1.35vw, 20px);
    }

    /* VIDEO'S */
    .fv-heading {
        font-size: clamp(42px, 5.85vw, 83px);
    }

    .fv-list {
        gap: clamp(32px, 4.4vw, 64px);
    }

    .fv-media {
        padding: clamp(20px, 2.5vw, 36px);
    }

    .fv-content {
        padding: clamp(28px, 3.6vw, 52px);
    }

    .fv-content-top {
        margin-bottom: clamp(24px, 2.7vw, 38px);
    }

    .fv-title {
        font-size: clamp(27px, 3.25vw, 47px);
    }

    .fv-subtitle,
    .fv-copy-slide {
        font-size: clamp(13.5px, .92vw, 15px);
    }

    .fv-copy-lead {
        font-size: clamp(15px, 1.08vw, 17px);
    }

    .fv-meta,
    .fv-copy {
        margin-top: clamp(24px, 2.7vw, 36px);
    }

    .fv-actions {
        margin-top: clamp(25px, 2.7vw, 38px);
    }

    .fv-order-button {
        min-height: 49px;
    }

    /* CONTACT */
    .contact-title {
        font-size: clamp(37px, 4.7vw, 67px);
    }

    .contact-intro,
    .contact-form-card {
        padding: clamp(31px, 4.5vw, 63px);
    }

    .contact-copy {
        max-width: 520px;
        font-size: clamp(14.5px, 1vw, 16px);
    }

    .contact-copy .contact-lead {
        font-size: clamp(16px, 1.25vw, 19px);
    }

    .contact-direct {
        margin-top: clamp(34px, 4.5vw, 58px);
    }

    .contact-direct-link {
        min-height: 72px;
    }

    .contact-submit {
        min-height: 50px;
        min-width: 175px;
    }

    /* Footer ook iets compacter in inhoud, maar met royale buitenruimte. */
    .site-footer-grid {
        gap: clamp(32px, 5.2vw, 78px);
    }

    .site-footer-logo {
        width: min(190px, 68%);
    }
}

/* =========================================================
   00 — SITE HEADER / GROTE EDITORIAL NAVIGATIE
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    padding: 0 6.5vw;
    border-bottom: 1px solid rgba(41, 51, 47, .08);
    background: rgba(247, 244, 245, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header-shell {
    width: 100%;
    max-width: var(--site-max);
    min-height: 94px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 96px);
}

.site-wordmark {
    display: inline-flex;
    flex-direction: column;
    gap: 1px;
    font-family: "Rubik Mono One", sans-serif;
    font-size: 13px;
    line-height: 1.05;
    letter-spacing: -.035em;
    color: var(--site-ink);
    text-decoration: none;
}

.site-wordmark span:last-child {
    color: var(--site-blush-strong);
}

.site-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(28px, 3.4vw, 58px);
}

.site-nav-link {
    position: relative;
    padding: 12px 0;
    font-size: clamp(17px, 1.35vw, 21px);
    font-weight: 650;
    letter-spacing: -.025em;
    text-decoration: none;
    color: var(--site-ink);
    transition: color .2s ease, transform .2s ease;
}

.site-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 5px;
    height: 2px;
    background: var(--site-blush-strong);
    transition: right .24s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active {
    color: var(--site-blush-strong);
}

.site-nav-link:hover::after,
.site-nav-link.is-active::after {
    right: 0;
}

.site-nav-cta {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    border-radius: 999px;
    background: var(--site-ink);
    color: var(--site-white);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .05em;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.site-nav-cta:hover {
    transform: translateY(-2px);
    background: var(--site-blush);
    color: var(--site-ink);
}

.site-nav-toggle {
    display: none;
}


/* =========================================================
   HERO — EDITORIAL FOTO SHUFFLE
   Vervangt de oude donkere XXX-kaart.
   ========================================================= */

@media (min-width: 1051px) {
    .hero {
        min-height: calc(100svh - 94px);
    }
}

.hero-visual {
    position: relative;
    min-width: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    isolation: isolate;
}

.hero-visual-ring {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.hero-visual-ring--outer {
    width: clamp(430px, 38vw, 620px);
    aspect-ratio: 1 / 1;
    right: -34%;
    top: 11%;
    border: clamp(15px, 1.4vw, 23px) solid rgba(240, 175, 192, .16);
    box-shadow:
        0 0 0 1px rgba(240, 175, 192, .34),
        inset 0 0 0 1px rgba(248, 195, 208, .32);
}

.hero-visual-ring--inner {
    width: clamp(230px, 22vw, 360px);
    aspect-ratio: 1 / 1;
    left: -16%;
    bottom: 4%;
    border: 1px solid rgba(198, 161, 91, .34);
}

.hero-photo-card {
    position: relative;
    z-index: 2;
    width: min(100%, 500px);
    overflow: hidden;
    border: 1px solid var(--site-gold-soft);
    border-radius: clamp(30px, 3vw, 44px);
    background: var(--site-white);
    box-shadow:
        0 30px 80px rgba(41, 51, 47, .10),
        0 0 0 1px rgba(198, 161, 91, .08);
}

.hero-photo-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5.15;
    overflow: hidden;
    background: var(--site-ink);
    touch-action: pan-y;
}

.hero-photo-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--photo-position, 50% 50%);
    opacity: 0;
    transform: scale(1.035);
    transition:
        opacity .45s ease,
        transform 5.2s cubic-bezier(.2, .65, .2, 1);
}

.hero-photo-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-photo-wipe {
    position: absolute;
    z-index: 5;
    inset: 0;
    display: block;
    background: var(--site-blush-strong);
    transform: scaleX(0);
    transform-origin: right center;
    pointer-events: none;
    will-change: transform;
}

.hero-photo-wipe::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(198, 161, 91, .85);
}

.hero-photo-wipe.is-initial {
    transform: scaleX(1);
    transform-origin: right center;
    animation: hero-photo-initial-reveal 1.05s .18s cubic-bezier(.76, 0, .24, 1) forwards;
}

@keyframes hero-photo-initial-reveal {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

.hero-photo-footer {
    min-height: 70px;
    padding: 14px 18px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: rgba(255, 255, 255, .96);
}

.hero-photo-caption {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-photo-caption span,
.hero-photo-caption strong {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
}

.hero-photo-caption span {
    color: #9A9E9B;
}

.hero-photo-caption strong {
    color: var(--site-ink);
}

.hero-photo-pagination {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-photo-dot {
    appearance: none;
    min-width: 34px;
    height: 34px;
    padding: 0 7px;
    border: 1px solid rgba(41, 51, 47, .10);
    border-radius: 999px;
    background: transparent;
    color: #9A9E9B;
    font: inherit;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    cursor: pointer;
    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease,
        transform .2s ease;
}

.hero-photo-dot:hover {
    transform: translateY(-1px);
    border-color: var(--site-blush-strong);
    color: var(--site-ink);
}

.hero-photo-dot.is-active {
    border-color: var(--site-blush);
    background: var(--site-blush);
    color: var(--site-ink);
}


/* =========================================================
   HEADER + HERO RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {
    .site-header {
        padding-left: 5%;
        padding-right: 5%;
    }

    .site-header-shell {
        min-height: 82px;
        gap: 28px;
    }

    .site-nav {
        gap: 24px;
    }

    .site-nav-link {
        font-size: 16px;
    }

    .site-nav-cta {
        padding: 0 17px;
    }

    .hero-photo-card {
        width: min(100%, 440px);
    }

    .hero-visual-ring--outer {
        right: -42%;
    }
}

@media (max-width: 820px) {
    .site-header {
        position: sticky;
        padding-left: 5%;
        padding-right: 5%;
    }

    .site-header-shell {
        position: relative;
        min-height: 72px;
        grid-template-columns: 1fr auto;
        gap: 20px;
    }

    .site-wordmark {
        font-size: 11px;
    }

    .site-nav-toggle {
        appearance: none;
        min-height: 42px;
        padding: 0 15px;
        display: inline-flex;
        align-items: center;
        gap: 11px;
        border: 1px solid rgba(41, 51, 47, .13);
        border-radius: 999px;
        background: rgba(255, 255, 255, .72);
        color: var(--site-ink);
        font: inherit;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .13em;
        cursor: pointer;
    }

    .site-nav-toggle-icon {
        position: relative;
        width: 15px;
        height: 9px;
        display: block;
        border-top: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
    }

    .site-nav {
        position: absolute;
        z-index: 20;
        left: 0;
        right: 0;
        top: calc(100% + 1px);
        padding: 23px 5% 26px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid rgba(41, 51, 47, .10);
        background: rgba(247, 244, 245, .98);
        box-shadow: 0 22px 45px rgba(41, 51, 47, .08);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav-link {
        width: 100%;
        padding: 14px 0 15px;
        border-bottom: 1px solid rgba(41, 51, 47, .08);
        font-size: clamp(25px, 8vw, 36px);
        font-weight: 600;
        letter-spacing: -.045em;
    }

    .site-nav-link::after {
        display: none;
    }

    .site-nav-cta {
        width: 100%;
        min-height: 54px;
        margin-top: 20px;
        padding: 0 20px;
        justify-content: space-between;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-photo-card {
        width: min(100%, 520px);
        border-radius: 30px;
    }

    .hero-photo-stage {
        aspect-ratio: 4 / 5.05;
    }

    .hero-photo-footer {
        min-height: 66px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-photo-dot {
        min-width: 31px;
        width: 31px;
        height: 31px;
        padding: 0;
    }

    .hero-visual-ring--outer {
        width: min(120vw, 580px);
        right: -54%;
        top: 15%;
        border-width: 14px;
        opacity: .78;
    }

    .hero-visual-ring--inner {
        width: min(62vw, 280px);
        left: -16%;
        bottom: 8%;
    }
}

@media (max-width: 430px) {
    .hero-photo-footer {
        align-items: flex-end;
    }

    .hero-photo-caption strong {
        display: none;
    }

    .hero-photo-pagination {
        gap: 4px;
    }

    .hero-photo-dot {
        min-width: 29px;
        width: 29px;
        height: 29px;
        font-size: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-photo-slide,
    .hero-photo-wipe,
    .site-nav-link,
    .site-nav-cta,
    .hero-photo-dot {
        animation: none !important;
        transition-duration: .01ms !important;
    }

    .hero-photo-wipe {
        display: none;
    }
}


/* =========================================================
   FINAL REFINEMENT — EXTRA WITRUIMTE + FOTO IN PREMIUM CARD
   ========================================================= */

:root {
    --site-max: 1080px;
}

/* Horizontale overflow definitief uitsluiten, ook door decoratieve ringen. */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body,
main,
.site-header,
.hero,
.availability,
.fv-section,
.contact-section,
.site-footer {
    max-width: 100%;
}

main {
    overflow-x: hidden;
    overflow-x: clip;
}

img,
video,
iframe {
    max-width: 100%;
}

/* De fotoslider zit weer ín de oorspronkelijke donkere premium card. */
.hero-card--gallery {
    isolation: isolate;
}

.hero-card--gallery .hero-card-center--gallery {
    width: 100%;
    padding: clamp(20px, 2.3vw, 30px) 0;
    gap: 12px;
}

.hero-card--gallery .hero-photo-stage {
    width: min(100%, 390px);
    aspect-ratio: 4 / 4.75;
    margin: 2px auto 0;
    border: 1px solid rgba(198, 161, 91, .58);
    border-radius: clamp(20px, 2vw, 28px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.hero-card--gallery .hero-photo-pagination {
    position: relative;
    z-index: 3;
    margin-top: 3px;
}

.hero-card--gallery .hero-photo-dot {
    border-color: rgba(255, 255, 255, .13);
    color: rgba(255, 255, 255, .46);
}

.hero-card--gallery .hero-photo-dot:hover {
    border-color: var(--site-blush);
    color: var(--site-white);
}

.hero-card--gallery .hero-photo-dot.is-active {
    border-color: var(--site-blush);
    background: var(--site-blush);
    color: var(--site-ink);
}

/* Transparante blush curtain: foto blijft zichtbaar tijdens de overgang. */
.hero-photo-wipe {
    background: rgba(240, 175, 192, .46);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}

.hero-photo-wipe::after {
    background: rgba(198, 161, 91, .72);
}

/* Oude standalone fotokaart is niet meer nodig. */
.hero-photo-card,
.hero-photo-footer,
.hero-photo-caption,
.hero-visual,
.hero-visual-ring {
    /* Alleen oude standalone hero-slider selectors neutraliseren. */
}

/* Desktop: minimaal 15% witruimte per zijde; op grote schermen door max-width vaak ~20%+. */
@media (min-width: 1200px) {
    .site-header,
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 15vw;
        padding-right: 15vw;
    }

    .site-header-shell,
    .hero-shell,
    .availability-shell,
    .fv-shell,
    .contact-shell {
        max-width: var(--site-max);
    }

    .site-header-shell {
        min-height: 90px;
        gap: clamp(28px, 3.4vw, 54px);
    }

    .site-nav {
        gap: clamp(22px, 2.2vw, 38px);
    }

    .site-nav-link {
        font-size: clamp(16px, 1.18vw, 19px);
    }

    .hero-shell {
        grid-template-columns: minmax(0, 1.17fr) minmax(330px, .83fr);
        gap: clamp(44px, 4.8vw, 72px);
    }

    .hero-title {
        font-size: clamp(50px, 5.35vw, 78px);
    }

    .hero-intro {
        width: 84%;
        max-width: 520px;
    }

    .hero-card {
        min-height: clamp(540px, 51vw, 620px);
    }

    .availability-title {
        font-size: clamp(43px, 5.3vw, 76px);
    }

    .fv-heading {
        font-size: clamp(42px, 5.1vw, 74px);
    }

    .contact-title {
        font-size: clamp(36px, 4.25vw, 60px);
    }
}

/* Compact desktop / grote tablet: nog steeds aanzienlijk luchtiger zonder layout te breken. */
@media (min-width: 821px) and (max-width: 1199px) {
    .site-header,
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 9vw;
        padding-right: 9vw;
    }
}

/* Mobiel: moderne leesbare gutter; 15% zou inhoud onnodig smal maken. */
@media (max-width: 820px) {
    .site-header,
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 6.5vw;
        padding-right: 6.5vw;
    }

    .site-nav {
        left: 0;
        right: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-card--gallery .hero-photo-stage {
        width: min(100%, 430px);
        aspect-ratio: 4 / 4.9;
    }

    .hero-card--gallery .hero-card-center--gallery {
        padding-top: 18px;
        padding-bottom: 18px;
    }
}

/* =========================================================
   FINAL NAV REFINEMENT — MEER PRESENCE + IETS MINDER MARGE
   Hoofdcontent: 10% desktop-gutter. Navigatie krijgt bewust
   iets meer breedte en een duidelijke champagne-gouden basis.
   ========================================================= */

:root {
    --site-nav-max: 1180px;
}

/* Premium navigatieband: meer hoogte, rust en een echte gouden basislijn. */
.site-header {
    border-bottom: 2px solid rgba(198, 161, 91, .72);
    background: rgba(247, 244, 245, .965);
    box-shadow: 0 10px 34px rgba(41, 51, 47, .045);
}

.site-header-shell {
    max-width: var(--site-nav-max);
    min-height: 116px;
}

.site-wordmark {
    position: relative;
    padding-bottom: 8px;
    font-size: 15px;
}

.site-wordmark::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 2px;
    background: var(--site-gold);
}

.site-nav {
    gap: clamp(34px, 3.2vw, 58px);
}

.site-nav-link {
    padding: 20px 0 18px;
    font-size: clamp(19px, 1.45vw, 23px);
    font-weight: 700;
    letter-spacing: -.03em;
}

.site-nav-link::after {
    bottom: 10px;
    height: 2px;
    background: var(--site-gold);
}

.site-nav-link:hover,
.site-nav-link.is-active {
    color: var(--site-gold);
}

.site-nav-cta {
    min-height: 56px;
    padding: 0 24px;
    gap: 22px;
    border: 1px solid var(--site-gold);
    background: var(--site-gold);
    color: var(--site-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .075em;
    box-shadow: 0 10px 26px rgba(198, 161, 91, .14);
}

.site-nav-cta:hover {
    background: var(--site-ink);
    border-color: var(--site-ink);
    color: var(--site-white);
}

/* De hero begint iets lager zodat de nav visueel echt een eigen zone krijgt. */
@media (min-width: 1051px) {
    .hero {
        min-height: calc(100svh - 116px);
        padding-top: clamp(58px, 6vw, 92px);
    }
}

/* Brede desktop: 15% -> 10% aan beide kanten. */
@media (min-width: 1200px) {
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 10vw;
        padding-right: 10vw;
    }

    /* Header zelf krijgt 8% zodat de navigatie iets breder kan ademen. */
    .site-header {
        padding-left: 8vw;
        padding-right: 8vw;
    }

    .site-header-shell {
        max-width: var(--site-nav-max);
        min-height: 116px;
        gap: clamp(42px, 4.2vw, 74px);
    }

    .site-nav {
        gap: clamp(34px, 3vw, 56px);
    }
}

/* Compact desktop / tablet landscape: iets minder marge dan de vorige 9%. */
@media (min-width: 821px) and (max-width: 1199px) {
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 7vw;
        padding-right: 7vw;
    }

    .site-header {
        padding-left: 5.5vw;
        padding-right: 5.5vw;
    }

    .site-header-shell {
        min-height: 98px;
        gap: 26px;
    }

    .site-wordmark {
        font-size: 13px;
    }

    .site-nav {
        gap: 22px;
    }

    .site-nav-link {
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 16px;
    }

    .site-nav-link::after {
        bottom: 8px;
    }

    .site-nav-cta {
        min-height: 50px;
        padding: 0 18px;
        font-size: 10px;
    }
}

/* Mobiel: goud blijft zichtbaar en MENU krijgt meer presence. */
@media (max-width: 820px) {
    .site-header {
        border-bottom-width: 2px;
    }

    .site-header-shell {
        min-height: 80px;
    }

    .site-wordmark {
        padding-bottom: 6px;
        font-size: 12px;
    }

    .site-wordmark::after {
        width: 34px;
    }

    .site-nav-toggle {
        min-height: 46px;
        padding: 0 17px;
        border-color: rgba(198, 161, 91, .62);
        background: rgba(198, 161, 91, .10);
        font-size: 10px;
    }

    .site-nav-link {
        color: var(--site-ink);
    }

    .site-nav-link:hover,
    .site-nav-link.is-active {
        color: var(--site-gold);
    }

    .site-nav-cta {
        min-height: 56px;
        background: var(--site-gold);
        border-color: var(--site-gold);
        color: var(--site-ink);
    }
}

/* =========================================================
   FINAL XL NAV + METALLIC GOLD + 10% MEER WITRUIMTE
   Huidige desktopgutter 10% -> circa 11% per kant.
   Navigatie krijgt bewust meer schaal en presence.
   ========================================================= */

:root {
    --gold-deep: #7A5722;
    --gold-shadow: #9A7332;
    --gold-mid: #C8A45B;
    --gold-light: #E8D08A;
    --gold-highlight: #FFF0B8;
    --gold-metallic: linear-gradient(
        105deg,
        #7A5722 0%,
        #B88B3E 16%,
        #F3DEA0 36%,
        #FFF0B8 47%,
        #C89B4B 61%,
        #8C652A 78%,
        #E1C579 100%
    );
}

/* Geen horizontale pagina-scroll, ook niet door decoratieve ringen. */
html,
body,
main {
    max-width: 100%;
    overflow-x: clip;
}

/* Monumentalere premium navigatieband. */
.site-header {
    position: sticky;
    border-bottom: 0;
    background: rgba(247, 244, 245, .975);
    box-shadow: 0 16px 46px rgba(41, 51, 47, .05);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: var(--gold-metallic);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .72) inset,
        0 2px 10px rgba(140, 101, 42, .16);
    pointer-events: none;
}

.site-header-shell {
    min-height: 178px;
    max-width: 1320px;
    gap: clamp(46px, 4vw, 82px);
}

.site-wordmark {
    padding-bottom: 13px;
    font-size: clamp(17px, 1.25vw, 21px);
    line-height: 1.02;
}

.site-wordmark::after {
    width: 72px;
    height: 4px;
    background: var(--gold-metallic);
    box-shadow: 0 1px 0 rgba(255,255,255,.48) inset;
}

.site-nav {
    gap: clamp(38px, 3.15vw, 66px);
}

.site-nav-link {
    padding: 34px 0 31px;
    font-size: clamp(27px, 2.05vw, 34px);
    font-weight: 700;
    letter-spacing: -.045em;
}

.site-nav-link::after {
    bottom: 20px;
    height: 4px;
    background: var(--gold-metallic);
    box-shadow: 0 1px 0 rgba(255,255,255,.55) inset;
}

.site-nav-link:hover,
.site-nav-link.is-active {
    color: #A67D35;
    background-image: var(--gold-metallic);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-nav-cta {
    min-height: 74px;
    padding: 0 31px;
    gap: 28px;
    border: 1px solid #9A7332;
    background: var(--gold-metallic);
    color: #2C302E;
    font-size: 14px;
    font-weight: 850;
    letter-spacing: .08em;
    box-shadow:
        0 1px 0 rgba(255,255,255,.72) inset,
        0 -1px 0 rgba(122,87,34,.30) inset,
        0 13px 34px rgba(140,101,42,.18);
}

.site-nav-cta:hover {
    transform: translateY(-3px);
    border-color: #72501F;
    background: linear-gradient(105deg, #6F4D1B, #B88B3E 42%, #F0D992 58%, #8D6428);
    color: #FFFFFF;
}

@media (min-width: 1051px) {
    .hero {
        min-height: calc(100svh - 178px);
        padding-top: clamp(64px, 6vw, 98px);
    }
}

/* 10% meer dan de huidige 10% = circa 11% per kant. */
@media (min-width: 1200px) {
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 11vw;
        padding-right: 11vw;
    }

    /* Nav bewust breder dan de content eronder. */
    .site-header {
        padding-left: 6.5vw;
        padding-right: 6.5vw;
    }
}

@media (min-width: 821px) and (max-width: 1199px) {
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 7.7vw;
        padding-right: 7.7vw;
    }

    .site-header {
        padding-left: 5.5vw;
        padding-right: 5.5vw;
    }

    .site-header-shell {
        min-height: 132px;
        gap: 28px;
    }

    .site-wordmark {
        font-size: 15px;
    }

    .site-nav {
        gap: 25px;
    }

    .site-nav-link {
        padding-top: 24px;
        padding-bottom: 24px;
        font-size: clamp(19px, 2vw, 24px);
    }

    .site-nav-link::after {
        bottom: 14px;
        height: 3px;
    }

    .site-nav-cta {
        min-height: 60px;
        padding: 0 22px;
        font-size: 11px;
    }
}

@media (max-width: 820px) {
    .site-header-shell {
        min-height: 92px;
    }

    .site-header::after {
        height: 3px;
    }

    .site-wordmark {
        font-size: 13px;
    }

    .site-wordmark::after {
        width: 42px;
        height: 3px;
    }

    .site-nav-toggle {
        min-height: 50px;
        padding: 0 19px;
        border-color: #B78A3B;
        background: linear-gradient(105deg, rgba(122,87,34,.08), rgba(255,240,184,.25), rgba(200,164,91,.10));
        font-size: 10px;
    }

    .site-nav-link.is-active,
    .site-nav-link:hover {
        background-image: var(--gold-metallic);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .site-nav-cta {
        min-height: 60px;
        background: var(--gold-metallic);
        border-color: #9A7332;
        color: var(--site-ink);
    }
}

/* =========================================================
   FINAL BALANCE — SUBTIEL GOUD + MEER WITRUIMTE
   - Metallic goud teruggebracht naar één dunne champagne-lijn.
   - XL nav iets lager en rustiger.
   - Desktop krijgt +10 procentpunt witruimte per kant: 11% -> 21%.
   - Typografie schaalt mee terug zodat de verhouding editorial blijft.
   ========================================================= */

/* Goud weer chic en minimaal: geen gouden tekst of gouden vlakken. */
.site-header {
    box-shadow: none;
}

.site-header::after {
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(184, 139, 62, .28) 0%,
        rgba(214, 183, 111, .82) 28%,
        rgba(244, 224, 169, .96) 50%,
        rgba(198, 153, 71, .78) 72%,
        rgba(146, 102, 39, .26) 100%
    );
    box-shadow: none;
}

.site-wordmark::after {
    width: 48px;
    height: 1px;
    background: rgba(198, 153, 71, .72);
    box-shadow: none;
}

.site-nav-link,
.site-nav-link:hover,
.site-nav-link.is-active {
    color: var(--site-ink);
    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
}

.site-nav-link::after {
    height: 1px;
    background: rgba(198, 153, 71, .88);
    box-shadow: none;
}

.site-nav-cta {
    border: 1px solid rgba(198, 153, 71, .76);
    background: transparent;
    color: var(--site-ink);
    box-shadow: none;
}

.site-nav-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(166, 119, 46, .94);
    background: rgba(198, 153, 71, .08);
    color: var(--site-ink);
}

/* Iets dunnere, maar nog steeds prominente desktopnav. */
@media (min-width: 1200px) {
    .site-header-shell {
        min-height: 138px;
        max-width: 1360px;
        gap: clamp(34px, 3.2vw, 58px);
    }

    .site-wordmark {
        padding-bottom: 10px;
        font-size: clamp(14px, 1vw, 17px);
    }

    .site-nav {
        gap: clamp(27px, 2.35vw, 46px);
    }

    .site-nav-link {
        padding: 26px 0 24px;
        font-size: clamp(21px, 1.55vw, 27px);
        font-weight: 700;
        letter-spacing: -.035em;
    }

    .site-nav-link::after {
        bottom: 14px;
    }

    .site-nav-cta {
        min-height: 60px;
        padding: 0 24px;
        gap: 22px;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .07em;
    }

    .hero {
        min-height: calc(100svh - 138px);
        padding-top: clamp(54px, 5vw, 82px);
    }

    /* Letterlijk +10 procentpunt per kant bovenop de huidige 11%. */
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 21vw;
        padding-right: 21vw;
    }

    /* Nav blijft bewust breder dan de content, maar krijgt ook meer lucht. */
    .site-header {
        padding-left: 10vw;
        padding-right: 10vw;
    }

    /* Typografie en componenten iets terugschalen om de smallere kolom in balans te houden. */
    .hero-title {
        font-size: clamp(44px, 5.35vw, 78px);
    }

    .hero-intro {
        max-width: 540px;
        font-size: clamp(14px, .98vw, 16px);
    }

    .hero-button {
        min-height: 47px;
        font-size: 11px;
    }

    .hero-card {
        min-height: clamp(500px, 52vw, 610px);
        padding: clamp(20px, 2.2vw, 30px);
    }

    .hero-card-link {
        min-height: 68px;
    }

    .card-link-title {
        font-size: 14px;
    }

    .availability-title {
        font-size: clamp(40px, 5.15vw, 72px);
    }

    .availability-data {
        font-size: clamp(17px, 1.55vw, 23px);
    }

    .location-name {
        font-size: clamp(27px, 3.05vw, 44px);
    }

    .location-copy {
        font-size: clamp(13.5px, .9vw, 15px);
    }

    .location-intro {
        font-size: clamp(16px, 1.15vw, 18px);
    }

    .location-whatsapp-button {
        min-height: 49px;
        font-size: 10px;
    }

    .fv-heading {
        font-size: clamp(38px, 4.95vw, 70px);
    }

    .fv-title {
        font-size: clamp(25px, 2.7vw, 40px);
    }

    .fv-subtitle,
    .fv-copy-slide {
        font-size: clamp(13px, .82vw, 14px);
    }

    .fv-copy-lead {
        font-size: clamp(14px, .98vw, 16px);
    }

    .fv-order-button {
        min-height: 46px;
        font-size: 9px;
    }

    .contact-title {
        font-size: clamp(34px, 4vw, 56px);
    }

    .contact-copy {
        font-size: clamp(13.5px, .88vw, 15px);
    }

    .contact-copy .contact-lead {
        font-size: clamp(15px, 1.05vw, 17px);
    }

    .contact-direct-link {
        min-height: 66px;
    }

    .site-footer p,
    .site-footer address {
        font-size: 13px;
    }
}

/* Tablet: goud eveneens terug naar een dun accent; proporties blijven bruikbaar. */
@media (min-width: 821px) and (max-width: 1199px) {
    .site-header-shell {
        min-height: 112px;
    }

    .site-nav-link {
        font-size: clamp(17px, 1.8vw, 21px);
    }

    .site-nav-link::after,
    .site-header::after,
    .site-wordmark::after {
        height: 1px;
    }

    .site-nav-cta {
        min-height: 54px;
        background: transparent;
        font-size: 10px;
    }
}

/* Mobiel: geen gouden vlak meer, alleen een subtiele rand. */
@media (max-width: 820px) {
    .site-header::after,
    .site-wordmark::after {
        height: 1px;
    }

    .site-nav-toggle,
    .site-nav-cta {
        border-color: rgba(198, 153, 71, .62);
        background: transparent;
        color: var(--site-ink);
    }

    .site-nav-link.is-active,
    .site-nav-link:hover {
        color: var(--site-ink);
        background-image: none;
        -webkit-background-clip: initial;
        background-clip: initial;
        -webkit-text-fill-color: currentColor;
    }
}

/* =========================================================
   FINAL EXACT 20 / 60 / 20 DESKTOP LAYOUT
   Letterlijk 20vw witruimte links + 20vw rechts.
   Interne max-widths worden op desktop uitgezet, zodat de
   zichtbare site exact 60vw breed blijft en niet nóg smaller.
   ========================================================= */

@media (min-width: 1200px) {

    /* EXACT: 20% links + 20% rechts over de hele site. */
    .site-header,
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 20vw !important;
        padding-right: 20vw !important;
    }

    /* Geen tweede vernauwing meer binnen die 60vw contentzone. */
    .site-header-shell,
    .hero-shell,
    .availability-shell,
    .fv-shell,
    .contact-shell,
    .site-footer .contact-shell {
        width: 100%;
        max-width: none !important;
    }

    /* Nav rustiger en proportioneel kleiner binnen de smallere compositie. */
    .site-header-shell {
        min-height: 112px;
        gap: clamp(22px, 2vw, 36px);
    }

    .site-wordmark {
        padding-bottom: 8px;
        font-size: clamp(12px, .82vw, 15px);
    }

    .site-wordmark::after {
        width: 38px;
    }

    .site-nav {
        gap: clamp(18px, 1.55vw, 30px);
    }

    .site-nav-link {
        padding: 20px 0 18px;
        font-size: clamp(17px, 1.18vw, 22px);
        letter-spacing: -.025em;
    }

    .site-nav-link::after {
        bottom: 10px;
    }

    .site-nav-cta {
        min-height: 50px;
        padding: 0 18px;
        gap: 16px;
        font-size: 10px;
    }

    /* Hero compacter, met dezelfde visuele hiërarchie. */
    .hero {
        min-height: calc(100svh - 112px);
        padding-top: clamp(42px, 4vw, 64px);
        padding-bottom: clamp(52px, 5vw, 76px);
    }

    .hero-shell {
        grid-template-columns: minmax(0, 1.08fr) minmax(270px, .92fr);
        gap: clamp(28px, 3.2vw, 54px);
    }

    .hero-kicker {
        margin-bottom: clamp(22px, 2.4vw, 34px);
        font-size: 9px;
    }

    .hero-title {
        font-size: clamp(38px, 4.35vw, 66px);
    }

    .hero-title-accent {
        margin-left: clamp(0px, 2.5vw, 42px);
    }

    .hero-intro {
        width: 86%;
        max-width: 480px;
        margin-top: clamp(26px, 3vw, 40px);
        font-size: clamp(13px, .82vw, 15px);
        line-height: 1.7;
    }

    .hero-actions {
        margin-top: clamp(26px, 3vw, 40px);
    }

    .hero-button {
        min-height: 44px;
        padding-left: 18px;
        padding-right: 18px;
        font-size: 10px;
    }

    .hero-card {
        min-height: clamp(450px, 45vw, 560px);
        padding: clamp(18px, 1.8vw, 26px);
        border-radius: clamp(24px, 2.3vw, 34px);
    }

    .hero-card-link {
        min-height: 62px;
    }

    .card-link-label {
        font-size: 8px;
    }

    .card-link-title {
        font-size: 13px;
    }

    /* Secties: iets compacter zodat de 60vw kolom luchtig blijft. */
    .availability,
    .fv-section,
    .contact-section {
        padding-top: clamp(72px, 7vw, 104px);
        padding-bottom: clamp(78px, 7.5vw, 112px);
    }

    .availability-header,
    .fv-section-header {
        margin-bottom: clamp(38px, 4vw, 58px);
    }

    .availability-title {
        font-size: clamp(34px, 4.05vw, 60px);
    }

    .availability-data {
        font-size: clamp(15px, 1.2vw, 20px);
    }

    .availability-grid {
        gap: clamp(16px, 1.8vw, 24px);
    }

    .location-card {
        padding: clamp(22px, 2vw, 30px);
        border-radius: clamp(22px, 2vw, 30px);
    }

    .location-card-top {
        margin-bottom: clamp(30px, 3vw, 42px);
    }

    .location-name {
        margin-bottom: clamp(24px, 2.5vw, 34px);
        font-size: clamp(24px, 2.5vw, 36px);
    }

    .location-date {
        min-height: 54px;
    }

    .date-name {
        font-size: clamp(12px, .82vw, 14px);
    }

    .date-number {
        font-size: clamp(16px, 1.2vw, 20px);
    }

    .location-copy {
        font-size: clamp(12.5px, .78vw, 14px);
        line-height: 1.68;
    }

    .location-intro {
        font-size: clamp(14px, 1vw, 16px);
    }

    .location-whatsapp-button {
        min-height: 46px;
        margin-top: clamp(24px, 2.5vw, 34px);
        font-size: 9px;
    }

    /* Video cards proportioneel kleiner. */
    .fv-heading {
        font-size: clamp(34px, 3.9vw, 58px);
    }

    .fv-list {
        gap: clamp(28px, 3vw, 42px);
    }

    .fv-card {
        border-radius: clamp(22px, 2vw, 30px);
    }

    .fv-media {
        padding: clamp(16px, 1.7vw, 24px);
    }

    .fv-content {
        padding: clamp(22px, 2.3vw, 34px);
    }

    .fv-content-top {
        margin-bottom: clamp(20px, 2vw, 28px);
    }

    .fv-title {
        font-size: clamp(22px, 2.25vw, 34px);
    }

    .fv-subtitle,
    .fv-copy-slide {
        font-size: clamp(12px, .75vw, 13px);
    }

    .fv-copy-lead {
        font-size: clamp(13px, .9vw, 15px);
    }

    .fv-meta,
    .fv-copy,
    .fv-actions {
        margin-top: clamp(20px, 2vw, 28px);
    }

    .fv-order-button {
        min-height: 44px;
        font-size: 8.5px;
    }

    /* Contact eveneens teruggeschaald. */
    .contact-panel {
        grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
        border-radius: clamp(24px, 2vw, 32px);
    }

    .contact-intro,
    .contact-form-card {
        padding: clamp(26px, 2.8vw, 40px);
    }

    .contact-title {
        font-size: clamp(30px, 3.25vw, 48px);
    }

    .contact-copy {
        margin-top: clamp(24px, 2.5vw, 34px);
        font-size: clamp(12.5px, .78vw, 14px);
    }

    .contact-copy .contact-lead {
        font-size: clamp(14px, .95vw, 16px);
    }

    .contact-direct {
        margin-top: clamp(28px, 3vw, 40px);
    }

    .contact-direct-link {
        min-height: 60px;
    }

    .contact-submit {
        min-height: 46px;
        min-width: 150px;
        font-size: 9px;
    }

    /* Footer volgt exact dezelfde 20/60/20 breedte. */
    .site-footer {
        padding-top: clamp(46px, 5vw, 68px);
        padding-bottom: 24px;
    }

    .site-footer-grid {
        gap: clamp(24px, 3vw, 42px);
    }

    .site-footer-logo {
        width: min(160px, 62%);
    }

    .site-footer p,
    .site-footer address {
        font-size: 12px;
    }
}

/* Tussen 1200 en 1450px wordt 60vw te smal voor sommige tweekoloms kaarten.
   Daarom stapelen alleen de interne kaarten; de 20/60/20 bodyverhouding blijft exact. */
@media (min-width: 1200px) and (max-width: 1450px) {
    .availability-grid {
        grid-template-columns: 1fr;
    }

    .fv-card,
    .fv-card--reverse {
        grid-template-columns: 1fr;
    }

    .fv-card .fv-media,
    .fv-card--reverse .fv-media {
        order: 1;
    }

    .fv-card .fv-content,
    .fv-card--reverse .fv-content {
        order: 2;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   FINAL COMPACT EDITORIAL SCALE
   Doel: niet alleen meer marge, maar de hele visuele compositie
   daadwerkelijk kleiner en rustiger maken. Kleine leestekst blijft
   comfortabel leesbaar; grote typografie, kaarten, media, gaps en
   knoppen schalen sterker terug.
   ========================================================= */

@media (min-width: 1200px) {
    /* Meer echte leegte rond de compositie. 22% + 22% = 56% contentzone. */
    .site-header,
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 22vw !important;
        padding-right: 22vw !important;
    }

    .site-header-shell,
    .hero-shell,
    .availability-shell,
    .fv-shell,
    .contact-shell,
    .site-footer .contact-shell {
        width: 100%;
        max-width: none !important;
    }

    /* NAV — duidelijk aanwezig, maar niet monumentaal. */
    .site-header-shell {
        min-height: 82px !important;
        gap: clamp(18px, 1.4vw, 28px) !important;
    }

    .site-wordmark {
        padding-bottom: 6px !important;
        font-size: clamp(10px, .68vw, 12px) !important;
    }

    .site-wordmark::after {
        width: 28px !important;
    }

    .site-nav {
        gap: clamp(14px, 1vw, 22px) !important;
    }

    .site-nav-link {
        padding: 14px 0 13px !important;
        font-size: clamp(14px, .92vw, 17px) !important;
        font-weight: 650 !important;
    }

    .site-nav-link::after {
        bottom: 7px !important;
    }

    .site-nav-cta {
        min-height: 40px !important;
        padding: 0 14px !important;
        gap: 12px !important;
        font-size: 9px !important;
    }

    /* HERO — compact, rustig en scanbaar. */
    .hero {
        min-height: auto !important;
        padding-top: clamp(44px, 4.5vw, 72px) !important;
        padding-bottom: clamp(64px, 6vw, 96px) !important;
    }

    .hero-shell {
        grid-template-columns: minmax(0, 1.08fr) minmax(220px, .72fr) !important;
        gap: clamp(24px, 2.4vw, 40px) !important;
        align-items: center;
    }

    .hero-kicker {
        margin-bottom: clamp(18px, 1.8vw, 26px) !important;
        font-size: 9px !important;
    }

    .hero-kicker-line {
        width: 30px !important;
    }

    .hero-title {
        font-size: clamp(32px, 3.35vw, 52px) !important;
        line-height: .97 !important;
    }

    .hero-title-accent {
        margin-left: clamp(0px, 1.8vw, 28px) !important;
    }

    .hero-intro {
        width: 92% !important;
        max-width: 430px !important;
        margin-top: clamp(22px, 2vw, 30px) !important;
        font-size: clamp(14px, .82vw, 15px) !important;
        line-height: 1.65 !important;
    }

    .hero-actions {
        margin-top: clamp(22px, 2vw, 30px) !important;
        gap: 9px !important;
    }

    .hero-button {
        min-height: 40px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        gap: 16px !important;
        font-size: 10px !important;
    }

    /* Premium kaart en foto echt kleiner. */
    .hero-card {
        width: 100%;
        max-width: 310px;
        justify-self: end;
        min-height: 410px !important;
        padding: 16px !important;
        border-radius: 24px !important;
    }

    .hero-card-top {
        min-height: 20px;
    }

    .hero-card-number,
    .hero-card-small {
        font-size: 8px !important;
    }

    .hero-card-pill {
        padding: 7px 11px !important;
        font-size: 8px !important;
    }

    .hero-card-center--gallery {
        padding: 14px 0 12px !important;
        gap: 8px !important;
    }

    .hero-card--gallery .hero-photo-stage,
    .hero-photo-stage {
        width: min(100%, 228px) !important;
        aspect-ratio: 4 / 4.9 !important;
        border-radius: 16px !important;
    }

    .hero-photo-pagination {
        gap: 3px !important;
    }

    .hero-photo-dot {
        min-width: 26px !important;
        width: 26px !important;
        height: 26px !important;
        padding: 0 !important;
        font-size: 7px !important;
    }

    .hero-card-small-bottom {
        margin-top: 4px !important;
    }

    .hero-card-links {
        margin-top: 2px;
    }

    .hero-card-link {
        min-height: 52px !important;
    }

    .card-link-label {
        font-size: 7px !important;
    }

    .card-link-title {
        font-size: 11px !important;
    }

    .card-link-arrow {
        font-size: 16px !important;
    }

    /* Doorlopende ringen iets minder massaal zodat ze de content niet opblazen. */
    .section-ring-bridge--01 .section-ring {
        width: clamp(620px, 52vw, 900px) !important;
    }

    .section-ring-bridge--02 .section-ring {
        width: clamp(660px, 56vw, 960px) !important;
    }

    .section-ring-bridge--03 .section-ring {
        width: clamp(560px, 46vw, 820px) !important;
    }

    /* Algemene sectie-ritmes compacter. */
    .availability,
    .fv-section,
    .contact-section {
        padding-top: clamp(64px, 6vw, 88px) !important;
        padding-bottom: clamp(68px, 6.4vw, 94px) !important;
    }

    .availability-header,
    .fv-section-header {
        margin-bottom: clamp(30px, 3vw, 42px) !important;
    }

    .availability-eyebrow,
    .fv-eyebrow,
    .contact-eyebrow {
        margin-bottom: 22px !important;
        font-size: 9px !important;
    }

    .availability-heading-row,
    .fv-heading-row {
        gap: 24px !important;
    }

    .availability-title {
        font-size: clamp(30px, 3.1vw, 46px) !important;
    }

    .availability-data {
        font-size: clamp(14px, 1vw, 17px) !important;
    }

    .availability-xxx,
    .fv-all-link {
        font-size: 9px !important;
    }

    /* LOCATIEKAARTEN: fysiek lager en compacter, maar bodytekst leesbaar. */
    .availability-grid {
        gap: 14px !important;
    }

    .location-card {
        padding: 20px !important;
        border-radius: 22px !important;
    }

    .location-card-top {
        margin-bottom: 26px !important;
    }

    .location-number,
    .location-status {
        font-size: 8px !important;
    }

    .location-status {
        padding: 6px 10px !important;
    }

    .location-name {
        margin-bottom: 24px !important;
        font-size: clamp(21px, 1.95vw, 30px) !important;
    }

    .location-dates {
        margin-bottom: 26px !important;
    }

    .location-date {
        min-height: 46px !important;
        grid-template-columns: 34px 1fr auto !important;
        gap: 9px !important;
    }

    .date-day {
        font-size: 8px !important;
    }

    .date-name {
        font-size: 13px !important;
    }

    .date-number {
        font-size: 17px !important;
    }

    .location-copy {
        max-width: none !important;
        font-size: 14px !important;
        line-height: 1.62 !important;
    }

    .location-intro {
        font-size: 15px !important;
    }

    .location-whatsapp-button {
        min-height: 42px !important;
        margin-top: 24px !important;
        padding: 0 15px !important;
        font-size: 9px !important;
    }

    /* VIDEO'S — grote kaarten kleiner en minder 'in je gezicht'. */
    .fv-heading {
        font-size: clamp(30px, 3vw, 45px) !important;
    }

    .fv-list {
        gap: 26px !important;
    }

    .fv-card {
        grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr) !important;
        border-radius: 22px !important;
    }

    .fv-media {
        padding: 15px !important;
    }

    .fv-video-frame {
        border-radius: 15px !important;
    }

    .fv-preview-controls {
        margin-top: 10px !important;
        grid-template-columns: 34px minmax(0, 1fr) 34px !important;
    }

    .fv-round-button,
    .fv-preview-pill {
        min-height: 40px !important;
    }

    .fv-preview-pill {
        min-width: 88px !important;
        flex-basis: 88px !important;
        padding: 0 10px !important;
    }

    .fv-content {
        padding: 22px !important;
    }

    .fv-content-top {
        margin-bottom: 18px !important;
    }

    .fv-title {
        font-size: clamp(20px, 1.85vw, 28px) !important;
    }

    .fv-subtitle,
    .fv-copy-slide {
        font-size: 14px !important;
        line-height: 1.62 !important;
    }

    .fv-copy-lead {
        font-size: 15px !important;
    }

    .fv-meta,
    .fv-copy,
    .fv-actions {
        margin-top: 20px !important;
    }

    .fv-meta-item {
        padding-top: 11px !important;
        padding-bottom: 11px !important;
    }

    .fv-meta-item strong {
        font-size: 11px !important;
    }

    .fv-copy-viewport {
        min-height: 190px !important;
    }

    .fv-copy-footer {
        margin-top: 12px !important;
    }

    .fv-actions {
        gap: 6px !important;
    }

    .fv-order-button {
        min-height: 40px !important;
        padding: 0 14px !important;
        font-size: 9px !important;
    }

    /* CONTACT — kleiner paneel, zelfde leesbaarheid. */
    .contact-panel {
        grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr) !important;
        border-radius: 22px !important;
    }

    .contact-intro,
    .contact-form-card {
        padding: 26px !important;
    }

    .contact-intro-top,
    .contact-form-top {
        margin-bottom: 28px !important;
    }

    .contact-title {
        font-size: clamp(27px, 2.65vw, 40px) !important;
    }

    .contact-copy {
        margin-top: 22px !important;
        font-size: 14px !important;
        line-height: 1.62 !important;
    }

    .contact-copy .contact-lead {
        font-size: 15px !important;
    }

    .contact-direct {
        margin-top: 28px !important;
    }

    .contact-direct-link {
        min-height: 52px !important;
        grid-template-columns: 72px minmax(0, 1fr) auto !important;
    }

    .contact-direct-value {
        font-size: 12px !important;
    }

    .contact-form {
        gap: 20px !important;
    }

    .contact-field input,
    .contact-field textarea {
        font-size: 14px !important;
    }

    .contact-field textarea {
        min-height: 108px !important;
    }

    .contact-submit {
        min-height: 42px !important;
        min-width: 142px !important;
        font-size: 9px !important;
    }

    /* Footer eveneens compacter. */
    .site-footer {
        padding-top: 42px !important;
        padding-bottom: 20px !important;
    }

    .site-footer-grid {
        gap: 24px !important;
    }

    .site-footer-logo {
        width: min(140px, 60%) !important;
    }

    .site-footer p,
    .site-footer address {
        font-size: 12px !important;
        line-height: 1.6 !important;
    }

    .site-footer-bottom {
        margin-top: 34px !important;
    }
}

/* Medium desktop: dezelfde rust, maar iets meer beschikbare breedte. */
@media (min-width: 900px) and (max-width: 1199px) {
    .site-header,
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 12vw !important;
        padding-right: 12vw !important;
    }

    .site-header-shell {
        min-height: 78px !important;
    }

    .site-nav-link {
        font-size: 14px !important;
    }

    .hero-title {
        font-size: clamp(36px, 5vw, 50px) !important;
    }

    .hero-card {
        max-width: 330px;
        min-height: 430px !important;
    }

    .availability-title,
    .fv-heading {
        font-size: clamp(32px, 4.7vw, 46px) !important;
    }

    .location-copy,
    .fv-copy-slide,
    .contact-copy {
        font-size: 14px !important;
    }
}

/* Mobiel: niet 30% smaller maken; wel meer rust en geen beeldvullende kaarten. */
@media (max-width: 899px) {
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 7vw !important;
        padding-right: 7vw !important;
    }

    .hero-shell {
        gap: 42px !important;
    }

    .hero-title {
        font-size: clamp(36px, 11vw, 50px) !important;
    }

    .hero-intro {
        font-size: 15px !important;
    }

    .hero-card {
        width: min(92%, 430px) !important;
        align-self: center;
    }

    .availability-title,
    .fv-heading,
    .contact-title {
        font-size: clamp(32px, 9vw, 46px) !important;
    }

    .location-card,
    .fv-card,
    .contact-panel {
        border-radius: 24px !important;
    }
}

/* =========================================================
   EXTREME DESKTOP COMPACT — LITERAL 30% VISUAL REDUCTION
   Deze laag overschrijft de eerdere desktop-schaal bewust.
   Doel: kaarten, media, nav, grote typografie, paddings en gaps
   zichtbaar ~30% kleiner; kleine leestekst blijft leesbaar.
   ========================================================= */

@media (min-width: 1200px) {
    :root {
        --extreme-content: min(760px, 58vw);
        --extreme-header: min(820px, 62vw);
    }

    /* Geen kunstmatige section-padding meer: de shells bepalen de echte breedte. */
    .site-header,
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .site-header-shell {
        width: var(--extreme-header) !important;
        max-width: var(--extreme-header) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        min-height: 58px !important;
        gap: 14px !important;
    }

    .hero-shell,
    .availability-shell,
    .fv-shell,
    .contact-shell,
    .site-footer .contact-shell {
        width: var(--extreme-content) !important;
        max-width: var(--extreme-content) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* NAV — 30% terug van de compacte versie. */
    .site-wordmark {
        font-size: 9px !important;
        line-height: 1.05 !important;
        padding-bottom: 4px !important;
    }

    .site-wordmark::after {
        width: 20px !important;
        height: 1px !important;
    }

    .site-nav {
        gap: 12px !important;
    }

    .site-nav-link {
        padding: 9px 0 !important;
        font-size: 11px !important;
        letter-spacing: .035em !important;
    }

    .site-nav-link::after {
        bottom: 4px !important;
        height: 1px !important;
    }

    .site-nav-cta {
        min-height: 30px !important;
        padding: 0 10px !important;
        gap: 8px !important;
        font-size: 8px !important;
    }

    /* HERO */
    .hero {
        min-height: auto !important;
        padding-top: 34px !important;
        padding-bottom: 58px !important;
    }

    .hero-shell {
        grid-template-columns: minmax(0, 1.14fr) minmax(180px, .64fr) !important;
        gap: 24px !important;
    }

    .hero-kicker {
        margin-bottom: 15px !important;
        gap: 9px !important;
        font-size: 8px !important;
    }

    .hero-kicker-line {
        width: 22px !important;
        height: 1px !important;
    }

    .hero-title {
        font-size: clamp(25px, 2.35vw, 36px) !important;
        line-height: .98 !important;
    }

    .hero-title-accent {
        margin-left: 14px !important;
    }

    .hero-intro {
        width: 94% !important;
        max-width: 360px !important;
        margin-top: 18px !important;
        font-size: 13.5px !important;
        line-height: 1.58 !important;
    }

    .hero-actions {
        margin-top: 18px !important;
        gap: 7px !important;
    }

    .hero-button {
        min-height: 32px !important;
        padding: 0 11px !important;
        gap: 10px !important;
        font-size: 9px !important;
    }

    .button-arrow {
        font-size: 13px !important;
    }

    .hero-card {
        max-width: 218px !important;
        min-height: 300px !important;
        padding: 11px !important;
        border-radius: 17px !important;
    }

    .hero-card-number,
    .hero-card-small {
        font-size: 7px !important;
    }

    .hero-card-pill {
        padding: 5px 8px !important;
        font-size: 7px !important;
    }

    .hero-card-center--gallery {
        padding: 9px 0 7px !important;
        gap: 5px !important;
    }

    .hero-card--gallery .hero-photo-stage,
    .hero-photo-stage {
        width: min(100%, 158px) !important;
        aspect-ratio: 4 / 4.9 !important;
        border-radius: 12px !important;
    }

    .hero-photo-dot {
        min-width: 20px !important;
        width: 20px !important;
        height: 20px !important;
        font-size: 6px !important;
    }

    .hero-card-link {
        min-height: 38px !important;
    }

    .card-link-label {
        margin-bottom: 2px !important;
        font-size: 6px !important;
    }

    .card-link-title {
        font-size: 9px !important;
    }

    .card-link-arrow {
        font-size: 12px !important;
    }

    /* Decoratie ook proportioneel kleiner. */
    .section-ring {
        border-width: 12px !important;
    }

    .section-ring::after {
        inset: 18px !important;
    }

    .section-ring-bridge--01 .section-ring { width: 540px !important; }
    .section-ring-bridge--02 .section-ring { width: 580px !important; }
    .section-ring-bridge--03 .section-ring { width: 500px !important; }

    /* SECTIERITME */
    .availability,
    .fv-section,
    .contact-section {
        padding-top: 50px !important;
        padding-bottom: 56px !important;
    }

    .availability-header,
    .fv-section-header {
        margin-bottom: 24px !important;
    }

    .availability-eyebrow,
    .fv-eyebrow,
    .contact-eyebrow {
        margin-bottom: 15px !important;
        gap: 9px !important;
        font-size: 8px !important;
    }

    .availability-eyebrow-line,
    .fv-eyebrow-line,
    .contact-eyebrow-line {
        width: 28px !important;
    }

    .availability-title,
    .fv-heading {
        font-size: clamp(23px, 2.15vw, 32px) !important;
        line-height: .97 !important;
    }

    .availability-data {
        font-size: 13px !important;
    }

    .availability-xxx,
    .fv-all-link {
        font-size: 8px !important;
    }

    /* LOCATIES */
    .availability-grid {
        gap: 10px !important;
    }

    .location-card {
        padding: 14px !important;
        border-radius: 16px !important;
    }

    .location-card-top {
        margin-bottom: 18px !important;
    }

    .location-number,
    .location-status {
        font-size: 7px !important;
    }

    .location-status {
        padding: 4px 7px !important;
        gap: 5px !important;
    }

    .location-status::before {
        width: 5px !important;
        height: 5px !important;
    }

    .location-name {
        margin-bottom: 16px !important;
        font-size: clamp(16px, 1.35vw, 21px) !important;
    }

    .location-dates {
        margin-bottom: 18px !important;
    }

    .location-date {
        min-height: 34px !important;
        grid-template-columns: 25px 1fr auto !important;
        gap: 6px !important;
    }

    .date-day { font-size: 7px !important; }
    .date-name { font-size: 12px !important; }
    .date-number { font-size: 14px !important; }

    /* kleine bodytekst bewust niet 30% kleiner: leesbaarheid blijft. */
    .location-copy {
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .location-copy p {
        margin-bottom: .8em !important;
    }

    .location-intro {
        font-size: 13.5px !important;
        line-height: 1.45 !important;
    }

    .location-whatsapp-button {
        min-height: 32px !important;
        margin-top: 16px !important;
        padding: 0 10px !important;
        font-size: 8px !important;
    }

    /* VIDEO CARDS */
    .fv-list {
        gap: 18px !important;
    }

    .fv-card {
        grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr) !important;
        border-radius: 16px !important;
    }

    .fv-media {
        padding: 11px !important;
    }

    .fv-media-top {
        min-height: 24px !important;
    }

    .fv-card-number,
    .fv-preview-counter {
        font-size: 7px !important;
    }

    .fv-video-frame {
        border-radius: 11px !important;
    }

    .fv-preview-controls {
        margin-top: 7px !important;
        grid-template-columns: 25px minmax(0, 1fr) 25px !important;
        gap: 5px !important;
    }

    .fv-round-button,
    .fv-preview-pill {
        min-height: 30px !important;
        border-radius: 10px !important;
    }

    .fv-preview-pill {
        min-width: 62px !important;
        flex-basis: 62px !important;
        padding: 0 7px !important;
        gap: 6px !important;
    }

    .fv-preview-pill > span { font-size: 7px !important; }
    .fv-preview-pill > strong { font-size: 8px !important; }

    .fv-content {
        padding: 15px !important;
    }

    .fv-content-top {
        margin-bottom: 13px !important;
    }

    .fv-label,
    .fv-label-dot,
    .fv-xxx {
        font-size: 7px !important;
    }

    .fv-xxx {
        min-height: 25px !important;
        padding: 0 9px !important;
    }

    .fv-title {
        font-size: clamp(16px, 1.3vw, 21px) !important;
    }

    .fv-subtitle,
    .fv-copy-slide {
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .fv-copy-lead {
        font-size: 13.5px !important;
    }

    .fv-meta,
    .fv-copy,
    .fv-actions {
        margin-top: 14px !important;
    }

    .fv-meta-item {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .fv-meta-item span { font-size: 7px !important; }
    .fv-meta-item strong { font-size: 9px !important; }

    .fv-tabs { gap: 3px !important; }
    .fv-tab { padding: 6px 8px !important; font-size: 7px !important; }

    .fv-copy-viewport {
        margin-top: 12px !important;
        min-height: 135px !important;
    }

    .fv-copy-footer {
        margin-top: 8px !important;
    }

    .fv-copy-arrow {
        width: 28px !important;
        height: 28px !important;
    }

    .fv-actions {
        gap: 5px !important;
    }

    .fv-order-button {
        min-height: 31px !important;
        padding: 0 10px !important;
        font-size: 8px !important;
    }

    /* CONTACT */
    .contact-panel {
        grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr) !important;
        border-radius: 16px !important;
    }

    .contact-intro,
    .contact-form-card {
        padding: 18px !important;
    }

    .contact-intro-top,
    .contact-form-top {
        margin-bottom: 20px !important;
    }

    .contact-title {
        font-size: clamp(21px, 1.9vw, 29px) !important;
    }

    .contact-copy {
        margin-top: 16px !important;
        font-size: 13px !important;
        line-height: 1.55 !important;
    }

    .contact-copy .contact-lead {
        font-size: 13.5px !important;
    }

    .contact-direct {
        margin-top: 20px !important;
    }

    .contact-direct-link {
        min-height: 38px !important;
        grid-template-columns: 52px minmax(0, 1fr) auto !important;
        gap: 8px !important;
    }

    .contact-direct-meta { font-size: 7px !important; }
    .contact-direct-value { font-size: 10px !important; }
    .contact-direct-arrow { font-size: 13px !important; }

    .contact-form {
        gap: 14px !important;
    }

    .contact-form-row {
        gap: 14px !important;
    }

    .contact-field label {
        margin-bottom: 5px !important;
        font-size: 7px !important;
    }

    .contact-field input,
    .contact-field textarea {
        padding-top: 7px !important;
        padding-bottom: 8px !important;
        font-size: 13px !important;
    }

    .contact-field textarea {
        min-height: 76px !important;
    }

    .contact-submit-row {
        padding-top: 14px !important;
        gap: 14px !important;
    }

    .contact-privacy-note {
        font-size: 9px !important;
    }

    .contact-submit {
        min-height: 31px !important;
        min-width: 100px !important;
        padding: 0 10px !important;
        font-size: 8px !important;
    }

    /* FOOTER */
    .site-footer {
        padding-top: 30px !important;
        padding-bottom: 14px !important;
    }

    .site-footer-grid {
        gap: 17px !important;
    }

    .site-footer-logo {
        width: min(100px, 55%) !important;
        margin-bottom: 15px !important;
    }

    .site-footer p,
    .site-footer address {
        font-size: 11px !important;
        line-height: 1.5 !important;
    }

    .site-footer-label {
        margin-bottom: 7px !important;
        font-size: 7px !important;
    }

    .site-footer-column {
        gap: 8px !important;
    }

    .site-footer-bottom {
        margin-top: 24px !important;
        padding-top: 14px !important;
        font-size: 8px !important;
    }
}

/* Op normale laptops blijft het compact, maar niet onbruikbaar smal. */
@media (min-width: 900px) and (max-width: 1199px) {
    .site-header,
    .hero,
    .availability,
    .fv-section,
    .contact-section,
    .site-footer {
        padding-left: 17vw !important;
        padding-right: 17vw !important;
    }

    .site-header-shell,
    .hero-shell,
    .availability-shell,
    .fv-shell,
    .contact-shell,
    .site-footer .contact-shell {
        max-width: none !important;
    }

    .site-header-shell { min-height: 60px !important; }
    .site-nav-link { font-size: 11px !important; }
    .hero-title { font-size: clamp(28px, 3.5vw, 38px) !important; }
    .hero-card { max-width: 240px !important; min-height: 330px !important; }
    .availability-title,
    .fv-heading { font-size: clamp(25px, 3.3vw, 36px) !important; }
}

/* =========================================================
   FINAL PROPORTION + CENTERING POLISH
   Houdt de extreme compacte schaal, maar corrigeert hiërarchie:
   kleinere display-headings, gecentreerde composities en een
   hero-card die optisch in balans staat met de tekstkolom.
   ========================================================= */

@media (min-width: 1200px) {
    :root {
        --extreme-content: min(760px, 58vw);
        --extreme-header: var(--extreme-content);
    }

    /* Alle hoofdcomposities exact op dezelfde middenas. */
    .site-header-shell,
    .hero-shell,
    .availability-shell,
    .fv-shell,
    .contact-shell,
    .site-footer .contact-shell {
        margin-inline: auto !important;
    }

    /* Header gebruikt dezelfde breedte als de rest, zodat niets 'zweeft'. */
    .site-header-shell {
        width: var(--extreme-content) !important;
        max-width: var(--extreme-content) !important;
        justify-content: space-between !important;
    }

    /* HERO: twee vaste, proportionele kolommen midden op de pagina. */
    .hero-shell {
        grid-template-columns: minmax(0, 400px) minmax(0, 210px) !important;
        justify-content: center !important;
        align-items: center !important;
        column-gap: 38px !important;
    }

    .hero-copy {
        width: 100% !important;
        max-width: 400px !important;
        min-width: 0 !important;
        justify-self: center !important;
    }

    .hero-title {
        font-size: clamp(23px, 1.75vw, 30px) !important;
        letter-spacing: -.04em !important;
        max-width: 100% !important;
    }

    .hero-title-accent {
        margin-left: 10px !important;
    }

    .hero-kicker {
        max-width: 100% !important;
        white-space: normal !important;
    }

    .hero-intro {
        width: 100% !important;
        max-width: 350px !important;
    }

    .hero-card {
        width: 210px !important;
        max-width: 210px !important;
        min-height: 292px !important;
        justify-self: center !important;
        align-self: center !important;
    }

    .hero-card--gallery .hero-photo-stage,
    .hero-photo-stage {
        width: 150px !important;
    }

    /* Display-headings bewust kleiner dan in de vorige extreme versie. */
    .availability-title,
    .fv-heading {
        font-size: clamp(20px, 1.55vw, 26px) !important;
        line-height: 1 !important;
        letter-spacing: -.04em !important;
        max-width: 100% !important;
        overflow-wrap: normal !important;
    }

    .availability-heading-row,
    .fv-heading-row {
        align-items: flex-end !important;
        gap: 18px !important;
    }

    .availability-heading-side {
        flex: 0 0 auto !important;
    }

    .location-name {
        font-size: clamp(15px, 1.05vw, 18px) !important;
        line-height: 1.04 !important;
    }

    .fv-title {
        font-size: clamp(14px, 1vw, 17px) !important;
        line-height: 1.06 !important;
        letter-spacing: -.035em !important;
    }

    .contact-title {
        font-size: clamp(18px, 1.45vw, 23px) !important;
        line-height: 1.04 !important;
        letter-spacing: -.04em !important;
        max-width: 100% !important;
    }

    /* Panelen blijven binnen dezelfde middenas; geen optische zijwaartse drift. */
    .availability-grid,
    .fv-list,
    .contact-panel {
        width: 100% !important;
        margin-inline: auto !important;
    }

    .location-card,
    .fv-card,
    .contact-panel {
        transform-origin: center center !important;
    }

    /* Contactkolommen iets gelijkmatiger, zodat het paneel niet rechts-zwaar wordt. */
    .contact-panel {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }

    /* Video cards iets meer 50/50: rustiger en beter gecentreerd. */
    .fv-card {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    }

    /* De dunne goudlijn blijft subtiel en exact in het midden. */
    .site-header::after {
        left: 50% !important;
        right: auto !important;
        width: var(--extreme-content) !important;
        transform: translateX(-50%) !important;
    }
}

/* Normale laptops: dezelfde verhoudingscorrectie zonder te krap te worden. */
@media (min-width: 900px) and (max-width: 1199px) {
    .hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(190px, .62fr) !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 28px !important;
    }

    .hero-card {
        justify-self: center !important;
        align-self: center !important;
    }

    .hero-title {
        font-size: clamp(24px, 3vw, 32px) !important;
    }

    .availability-title,
    .fv-heading {
        font-size: clamp(22px, 3vw, 30px) !important;
    }

    .fv-title {
        font-size: clamp(16px, 2vw, 21px) !important;
    }

    .contact-title {
        font-size: clamp(20px, 2.6vw, 28px) !important;
    }
}

/* =========================================================
   FINAL REQUEST — HERO 50/50 + KLEINERE LOCATIENAMEN
   Alleen deze twee verhoudingen worden aangepast.
   ========================================================= */

@media (min-width: 1200px) {
    /* Eerste container: exact twee gelijke helften, gecentreerd. */
    .hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        width: var(--extreme-content) !important;
        max-width: var(--extreme-content) !important;
        column-gap: 32px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-copy {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        justify-self: stretch !important;
    }

    /* Tekst blijft compact in de linker helft. */
    .hero-intro {
        width: 100% !important;
        max-width: 320px !important;
    }

    /* Het volledige premium portret-element vult nu de rechter 50%-kolom. */
    .hero-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        min-height: 318px !important;
        justify-self: stretch !important;
        align-self: center !important;
        padding: 13px !important;
        border-radius: 18px !important;
    }

    .hero-card--gallery .hero-photo-stage,
    .hero-photo-stage {
        width: min(76%, 225px) !important;
        max-width: 225px !important;
        margin-inline: auto !important;
    }

    /* Locatiekoppen ongeveer de helft van de vorige displaymaat. */
    .location-name {
        font-size: clamp(9px, .58vw, 10px) !important;
        line-height: 1.08 !important;
        letter-spacing: -.02em !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }
}

/* Op normale laptops dezelfde 50/50-verhouding en kleinere plaatsnamen. */
@media (min-width: 900px) and (max-width: 1199px) {
    .hero-shell {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 24px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .hero-copy {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
    }

    .hero-intro {
        width: 100% !important;
        max-width: 300px !important;
    }

    .hero-card {
        width: 100% !important;
        max-width: none !important;
        justify-self: stretch !important;
    }

    .hero-card--gallery .hero-photo-stage,
    .hero-photo-stage {
        width: min(76%, 210px) !important;
        margin-inline: auto !important;
    }

    .location-name {
        font-size: clamp(10px, 1vw, 12px) !important;
        line-height: 1.08 !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
    }
}


/* =========================================================
   MOTION SYSTEM — HOMEPAGE + BLOG
   Subtiele achtergrondbeweging en scroll reveals.
   ========================================================= */

.reveal-item,
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .75s cubic-bezier(.2,.7,.2,1),
        transform .75s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-item.is-visible,
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes site-ring-drift-a {
    0%,100% { translate: 0 0; scale: 1; }
    50% { translate: 22px -16px; scale: 1.025; }
}

@keyframes site-ring-drift-b {
    0%,100% { translate: 0 0; scale: 1; }
    50% { translate: -18px 14px; scale: .985; }
}

.section-ring-bridge--01 .section-ring,
.section-ring-bridge--03 .section-ring {
    animation: site-ring-drift-a 34s ease-in-out infinite;
}

.section-ring-bridge--02 .section-ring {
    animation: site-ring-drift-b 42s ease-in-out infinite;
}

/* =========================================================
   BLOG — SINGLE PAGE EDITORIAL ACCORDION
   Hergebruikt --site-* tokens, Manrope en Rubik Mono One.
   ========================================================= */

.page-blog {
    background: var(--site-wash);
}

.blog-main {
    position: relative;
    isolation: isolate;
    overflow: clip;
}

.blog-shell {
    position: relative;
    z-index: 2;
    width: min(760px, 58vw);
    margin: 0 auto;
}

.blog-ambient {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blog-ambient-ring {
    position: absolute;
    display: block;
    border-radius: 50%;
    border: 1px solid rgba(240,175,192,.26);
    box-shadow: 0 0 0 12px rgba(240,175,192,.055);
}

.blog-ambient-ring--one {
    width: min(62vw, 900px);
    aspect-ratio: 1;
    right: -26vw;
    top: 7vh;
    animation: blog-ring-one 38s ease-in-out infinite;
}

.blog-ambient-ring--two {
    width: min(48vw, 680px);
    aspect-ratio: 1;
    left: -22vw;
    top: 46%;
    border-color: rgba(198,161,91,.20);
    box-shadow: 0 0 0 14px rgba(198,161,91,.035);
    animation: blog-ring-two 48s ease-in-out infinite;
}

.blog-ambient-glow {
    position: absolute;
    width: 42vw;
    height: 42vw;
    right: -18vw;
    top: 34%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248,195,208,.15), rgba(248,195,208,0) 68%);
    filter: blur(12px);
    animation: blog-glow 26s ease-in-out infinite;
}

@keyframes blog-ring-one {
    0%,100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(-28px,32px,0) scale(1.035); }
}

@keyframes blog-ring-two {
    0%,100% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(34px,-22px,0) scale(.975); }
}

@keyframes blog-glow {
    0%,100% { opacity: .55; transform: translate3d(0,0,0); }
    50% { opacity: .9; transform: translate3d(-20px,28px,0); }
}

.blog-hero {
    position: relative;
    padding: 68px 0 82px;
}

.blog-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 24px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .20em;
    color: #858A87;
}

.blog-eyebrow-line {
    width: 28px;
    height: 1px;
    background: var(--site-blush-strong);
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(230px,.8fr);
    gap: 44px;
    align-items: start;
}

.blog-hero-kicker {
    margin: 0 0 16px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
    color: #8B908D;
}

.blog-title,
.blog-index-title {
    margin: 0;
    font-family: "Rubik Mono One", sans-serif;
    letter-spacing: -.045em;
    line-height: .96;
    color: var(--site-ink);
}

.blog-title {
    font-size: clamp(34px,3.2vw,52px);
}

.blog-title span,
.blog-index-title span {
    color: var(--site-blush-strong);
}

.blog-intro-copy {
    max-width: 520px;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.72;
    color: var(--site-text);
}

.blog-intro-copy p {
    margin: 0 0 1.05em;
}

.blog-intro-lead {
    font-size: 15px;
    line-height: 1.66;
    font-weight: 600;
    color: var(--site-ink);
}

.blog-intro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 25px;
}

.blog-intro-tags span {
    padding: 7px 10px;
    border: 1px solid var(--site-border);
    border-radius: 999px;
    background: rgba(255,255,255,.48);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .13em;
}

.blog-profile-note {
    position: sticky;
    top: 88px;
    overflow: hidden;
    min-height: 310px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border-radius: 22px;
    background: var(--site-ink);
    color: white;
}

.blog-profile-note::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -150px;
    bottom: -145px;
    border: 1px solid rgba(248,195,208,.12);
    border-radius: 50%;
}

.blog-profile-number,
.blog-profile-label {
    position: relative;
    z-index: 1;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .17em;
}

.blog-profile-number { color: rgba(255,255,255,.36); }
.blog-profile-label { margin: 42px 0 0; color: var(--site-blush); }

.blog-profile-note blockquote {
    position: relative;
    z-index: 1;
    margin: 20px 0 34px;
    font-size: clamp(17px,1.4vw,22px);
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: -.02em;
}

.blog-profile-bottom {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .14em;
    color: rgba(255,255,255,.48);
}

.blog-index {
    position: relative;
    padding: 76px 0 110px;
    background: rgba(255,255,255,.68);
    border-top: 1px solid rgba(41,51,47,.06);
}

.blog-index-header {
    margin-bottom: 42px;
}

.blog-index-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
}

.blog-index-title {
    font-size: clamp(30px,2.8vw,44px);
}

.blog-index-heading-row > p {
    max-width: 310px;
    margin: 0 0 3px;
    font-size: 12px;
    line-height: 1.65;
    color: #777D79;
}

.blog-post-list {
    border-top: 1px solid rgba(41,51,47,.14);
}

.blog-post {
    border-bottom: 1px solid rgba(41,51,47,.14);
}

.blog-post-summary {
    list-style: none;
    min-height: 160px;
    display: grid;
    grid-template-columns: 34px 128px minmax(0,1fr) 38px;
    align-items: center;
    gap: 18px;
    padding: 24px 0;
    cursor: pointer;
    user-select: none;
}

.blog-post-summary::-webkit-details-marker { display: none; }

.blog-post-number,
.blog-post-meta {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
    color: #999E9B;
}

.blog-post-heading-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-post-title {
    font-family: "Rubik Mono One", sans-serif;
    font-size: clamp(18px,1.6vw,26px);
    line-height: 1.04;
    letter-spacing: -.04em;
    color: var(--site-ink);
}

.blog-post-title em {
    font-style: normal;
    color: var(--site-blush-strong);
}

.blog-post-excerpt {
    max-width: 520px;
    font-size: 12px;
    line-height: 1.62;
    color: #777D79;
}

.blog-post-toggle {
    position: relative;
    width: 36px;
    height: 36px;
    justify-self: end;
    border: 1px solid rgba(41,51,47,.14);
    border-radius: 50%;
    transition: background .25s ease, border-color .25s ease, transform .35s ease;
}

.blog-post-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 1px;
    background: var(--site-ink);
    transform: translate(-50%,-50%);
    transition: transform .35s ease;
}

.blog-post-toggle span:last-child { transform: translate(-50%,-50%) rotate(90deg); }

.blog-post[open] .blog-post-toggle {
    background: var(--site-blush);
    border-color: var(--site-blush);
    transform: rotate(180deg);
}

.blog-post[open] .blog-post-toggle span:last-child { transform: translate(-50%,-50%) rotate(0deg); }

.blog-post-summary:hover .blog-post-title { color: #525C57; }
.blog-post-summary:hover .blog-post-toggle { border-color: var(--site-blush-strong); }

.blog-post-content {
    overflow: hidden;
}

.blog-post-article {
    width: min(620px,100%);
    margin: 0 auto;
    padding: 20px 0 64px;
    color: #555E59;
    font-size: 15px;
    line-height: 1.84;
}

.blog-post-article p {
    margin: 0 0 1.35em;
}

.blog-post-article h2 {
    margin: 58px 0 22px;
    font-family: "Rubik Mono One", sans-serif;
    font-size: clamp(18px,1.5vw,24px);
    line-height: 1.16;
    letter-spacing: -.035em;
    color: var(--site-ink);
}

.blog-post-article h2::before {
    content: "";
    display: block;
    width: 34px;
    height: 2px;
    margin-bottom: 18px;
    background: var(--site-blush-strong);
}

.blog-post-article em { color: var(--site-ink); }

.blog-post-end {
    width: min(620px,100%);
    margin: 0 auto;
    padding: 20px 0 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(41,51,47,.12);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .13em;
    color: #979C99;
}

.blog-post-end a {
    color: var(--site-ink);
    text-decoration: none;
}

.blog-next-note {
    margin-top: 34px;
    padding: 24px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 28px;
    border: 1px solid rgba(41,51,47,.10);
    border-radius: 18px;
    background: var(--site-wash);
}

.blog-next-note span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
    color: var(--site-blush-strong);
}

.blog-next-note p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
    color: #707672;
}

@media (max-width: 1199px) {
    .blog-shell { width: min(760px, 74vw); }
    .blog-hero-grid { grid-template-columns: minmax(0,1.1fr) minmax(220px,.9fr); gap: 32px; }
}

@media (max-width: 820px) {
    .blog-shell { width: 86vw; }
    .blog-hero { padding: 52px 0 64px; }
    .blog-hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .blog-profile-note { position: relative; top: auto; min-height: 260px; }
    .blog-title { font-size: clamp(34px,10vw,48px); }
    .blog-index { padding: 64px 0 84px; }
    .blog-index-heading-row { display: block; }
    .blog-index-heading-row > p { margin-top: 22px; max-width: 480px; }
    .blog-post-summary {
        min-height: 0;
        grid-template-columns: 28px minmax(0,1fr) 38px;
        gap: 12px;
        padding: 26px 0;
    }
    .blog-post-meta { grid-column: 2; grid-row: 1; }
    .blog-post-heading-wrap { grid-column: 2; grid-row: 2; }
    .blog-post-number { grid-column: 1; grid-row: 1 / span 2; align-self: start; padding-top: 2px; }
    .blog-post-toggle { grid-column: 3; grid-row: 1 / span 2; }
    .blog-post-title { font-size: clamp(18px,5.6vw,25px); }
    .blog-post-article { font-size: 15px; line-height: 1.75; padding-bottom: 48px; }
    .blog-post-article h2 { margin-top: 48px; }
    .blog-next-note { grid-template-columns: 1fr; gap: 12px; }
    .blog-ambient-ring--one { width: 130vw; right: -80vw; }
    .blog-ambient-ring--two { width: 115vw; left: -72vw; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-item,
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .section-ring,
    .blog-ambient-ring,
    .blog-ambient-glow {
        animation: none !important;
    }
}

/* =========================================================
   BLOG — EDITORIAL MEDIA / FOTO-ESSAYS / VERHAALCONTAINERS
   Aanvulling voor meerdere posts met eigen foto- en videoritme.
   ========================================================= */

.blog-profile-note--image {
    isolation: isolate;
    min-height: 390px;
    justify-content: flex-end;
    background: #1f2724;
}

.blog-profile-photo,
.blog-profile-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.blog-profile-photo {
    z-index: 0;
    object-fit: cover;
    object-position: 50% 36%;
    transform: scale(1.015);
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.blog-profile-note--image:hover .blog-profile-photo {
    transform: scale(1.045);
}

.blog-profile-shade {
    z-index: 1;
    background: linear-gradient(180deg, rgba(24,31,28,.10) 8%, rgba(24,31,28,.22) 42%, rgba(24,31,28,.94) 100%);
}

.blog-profile-note--image::after {
    z-index: 2;
}

.blog-profile-note--image .blog-profile-number,
.blog-profile-note--image .blog-profile-label,
.blog-profile-note--image blockquote,
.blog-profile-note--image .blog-profile-bottom {
    z-index: 3;
}

.blog-profile-note--image .blog-profile-label {
    margin-top: auto;
}

.blog-profile-note--image blockquote {
    margin-bottom: 24px;
    text-shadow: 0 2px 22px rgba(0,0,0,.18);
}

.blog-post-article--wide {
    width: min(700px, 100%);
}

.blog-prose-narrow {
    width: min(590px, 100%);
    margin-inline: auto;
}

.blog-article-lead {
    margin-bottom: 34px !important;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.62;
    font-weight: 600;
    letter-spacing: -.012em;
    color: var(--site-ink);
}

.blog-article-highlight {
    margin: 42px 0 0;
    padding: 24px 26px;
    border-left: 3px solid var(--site-blush-strong);
    border-radius: 0 18px 18px 0;
    background: rgba(248,195,208,.16);
    color: var(--site-ink);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

.blog-media-duo {
    width: 100%;
    margin: 8px auto 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.blog-media-duo--art {
    margin-top: 44px;
    margin-bottom: 44px;
}

.blog-media-figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(198,161,91,.42);
    border-radius: 18px;
    background: var(--site-white);
    box-shadow: 0 18px 44px rgba(41,51,47,.07);
}

.blog-media-figure img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    display: block;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.blog-media-figure:hover img {
    transform: scale(1.025);
}

.blog-media-figure--portrait img {
    aspect-ratio: 4 / 5;
    object-position: center top;
}

.blog-media-figure figcaption {
    padding: 12px 14px 14px;
    border-top: 1px solid var(--site-border);
    font-size: 9px;
    line-height: 1.55;
    letter-spacing: .04em;
    color: #8b918d;
}

.blog-photo-story-grid {
    margin: 8px 0 54px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 8px;
}

.blog-photo-story-item {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    background: #e9e5e6;
}

.blog-photo-story-item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
}

.blog-photo-story-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

.blog-photo-story-item:hover img {
    transform: scale(1.035);
}

.blog-photo-story-item span {
    position: absolute;
    right: 8px;
    bottom: 8px;
    min-width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(247,244,245,.86);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--site-ink);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .08em;
}

.blog-video-card {
    margin: 42px 0;
    overflow: hidden;
    padding: 14px;
    border-radius: 20px;
    background: #1f2724;
    box-shadow: 0 24px 58px rgba(31,39,36,.13);
}

.blog-video-card--opening {
    margin-top: 4px;
}

.blog-video-card--flush {
    margin: 0;
}

.blog-video-top {
    min-height: 31px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.42);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
}

.blog-video-top span:last-child {
    color: var(--site-blush);
}

.blog-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(198,161,91,.42);
    border-radius: 13px;
    background: #0f1512;
}

.blog-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.blog-story-container {
    position: relative;
    margin: 0 0 16px;
    padding: clamp(24px, 3vw, 38px);
    overflow: hidden;
    border: 1px solid rgba(41,51,47,.10);
    border-radius: 22px;
    background: rgba(255,255,255,.72);
}

.blog-story-container--media {
    padding: 14px;
    border-color: rgba(198,161,91,.42);
    background: #1f2724;
}

.blog-story-container--dark {
    border-color: #29332f;
    background: var(--site-ink);
    color: rgba(255,255,255,.72);
}

.blog-story-container--dark .blog-prose-narrow,
.blog-story-container--dark p {
    color: rgba(255,255,255,.70);
}

.blog-story-container--dark p:last-child {
    color: var(--site-white);
}

.blog-story-index {
    width: min(590px, 100%);
    margin: 0 auto 28px;
    padding-bottom: 11px;
    border-bottom: 1px solid rgba(41,51,47,.10);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
    color: var(--site-blush-strong);
}

.blog-story-index span {
    color: #929895;
}

.blog-story-container--media .blog-story-index,
.blog-story-container--dark .blog-story-index {
    border-color: rgba(255,255,255,.10);
}

.blog-story-container--dark .blog-story-index span,
.blog-story-container--media .blog-story-index span {
    color: rgba(255,255,255,.40);
}

@media (max-width: 820px) {
    .blog-profile-note--image {
        min-height: 420px;
    }

    .blog-media-duo {
        grid-template-columns: 1fr;
    }

    .blog-photo-story-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 6px;
    }

    .blog-photo-story-item,
    .blog-photo-story-item--wide {
        grid-column: auto;
        aspect-ratio: 3 / 4;
        border-radius: 11px;
    }

    .blog-photo-story-item:first-child {
        grid-column: 1 / -1;
        aspect-ratio: 16 / 10;
    }

    .blog-story-container {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .blog-story-container--media {
        padding: 10px;
    }

    .blog-video-card {
        padding: 10px;
        border-radius: 16px;
    }

    .blog-video-frame {
        border-radius: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-profile-photo,
    .blog-media-figure img,
    .blog-photo-story-item img {
        transition: none !important;
        transform: none !important;
    }
}

/* =========================================================
   BLOG 01 — CHRISTINE, EROTISCH MAKER & PERFORMER
   Eigen editorial ritme binnen hetzelfde designsysteem.
   ========================================================= */

.blog-profile-archive-chip {
    position: absolute;
    z-index: 4;
    top: 18px;
    right: 18px;
    width: 132px;
    padding: 6px;
    display: grid;
    grid-template-columns: 38px 1fr;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 13px;
    background: rgba(31,39,36,.54);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.blog-profile-archive-chip img {
    width: 38px;
    height: 46px;
    display: block;
    object-fit: cover;
    object-position: 50% 35%;
    border-radius: 8px;
    filter: saturate(.72) contrast(.96);
    opacity: .88;
}

.blog-profile-archive-chip > span {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.blog-profile-archive-chip strong,
.blog-profile-archive-chip small {
    font-size: 6px;
    line-height: 1.25;
    letter-spacing: .10em;
}

.blog-profile-archive-chip strong { color: rgba(255,255,255,.86); }
.blog-profile-archive-chip small { color: rgba(255,255,255,.46); }

.blog-maker-feature {
    --maker-radius: 20px;
}

.blog-maker-opening {
    width: 100%;
    margin: 6px 0 54px;
    display: grid;
    grid-template-columns: minmax(0, 1.36fr) minmax(0, .64fr);
    gap: 10px;
    align-items: stretch;
}

.blog-maker-opening figure,
.blog-maker-side-image,
.blog-maker-finale-image {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(198,161,91,.44);
    border-radius: var(--maker-radius);
    background: #e9e4e6;
}

.blog-maker-opening-main { min-height: 420px; }
.blog-maker-opening-side { min-height: 420px; }

.blog-maker-opening img,
.blog-maker-side-image img,
.blog-maker-finale-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .9s cubic-bezier(.2,.7,.2,1);
}

.blog-maker-opening-main img { object-position: 50% 34%; }
.blog-maker-opening-side img { object-position: 50% 32%; }

.blog-maker-opening figure:hover img,
.blog-maker-side-image:hover img,
.blog-maker-finale-image:hover img {
    transform: scale(1.025);
}

.blog-image-caption {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    min-height: 34px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(31,39,36,.50);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255,255,255,.86);
    font-size: 6px;
    font-weight: 800;
    letter-spacing: .12em;
}

.blog-maker-chapter {
    margin: 54px 0 0;
    padding: 34px 0 0;
    border-top: 1px solid rgba(41,51,47,.11);
}

.blog-maker-chapter-index {
    width: min(590px, 100%);
    margin: 0 auto 20px;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .16em;
    color: var(--site-blush-strong);
}

.blog-maker-chapter-index span { color: #969b98; }

.blog-maker-chapter .blog-prose-narrow > h2,
.blog-maker-finale h2 {
    margin-top: 0;
}

.blog-maker-quote {
    position: relative;
    margin: 58px 0;
    padding: 42px 42px 36px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--site-ink);
    color: var(--site-white);
}

.blog-maker-quote::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -150px;
    top: -155px;
    border: 1px solid rgba(248,195,208,.14);
    border-radius: 50%;
}

.blog-maker-quote > span {
    position: relative;
    z-index: 1;
    display: block;
    height: 26px;
    font-family: Georgia, serif;
    font-size: 56px;
    line-height: .9;
    color: var(--site-blush);
}

.blog-maker-quote p {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 18px 0 28px;
    font-size: clamp(20px, 2vw, 29px);
    line-height: 1.38;
    font-weight: 600;
    letter-spacing: -.025em;
    color: var(--site-white);
}

.blog-maker-quote small {
    position: relative;
    z-index: 1;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .15em;
    color: rgba(255,255,255,.40);
}

.blog-maker-chapter--split {
    display: grid;
    grid-template-columns: minmax(0,1.18fr) minmax(190px,.82fr);
    gap: 28px;
    align-items: start;
}

.blog-maker-chapter--split .blog-prose-narrow {
    width: 100%;
}

.blog-maker-side-image {
    min-height: 470px;
    position: sticky;
    top: 86px;
}

.blog-maker-side-image img { object-position: 50% 35%; }

.blog-maker-side-image figcaption {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 11px;
    border-radius: 12px;
    background: rgba(247,244,245,.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--site-ink);
    font-size: 8px;
    line-height: 1.45;
}

.blog-maker-chapter--blush {
    margin-left: -26px;
    margin-right: -26px;
    padding: 34px 26px 12px;
    border: 1px solid rgba(240,175,192,.28);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(248,195,208,.22), rgba(255,255,255,.54));
}

.blog-maker-chapter--dark {
    margin-left: -26px;
    margin-right: -26px;
    padding: 34px 26px 20px;
    border: 0;
    border-radius: 22px;
    background: var(--site-ink);
}

.blog-maker-chapter--dark .blog-maker-chapter-index span { color: rgba(255,255,255,.36); }
.blog-maker-chapter--dark h2 { color: var(--site-white); }
.blog-maker-chapter--dark h2::before { background: var(--site-gold); }
.blog-maker-chapter--dark p { color: rgba(255,255,255,.69); }

.blog-maker-finale {
    margin: 16px -26px 0;
    display: grid;
    grid-template-columns: minmax(0,1.14fr) minmax(220px,.86fr);
    overflow: hidden;
    border: 1px solid rgba(198,161,91,.42);
    border-radius: 22px;
    background: var(--site-white);
}

.blog-maker-finale-copy {
    padding: 36px 30px 34px;
}

.blog-maker-finale-copy .blog-maker-chapter-index {
    width: 100%;
    margin-left: 0;
}

.blog-maker-finale-copy p {
    font-size: 14px;
    line-height: 1.72;
}

.blog-maker-last-line {
    margin-top: 28px !important;
    font-size: 17px !important;
    font-weight: 700;
    color: var(--site-ink) !important;
}

.blog-maker-finale-image {
    min-height: 100%;
    border: 0;
    border-left: 1px solid rgba(198,161,91,.30);
    border-radius: 0;
}

.blog-maker-finale-image img { object-position: 50% 32%; }

/* Open artikel: media komt zacht na elkaar binnen. Zonder JS blijft alles zichtbaar. */
.motion-ready [data-story-reveal] {
    opacity: 0;
    transform: translateY(16px);
}

.motion-ready [data-story-reveal].story-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity .62s cubic-bezier(.2,.7,.2,1),
        transform .62s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--story-delay, 0ms);
}

@media (max-width: 820px) {
    .blog-profile-archive-chip {
        top: 14px;
        right: 14px;
        width: 124px;
    }

    .blog-maker-opening {
        grid-template-columns: 1.15fr .85fr;
        gap: 6px;
        margin-bottom: 42px;
    }

    .blog-maker-opening-main,
    .blog-maker-opening-side { min-height: 330px; }

    .blog-image-caption {
        left: 7px;
        right: 7px;
        bottom: 7px;
        padding: 0 8px;
    }

    .blog-image-caption span:last-child { display: none; }

    .blog-maker-quote {
        margin: 44px 0;
        padding: 32px 24px 28px;
        border-radius: 18px;
    }

    .blog-maker-chapter--split {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-maker-side-image {
        position: relative;
        top: auto;
        min-height: 430px;
    }

    .blog-maker-chapter--blush,
    .blog-maker-chapter--dark {
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .blog-maker-finale {
        margin-left: -12px;
        margin-right: -12px;
        grid-template-columns: 1fr;
    }

    .blog-maker-finale-copy { padding: 28px 20px; }
    .blog-maker-finale-image { min-height: 380px; border-left: 0; border-top: 1px solid rgba(198,161,91,.30); }
}

@media (max-width: 430px) {
    .blog-maker-opening { grid-template-columns: 1fr; }
    .blog-maker-opening-main { min-height: 410px; }
    .blog-maker-opening-side { min-height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
    .motion-ready [data-story-reveal],
    .motion-ready [data-story-reveal].story-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Alle vier blogfeatures krijgen hetzelfde rustige open-reveal ritme. */
.motion-ready .story-reveal-piece {
    opacity: 0;
    transform: translateY(16px);
}

.motion-ready .story-reveal-piece.story-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity .62s cubic-bezier(.2,.7,.2,1),
        transform .62s cubic-bezier(.2,.7,.2,1);
    transition-delay: var(--story-delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
    .motion-ready .story-reveal-piece,
    .motion-ready .story-reveal-piece.story-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* =========================================================
   USER REFINEMENT — LOCAL BLOG LINK + HOMEPAGE MOTION + TYPE SCALE
   10 AUG 2026
   ========================================================= */

/* Homepage: beweging blijft chic, maar is nu duidelijk zichtbaar. */
@keyframes home-ring-drift-right {
    0%, 100% { translate: 0 0; scale: 1; opacity: .72; }
    50% { translate: 30px -20px; scale: 1.035; opacity: .92; }
}

@keyframes home-ring-drift-left {
    0%, 100% { translate: 0 0; scale: 1; opacity: .66; }
    50% { translate: -26px 18px; scale: .975; opacity: .86; }
}

@keyframes home-card-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -7px; }
}

@keyframes home-photo-breathe {
    0%, 100% { scale: 1; }
    50% { scale: 1.018; }
}

.page-home .section-ring-bridge--01 .section-ring,
.page-home .section-ring-bridge--03 .section-ring {
    animation: home-ring-drift-right 24s ease-in-out infinite !important;
}

.page-home .section-ring-bridge--02 .section-ring {
    animation: home-ring-drift-left 29s ease-in-out infinite !important;
}

.page-home .hero-card--gallery {
    animation: home-card-float 8.5s ease-in-out infinite;
}

.page-home .hero-photo-slide.is-active {
    animation: home-photo-breathe 7s ease-in-out infinite;
}

/* Scroll reveals iets zichtbaarder: nog steeds rustig/editorial. */
.page-home .reveal-item {
    transform: translateY(32px) scale(.992);
    filter: blur(2px);
    transition:
        opacity .82s cubic-bezier(.2,.7,.2,1),
        transform .82s cubic-bezier(.2,.7,.2,1),
        filter .72s ease;
}

.page-home .reveal-item.is-visible {
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Contactgegevens bewust kleiner dan de omringende copy. */
.contact-direct-value {
    font-size: 12px !important;
    letter-spacing: -.01em;
}

/* Plaatsnamen iets meer presence. */
.location-name {
    font-size: clamp(18px, 2.2vw, 30px) !important;
    line-height: 1.02 !important;
    white-space: normal !important;
}

@media (min-width: 1200px) {
    .contact-direct-value {
        font-size: 8px !important;
    }

    .location-name {
        font-size: 13px !important;
        letter-spacing: -.015em !important;
        white-space: nowrap !important;
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .contact-direct-value {
        font-size: 9px !important;
    }

    .location-name {
        font-size: 14px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 899px) {
    .contact-direct-value {
        font-size: 12px !important;
    }

    .location-name {
        font-size: clamp(25px, 7.5vw, 36px) !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-home .section-ring,
    .page-home .hero-card--gallery,
    .page-home .hero-photo-slide.is-active {
        animation: none !important;
    }

    .page-home .reveal-item,
    .page-home .reveal-item.is-visible {
        filter: none !important;
        transform: none !important;
    }
}



.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================================
   PERFORMERS / CASTING — CHRISTINE DE WINTER
   Gebouwd op dezelfde tokens, header, buttons, formulieren,
   footer en ambient-ringen als de bestaande hoofdsite.
   ========================================================= */

.page-performers {
    background: var(--site-wash);
}

.performer-main {
    position: relative;
    isolation: isolate;
    overflow: clip;
}

.performer-shell {
    position: relative;
    z-index: 2;
    width: 58vw;
    max-width: 980px;
    margin: 0 auto;
}

.performer-shell--wide {
    max-width: 1240px;
}

.performer-hero {
    position: relative;
    padding: clamp(66px, 7vw, 112px) 0 clamp(80px, 8vw, 126px);
}

.performer-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: clamp(24px, 3vw, 38px);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .19em;
    color: #858A87;
}

.performer-eyebrow-line {
    width: 32px;
    height: 1px;
    background: var(--site-blush-strong);
}

.performer-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(250px, .78fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
}

.performer-kicker {
    margin: 0 0 17px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .18em;
    color: #8B908D;
}

.performer-title,
.performer-heading {
    margin: 0;
    font-family: "Rubik Mono One", sans-serif;
    line-height: .96;
    letter-spacing: -.045em;
    color: var(--site-ink);
}

.performer-title {
    font-size: clamp(38px, 4.2vw, 66px);
}

.performer-title span,
.performer-heading span {
    color: var(--site-blush-strong);
}

.performer-intro {
    max-width: 590px;
    margin-top: 31px;
    font-size: 14px;
    line-height: 1.72;
    color: var(--site-text);
}

.performer-intro p {
    margin: 0 0 1.05em;
}

.performer-intro-lead {
    font-size: 16px;
    line-height: 1.65;
    font-weight: 600;
    color: var(--site-ink);
}

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

.performer-hero-note {
    position: sticky;
    top: 96px;
    overflow: hidden;
    min-height: 330px;
    padding: clamp(25px, 3vw, 38px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: clamp(24px, 2.5vw, 34px);
    background: var(--site-ink);
    color: white;
}

.performer-hero-note::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -160px;
    bottom: -150px;
    border: 1px solid rgba(248, 195, 208, .12);
    border-radius: 50%;
    pointer-events: none;
}

.performer-note-number {
    position: relative;
    z-index: 1;
    font-family: "Rubik Mono One", sans-serif;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1;
    color: var(--site-blush);
}

.performer-hero-note > div,
.performer-hero-note > p {
    position: relative;
    z-index: 1;
}

.performer-note-label {
    display: block;
    margin-bottom: 12px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .17em;
    color: rgba(255, 255, 255, .42);
}

.performer-hero-note a {
    display: block;
    margin: 6px 0;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.performer-hero-note a:hover {
    color: var(--site-blush);
}

.performer-hero-note p {
    margin: 25px 0 0;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .60);
}

.performer-routes {
    position: relative;
    padding: clamp(82px, 8vw, 132px) 0;
    background: white;
}

.performer-section-header {
    margin-bottom: clamp(44px, 6vw, 78px);
}

.performer-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 38px;
}

.performer-heading {
    font-size: clamp(34px, 4.2vw, 64px);
}

.performer-heading-row > p {
    max-width: 390px;
    margin: 0 0 5px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--site-text);
}

.performer-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 24px);
}

.performer-route-card {
    min-width: 0;
    padding: clamp(25px, 2.7vw, 38px);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--site-border);
    border-radius: clamp(24px, 2.6vw, 36px);
    background: var(--site-wash);
    color: var(--site-ink);
    box-shadow: 0 18px 60px rgba(41, 51, 47, .04);
}

.performer-route-card--dark {
    background: var(--site-ink);
    border-color: var(--site-ink);
    color: white;
}

.performer-card-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: clamp(40px, 4vw, 60px);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em;
    color: #949895;
}

.performer-route-card--dark .performer-card-top {
    color: rgba(255, 255, 255, .40);
}

.performer-route-card h3 {
    margin: 0;
    font-family: "Rubik Mono One", sans-serif;
    font-size: clamp(20px, 1.9vw, 30px);
    line-height: 1.08;
    letter-spacing: -.035em;
    overflow-wrap: anywhere;
}

.performer-route-card h3 em {
    display: block;
    color: var(--site-blush-strong);
    font-style: normal;
}

.performer-price {
    margin: 25px 0 24px;
    padding: 17px 0;
    border-top: 1px solid var(--site-border);
    border-bottom: 1px solid var(--site-border);
    font-family: "Rubik Mono One", sans-serif;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.1;
    color: var(--site-blush-strong);
}

.performer-price small {
    display: block;
    margin-top: 7px;
    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
    color: #979B98;
}

.performer-price--word {
    font-size: clamp(20px, 1.8vw, 28px);
}

.performer-route-card--dark .performer-price {
    border-color: rgba(255,255,255,.12);
    color: var(--site-blush);
}

.performer-route-card--dark .performer-price small {
    color: rgba(255,255,255,.42);
}

.performer-route-card > p,
.performer-route-card li {
    font-size: 12px;
    line-height: 1.7;
    color: var(--site-text);
}

.performer-route-card--dark > p,
.performer-route-card--dark li {
    color: rgba(255,255,255,.66);
}

.performer-route-card > p {
    margin: 0 0 16px;
}

.performer-route-card ul {
    margin: 3px 0 22px;
    padding: 0;
    list-style: none;
}

.performer-route-card li {
    position: relative;
    padding: 9px 0 9px 17px;
    border-bottom: 1px solid rgba(41,51,47,.08);
}

.performer-route-card--dark li {
    border-color: rgba(255,255,255,.09);
}

.performer-route-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--site-blush-strong);
}

.performer-ethics {
    margin-top: auto !important;
    padding: 14px 15px;
    border: 1px solid rgba(41,51,47,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.55);
    font-size: 10px !important;
}

.performer-pick {
    width: 100%;
    min-height: 50px;
    margin-top: auto;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border: 1px solid var(--site-ink);
    border-radius: 999px;
    background: var(--site-ink);
    color: white;
    font: inherit;
    font-size: 10px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.performer-pick:hover {
    transform: translateY(-2px);
    border-color: var(--site-blush);
    background: var(--site-blush);
    color: var(--site-ink);
}

.performer-route-card--dark .performer-pick {
    border-color: var(--site-blush);
    background: var(--site-blush);
    color: var(--site-ink);
}

.performer-route-card--dark .performer-pick:hover {
    border-color: white;
    background: white;
}

.performer-application {
    position: relative;
    padding: clamp(82px, 8vw, 132px) 0;
    background: var(--site-wash);
}

.performer-form-layout {
    display: grid;
    grid-template-columns: minmax(0, .76fr) minmax(430px, 1.24fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: start;
}

.performer-form-intro {
    position: sticky;
    top: 106px;
}

.performer-form-intro .performer-intro-lead {
    margin: 29px 0 0;
    max-width: 430px;
}

.performer-direct {
    margin-top: 38px;
    border-top: 1px solid var(--site-border);
}

.performer-direct a {
    min-height: 72px;
    display: grid;
    grid-template-columns: 82px minmax(0,1fr) auto;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid var(--site-border);
    text-decoration: none;
}

.performer-direct a:hover strong {
    color: var(--site-blush-strong);
}

.performer-direct span {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .15em;
    color: #969A97;
}

.performer-direct strong {
    min-width: 0;
    font-size: 12px;
    overflow-wrap: anywhere;
    transition: color .2s ease;
}

.performer-direct b {
    font-size: 18px;
}

.performer-form-card {
    border: 1px solid rgba(41,51,47,.08);
    border-radius: clamp(24px, 2.5vw, 34px);
    box-shadow: 0 24px 70px rgba(41,51,47,.055);
}

.performer-form .contact-field select {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(41, 51, 47, .20);
    border-radius: 0;
    outline: none;
    padding: 11px 30px 13px 0;
    background: transparent;
    color: var(--site-ink);
    font: inherit;
    font-size: 15px;
    line-height: 1.5;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.performer-form .contact-field select:focus {
    border-color: var(--site-blush-strong);
    box-shadow: 0 1px 0 var(--site-blush-strong);
}

.performer-route-summary {
    margin: -13px 0 2px;
    padding: 11px 13px;
    border-radius: 12px;
    background: rgba(248,195,208,.17);
    font-size: 10px;
    line-height: 1.55;
    color: #777D79;
}

.performer-check {
    display: grid;
    grid-template-columns: 18px minmax(0,1fr);
    gap: 11px;
    align-items: start;
    cursor: pointer;
    font-size: 11px;
    line-height: 1.55;
    color: #737976;
}

.performer-check input {
    width: 17px;
    height: 17px;
    margin: 1px 0 0;
    accent-color: var(--site-ink);
}

.contact-form-feedback {
    margin: 22px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.6;
}

.contact-form-feedback--success {
    background: rgba(82, 137, 104, .10);
    border: 1px solid rgba(82, 137, 104, .22);
    color: #3E6550;
}

.contact-form-feedback--error {
    background: rgba(170, 74, 74, .08);
    border: 1px solid rgba(170, 74, 74, .20);
    color: #8B4545;
}

@media (min-width: 1200px) {
    .performer-shell {
        width: 58vw;
    }

    .performer-shell--wide {
        width: 68vw;
    }

    .performer-title {
        font-size: clamp(36px, 3.65vw, 58px);
    }

    .performer-heading {
        font-size: clamp(32px, 3.7vw, 56px);
    }

    .performer-route-card h3 {
        font-size: clamp(18px, 1.55vw, 26px);
    }
}

@media (min-width: 821px) and (max-width: 1199px) {
    .performer-shell,
    .performer-shell--wide {
        width: 84vw;
    }

    .performer-route-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .performer-route-card:last-child {
        grid-column: 1 / -1;
    }

    .performer-form-layout {
        grid-template-columns: minmax(0,.75fr) minmax(390px,1.25fr);
    }
}

@media (max-width: 820px) {
    .performer-shell,
    .performer-shell--wide {
        width: 88vw;
    }

    .performer-hero {
        padding: 52px 0 72px;
    }

    .performer-hero-grid,
    .performer-form-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .performer-title {
        font-size: clamp(36px, 10.5vw, 50px);
    }

    .performer-heading {
        font-size: clamp(34px, 9.8vw, 48px);
    }

    .performer-intro,
    .performer-intro-lead {
        font-size: 14px;
    }

    .performer-hero-actions {
        flex-direction: column;
    }

    .performer-hero-actions .hero-button {
        width: 100%;
    }

    .performer-hero-note,
    .performer-form-intro {
        position: relative;
        top: auto;
    }

    .performer-hero-note {
        min-height: 285px;
    }

    .performer-routes,
    .performer-application {
        padding: 70px 0 82px;
    }

    .performer-heading-row {
        display: block;
    }

    .performer-heading-row > p {
        margin-top: 20px;
    }

    .performer-route-grid {
        grid-template-columns: 1fr;
    }

    .performer-route-card {
        padding: 26px 22px 29px;
        border-radius: 28px;
    }

    .performer-route-card h3 {
        font-size: clamp(24px, 7vw, 34px);
    }

    .performer-price {
        font-size: clamp(25px, 7.5vw, 34px);
    }

    .performer-form-card {
        padding: 29px 22px 33px;
        border-radius: 28px;
    }

    .performer-direct a {
        grid-template-columns: 1fr auto;
        gap: 7px 16px;
        padding: 13px 0;
    }

    .performer-direct span {
        grid-column: 1 / -1;
    }

    .performer-direct b {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 380px) {
    .performer-shell,
    .performer-shell--wide {
        width: 90vw;
    }

    .performer-title {
        font-size: clamp(32px, 9.7vw, 40px);
    }

    .performer-heading {
        font-size: clamp(30px, 9.2vw, 38px);
    }

    .performer-route-card h3 {
        font-size: clamp(22px, 6.8vw, 28px);
    }

    .performer-form-card {
        padding-left: 19px;
        padding-right: 19px;
    }
}
