.portrait-lock-overlay {
    position: fixed;
    inset: 0;
    z-index: 50000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    color: var(--color-white);
    text-align: center;
    background: var(--color-charcoal);
}

.portrait-lock-overlay__content {
    width: min(100%, 420px);
}

.portrait-lock-overlay__icon {
    display: block;
    margin-bottom: 20px;
    font-size: 56px;
    line-height: 1;
}

.portrait-lock-overlay__content strong {
    display: block;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: clamp(34px, 8vw, 52px);
    line-height: .95;
    text-transform: uppercase;
}

.portrait-lock-overlay__content p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    line-height: 1.5;
}

body.orientation-blocked {
    overflow: hidden !important;
}

body.orientation-blocked .portrait-lock-overlay {
    display: flex;
}

@media (max-width: 1100px) {
    .container {
        width: min(100% - 40px, var(--container));
    }

    .site-header {
        padding-inline: 22px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .intro-section__copy {
        padding:
            clamp(34px, 5vh, 58px)
            48px;
    }

    .location-section {
        grid-template-columns: 1fr 1fr;
    }

    .location-section__card {
        padding:
            clamp(34px, 5vh, 58px)
            42px;
    }
}

@media (max-width: 860px) {
    :root {
        --announcement-height: 28px;
        --header-height: 72px;
        --mobile-banner-height:
            calc(100dvh - var(--top-bars-height) + var(--snap-overlap));
    }

    html {
        scroll-padding-top: var(--top-bars-height);
        overscroll-behavior-y: none;
    }

    body {
        overscroll-behavior-y: none;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle,
    .mobile-menu {
        display: grid;
    }

    .site-header.is-scrolled .menu-toggle,
    body.menu-open .menu-toggle {
        color: var(--color-black);
    }

    body.menu-open .site-header {
        color: var(--color-black);
        background-color: var(--color-white);
        border-bottom: 1px solid rgba(17, 17, 17, .10);
        box-shadow: none;
    }

    /*
     * Alle mobiele banners krijgen exact dezelfde
     * zichtbare hoogte onder de twee vaste bovenbalken.
     */
    .hero,
    .intro-section,
    .popular-section,
    .manifesto-section,
    .location-section,
    .social-section {
        height: var(
            --mobile-banner-height,
            calc(100dvh - var(--top-bars-height) + var(--snap-overlap))
        );
        min-height: var(
            --mobile-banner-height,
            calc(100dvh - var(--top-bars-height) + var(--snap-overlap))
        );
        max-height: var(
            --mobile-banner-height,
            calc(100dvh - var(--top-bars-height) + var(--snap-overlap))
        );
        overflow: hidden;
        scroll-margin-top: var(--top-bars-height);
        contain: layout paint;
    }

    /*
     * Banner 1: videohero.
     */
    .hero {
        margin-top: var(--top-bars-height);
        padding:
            clamp(38px, 7vh, 68px)
            0
            clamp(58px, 9vh, 84px);
    }

    .hero__content {
        width: min(100% - 40px, 720px);
    }

    .hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 8, 8, .84),
                rgba(8, 8, 8, .34)
            ),
            linear-gradient(
                0deg,
                rgba(18, 18, 18, .58),
                transparent 52%
            );
    }

    .hero h1 {
        max-width: 680px;
        margin-bottom: clamp(14px, 2.3vh, 24px);
        font-size: clamp(44px, 9.5vw, 72px);
        line-height: .92;
        letter-spacing: -.04em;
    }

    .hero__intro {
        max-width: 480px;
        margin-bottom: clamp(18px, 3vh, 28px);
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.4;
    }

    .hero__actions {
        gap: 10px;
    }

    .hero__actions .button {
        min-height: 50px;
        padding: 13px 22px;
    }

    .hero__scroll {
        right: 20px;
        bottom: 18px;
    }

    /*
     * Banner 2: afbeelding boven, tekst onder.
     */
    .intro-section {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows:
            minmax(0, 43%)
            minmax(0, 57%);
    }

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

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

    .intro-section__badge {
        right: 20px;
        bottom: 16px;
        width: clamp(92px, 17vw, 124px);
    }

    .intro-section__badge strong {
        font-size: clamp(27px, 4vw, 34px);
    }

    .intro-section__badge span {
        font-size: 9px;
    }

    .intro-section__copy {
        width: 100%;
        height: 100%;
        min-height: 0;
        padding:
            clamp(20px, 3.5vh, 34px)
            clamp(24px, 5vw, 44px);
        overflow: hidden;
    }

    .intro-section__copy .eyebrow {
        margin-bottom: clamp(8px, 1.3vh, 14px);
    }

    .intro-section__copy h2 {
        margin-bottom: clamp(10px, 1.8vh, 18px);
        font-size: clamp(38px, 7.2vw, 58px);
        line-height: .94;
    }

    .intro-section__copy > p:not(.eyebrow) {
        max-width: 650px;
        margin-bottom: clamp(10px, 1.8vh, 18px);
        font-size: clamp(14px, 1.8vw, 17px);
        line-height: 1.4;
    }

    /*
     * Banner 3: populaire producten.
     */
    .popular-section {
        display: grid;
        grid-template-rows:
            auto
            minmax(0, 1fr)
            auto;
        padding:
            clamp(20px, 3.5vh, 32px)
            0
            clamp(16px, 2.5vh, 24px);
    }

    .section-heading {
        align-items: flex-end;
        flex-direction: row;
        width: min(100% - 40px, var(--container));
        margin-bottom: clamp(14px, 2.2vh, 22px);
    }

    .section-heading .eyebrow {
        margin-bottom: 7px;
    }

    .section-heading h2 {
        font-size: clamp(40px, 7.5vw, 60px);
        line-height: .92;
    }

    .slider-controls {
        display: flex;
        padding-bottom: 0;
    }

    .slider-button {
        width: 46px;
        height: 46px;
    }

    .product-slider {
        align-items: stretch;
        grid-auto-columns: minmax(235px, 42vw);
        gap: 14px;
        height: 100%;
        min-height: 0;
        padding:
            0
            20px
            10px;
    }

    .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 {
        min-height: 70px;
        padding: 12px 2px 0;
    }

    .product-card h3 {
        font-size: 16px;
    }

    .product-card p {
        font-size: 12px;
    }

    .popular-section__footer {
        width: min(100% - 40px, var(--container));
        margin-top: 10px;
        padding-top: 12px;
    }

    .popular-section__footer p {
        max-width: 520px;
        font-size: 12px;
    }

    .popular-section__footer .button {
        width: auto;
        min-height: 44px;
        padding: 10px 18px;
    }

    /*
     * Banner 4: over Moodz.
     */
    .manifesto-section {
        display: flex;
        align-items: flex-start;
        padding:
            clamp(50px, 5vh, 60px)
            0
            clamp(12px, 1.8vh, 20px);
    }

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

    .manifesto-section .eyebrow {
        margin-bottom: clamp(7px, 1.1vh, 12px);
    }

    .manifesto-section h2 {
        max-width: 720px;
        margin-bottom: clamp(14px, 2.2vh, 24px);
        font-size: clamp(46px, 8vw, 70px);
        line-height: .91;
    }

    .manifesto-section__grid {
        grid-template-columns: 1fr;
        gap: clamp(12px, 1.8vh, 18px);
    }

    .manifesto-section__grid > p {
        max-width: 680px;
        margin-bottom: 0;
        font-size: clamp(15px, 2vw, 19px);
        line-height: 1.42;
    }

    .manifesto-section__grid li {
        gap: 16px;
        padding: clamp(8px, 1.2vh, 12px) 0;
        font-size: clamp(14px, 1.9vw, 17px);
    }

    .manifesto-story-link {
        grid-template-columns:
            90px
            minmax(0, 1fr)
            42px;
        gap: 14px;
        min-height: 98px;
        margin-top: clamp(14px, 2vh, 22px);
        padding-right: 14px;
        border-radius: 21px;
    }

    .manifesto-story-link::before {
        width: 90px;
    }

    .manifesto-story-link__character {
        width: 90px;
    }

    .manifesto-story-link__character img {
        width: 106px;
        margin-bottom: -13px;
    }

    .manifesto-story-link__copy {
        padding:
            13px
            0;
    }

    .manifesto-story-link__copy strong {
        font-size: clamp(18px, 3.4vw, 24px);
    }

    .manifesto-story-link__arrow {
        width: 38px;
        height: 38px;
    }

    /*
     * Banner 5: locatie.
     * De gegevens staan boven en de kaart onder.
     */
    .location-section {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows:
            minmax(0, 58%)
            minmax(0, 42%);
        min-height: var(
            --mobile-banner-height,
            calc(100dvh - var(--top-bars-height) + var(--snap-overlap))
        );
    }

    .location-section__card {
        order: -1;
        width: 100%;
        height: 100%;
        min-height: 0;
        padding:
            clamp(20px, 3.5vh, 34px)
            clamp(24px, 5vw, 44px);
        overflow: hidden;
    }

    .location-section__card .eyebrow {
        margin-bottom: 8px;
    }

    .location-section h2 {
        margin-bottom: clamp(10px, 1.7vh, 18px);
        font-size: clamp(42px, 7.5vw, 62px);
        line-height: .92;
    }

    .location-section__address {
        margin-bottom: clamp(12px, 2vh, 20px);
        font-size: clamp(15px, 1.9vw, 18px);
    }

    .opening-hours {
        margin-bottom: clamp(12px, 2vh, 20px);
    }

    .opening-hours div {
        padding: clamp(7px, 1.1vh, 11px) 0;
    }

    .location-section__actions {
        gap: 8px;
    }

    .location-section__actions .button {
        width: auto;
        min-height: 44px;
        padding: 10px 18px;
    }

    .route-picker {
        padding:
            max(18px, env(safe-area-inset-top))
            18px
            max(18px, env(safe-area-inset-bottom));
    }

    .route-picker__panel {
        width: min(100%, 370px);
        padding:
            27px
            18px
            19px;
        border-radius: 21px;
        box-shadow:
            0 20px 54px rgba(0, 0, 0, .30),
            0 4px 0 var(--color-black);
    }

    .route-picker__close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }

    .route-picker__eyebrow {
        margin-right: 44px;
        margin-bottom: 7px;
        font-size: 10px;
    }

    .route-picker__title {
        margin-right: 44px;
        margin-bottom: 8px;
        font-size: clamp(30px, 8.5vw, 40px);
    }

    .route-picker__description {
        margin-bottom: 17px;
        font-size: 12px;
    }

    .route-picker__options {
        gap: 9px;
    }

    .route-picker__option {
        gap: 9px;
        min-height: 124px;
        padding: 14px 8px;
        border-radius: 15px;
    }

    .route-picker__icon-shell {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .route-picker__icon {
        width: 46px;
        height: 46px;
    }

    .route-picker__option-text strong {
        font-size: 15px;
    }

    .route-picker__option-text small {
        margin-top: 4px;
        font-size: 10px;
    }

    .route-picker__note {
        margin-top: 14px;
        font-size: 10px;
    }

    .location-section small {
        display: none;
    }

    .location-section__map {
        position: relative;
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
        overflow: hidden;
    }

    .location-section__leaflet-map {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
    }

    .location-section__leaflet-map .leaflet-control-attribution {
        padding: 2px 5px;
        font-size: 8px;
    }

    .location-section__maps-button {
        top: 7px;
        left: 5px;
        min-width: 75px;
        min-height: 42px;
        padding: 10px 13px;
        gap: 8px;
        font-size: 11px;
        border-radius: 5px;
        touch-action: manipulation;
    }

    .location-section__maps-icon {
        width: 19px;
        height: 19px;
    }

    /*
     * Banner 6: Instagram-profiel.
     */
    .social-section {
        display: flex;
        align-items: center;
        justify-content: center;
        padding:
            clamp(24px, 4vh, 38px)
            0;
    }

    .social-section__content {
        gap: clamp(18px, 2.8vh, 26px);
        width: min(100% - 32px, 560px);
    }

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

    .social-section h2 {
        font-size: clamp(42px, 12vw, 66px);
        line-height: .86;
    }

    .social-section__subtitle {
        margin-top: 10px;
        font-size: clamp(15px, 4.4vw, 20px);
    }

    .instagram-showcase {
        grid-template-columns:
            clamp(68px, 20vw, 88px)
            minmax(0, 1fr);
        gap: 10px;
        width: 100%;
    }

    .instagram-showcase__logo {
        min-height: 230px;
        padding: 10px;
        border-radius: 19px;
        box-shadow:
            0 7px 0 var(--color-pink),
            0 15px 28px rgba(17, 17, 17, .14);
        transform: rotate(-1.5deg);
    }

    .instagram-showcase__logo::before {
        inset: 6px;
        border-radius: 13px;
    }

    .instagram-showcase__logo svg {
        width: clamp(44px, 13vw, 58px);
    }

    .instagram-showcase__logo > span {
        display: none;
    }

    .instagram-profile-card {
        min-height: 230px;
        padding: 14px 12px;
        border-radius: 19px;
        box-shadow:
            0 7px 0 var(--color-black),
            0 15px 28px rgba(17, 17, 17, .11);
    }

    .instagram-profile-card__header {
        gap: 10px;
    }

    .instagram-profile-card__avatar-ring {
        width: 52px;
        height: 52px;
        padding: 3px;
    }

    .instagram-profile-card__avatar {
        padding: 2px;
    }

    .instagram-profile-card__identity strong {
        font-size: clamp(17px, 5vw, 22px);
    }

    .instagram-profile-card__identity span {
        margin-top: 4px;
        font-size: 9px;
        line-height: 1.25;
    }

    .instagram-profile-card__stats {
        margin: 13px 0;
        padding: 12px 0;
    }

    .instagram-profile-card__stats strong {
        font-size: clamp(16px, 4.8vw, 21px);
    }

    .instagram-profile-card__stats span {
        margin-top: 4px;
        font-size: 8px;
        letter-spacing: 0;
    }

    .instagram-profile-card__action {
        min-height: 40px;
        padding: 8px 11px;
        font-size: 10px;
    }

    .instagram-profile-card__action span:last-child {
        font-size: 19px;
    }

    .social-section__microcopy {
        max-width: 430px;
        margin: 0;
        font-size: 10px;
        text-align: left;
    }

    /*
     * Footer blijft een normale, vrij scrollbare sectie.
     */
    /*
     * Laatste banner: zwarte footer.
     */
    .site-footer[data-snap-section] {
        display: grid;
        grid-template-rows:
            minmax(0, 1fr)
            auto;
        width: 100%;
        height: var(
            --mobile-banner-height,
            calc(100dvh - var(--top-bars-height) + var(--snap-overlap))
        );
        min-height: var(
            --mobile-banner-height,
            calc(100dvh - var(--top-bars-height) + var(--snap-overlap))
        );
        max-height: var(
            --mobile-banner-height,
            calc(100dvh - var(--top-bars-height) + var(--snap-overlap))
        );
        padding: 0;
        overflow: hidden;
        scroll-margin-top: var(--top-bars-height);
        contain: layout paint;
    }

    .site-footer__top {
        display: grid;
        align-items: center;
        grid-template-columns:
            minmax(0, .9fr)
            minmax(0, 1.1fr);
        gap: clamp(28px, 6vw, 60px);
        width: min(100% - 48px, var(--container));
        height: 100%;
        min-height: 0;
        margin-inline: auto;
        padding:
            clamp(28px, 5vh, 52px)
            0
            clamp(18px, 3vh, 30px);
    }

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

    .site-footer__brand p {
        margin-bottom: 0;
        font-size: 16px;
        line-height: 1.45;
    }

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

    .site-footer__bottom {
        width: min(100% - 48px, var(--container));
        margin-inline: auto;
        padding: 16px 0 20px;
    }
}

