.announcement {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    width: 100%;
    height: var(--announcement-height);
    color: var(--color-black);
    background: var(--color-pink);
    opacity: 1;
    filter: none;
    isolation: isolate;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: paint;
}

.announcement__track {
    display: flex;
    align-items: center;
    width: max-content;
    min-width: 200%;
    height: 100%;
    color: var(--color-black);
    background: var(--color-pink);
    opacity: 1;
    filter: none;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    animation: announcement-scroll 28s linear infinite;
}

.announcement__group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-shrink: 0;
    min-width: 100vw;
    height: 100%;
    color: var(--color-black);
    background: var(--color-pink);
}

.announcement__group span {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 18px;
    padding: 0 28px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .12em;
    white-space: nowrap;
}

.announcement__group span::after {
    content: "●";
    flex-shrink: 0;
    font-size: 7px;
    line-height: 1;
}

@keyframes announcement-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.site-header {
    position: fixed;
    top: var(--announcement-height);
    left: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--header-height);
    padding: 0 36px;
    color: var(--color-black);
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(17, 17, 17, .10);
    transition:
        box-shadow var(--transition),
        height var(--transition);
}

.site-header.is-scrolled {
    height: var(--header-height);
    color: var(--color-black);
    background-color: var(--color-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .10);
}

.brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: fit-content;
    height: 100%;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.brand__logo {
    display: block;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.brand__logo:nth-child(1) {
    max-width: 150px;
}

.brand__logo:nth-child(2) {
    max-width: 100px;
    max-height: 75px;
    margin-left: -2px;
}

@media (min-width: 861px) {
    .brand__logo:nth-child(2) {
        width: 140px;
        max-width: 140px;
        max-height: 68px;
        margin-left: 2px;
    }
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.desktop-nav > a:not(.nav-cta) {
    position: relative;
}

.desktop-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.desktop-nav > a:not(.nav-cta):hover::after,
.desktop-nav > a:not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 13px 24px;
    color: var(--color-black);
    background: var(--color-pink);
    border-radius: var(--radius-pill);
    transition:
        color var(--transition),
        transform var(--transition),
        background-color var(--transition);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    color: var(--color-white);
    background: var(--color-black);
    transform: translateY(-2px);
}

.site-header.is-scrolled .nav-cta:hover,
.site-header.is-scrolled .nav-cta:focus-visible {
    color: var(--color-white);
    background: var(--color-black);
}

.menu-toggle {
    position: relative;
    z-index: 1300;
    display: none;
    place-items: center;
    width: 50px;
    height: 50px;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    width: 25px;
    height: 2px;
    background: currentColor;
    transition:
        transform var(--transition),
        top var(--transition);
}

.menu-toggle span:first-child {
    top: 19px;
}

.menu-toggle span:last-child {
    top: 29px;
}

.menu-toggle.is-active span:first-child {
    top: 24px;
    transform: rotate(45deg);
}

.menu-toggle.is-active span:last-child {
    top: 24px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: var(--announcement-height) 0 0;
    z-index: 1090;
    display: none;
    color: var(--color-black);
    background: var(--color-pink);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-18px);
    transition:
        visibility var(--transition),
        opacity var(--transition),
        transform var(--transition);
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    padding: 130px 24px 34px;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu nav a {
    padding: 13px 0;
    font-family: var(--font-display);
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1;
    text-wrap: balance;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(17, 17, 17, .22);
}

.mobile-menu__footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 28px;
    font-size: 14px;
}

.mobile-menu__footer p {
    margin: 0;
}

.mobile-menu__footer a {
    font-weight: 700;
    text-decoration: underline;
}

.hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: calc(100vh - var(--top-bars-height));
    min-height: calc(100dvh - var(--top-bars-height));
    margin-top: var(--top-bars-height);
    padding: 80px 0 88px;
    color: var(--color-white);
    background: var(--color-charcoal);
    overflow: hidden;
}

.hero__media,
.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__media {
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    background-color: var(--color-charcoal);
}

.hero__video-panel {
    position: relative;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-charcoal);
}

.hero__video-panel:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.hero__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background-color: var(--color-charcoal);
}

