:root {
    --bg: #efebe9;
    --ink: #111111;
    --taupe: #504a4b;
    --sand: #988c7b;
    --mist: #c3bcb2;
    --hero-surface-rgb: 239, 235, 233;
    --hero-surface: rgb(var(--hero-surface-rgb));
    --video-stage: #111111;
    --editorial-left-guide: clamp(8rem, 16vw, 18rem);
    --editorial-right-guide: calc(100vw - min(47vw, 54rem));
    --footer-left-column-width: clamp(18rem, 25vw, 24rem);
    --footer-right-column-width: clamp(18rem, 24vw, 28rem);
    --font-ui: "vinila", "Helvetica Neue", Arial, sans-serif;
    --shell: min(86vw, 74rem);
    --shell-wide: min(92vw, 96rem);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-soft: 0 32px 90px rgba(17, 17, 17, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background-color: var(--bg);
    background: var(--bg);
    font-family: var(--font-ui);
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.is-loading {
    overflow: hidden;
}

body.is-loading .landing-page {
    height: 100svh;
    overflow: hidden;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: clamp(2rem, 5vw, 4rem);
    background: #efebe9;
    color: var(--taupe);
    isolation: isolate;
    opacity: 1;
    visibility: visible;
    transition:
        opacity 0.85s var(--ease),
        visibility 0s linear 0.85s;
}

body.is-loaded .preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__inner {
    display: grid;
    justify-items: center;
    gap: clamp(1.1rem, 1.8vw, 1.55rem);
    text-align: center;
}

.preloader__logo,
.preloader__media-slot {
    opacity: 0;
    transform: translateY(0.9rem);
}

body.is-loading .preloader__logo {
    animation: preloader-rise 0.95s var(--ease) 0.08s forwards;
}

body.is-loading .preloader__media-slot {
    animation: preloader-rise 0.95s var(--ease) 0.18s forwards;
}

.preloader__logo {
    width: clamp(8.25rem, 12vw, 11rem);
}

.preloader__media-slot {
    position: relative;
    width: clamp(7.5rem, 13vw, 10.5rem);
    min-height: clamp(2.6rem, 5vw, 4.2rem);
    display: grid;
    place-items: center;
}

.preloader__progress,
.preloader__gif {
    grid-area: 1 / 1;
}

.preloader__progress {
    width: clamp(4.75rem, 8.5vw, 6.8rem);
    height: 1px;
    background: rgba(80, 74, 75, 0.18);
    overflow: hidden;
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.preloader__progress-bar {
    display: block;
    width: 42%;
    height: 100%;
    background: rgba(80, 74, 75, 0.86);
    transform: translateX(-130%);
}

body.is-loading .preloader__progress-bar {
    animation: preloader-bar 1.25s ease-in-out infinite;
}

.preloader__gif {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    opacity: 0;
    transform: translateY(0.35rem) scale(0.985);
    transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
}

.preloader.is-gif-ready .preloader__progress {
    opacity: 0;
    transform: translateY(-0.15rem);
}

.preloader.is-gif-ready .preloader__gif {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes preloader-rise {
    from {
        opacity: 0;
        transform: translateY(0.9rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preloader-bar {
    0% {
        transform: translateX(-130%);
    }

    100% {
        transform: translateX(320%);
    }
}

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

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

button {
    color: inherit;
}

.section-shell {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
}

.section-shell--wide {
    width: 100vw;
    max-width: 100vw;
}

.landing-page {
    overflow-x: clip;
}

.hero {
    position: relative;
    width: 100vw;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(3rem, 5vw, 4.5rem);
    background-color: var(--hero-surface);
    isolation: isolate;
    z-index: 2;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(18rem, 30vh, 24rem);
    transform: translateY(58%);
    background: linear-gradient(180deg, rgba(var(--hero-surface-rgb), 1) 0%, rgba(var(--hero-surface-rgb), 1) 28%, rgba(var(--hero-surface-rgb), 0.992) 48%, rgba(var(--hero-surface-rgb), 0.94) 66%, rgba(var(--hero-surface-rgb), 0.78) 80%, rgba(var(--hero-surface-rgb), 0.42) 92%, rgba(var(--hero-surface-rgb), 0) 100%);
    pointer-events: none;
}

.hero__group {
    display: grid;
    justify-items: center;
    gap: clamp(3.25rem, 6vw, 4.25rem);
    opacity: 0;
    transform: translateY(3rem);
}

body.is-ready .hero__group {
    animation: intro-reveal 1.15s var(--ease) 0.4s forwards;
}

.hero__logo {
    width: clamp(6.6rem, 12vw, 12rem);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.hero__video-frame {
    width: clamp(4.8rem, 8.6vw, 7.2rem);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.hero__video-frame::after {
    content: "";
    position: absolute;
    inset: auto 10% -12% 10%;
    height: 22%;
    background: radial-gradient(circle, rgba(17, 17, 17, 0.14) 0%, rgba(17, 17, 17, 0) 72%);
    filter: blur(1.8rem);
    pointer-events: none;
}

.hero__video {
    width: 100%;
    opacity: 1;
    filter: none;
}

.hero__arrow {
    display: inline-grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.hero__arrow img {
    width: 0.95rem;
}

body.is-ready .hero__arrow {
    animation: arrow-float 2.8s ease-in-out 1.4s infinite;
}

.video-experience {
    position: relative;
    height: 300svh;
    margin-top: -10svh;
    background-color: var(--video-stage);
}

.video-experience__sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    display: grid;
    align-items: stretch;
    overflow: hidden;
    background-color: var(--video-stage);
}

.video-experience__frame {
    --sequence-opacity: 1;
    width: 100vw;
    position: relative;
    height: 100%;
    background-color: var(--video-stage);
}

.video-experience__canvas,
.video-experience__poster {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: var(--sequence-opacity);
    transition: opacity 0.24s linear;
}

.video-experience__canvas {
    display: block;
    background: var(--video-stage);
    box-shadow: none;
}

.video-experience__poster {
    object-fit: cover;
    object-position: center bottom;
    background-color: var(--video-stage);
    transition: opacity 0.35s linear;
}

@media (min-width: 72.01rem) {
    .video-experience__poster {
        width: auto;
        max-width: min(38vw, 32rem);
        height: min(82vh, 42rem);
        max-height: 82vh;
        top: 50%;
        left: 58%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        object-fit: contain;
        object-position: center center;
    }
}

.video-experience__frame.is-sequence-ready .video-experience__poster {
    opacity: 0;
    pointer-events: none;
}

.video-experience__overlay {
    --overlay-opacity: 0;
    --overlay-shift: 2rem;
    --copy-opacity: 0;
    --copy-shift: 2rem;
    --brand-opacity: 0;
    --brand-shift: 2rem;
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: var(--footer-left-column-width) minmax(0, 1fr);
    grid-template-rows: 9vh auto 1fr auto 9vh;
    align-items: stretch;
    padding: 0;
    padding-inline: var(--editorial-left-guide) clamp(1.5rem, 4vw, 4rem);
    color: var(--bg);
    z-index: 2;
    pointer-events: none;
}

.video-experience__copy {
    display: grid;
    gap: 0.15rem;
    width: min(100%, var(--footer-left-column-width));
    max-width: 100%;
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
    align-self: start;
    opacity: var(--copy-opacity);
    transform: translateY(var(--copy-shift));
    transition: opacity 0.35s linear, transform 0.45s var(--ease);
}

.video-experience__eyebrow,
.video-experience__year {
    margin: 0;
    font-size: clamp(1rem, 1.35vw, 1.45rem);
    font-weight: 300;
    color: rgba(239, 235, 233, 0.82);
    letter-spacing: 0.01em;
}

.video-experience__title {
    margin: 0;
    font-size: clamp(1.55rem, 2.55vw, 2.6rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.video-experience__brand {
    width: clamp(7.7rem, 15.4vw, 12.6rem);
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
    align-self: end;
    opacity: var(--brand-opacity);
    transform: translateY(var(--brand-shift));
    transition: opacity 0.35s linear, transform 0.45s var(--ease);
}

.product-marquee {
    width: 100vw;
    min-height: calc(clamp(35.5rem, 42vw, 45.5rem) - 6.25rem);
    display: grid;
    align-items: center;
    background: #988c7b;
    padding: clamp(3.5rem, 6vw, 5rem) 0;
    overflow: hidden;
}

.product-marquee,
.story,
.focus-gallery,
.footer {
    content-visibility: auto;
}

.product-marquee,
.story,
.footer {
    contain-intrinsic-size: 960px;
}

.focus-gallery {
    contain-intrinsic-size: 100vh;
}

.product-marquee__viewport {
    width: 100vw;
    overflow: visible;
    padding: clamp(1.75rem, 3vw, 2.5rem) clamp(2.75rem, 4vw, 4.5rem);
    touch-action: pan-y;
}

.product-marquee__track {
    display: flex;
    align-items: center;
    gap: clamp(6rem, 12vw, 12rem);
    width: max-content;
    animation: marquee 28s linear infinite;
    will-change: transform;
}

.product-marquee.is-touch-drag .product-marquee__viewport {
    overflow: hidden;
}

.product-marquee.is-touch-drag .product-marquee__track {
    animation: none;
    transform: translate3d(var(--marquee-offset, 0px), 0, 0);
}

.product-marquee.is-paused .product-marquee__track,
.product-marquee__viewport:hover .product-marquee__track {
    animation-play-state: paused;
}

.product-card {
    flex: 0 0 auto;
    width: clamp(6.76rem, 10.4vw, 10.92rem);
    margin: 0;
    position: relative;
    transform-origin: center center;
    transition: transform 0.65s var(--ease), opacity 0.45s var(--ease), filter 0.45s var(--ease);
    cursor: pointer;
    will-change: transform;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    outline: none;
}

.product-card img {
    width: 100%;
    height: auto;
    pointer-events: none;
    -webkit-user-drag: none;
}

.product-card:focus,
.product-card:active {
    outline: none;
}

.product-card:hover,
.product-card.is-spotlight {
    transform: scale(1.25);
    z-index: 2;
}

.story {
    position: relative;
    width: 100vw;
    height: 94vh;
    display: block;
    overflow: hidden;
    padding: clamp(3rem, 5vw, 4rem) min(43vw, 48rem) clamp(3rem, 5vw, 4rem) var(--editorial-left-guide);
}

.story__text {
    --story-copy-width: min(100%, 48rem);
    display: grid;
    align-content: center;
    justify-items: start;
    width: min(100%, clamp(34rem, 48vw, 54rem));
    max-width: 100%;
    min-height: 100%;
    margin-inline: 0;
    row-gap: 0;
    padding-top: 0;
    position: relative;
    z-index: 1;
}

.story__mark {
    width: auto;
    height: 40px;
    margin-bottom: clamp(3rem, 5vw, 4.75rem);
    justify-self: start;
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 1.2s var(--ease), transform 1.35s var(--ease);
    transition-delay: 0.18s;
}

.story.is-visible .story__mark {
    opacity: 1;
    transform: translateY(0);
}

.line-sequence {
    display: grid;
    gap: 0.25rem;
    overflow: hidden;
    justify-items: start;
}

.story__headline {
    width: var(--story-copy-width);
    max-width: var(--story-copy-width);
    margin-bottom: clamp(0.7rem, 1vw, 1rem);
}

.line-sequence__line {
    display: block;
    opacity: 0;
    transform: translateY(110%);
    transition: opacity 0.7s var(--ease), transform 0.95s var(--ease);
    transition-delay: calc(var(--line-index) * 0.12s);
}

.story .line-sequence__line {
    transition: opacity 1.05s var(--ease), transform 1.45s var(--ease);
    transition-delay: calc(var(--line-index) * 0.18s);
}

.story.is-visible .story__headline .line-sequence__line,
.story.is-visible .story__copy .line-sequence__line {
    opacity: 1;
    transform: translateY(0);
}

.story__headline .line-sequence__line {
    font-family: "vinila", "Helvetica Neue", Arial, sans-serif;
    font-size: 16pt;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.012em;
    text-transform: uppercase;
    white-space: normal;
}

.story__copy {
    width: var(--story-copy-width);
    max-width: var(--story-copy-width);
}

.story__copy .line-sequence__line {
    font-family: "vinila", "Helvetica Neue", Arial, sans-serif;
    font-size: 11pt;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.008em;
    color: rgba(17, 17, 17, 0.88);
    text-align: justify;
    text-align-last: left;
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.story__copy .line-sequence__line {
    transition-delay: calc(0.42s + (var(--line-index) * 0.16s));
}

.story__meta,
[data-reveal-up] {
    opacity: 0;
    transform: translateY(1.6rem);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.story.is-visible .story__meta,
[data-reveal-up].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.story__meta {
    display: grid;
    gap: 0.15rem;
    width: var(--story-copy-width);
    margin-top: clamp(2.8rem, 4.8vw, 4.4rem);
    transition: opacity 1.15s var(--ease), transform 1.25s var(--ease);
    transition-delay: 1s;
}

.story__reference,
.story__size {
    margin: 0;
    font-family: "vinila", "Helvetica Neue", Arial, sans-serif;
    font-size: 10pt;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: rgba(17, 17, 17, 0.76);
}

.story__media {
    position: absolute;
    top: 0;
    right: 0;
    width: min(43vw, 48rem);
    height: 100%;
    opacity: 0;
    transform: translateX(4.5rem);
    transition: opacity 1.2s var(--ease), transform 1.55s var(--ease);
    transition-delay: 0.34s;
    pointer-events: none;
    will-change: transform, opacity;
}

.story.is-visible .story__media {
    opacity: 1;
    transform: translateX(0);
}

.story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 74% center;
    box-shadow: none;
}

.focus-gallery {
    width: 100vw;
    height: 100vh;
    padding: 0;
}

.focus-gallery__track {
    display: flex;
    align-items: stretch;
    height: 100%;
    overflow: hidden;
}

.focus-panel {
    position: relative;
    flex: 1 1 25%;
    min-width: 0;
    overflow: hidden;
    margin: 0;
    cursor: pointer;
    isolation: isolate;
    transition: flex 0.85s var(--ease);
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
    outline: none;
}

.focus-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.22) 100%);
    opacity: 0.32;
    transition: opacity 0.5s var(--ease);
}

.focus-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.02);
    transform-origin: center center;
    transition: transform 0.8s var(--ease), filter 0.45s var(--ease);
    will-change: transform;
    pointer-events: none;
    -webkit-user-drag: none;
}

.focus-panel:focus,
.focus-panel:active {
    outline: none;
}

.focus-gallery__track:hover .focus-panel {
    flex: 0.82 1 0%;
}

.focus-gallery__track:hover .focus-panel img {
    filter: saturate(0.92);
}

.focus-gallery__track:hover .focus-panel:hover,
.focus-panel.is-active {
    flex: 1.55 1 0%;
}

.focus-gallery__track:hover .focus-panel:hover img,
.focus-panel.is-active img {
    transform: scale(1.1);
    filter: saturate(1);
}

.focus-gallery__track:hover .focus-panel:hover::after,
.focus-panel.is-active::after {
    opacity: 0.08;
}

.footer {
    width: 100vw;
    display: grid;
    grid-template-columns:
        var(--footer-left-column-width)
        minmax(0, calc(var(--editorial-right-guide) - var(--editorial-left-guide) - var(--footer-left-column-width)))
        var(--footer-right-column-width);
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "intro . logo"
        "media . cta";
    column-gap: 0;
    row-gap: clamp(0.9rem, 2vw, 1.6rem);
    align-items: start;
    height: 108vh;
    padding: clamp(3.25rem, 6vw, 4.75rem) 0 clamp(5rem, 9vw, 6.5rem);
    padding-inline: var(--editorial-left-guide) clamp(1.5rem, 4vw, 4rem);
}

.footer__intro {
    grid-area: intro;
    width: min(100%, var(--footer-left-column-width));
    max-width: 100%;
    position: relative;
    z-index: 1;
    align-self: end;
}

.footer__eyebrow {
    margin: 0 0 0.7rem;
    font-size: clamp(1rem, 1.35vw, 1.45rem);
    font-weight: 300;
    color: rgba(17, 17, 17, 0.72);
    letter-spacing: 0.01em;
}

.footer__title {
    margin: 0;
    font-size: clamp(1.55rem, 2.55vw, 2.6rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.footer__media {
    grid-area: media;
    width: min(100%, var(--footer-left-column-width));
    aspect-ratio: 0.72;
    overflow: hidden;
    background: rgba(17, 17, 17, 0.04);
    align-self: end;
}

.footer__media img,
.footer__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer__cta {
    grid-area: cta;
    display: grid;
    justify-items: center;
    align-self: end;
    justify-self: center;
    width: min(100%, 22.4rem);
    text-align: center;
}

.footer__delivery {
    margin: 0 0 1.25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(1rem, 1.2vw, 1.3rem);
    font-weight: 300;
    color: rgba(17, 17, 17, 0.72);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, clamp(12.8rem, 24vw, 20.8rem));
    min-height: clamp(3.28rem, 4.8vw, 4.64rem);
    padding: 0.72rem 2.24rem;
    background: transparent;
    border: 1px solid rgba(17, 17, 17, 0.72);
    color: var(--ink);
    text-decoration: none;
    font-size: clamp(0.9rem, 1.05vw, 1.16rem);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.contact-button:hover,
.contact-button:focus-visible,
.contact-button:active {
    background: #988c7b;
    color: #efebe9;
    border-color: #988c7b;
    outline: none;
    transform: translateY(-0.15rem);
}

.footer__logo {
    grid-area: logo;
    width: clamp(7.7rem, 15.4vw, 12.6rem);
    margin-top: 0;
    justify-self: center;
    align-self: end;
}

@keyframes intro-reveal {
    from {
        opacity: 0;
        transform: translateY(3rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes arrow-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(0.45rem);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 72rem) {
    .video-experience__overlay {
        grid-template-columns: minmax(0, 1fr) auto;
        padding: clamp(3rem, 6vw, 4rem) 2.2rem 0;
        padding-inline: 2.2rem;
    }

    .video-experience__copy {
        width: min(100%, 18rem);
    }

    .video-experience__brand {
        grid-column: 2;
        justify-self: end;
    }

    .story {
        height: 90vh;
        padding-left: clamp(4rem, 6vw, 6rem);
        padding-right: min(40vw, 30rem);
    }

    .story__text {
        width: min(100%, 38rem);
        min-height: 100%;
        margin-inline: auto;
        --story-copy-width: min(100%, 38rem);
    }

    .story__media {
        width: min(38vw, 28rem);
    }

    .story__headline .line-sequence__line {
        text-wrap: balance;
    }

    .story__meta {
        margin-top: clamp(2.5rem, 4vw, 3.4rem);
    }

    .footer {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: auto auto 1fr auto;
        grid-template-areas:
            "intro cta"
            "media cta"
            ". cta"
            "logo logo";
        column-gap: 2.5rem;
        row-gap: 2.5rem;
        height: 106vh;
    }

    .footer__media {
        max-width: 19rem;
    }

    .footer__logo {
        justify-self: end;
    }
}

@media (max-width: 48rem) {
    :root {
        --shell: min(90vw, 90vw);
        --shell-wide: min(100vw, 100vw);
        --mobile-gutter: 50px;
        --mobile-column: calc(100vw - (var(--mobile-gutter) * 2));
        --mobile-video-stage-height: 100svh;
    }

    .preloader__logo {
        width: min(42vw, 8.1rem);
    }

    .preloader__media-slot {
        width: min(42vw, 8.6rem);
        min-height: min(18vw, 3.6rem);
    }

    .hero {
        min-height: 92svh;
        padding-top: 4rem;
    }

    .hero__logo {
        width: min(31.2vw, 8.64rem);
        margin-bottom: 0;
    }

    .hero__video-frame {
        width: min(19vw, 5rem);
    }

    .hero__arrow {
        margin-top: 0;
    }

    .video-experience {
        height: 190svh;
        margin-top: -7svh;
    }

    .video-experience__sticky,
    .video-experience__frame {
        width: 100vw;
        min-width: 100vw;
        max-width: 100vw;
        height: var(--mobile-video-stage-height);
        margin-inline: calc(50% - 50vw);
    }

    .video-experience__frame::after {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: clamp(13rem, 34svh, 20rem);
        background: linear-gradient(180deg, #111111 0%, rgba(17, 17, 17, 0.94) 16%, rgba(17, 17, 17, 0.62) 48%, rgba(17, 17, 17, 0) 100%);
        z-index: 1;
        pointer-events: none;
    }

    .video-experience__canvas,
    .video-experience__poster {
        width: 100vw;
        max-width: 100vw;
        height: var(--mobile-video-stage-height);
        left: 50%;
        transform: translateX(-50%);
        transform-origin: center bottom;
    }

    .video-experience__poster {
        object-fit: contain;
        object-position: center bottom;
    }

    .video-experience__overlay {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.25rem;
        padding-top: clamp(6rem, 14svh, 8.5rem);
        padding-left: var(--mobile-gutter);
        padding-right: var(--mobile-gutter);
    }

    .video-experience__copy {
        width: min(100%, var(--mobile-column));
    }

    .video-experience__brand {
        opacity: 0;
        visibility: hidden;
    }

    .product-marquee {
        min-height: calc(24rem - 6.25rem);
        padding: 2.75rem 0;
    }

    .product-marquee__viewport {
        padding: 1.35rem var(--mobile-gutter);
    }

    .product-marquee__track {
        gap: clamp(3.5rem, 9vw, 5.5rem);
    }

    .product-card {
        width: clamp(4.81rem, 14.56vw, 6.05rem);
    }

    .story__media {
        position: relative;
        top: auto;
        right: auto;
        width: 100vw;
        max-width: none;
        height: min(46svh, 24rem);
        margin-top: 0.2rem;
        margin-left: calc(var(--mobile-gutter) * -1);
        margin-right: calc(var(--mobile-gutter) * -1);
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        overflow: hidden;
        transform: translateX(3.75rem);
        transition: opacity 1s var(--ease), transform 1.25s var(--ease);
    }

    .story {
        height: 80vh;
        height: 80svh;
        padding-right: var(--mobile-gutter);
        padding-left: var(--mobile-gutter);
        padding-bottom: 0;
        display: grid;
        grid-template-rows: auto 1fr;
        align-content: start;
    }

    .story__text {
        width: min(100%, var(--mobile-column));
        min-height: auto;
        align-content: start;
        margin-inline: auto;
        --story-copy-width: min(100%, 24.5rem);
    }

    .story__headline .line-sequence__line {
        white-space: normal;
    }

    .story__headline {
        margin-bottom: 0.8rem;
    }

    .story__headline .line-sequence__line {
        font-size: 16pt;
        line-height: 1.12;
    }

    .story__copy {
        max-width: 100%;
    }

    .story__copy .line-sequence__line {
        font-size: 10.25pt;
        line-height: 1.58;
    }

    .story__meta {
        margin-top: 1.5rem;
    }

    .story__reference,
    .story__size {
        font-size: 12.5pt;
    }

    .story__media img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: right bottom;
    }

    .focus-gallery__track {
        height: 100%;
    }

    .focus-gallery {
        height: 30vh;
    }

    .footer {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "media"
            "cta"
            "logo";
        height: auto;
        padding-top: clamp(5rem, 13vw, 6.5rem);
        padding-bottom: 4rem;
        padding-left: var(--mobile-gutter);
        padding-right: var(--mobile-gutter);
        row-gap: 1.8rem;
    }

    .footer__intro,
    .footer__media,
    .footer__cta {
        width: min(100%, var(--mobile-column));
        margin-inline: auto;
        justify-self: center;
    }

    .footer__media {
        max-width: none;
    }

    .footer__logo {
        max-width: var(--mobile-column);
        margin-inline: auto;
        justify-self: center;
    }

    .contact-button {
        width: 100%;
        min-width: 0;
    }
}

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

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

    .product-marquee__track {
        animation: none;
    }
}