@media (max-width: 600px) {
    :root {
        --announcement-height: 26px;
        --header-height: 70px;
    }

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

    .announcement {
        height: var(--announcement-height);
    }

    .announcement__track {
        animation-duration: 22s;
    }

    .announcement__group span {
        padding: 0 20px;
        font-size: 10px;
    }

    .site-header {
        top: var(--announcement-height);
        height: var(--header-height);
        padding-inline: 16px 8px;
    }

    .site-header.is-scrolled {
        height: var(--header-height);
    }

    .brand {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        width: fit-content;
        height: 120%;
        min-height: 0;
        padding: 0;
    }

    .brand__logo:nth-child(1) {
        width: auto;
        max-width: 110px;
        max-height: 75px;
    }

    .brand__logo:nth-child(2) {
        width: auto;
        max-width: 110px;
        max-height: 38px;
        margin-left: -5px;
    }

    .mobile-menu {
        inset:
            var(--announcement-height)
            0
            0;
    }

    .mobile-menu__inner {
        padding:
            calc(var(--header-height) + 32px)
            24px
            34px;
    }

    .mobile-menu__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    /*
     * Banner 1.
     */
    .hero {
        padding:
            clamp(30px, 5vh, 50px)
            0
            clamp(58px, 8vh, 76px);
    }

    .hero__content {
        width: min(100% - 32px, 520px);
    }

    .hero .eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
    }

    .hero h1 {
        margin-bottom: clamp(13px, 2vh, 20px);
        font-size: clamp(40px, 11.5vw, 58px);
        line-height: .94;
    }

    .hero__intro {
        max-width: 390px;
        margin-bottom: clamp(16px, 2.5vh, 24px);
        font-size: 15px;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        width: min(100%, 340px);
        gap: 8px;
    }

    .hero__actions .button {
        width: 100%;
        min-height: 46px;
        padding: 11px 18px;
    }

    .hero__scroll {
        right: 16px;
        bottom: max(14px, env(safe-area-inset-bottom));
        gap: 9px;
    }

    .hero__scroll span {
        display: inline-block;
        font-size: 10px;
        line-height: 1;
        letter-spacing: .04em;
        white-space: nowrap;
    }

    .hero__scroll svg {
        width: 24px;
        height: 24px;
        flex: 0 0 auto;
    }

    /*
     * Banner 2.
     */
    .intro-section {
        grid-template-rows:
            minmax(0, 41%)
            minmax(0, 59%);
    }

    .intro-section__copy {
        padding:
            clamp(17px, 2.8vh, 26px)
            20px;
    }

    .intro-section__copy .eyebrow {
        margin-bottom: 7px;
        font-size: 10px;
    }

    .intro-section__copy h2 {
        margin-bottom: clamp(9px, 1.4vh, 14px);
        font-size: clamp(34px, 9vw, 48px);
    }

    .intro-section__copy > p:not(.eyebrow) {
        margin-bottom: clamp(8px, 1.3vh, 14px);
        font-size: 13px;
        line-height: 1.38;
    }

    .intro-section__copy .text-link {
        font-size: 12px;
    }

    .intro-section__badge {
        right: 14px;
        bottom: 12px;
        width: 92px;
    }

    /*
     * Banner 3.
     */
    .popular-section {
        padding:
            clamp(16px, 2.5vh, 24px)
            0
            clamp(12px, 2vh, 18px);
    }

    .section-heading {
        align-items: flex-start;
        width: min(100% - 32px, var(--container));
        margin-bottom: 12px;
    }

    .section-heading h2 {
        font-size: clamp(35px, 9.5vw, 48px);
    }

    .slider-controls {
        display: none;
    }

    .product-slider {
        display: grid;
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        grid-template-rows:
            repeat(2, minmax(0, 1fr));
        grid-auto-columns: unset;
        grid-auto-flow: row;
        gap: 10px;
        width: min(100% - 32px, var(--container));
        height: 100%;
        min-height: 0;
        margin-inline: auto;
        padding: 0;
        overflow: hidden;
        scroll-snap-type: none;
    }

    .product-card {
        display: grid;
        grid-template-rows:
            minmax(0, 1fr)
            auto;
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
        overflow: hidden;
        scroll-snap-align: none;
    }

    .product-card__image {
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    .product-card__image img {
        display: block;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        padding: 8px;
        object-fit: contain;
        object-position: center;
    }

    .product-card__body {
        align-items: flex-start;
        gap: 6px;
        min-height: 48px;
        padding:
            7px
            2px
            0;
    }

    .product-card h3 {
        margin-bottom: 2px;
        font-size: 12px;
        line-height: 1.15;
    }

    .product-card p {
        display: none;
    }

    .product-card__price {
        flex: 0 0 auto;
        font-size: 11px;
        line-height: 1.15;
    }

    .product-card__tag {
        top: 7px;
        left: 7px;
        padding: 5px 8px;
        font-size: 8px;
    }

    .popular-section__footer {
        align-items: center;
        flex-direction: row;
        width: min(100% - 32px, var(--container));
        gap: 8px;
        margin-top: 6px;
        padding-top: 7px;
    }

    .popular-section__footer p {
        display: none;
    }

    .popular-section__footer .button {
        width: 100%;
    }

    /*
     * Banner 4.
     * De volledige inhoud wordt verticaal gebalanceerd,
     * met meer lucht tussen alle onderdelen.
     */
    .manifesto-section {
        align-items: center;
        padding:
            clamp(32px, 4.5vh, 44px)
            0;
    }

    .manifesto-section__content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: min(100% - 40px, var(--container));
    }

    .manifesto-section .eyebrow {
        margin-bottom: 13px;
        font-size: 9px;
    }

    .manifesto-section h2 {
        margin-bottom: clamp(23px, 3vh, 30px);
        font-size: clamp(36px, 9.8vw, 50px);
        line-height: .94;
    }

    .manifesto-section__grid {
        grid-template-columns: 1fr;
        gap: clamp(28px, 3.8vh, 38px);
    }

    .manifesto-section__grid > p {
        font-size: 13px;
        line-height: 1.58;
    }

    .manifesto-section__grid ul {
        margin: 0;
    }

    .manifesto-section__grid li {
        gap: 14px;
        padding:
            clamp(14px, 1.5vh, 15px)
            0;
        font-size: 13px;
        line-height: 1.35;
    }

    .manifesto-story-link {
        grid-template-columns:
            80px
            minmax(0, 1fr)
            36px;
        gap: 13px;
        min-height: 102px;
        margin-top: clamp(34px, 4.6vh, 46px);
        padding:
            7px
            13px
            7px
            0;
        border-radius: 18px;
        box-shadow:
            0 6px 0 var(--color-pink),
            0 13px 25px rgba(0, 0, 0, .22);
    }

    .manifesto-story-link::before {
        width: 80px;
    }

    .manifesto-story-link__character {
        width: 80px;
    }

    .manifesto-story-link__character img {
        width: 94px;
        margin-bottom: -10px;
        transform:
            translateY(5px)
            rotate(0deg);
    }

    .manifesto-story-link__copy {
        padding:
            17px
            0;
    }

    .manifesto-story-link__label {
        margin-bottom: 8px;
        font-size: 7px;
        letter-spacing: .12em;
    }

    .manifesto-story-link__copy strong {
        font-size: clamp(14px, 4.2vw, 18px);
        line-height: 1.1;
    }

    .manifesto-story-link__arrow {
        width: 34px;
        height: 34px;
    }

    .manifesto-story-link__arrow svg {
        width: 17px;
        height: 17px;
    }

    /*
     * Banner 5.
     */
    .location-section {
        grid-template-rows:
            minmax(0, 60%)
            minmax(0, 40%);
    }

    .location-section__card {
        padding:
            clamp(17px, 2.7vh, 26px)
            20px;
    }

    .location-section__card .eyebrow {
        margin-bottom: 6px;
        font-size: 10px;
    }

    .location-section h2 {
        margin-bottom: 9px;
        font-size: clamp(36px, 9.5vw, 49px);
    }

    .location-section__address {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .opening-hours {
        margin-bottom: 10px;
    }

    .opening-hours div {
        align-items: center;
        flex-direction: row;
        gap: 12px;
        padding: 6px 0;
    }

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

    .location-section__actions {
        flex-direction: row;
    }

    .location-section__actions .button {
        flex: 1 1 0;
        min-width: 0;
        padding-inline: 10px;
        font-size: 11px;
    }
	
    .location-section__maps-icon {
        width: 19px;
        height: 19px;
    }

    /*
     * Banner 6.
     */
    .social-section {
        padding:
            clamp(16px, 2.5vh, 24px)
            0
            0;
    }

    .social-section__heading {
        align-items: flex-start;
        width: min(100% - 32px, var(--container));
        margin-bottom: 12px;
    }

    .social-section h2 {
        font-size: clamp(32px, 8vw, 44px);
    }

    .social-section__heading .text-link {
        font-size: 11px;
    }

    /*
     * Laatste mobiele banner:
     * Moodz-logo, Ontdek, Contact en copyright.
     */
    .site-footer[data-snap-section] {
        padding: 0;
    }

    .site-footer__top {
        align-content: center;
        grid-template-columns: 1fr;
        gap: clamp(22px, 4vh, 34px);
        width: min(100% - 40px, var(--container));
        padding:
            clamp(22px, 4vh, 38px)
            0
            12px;
    }

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

    .site-footer__brand p {
        font-size: 14px;
        line-height: 1.4;
    }

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

    .site-footer__links h2 {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .site-footer__links a {
        margin-bottom: 7px;
        font-size: 13px;
    }

    .site-footer__bottom {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        width: min(100% - 40px, var(--container));
        gap: 12px;
        padding: 12px 0 16px;
        font-size: 10px;
    }
}

/*
 * Extra compacte aanpassingen voor korte telefoons,
 * zoals kleinere iPhones en toestellen met veel browser-UI.
 */
@media (max-width: 600px) and (max-height: 720px) {
    .hero .eyebrow {
        margin-bottom: 8px;
    }

    .hero h1 {
        font-size: clamp(36px, 10.5vw, 50px);
    }

    .hero__intro {
        margin-bottom: 14px;
        font-size: 14px;
    }

    .hero__actions .button {
        min-height: 42px;
        padding-block: 9px;
    }

    .intro-section {
        grid-template-rows:
            minmax(0, 38%)
            minmax(0, 62%);
    }

    .intro-section__copy h2 {
        font-size: clamp(31px, 8.3vw, 43px);
    }

    .intro-section__copy > p:not(.eyebrow) {
        font-size: 12px;
    }

    .section-heading h2 {
        font-size: clamp(32px, 8.7vw, 44px);
    }

    .product-card__body {
        min-height: 56px;
    }

    .manifesto-section {
        align-items: center;
        padding:
            18px
            0;
    }

    .manifesto-section h2 {
        margin-bottom: 15px;
        font-size: clamp(32px, 8.8vw, 44px);
    }

    .manifesto-section__grid {
        gap: 30px;
    }

    .manifesto-section__grid > p,
    .manifesto-section__grid li {
        font-size: 12px;
    }

    .manifesto-section__grid > p {
        line-height: 1.46;
    }

    .manifesto-section__grid li {
        padding:
            7px
            0;
    }

    .manifesto-story-link {
        grid-template-columns:
            68px
            minmax(0, 1fr)
            30px;
        gap: 9px;
        min-height: 82px;
        margin-top: 30px;
        padding:
            5px
            9px
            5px
            0;
        border-radius: 16px;
    }

    .manifesto-story-link::before {
        width: 68px;
    }

    .manifesto-story-link__character {
        width: 68px;
    }

    .manifesto-story-link__character img {
        width: 80px;
        margin-bottom: -9px;
    }

    .manifesto-story-link__copy {
        padding:
            11px
            0;
    }

    .manifesto-story-link__copy strong {
        font-size: clamp(13px, 3.8vw, 16px);
        line-height: 1.08;
    }

    .manifesto-story-link__arrow {
        width: 29px;
        height: 29px;
    }

    .location-section {
        grid-template-rows:
            minmax(0, 63%)
            minmax(0, 37%);
    }

    .location-section h2 {
        font-size: clamp(33px, 8.7vw, 44px);
    }

    .opening-hours div {
        padding: 5px 0;
    }
	
    .site-footer__top {
        gap: 16px;
        padding:
            18px
            0
            8px;
    }

    .site-footer__brand img {
        width: 155px;
        margin-bottom: 8px;
    }

    .site-footer__brand p {
        font-size: 12px;
    }

    .site-footer__links {
        gap: 18px;
    }

    .site-footer__links h2 {
        margin-bottom: 7px;
    }

    .site-footer__links a {
        margin-bottom: 5px;
        font-size: 12px;
    }

    .site-footer__bottom {
        padding:
            9px
            0
            12px;
        font-size: 9px;
    }	

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}