.hero__overlay {
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, .78) 0%,
            rgba(8, 8, 8, .50) 46%,
            rgba(8, 8, 8, .15) 100%
        ),
        linear-gradient(
            0deg,
            rgba(18, 18, 18, .48) 0%,
            transparent 45%
        );
}

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

    .hero__video-panel {
        width: 100%;
    }

    .hero__video-panel:not(:last-child) {
        border-right: 0;
    }

    .hero__video {
        object-position: center center;
    }
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    max-width: 990px;
    margin-bottom: 28px;
    font-family: var(--font-display);
    font-size: clamp(43px, 5.5vw, 87px);
    font-weight: 700;
    line-height: .86;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--color-pink);
}

.hero__intro {
    max-width: 540px;
    margin-bottom: 32px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.35;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
}

.button--light {
    color: var(--color-black);
    background: var(--color-white);
}

.button--light:hover,
.button--light:focus-visible {
    background: var(--color-cream);
}

.button--pink {
    color: var(--color-black);
    background: var(--color-pink);
}

.button--pink:hover,
.button--pink:focus-visible {
    background: var(--color-pink-dark);
}

.button--dark {
    color: var(--color-white);
    background: var(--color-black);
}

.button--dark:hover,
.button--dark:focus-visible {
    background: var(--color-charcoal);
}

.button--outline {
    color: var(--color-black);
    background: transparent;
    border-color: var(--color-black);
}

.button--outline:hover,
.button--outline:focus-visible {
    color: var(--color-white);
    background: var(--color-black);
}

.hero__scroll {
    position: absolute;
    right: 36px;
    bottom: 30px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero__scroll svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
    50% {
        transform: translateY(6px);
    }
}

.intro-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    background: var(--color-pink);
}

.intro-section__visual {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.intro-section__visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
}

.intro-section__visual:hover > img {
    transform: scale(1.025);
}

.intro-section__badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: grid;
    align-content: center;
    justify-items: center;
    row-gap: 5px;
    width: 150px;
    aspect-ratio: 1;
    padding: 22px;
    color: var(--color-white);
    text-align: center;
    background: var(--color-black);
    border-radius: 50%;
    transform: rotate(8deg);
}

.intro-section__badge strong {
    font-family: var(--font-display);
    font-size: 38px;
    line-height: .95;
}

.intro-section__badge span {
    display: block;
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .1em;
}

.intro-section__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 96px);
}

@media (min-width: 861px) {
    .intro-section {
        height: calc(100vh - var(--top-bars-height));
        height: calc(100dvh - var(--top-bars-height));
        min-height: 0;
        max-height: calc(100vh - var(--top-bars-height));
        max-height: calc(100dvh - var(--top-bars-height));
        overflow: hidden;
    }

    .intro-section__visual {
        height: 100%;
        min-height: 0;
    }

    .intro-section__visual > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .intro-section__copy {
        height: 100%;
        min-height: 0;
        padding:
            clamp(28px, 5vh, 58px)
            clamp(40px, 6vw, 96px);
        overflow: hidden;
    }

    .intro-section__copy .eyebrow {
        margin-bottom: clamp(10px, 1.6vh, 18px);
    }

    .intro-section__copy h2 {
        margin-bottom: clamp(14px, 2.2vh, 26px);
        font-size: clamp(40px, 7vh, 82px);
        line-height: .92;
    }

    .intro-section__copy > p:not(.eyebrow) {
        margin-bottom: clamp(14px, 2.2vh, 24px);
        font-size: clamp(15px, 1.8vh, 18px);
        line-height: 1.45;
    }

    .intro-section__badge {
        right: clamp(18px, 2vw, 28px);
        bottom: clamp(18px, 2vw, 28px);
        width: clamp(112px, 10vw, 150px);
    }
}

.intro-section__copy h2,
.manifesto-section h2,
.section-heading h2,
.location-section h2,
.social-section h2 {
    margin-bottom: 28px;
    font-family: var(--font-display);
    font-size: clamp(52px, 6vw, 96px);
    line-height: .92;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.intro-section__copy h2 span,
.manifesto-section h2 span {
    color: var(--color-white);
}

.intro-section__copy > p:not(.eyebrow) {
    max-width: 580px;
    margin-bottom: 28px;
    font-size: 18px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding-bottom: 3px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.text-link span {
    transition: transform var(--transition);
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translateX(5px);
}

.popular-section {
    padding: 118px 0 100px;
    background: var(--color-cream);
    overflow: hidden;
}

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

.section-heading h2 {
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    gap: 8px;
    padding-bottom: 8px;
}

.slider-button {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: var(--color-white);
    background: var(--color-black);
    border-radius: 50%;
    cursor: pointer;
    transition:
        transform var(--transition),
        background-color var(--transition),
        opacity var(--transition);
}

.slider-button:hover,
.slider-button:focus-visible {
    background: var(--color-pink-dark);
    transform: scale(1.05);
}

.slider-button:disabled {
    opacity: .28;
    cursor: default;
    transform: none;
}

.slider-button svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.product-slider {
    display: grid;
    grid-auto-columns: minmax(280px, 360px);
    grid-auto-flow: column;
    gap: 18px;
    width: 100%;
    padding:
        0
        max(32px, calc((100vw - var(--container)) / 2))
        28px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-card {
    scroll-snap-align: start;
}

.product-card__image {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #ffffff;
}

.product-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: clamp(12px, 1.4vw, 22px);
    object-fit: contain;
    object-position: center;
    transition:
        transform 500ms cubic-bezier(.2, .65, .25, 1);
}

.product-card:hover .product-card__image img {
    transform: scale(1.02);
}

.product-card__tag {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 13px;
    color: var(--color-black);
    background: var(--color-pink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: var(--radius-pill);
}

.product-card__tag--dark {
    color: var(--color-white);
    background: var(--color-black);
}

.product-card__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 4px 0;
}

.product-card h3 {
    margin-bottom: 4px;
    font-size: 19px;
    line-height: 1.25;
    text-transform: uppercase;
}

.product-card p {
    margin-bottom: 0;
    color: var(--color-grey);
    font-size: 14px;
}

.product-card__price {
    flex: 0 0 auto;
    font-weight: 700;
}

.popular-section__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--color-line);
}

.popular-section__footer p {
    max-width: 650px;
    margin: 0;
    color: var(--color-grey);
    font-size: 14px;
}

.manifesto-section {
    position: relative;
    padding: 130px 0;
    color: var(--color-white);
    background: var(--color-charcoal);
}

.manifesto-section h2 {
    max-width: 1100px;
    margin-bottom: 62px;
    font-size: clamp(64px, 8vw, 126px);
}

.manifesto-section h2 span {
    color: var(--color-pink);
}

.manifesto-section__grid {
    display: grid;
    grid-template-columns:
        minmax(0, .8fr)
        minmax(0, 1.2fr);
    gap: clamp(40px, 9vw, 150px);
    align-items: start;
}

.manifesto-section__grid > p {
    max-width: 580px;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
}

.manifesto-section__grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.manifesto-section__grid li {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.manifesto-section__grid li span {
    color: var(--color-pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
}

/* =========================================================
   BANNER 4: KLIKBARE MOODZ STORY-KAART
   ========================================================= */

.manifesto-story-link {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: center;
    grid-template-columns:
        118px
        minmax(0, 1fr)
        48px;
    gap: 20px;
    width: min(100%, 760px);
    min-height: 118px;
    margin-top: clamp(24px, 3.5vh, 40px);
    padding:
        0
        20px
        0
        0;
    overflow: hidden;
    color: var(--color-black);
    background: var(--color-white);
    border: 2px solid var(--color-white);
    border-radius: 24px;
    box-shadow:
        0 8px 0 var(--color-pink),
        0 18px 38px rgba(0, 0, 0, .24);
    transform: translateY(0);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.manifesto-story-link::before {
    position: absolute;
    inset:
        0
        auto
        0
        0;
    z-index: 0;
    width: 118px;
    content: "";
    background:
        radial-gradient(
            circle at 45% 35%,
            rgba(255, 255, 255, .58),
            transparent 42%
        ),
        var(--color-pink);
}

.manifesto-story-link > * {
    position: relative;
    z-index: 1;
}

.manifesto-story-link:hover,
.manifesto-story-link:focus-visible {
    border-color: var(--color-pink);
    box-shadow:
        0 12px 0 var(--color-pink),
        0 24px 46px rgba(0, 0, 0, .30);
    transform: translateY(-4px);
}

.manifesto-story-link:focus-visible {
    outline: 3px solid var(--color-pink);
    outline-offset: 5px;
}

.manifesto-story-link__character {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    width: 118px;
    overflow: hidden;
}

.manifesto-story-link__character img {
    display: block;
    width: 132px;
    max-width: none;
    height: auto;
    margin-bottom: -16px;
    transform:
        translateY(7px)
        rotate(0deg);
    transform-origin: center bottom;
    transition: transform 360ms cubic-bezier(.2, .8, .2, 1);
}

.manifesto-story-link:hover
.manifesto-story-link__character img,
.manifesto-story-link:focus-visible
.manifesto-story-link__character img {
    transform:
        translateY(2px)
        scale(1.05)
        rotate(-1deg);
}

.manifesto-story-link__copy {
    display: block;
    min-width: 0;
    padding:
        17px
        0;
}

.manifesto-story-link__label {
    display: block;
    margin-bottom: 7px;
    color: rgba(17, 17, 17, .58);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .14em;
}

.manifesto-story-link__copy strong {
    display: block;
    max-width: 490px;
    font-family: var(--font-display);
    font-size: clamp(21px, 2.2vw, 30px);
    font-weight: 700;
    line-height: 1.03;
    text-transform: uppercase;
}

.manifesto-story-link__arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--color-white);
    background: var(--color-black);
    border-radius: 50%;
    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.manifesto-story-link__arrow svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.manifesto-story-link:hover
.manifesto-story-link__arrow,
.manifesto-story-link:focus-visible
.manifesto-story-link__arrow {
    color: var(--color-black);
    background: var(--color-pink);
    transform:
        translateX(3px)
        rotate(-4deg);
}

.location-section {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(420px, .85fr);
    min-height: 760px;
    background: var(--color-white);
}

.location-section__map {
    position: relative;
    isolation: isolate;
    min-width: 0;
    min-height: 620px;
    overflow: hidden;
    background: #e5e3df;
    overscroll-behavior: contain;
}

.location-section__leaflet-map {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    background: #e5e3df;
    pointer-events: none;
    touch-action: none;
    user-select: none;
}

.location-section__leaflet-map .leaflet-control-attribution {
    margin: 0;
    padding: 3px 6px;
    color: rgba(17, 17, 17, .72);
    background: rgba(255, 255, 255, .86);
    font-family: var(--font-body);
    font-size: 9px;
    line-height: 1.25;
    pointer-events: auto;
    touch-action: manipulation;
}

.location-section__leaflet-map .leaflet-control-attribution a {
    color: inherit;
    text-decoration: none;
}

.location-section__leaflet-map .leaflet-control-attribution a:hover,
.location-section__leaflet-map .leaflet-control-attribution a:focus-visible {
    text-decoration: underline;
}

.location-section__leaflet-map .leaflet-tile-pane {
    filter:
        saturate(.78)
        contrast(.96)
        brightness(1.035);
}

/*
 * Eigen professionele Maps-knop. De witte knop bedekt
 * tegelijkertijd de ingebouwde, niet-bruikbare Maps-knop
 * van de vergrendelde Google-iframe.
 */
.location-section__maps-button {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 148px;
    min-height: 46px;
    padding: 11px 16px;
    color: #202124;
    background: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .02em;
    border: 2px solid #8ecbff;
    border-radius: 5px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, .22),
        0 0 0 0 rgba(142, 203, 255, 0);
    animation: maps-button-bounce 2.8s ease-in-out infinite;
    pointer-events: auto;
    touch-action: manipulation;
    user-select: none;
    transform-origin: center;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.location-section__maps-icon {
    display: block;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.location-section__maps-button:hover,
.location-section__maps-button:focus-visible {
    color: var(--color-black);
    background: var(--color-pink);
    border-color: #5eb5ff;
    box-shadow:
        0 5px 14px rgba(0, 0, 0, .24),
        0 0 0 4px rgba(142, 203, 255, .24);
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.025);
}

@keyframes maps-button-bounce {
    0%,
    72%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow:
            0 2px 8px rgba(0, 0, 0, .22),
            0 0 0 0 rgba(142, 203, 255, 0);
    }

    78% {
        transform: translateY(-3px) scale(1.015);
        box-shadow:
            0 6px 14px rgba(0, 0, 0, .22),
            0 0 0 5px rgba(142, 203, 255, .18);
    }

    84% {
        transform: translateY(0) scale(1);
        box-shadow:
            0 2px 8px rgba(0, 0, 0, .22),
            0 0 0 2px rgba(142, 203, 255, .10);
    }

    89% {
        transform: translateY(-2px) scale(1.008);
    }

    94% {
        transform: translateY(0) scale(1);
    }
}

.location-section__maps-button:focus-visible {
    outline: 3px solid var(--color-black);
    outline-offset: 3px;
}

.moodz-map-marker {
    background: transparent;
    border: 0;
}

.moodz-map-marker__pin {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: var(--color-pink);
    border: 4px solid var(--color-white);
    border-radius: 50% 50% 50% 8px;
    box-shadow: 0 8px 22px rgba(17, 17, 17, .28);
    transform: rotate(-45deg);
}

.moodz-map-marker__pin::after {
    position: absolute;
    inset: 7px;
    content: "";
    border: 2px solid rgba(17, 17, 17, .13);
    border-radius: inherit;
}

.moodz-map-marker__label {
    position: relative;
    z-index: 1;
    color: var(--color-black);
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    transform: rotate(45deg);
}

.location-section__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(60px, 7vw, 110px);
    background: var(--color-pink);
}

.location-section h2 {
    font-size: clamp(58px, 6vw, 92px);
}

.location-section__address {
    max-width: 460px;
    margin-bottom: 34px;
    font-size: 19px;
}

.opening-hours {
    margin-bottom: 34px;
    border-top: 1px solid rgba(17, 17, 17, .22);
}

.opening-hours div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(17, 17, 17, .22);
}

.opening-hours span,
.opening-hours strong {
    font-size: 14px;
}

.location-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* =========================================================
   IOS ROUTEKEUZE
   Verschijnt alleen via JavaScript op Apple-mobiele apparaten.
   ========================================================= */

.route-picker {
    position: absolute;
    inset: 0;
    z-index: 2100;
    display: grid;
    place-items: center;
    padding: clamp(20px, 4vw, 56px);
    overflow: hidden;
    background: rgba(17, 17, 17, .38);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    touch-action: none;
    transition:
        opacity 240ms ease,
        visibility 240ms ease;
}

.route-picker[hidden] {
    display: none;
}

.route-picker.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.route-picker__panel {
    position: relative;
    width: min(100%, 430px);
    padding:
        30px
        28px
        24px;
    overflow: hidden;
    color: var(--color-black);
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            var(--color-cream) 100%
        );
    border: 2px solid var(--color-black);
    border-radius: 24px;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, .28),
        0 5px 0 var(--color-black);
    opacity: 0;
    transform:
        translateY(18px)
        scale(.965);
    transition:
        opacity 240ms ease,
        transform 300ms cubic-bezier(.2, .8, .2, 1);
}

.route-picker__panel::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 9px;
    content: "";
    background: var(--color-pink);
    border-bottom: 2px solid var(--color-black);
}

.route-picker.is-open .route-picker__panel {
    opacity: 1;
    transform:
        translateY(0)
        scale(1);
}

.route-picker__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 38px;
    height: 38px;
    padding: 0;
    color: var(--color-white);
    background: var(--color-black);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    touch-action: manipulation;
    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.route-picker__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: currentColor;
    border-radius: var(--radius-pill);
}

.route-picker__close span:first-child {
    transform:
        translate(-50%, -50%)
        rotate(45deg);
}

.route-picker__close span:last-child {
    transform:
        translate(-50%, -50%)
        rotate(-45deg);
}

.route-picker__close:hover,
.route-picker__close:focus-visible {
    color: var(--color-black);
    background: var(--color-pink);
    transform: rotate(6deg) scale(1.06);
}

.route-picker__close:focus-visible {
    outline: 3px solid var(--color-black);
    outline-offset: 3px;
}

.route-picker__eyebrow {
    margin:
        0
        48px
        8px
        0;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .14em;
}

.route-picker__title {
    max-width: 330px;
    margin:
        0
        48px
        9px
        0;
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    line-height: .92;
    text-transform: uppercase;
}

.route-picker__description {
    max-width: 340px;
    margin:
        0
        0
        22px;
    color: rgba(17, 17, 17, .68);
    font-size: 14px;
    line-height: 1.4;
}

.route-picker__options {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.route-picker__option {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 0;
    min-height: 148px;
    padding: 18px 12px;
    color: var(--color-black);
    text-align: center;
    background: var(--color-white);
    border: 2px solid rgba(17, 17, 17, .16);
    border-radius: 18px;
    box-shadow: 0 5px 0 rgba(17, 17, 17, .12);
    touch-action: manipulation;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        transform var(--transition);
}

.route-picker__option:hover,
.route-picker__option:focus-visible {
    color: var(--color-black);
    background: var(--color-pink);
    border-color: var(--color-black);
    box-shadow: 0 7px 0 var(--color-black);
    transform: translateY(-3px);
}

.route-picker__option:focus-visible {
    outline: 3px solid var(--color-black);
    outline-offset: 3px;
}

.route-picker__icon-shell {
    display: grid;
    flex: 0 0 auto;
    width: 66px;
    height: 66px;
    place-items: center;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid rgba(17, 17, 17, .10);
    border-radius: 17px;
    box-shadow: 0 5px 14px rgba(17, 17, 17, .13);
}

.route-picker__icon {
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.route-picker__option-text {
    display: block;
    min-width: 0;
}

.route-picker__option-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.route-picker__option-text small {
    display: block;
    margin-top: 5px;
    color: rgba(17, 17, 17, .60);
    font-size: 11px;
    line-height: 1;
}

.route-picker__note {
    margin:
        18px
        0
        0;
    color: rgba(17, 17, 17, .62);
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
}

.location-section small {
    display: block;
    margin-top: 24px;
    color: rgba(17, 17, 17, .66);
    font-size: 12px;
}

.location-section code {
    font-size: 11px;
}

.social-section {
    position: relative;
    display: grid;
    place-items: center;
    padding: clamp(58px, 8vh, 96px) 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(253, 200, 165, .72),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 82%,
            rgba(255, 255, 255, .92),
            transparent 34%
        ),
        var(--color-cream);
}

.social-section::before,
.social-section::after {
    position: absolute;
    z-index: 0;
    width: clamp(160px, 19vw, 300px);
    aspect-ratio: 1;
    content: "";
    border: 2px solid rgba(17, 17, 17, .08);
    border-radius: 50%;
    pointer-events: none;
}

.social-section::before {
    top: -90px;
    left: -72px;
}

.social-section::after {
    right: -92px;
    bottom: -110px;
}

.social-section__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(24px, 4vh, 42px);
    width: min(100% - 48px, 920px);
}

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

.social-section h2 {
    margin: 0;
    font-size: clamp(58px, 7vw, 102px);
    line-height: .88;
}

.social-section__subtitle {
    margin: 14px 0 0;
    font-family: var(--font-display);
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.instagram-showcase {
    display: grid;
    grid-template-columns:
        minmax(145px, .34fr)
        minmax(0, 1fr);
    gap: 18px;
    width: min(100%, 780px);
    margin: 0 auto;
}

.instagram-showcase__logo {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    min-height: 260px;
    padding: 24px;
    color: var(--color-white);
    text-align: center;
    background: var(--color-black);
    border: 2px solid var(--color-black);
    border-radius: 28px;
    box-shadow:
        0 10px 0 var(--color-pink),
        0 24px 44px rgba(17, 17, 17, .16);
    transform: rotate(-2deg);
    transition:
        box-shadow var(--transition),
        transform var(--transition);
}

.instagram-showcase__logo::before {
    position: absolute;
    inset: 10px;
    content: "";
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 19px;
    pointer-events: none;
}

.instagram-showcase__logo:hover,
.instagram-showcase__logo:focus-visible {
    box-shadow:
        0 13px 0 var(--color-pink),
        0 28px 48px rgba(17, 17, 17, .22);
    transform:
        translateY(-4px)
        rotate(0deg);
}

.instagram-showcase__logo:focus-visible {
    outline: 3px solid var(--color-black);
    outline-offset: 5px;
}

.instagram-showcase__logo svg {
    display: block;
    width: clamp(68px, 8vw, 98px);
    height: auto;
}

.instagram-showcase__logo > span {
    position: relative;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
}

.instagram-profile-card {
    display: flex;
    min-width: 0;
    padding: clamp(22px, 3vw, 34px);
    color: var(--color-black);
    background: rgba(255, 255, 255, .94);
    border: 2px solid var(--color-black);
    border-radius: 28px;
    box-shadow:
        0 10px 0 var(--color-black),
        0 24px 44px rgba(17, 17, 17, .12);
    flex-direction: column;
    justify-content: space-between;
    transition:
        box-shadow var(--transition),
        transform var(--transition);
}

.instagram-profile-card:hover,
.instagram-profile-card:focus-visible {
    box-shadow:
        0 13px 0 var(--color-black),
        0 28px 48px rgba(17, 17, 17, .18);
    transform: translateY(-4px);
}

.instagram-profile-card:focus-visible {
    outline: 3px solid var(--color-pink);
    outline-offset: 5px;
}

.instagram-profile-card__header {
    display: flex;
    align-items: center;
    gap: 17px;
    min-width: 0;
}

.instagram-profile-card__avatar-ring {
    display: grid;
    flex: 0 0 auto;
    width: 86px;
    height: 86px;
    padding: 4px;
    place-items: center;
    background:
        conic-gradient(
            from 215deg,
            #ffd600,
            #ff7a00,
            #ff0169,
            #d300c5,
            #7638fa,
            #ffd600
        );
    border-radius: 50%;
}

.instagram-profile-card__avatar {
    width: 100%;
    height: 100%;
    padding: 3px;
    overflow: hidden;
    background: var(--color-white);
    border-radius: 50%;
}

.instagram-profile-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.instagram-profile-card__identity {
    min-width: 0;
}

.instagram-profile-card__identity strong {
    display: block;
    overflow: hidden;
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 32px);
    font-weight: 700;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.instagram-profile-card__identity span {
    display: block;
    margin-top: 7px;
    color: rgba(17, 17, 17, .58);
    font-size: 13px;
    line-height: 1.35;
}

.instagram-profile-card__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 28px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(17, 17, 17, .12);
    border-bottom: 1px solid rgba(17, 17, 17, .12);
}

.instagram-profile-card__stats div {
    min-width: 0;
    text-align: center;
}

.instagram-profile-card__stats div + div {
    border-left: 1px solid rgba(17, 17, 17, .12);
}

.instagram-profile-card__stats strong {
    display: block;
    overflow: hidden;
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.instagram-profile-card__stats span {
    display: block;
    margin-top: 6px;
    color: rgba(17, 17, 17, .58);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.instagram-profile-card__action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 50px;
    padding: 12px 18px;
    color: var(--color-black);
    background: var(--color-pink);
    border: 2px solid var(--color-black);
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.instagram-profile-card__action span:last-child {
    font-size: 24px;
    line-height: 1;
    transition: transform var(--transition);
}

.instagram-profile-card:hover
.instagram-profile-card__action span:last-child,
.instagram-profile-card:focus-visible
.instagram-profile-card__action span:last-child {
    transform: translateX(5px);
}

.social-section__microcopy {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(17, 17, 17, .62);
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
}

.site-footer {
    padding: 88px 0 24px;
    color: var(--color-white);
    background: var(--color-black);
}

.site-footer__top {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(0, .8fr);
    gap: 80px;
    padding-bottom: 80px;
}

.site-footer__brand img {
    width: min(100%, 260px);
    margin-bottom: 28px;
}

.site-footer__brand p {
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
}

.site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.site-footer__links h2 {
    margin-bottom: 18px;
    color: var(--color-pink);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer__links a {
    display: block;
    width: fit-content;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
    color: var(--color-white);
    text-decoration: underline;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    color: rgba(255, 255, 255, .52);
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.site-footer__bottom p {
    margin: 0;
}

/* =========================================================
   UNIFORME DESKTOPBANNERS
   Iedere hoofdsectie gebruikt exact de zichtbare hoogte
   onder de mededelingenbalk en navbar.
   ========================================================= */

@media (min-width: 861px) {
    .hero,
    .intro-section,
    .popular-section,
    .manifesto-section,
    .location-section,
    .social-section {
        width: 100%;
        height: var(--section-height);
        min-height: 0;
        max-height: var(--section-height);
        overflow: hidden;
    }

    .hero {
        margin-top: var(--top-bars-height);
    }

    /* Banner 2: intro */
    .intro-section__visual,
    .intro-section__copy {
        height: 100%;
        min-height: 0;
    }

    .intro-section__copy {
        padding:
            clamp(28px, 4.8vh, 54px)
            clamp(40px, 6vw, 96px);
    }

    .intro-section__copy h2 {
        margin-bottom: clamp(14px, 2.2vh, 24px);
        font-size: clamp(40px, 6.8vh, 80px);
    }

    .intro-section__copy > p:not(.eyebrow) {
        margin-bottom: clamp(14px, 2vh, 22px);
        font-size: clamp(15px, 1.8vh, 18px);
        line-height: 1.45;
    }

    /* Banner 3: favorieten */
    .popular-section {
        display: grid;
        grid-template-rows:
            auto
            minmax(0, 1fr)
            auto;
        padding:
            clamp(24px, 3.8vh, 44px)
            0
            clamp(20px, 3vh, 34px);
    }

    .popular-section .section-heading {
        margin-bottom: clamp(14px, 2vh, 24px);
    }

    .popular-section .section-heading h2 {
        font-size: clamp(38px, 5.8vh, 68px);
        line-height: .92;
    }

    .popular-section .section-heading .eyebrow {
        margin-bottom: clamp(8px, 1.4vh, 16px);
    }

    .product-slider {
        align-items: stretch;
        height: 100%;
        min-height: 0;
        padding-bottom: 0;
    }

    .product-card {
        display: grid;
        grid-template-rows:
            minmax(0, 1fr)
            auto;
        height: 100%;
        min-height: 0;
    }

    .product-card__image {
        height: auto;
        min-height: 0;
    }

    .product-card__body {
        padding-top: clamp(10px, 1.7vh, 18px);
    }

    .product-card h3 {
        font-size: clamp(16px, 1.9vh, 19px);
    }

    .product-card p,
    .product-card__price {
        font-size: clamp(12px, 1.55vh, 14px);
    }

    .popular-section__footer {
        margin-top: clamp(12px, 1.8vh, 22px);
        padding-top: clamp(12px, 1.8vh, 20px);
    }

    /* Banner 4: over Moodz */
    .manifesto-section {
        display: flex;
        align-items: flex-start;
        padding:
            clamp(38, 5.0vh, 62px)
            0
            clamp(34px, 4.8vh, 58px);
    }

    .manifesto-section__content {
        width: min(100% - 64px, var(--container));
    }

    .manifesto-section .eyebrow {
        margin-bottom: clamp(14px, 1.8vh, 22px);
    }

    .manifesto-section h2 {
        max-width: 1100px;
        margin-bottom: clamp(30px, 4.2vh, 48px);
        font-size: clamp(46px, 7.2vh, 92px);
        line-height: .9;
    }

    .manifesto-section__grid {
        gap: clamp(52px, 9vw, 120px);
    }

    .manifesto-section__grid > p {
        font-size: clamp(16px, 2.1vh, 22px);
        line-height: 1.5;
    }

    .manifesto-section__grid li {
        gap: 40px;
        padding: clamp(20px, 2.5vh, 22px) 0;
        font-size: clamp(15px, 1.9vh, 18px);
    }

    .manifesto-story-link {
        min-height: clamp(110px, 16vh, 126px);
        margin-top: clamp(30px, 4vh, 46px);
    }

    /* Banner 5: locatie */
    .location-section {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(390px, .85fr);
    }

    .location-section__maps-button {
        top: 12px;
        left: 12px;
        width: clamp(182px, 20vw, 295px);
        min-width: 0;
        height: clamp(50px, 6vw, 70px);
        min-height: 0;
        padding: 11px 18px;
        font-size: 20px;
    }

    .location-section__map,
    .location-section__card {
        height: 100%;
        min-height: 0;
    }

    .location-section__card {
        padding:
            clamp(28px, 4.5vh, 52px)
            clamp(38px, 5.5vw, 84px);
    }

    .location-section__card .eyebrow {
        margin-bottom: clamp(10px, 1.6vh, 18px);
    }

    .location-section h2 {
        margin-bottom: clamp(16px, 2.4vh, 26px);
        font-size: clamp(42px, 6.4vh, 76px);
    }

    .location-section__address {
        margin-bottom: clamp(18px, 2.7vh, 30px);
        font-size: clamp(16px, 1.9vh, 19px);
    }

    .opening-hours {
        margin-bottom: clamp(18px, 2.7vh, 30px);
    }

    .opening-hours div {
        padding: clamp(9px, 1.35vh, 14px) 0;
    }

    .location-section small {
        margin-top: clamp(14px, 2vh, 22px);
    }

    /* Banner 6: Instagram-profiel */
    .social-section {
        display: grid;
        place-items: center;
        padding:
            clamp(28px, 4.5vh, 52px)
            0;
    }

    .social-section__content {
        gap: clamp(18px, 3vh, 34px);
    }

    .social-section h2 {
        font-size: clamp(54px, 7vh, 88px);
    }

    .instagram-showcase__logo,
    .instagram-profile-card {
        min-height: clamp(230px, 34vh, 310px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .location-section__maps-button {
        animation: none;
    }
}
