/* Story page only. */
body.page-story {
    background: linear-gradient(180deg, #f6fafe 0%, #edf4fb 100%);
}

.story {
    position: relative;
    overflow: clip;
    padding: 18px 0 96px;
    background:
        radial-gradient(circle at 14% 10%, rgba(86, 140, 215, 0.16), transparent 24%),
        radial-gradient(circle at 86% 76%, rgba(161, 185, 214, 0.18), transparent 28%),
        linear-gradient(rgba(24, 22, 20, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 22, 20, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, #f6fafe 0%, #edf4fb 100%);
    background-size: auto, auto, 120px 120px, 120px 120px, auto;
}

.story__hero,
.story__timeline,
.story__closing {
    width: min(1400px, calc(100% - 56px));
    margin: 0 auto;
}

.story__hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.02fr);
    gap: clamp(24px, 4vw, 72px);
    align-items: center;
    padding: clamp(72px, 10vh, 132px) 0 clamp(72px, 8vh, 110px);
}

.story__hero-copy {
    display: grid;
    gap: 22px;
    max-width: 680px;
}

.story__title {
    margin: 0;
    font-family: "Libre Franklin", sans-serif;
    font-size: clamp(3rem, 7.4vw, 6.2rem);
    font-weight: 800;
    letter-spacing: -0.09em;
    line-height: 0.84;
    text-transform: uppercase;
    color: #111111;
}

.story__lead {
    margin: 0;
    max-width: 56ch;
    font-size: clamp(1rem, 1.6vw, 1.16rem);
    line-height: 1.75;
    color: rgba(24, 22, 20, 0.72);
}

.story__note {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(24, 22, 20, 0.54);
}

.story__hero-film {
    position: relative;
    min-height: clamp(340px, 36vw, 450px);
    padding: 0;
    border: 0;
    border-radius: 34px 140px 34px 140px;
    overflow: hidden;
    background: #0c1118;
    box-shadow: 0 34px 94px rgba(18, 14, 10, 0.16);
    cursor: pointer;
    transform: rotate(-1deg);
}

.story__hero-film::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(6, 9, 14, 0.78) 0%, rgba(6, 9, 14, 0.54) 26%, rgba(6, 9, 14, 0.18) 48%, rgba(6, 9, 14, 0) 68%),
        linear-gradient(0deg, rgba(6, 9, 14, 0.7) 0%, rgba(6, 9, 14, 0.22) 38%, rgba(6, 9, 14, 0.04) 58%, rgba(6, 9, 14, 0) 74%);
    pointer-events: none;
}

.story__hero-film::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5, 8, 14, 0.02) 0%, rgba(5, 8, 14, 0.44) 100%);
    pointer-events: none;
}

.story-stop__media::after,
.story-destination::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 8, 14, 0.01) 0%, rgba(5, 8, 14, 0.08) 58%, rgba(5, 8, 14, 0.42) 100%);
    pointer-events: none;
}

.story__hero-film img,
.story__hero-film video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    transform: scale(1.06);
    filter: brightness(0.84) saturate(0.96);
}

.story__hero-film-meta {
    position: absolute;
    inset: auto auto 38px 52px;
    z-index: 2;
    display: grid;
    gap: 10px;
    justify-items: start;
    width: min(368px, calc(100% - 124px));
    color: #f5f8fc;
    text-align: left;
}

.story__hero-film-kicker,
.story-stop__index,
.story-stop__mile {
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.story__hero-film-meta strong {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 0.96;
}

.story__hero-film-meta small {
    max-width: 26ch;
    font-size: 0.98rem;
    line-height: 1.42;
    color: rgba(245, 248, 252, 0.84);
}

.story__timeline {
    position: relative;
    padding: 118px 0 168px;
}

.story__road {
    position: absolute;
    inset: -272px -5vw 0 5vw;
    z-index: 0;
    pointer-events: none;
    opacity: 0.44;
    background: url("../images/story-road.svg") center top / 100% 100% no-repeat;
}

.story-stop {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) clamp(76px, 8vw, 112px) minmax(0, 0.92fr);
    column-gap: clamp(12px, 2.2vw, 30px);
    align-items: center;
    min-height: clamp(320px, 42vh, 430px);
    scroll-margin-top: 120px;
}

.story-stop + .story-stop {
    margin-top: clamp(72px, 10vh, 140px);
}

.story-stop--left .story-stop__copy {
    grid-column: 1;
    justify-self: end;
    margin-right: 34px;
}

.story-stop--left .story-stop__media {
    grid-column: 3;
    justify-self: start;
    border-radius: 30px 132px 30px 94px;
    transform: rotate(-0.3deg);
}

.story-stop--right .story-stop__copy {
    grid-column: 3;
    justify-self: start;
    margin-left: 34px;
}

.story-stop--right .story-stop__media {
    grid-column: 1;
    justify-self: end;
    border-radius: 132px 30px 94px 30px;
    transform: rotate(0.3deg);
}

.story-stop__copy {
    position: relative;
    z-index: 1;
    grid-row: 1;
    width: min(100%, 520px);
    display: grid;
    gap: 16px;
    padding: 18px 0 10px;
    align-content: start;
    isolation: isolate;
}

.story-stop__copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    pointer-events: none;
    filter: blur(30px);
    opacity: 0.98;
}

.story-stop--left .story-stop__copy::before {
    inset: -54px -40px -64px -86px;
    background:
        radial-gradient(circle at 40% 44%, rgba(247, 251, 255, 0.99) 0%, rgba(247, 251, 255, 0.97) 44%, rgba(247, 251, 255, 0.88) 66%, rgba(247, 251, 255, 0.52) 82%, rgba(247, 251, 255, 0) 100%);
}

.story-stop--right .story-stop__copy::before {
    inset: -54px -86px -64px -40px;
    background:
        radial-gradient(circle at 60% 44%, rgba(247, 251, 255, 0.99) 0%, rgba(247, 251, 255, 0.97) 44%, rgba(247, 251, 255, 0.88) 66%, rgba(247, 251, 255, 0.52) 82%, rgba(247, 251, 255, 0) 100%);
}

.story-stop__media:hover,
.story-destination:hover {
    transform: translateY(-4px);
}

.story-stop--left .story-stop__media:hover {
    transform: rotate(-0.3deg) translateY(-4px);
}

.story-stop--right .story-stop__media:hover {
    transform: rotate(0.3deg) translateY(-4px);
}

.story-stop__top {
    display: flex;
    align-items: flex-end;
    gap: 12px 18px;
    flex-wrap: wrap;
}

.story-stop__wash {
    position: absolute;
    top: -2px;
    left: 0;
    z-index: -1;
    font-family: "Libre Franklin", sans-serif;
    font-size: clamp(4rem, 7.4vw, 6.6rem);
    font-weight: 800;
    letter-spacing: -0.1em;
    line-height: 0.92;
    color: rgba(17, 17, 17, 0.05);
    pointer-events: none;
    user-select: none;
}

.story-stop__stamp,
.story-stop__mile {
    color: rgba(24, 22, 20, 0.46);
}

.story-stop__stamp {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.story-stop__copy h2 {
    margin: 0;
    font-family: "Libre Caslon Display", serif;
    font-size: clamp(1.82rem, 2.6vw, 2.4rem);
    line-height: 0.98;
    font-weight: 400;
    max-width: 16ch;
}

.story-stop__copy p {
    margin: 0;
}

.story-stop__text {
    max-width: 42ch;
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(24, 22, 20, 0.84);
}

.story-stop__accent {
    max-width: 30ch;
    font-family: "Libre Caslon Display", serif;
    font-size: clamp(1.04rem, 1.4vw, 1.24rem);
    line-height: 1.22;
    color: rgba(24, 22, 20, 0.96);
}

.story-stop__meta {
    max-width: 42ch;
    font-size: 0.7rem;
    line-height: 1.5;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(24, 22, 20, 0.6) !important;
}

.story-stop__media {
    position: relative;
    z-index: 1;
    grid-row: 1;
    width: min(100%, 640px);
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #0c1118;
    cursor: pointer;
    box-shadow: 0 20px 52px rgba(16, 12, 9, 0.14);
    transition: transform 220ms ease, box-shadow 220ms ease;
    contain: layout paint;
}

.story-stop__media img,
.story-stop__media video {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    filter: brightness(1) saturate(0.98);
}

.story-stop__media-cta {
    position: absolute;
    inset: auto auto 24px 24px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(12, 17, 24, 0.62);
    border: 1px solid rgba(247, 250, 253, 0.18);
    color: #f5f8fc;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.38);
}

.story-stop__media-cta::after {
    content: "";
    width: 44px;
    height: 1px;
    background: rgba(247, 250, 253, 0.72);
}

.story-stop--left .story-stop__media-cta {
    inset: auto auto 24px 38px;
}

.story-stop--right .story-stop__media-cta {
    inset: auto auto 24px 24px;
}

.story-stop__link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    justify-self: start;
    margin-top: 6px;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111111;
}

.story-stop__link::after {
    content: "";
    width: 52px;
    height: 1px;
    background: rgba(24, 22, 20, 0.38);
    transition: transform 180ms ease, background 180ms ease;
}

.story-stop__link:hover::after {
    transform: scaleX(1.16);
    background: rgba(24, 22, 20, 0.62);
}

.story-stop__marker {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    display: grid;
    justify-items: center;
    gap: 10px;
    width: 100%;
}

.story-stop__ping {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #f7fbff;
    border: 4px solid rgba(72, 94, 132, 0.28);
    box-shadow: 0 12px 28px rgba(48, 58, 75, 0.14);
}

.story-stop__ping::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    background: rgba(125, 163, 207, 0.16);
    animation: storyPingPulse 2.8s ease-out infinite;
}

.story__closing {
    position: relative;
    z-index: 1;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.08fr);
    gap: clamp(40px, 5vw, 72px);
    align-items: center;
    margin-top: clamp(18px, 3vh, 42px);
}

.story__closing-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 22px;
    max-width: 700px;
}

.story__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.story__actions .button--primary {
    border: 1px solid rgba(54, 72, 104, 0.2);
    background: linear-gradient(135deg, #30456a 0%, #415a86 100%);
    color: #f5f8fc;
    box-shadow: 0 18px 34px rgba(48, 69, 106, 0.18);
}

.story__actions .button--ghost {
    border-color: rgba(54, 72, 104, 0.22);
    background: rgba(255, 255, 255, 0.32);
}

.story__destinations {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
    margin-top: clamp(-74px, -6vw, -34px);
}

.story-destination {
    position: relative;
    min-height: clamp(286px, 26vw, 360px);
    overflow: hidden;
    border: 2px solid rgba(245, 248, 252, 0.82);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(245, 248, 252, 0.16) 0 2px, transparent 2px 16px),
        linear-gradient(180deg, #28303a 0%, #151b22 100%);
    box-shadow: 0 24px 60px rgba(28, 38, 52, 0.18);
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
    contain: layout paint;
}

.story-destination:nth-child(even) {
    border-radius: 8px;
}

.story-destination:nth-child(1) {
    margin-top: 22px;
}

.story-destination:nth-child(2) {
    margin-top: -10px;
}

.story-destination:nth-child(3) {
    margin-top: 34px;
}

.story-destination:nth-child(4) {
    margin-top: 10px;
}

.story-destination img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    filter: brightness(0.72) saturate(0.82) contrast(1.08);
}

.story-destination::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 1;
    border: 2px solid rgba(245, 248, 252, 0.82);
    border-top: 0;
    background:
        linear-gradient(90deg, transparent 0 44%, rgba(245, 248, 252, 0.74) 44% 56%, transparent 56% 100%) center 18px / 34px 2px no-repeat,
        linear-gradient(90deg, rgba(245, 248, 252, 0.82), rgba(245, 248, 252, 0.82)) center calc(100% - 24px) / 58px 5px no-repeat;
    pointer-events: none;
}

.story-destination::after {
    content: attr(data-parking);
    position: absolute;
    inset: 22px 22px auto auto;
    z-index: 1;
    background: none;
    font-family: "Libre Franklin", sans-serif;
    font-size: clamp(2.1rem, 4vw, 4.6rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1;
    color: rgba(245, 248, 252, 0.32);
    text-shadow: 0 1px 0 rgba(14, 18, 24, 0.18);
    pointer-events: none;
}

.story-destination__overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: grid;
    gap: 10px;
    align-content: end;
    padding: 24px;
    color: #f8f3ea;
    background: linear-gradient(180deg, rgba(10, 15, 21, 0) 0%, rgba(10, 15, 21, 0.76) 100%);
}

.story-destination__overlay p,
.story-destination__overlay h3 {
    margin: 0;
}

.story-destination__overlay h3 {
    font-family: "Libre Caslon Display", serif;
    font-size: 2.08rem;
    line-height: 0.94;
    font-weight: 400;
}

.story-destination__overlay p {
    max-width: 15ch;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes storyPingPulse {
    0% {
        opacity: 0.52;
        transform: scale(0.74);
    }

    70% {
        opacity: 0;
        transform: scale(1.86);
    }

    100% {
        opacity: 0;
        transform: scale(1.92);
    }
}

@keyframes heroFloat {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@media (min-width: 1680px) {
    .story__hero,
    .story__timeline,
    .story__closing {
        width: min(1520px, calc(100% - 88px));
    }

    .story__hero {
        gap: clamp(40px, 5vw, 92px);
    }

    .story-stop {
        grid-template-columns: minmax(0, 0.84fr) 118px minmax(0, 0.98fr);
        min-height: clamp(340px, 40vh, 470px);
    }

    .story-stop__copy {
        width: min(100%, 560px);
    }

    .story-stop__media {
        width: min(100%, 720px);
    }
}

@media (max-width: 1360px) {
    .story__hero,
    .story__timeline,
    .story__closing {
        width: min(1280px, calc(100% - 44px));
    }

    .story__hero {
        grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
        gap: clamp(22px, 3vw, 42px);
    }

    .story-stop {
        grid-template-columns: minmax(0, 0.92fr) clamp(64px, 7vw, 86px) minmax(0, 0.98fr);
        column-gap: clamp(10px, 1.8vw, 20px);
        min-height: 360px;
    }

    .story-stop__copy {
        width: min(100%, 480px);
    }

    .story-stop__copy h2 {
        font-size: clamp(1.74rem, 2.35vw, 2.2rem);
    }

    .story-stop__media {
        width: min(100%, 580px);
    }
}
@media (max-width: 1180px) {
    .story__hero {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-top: 24px;
        padding-bottom: 78px;
    }

    .story__hero-copy {
        max-width: 760px;
    }

    .story__hero-film {
        width: min(100%, 920px);
        justify-self: center;
        transform: none;
        border-radius: 28px 112px 28px 96px;
    }

    .story__timeline {
        padding: 86px 0 136px;
    }

    .story__road {
        inset: -220px 0 0 0;
    }

    .story-stop {
        grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
        min-height: 340px;
    }

    .story-stop--left .story-stop__copy,
    .story-stop--right .story-stop__copy {
        margin-left: 0;
        margin-right: 0;
    }

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

    .story-destination:nth-child(n) {
        margin-top: 0;
    }

    .story-destination:nth-child(2) {
        margin-top: 28px;
    }

    .story-destination:nth-child(4) {
        margin-top: 28px;
    }

    .story__closing {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .story__destinations {
        margin-top: 0;
    }
}

@media (max-width: 980px) {
    .story__hero {
        gap: 24px;
        padding-top: 12px;
        padding-bottom: 64px;
    }

    .story__hero-film {
        width: min(100%, 820px);
        min-height: 300px;
    }

    .story__timeline {
        padding: 64px 0 118px;
    }

    .story__road {
        inset: -176px 0 0 0;
    }

    .story-stop {
        grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
        min-height: 320px;
    }

    .story-stop__copy {
        width: min(100%, 440px);
    }

    .story-stop__copy h2 {
        font-size: clamp(1.66rem, 3.5vw, 2.04rem);
        max-width: 15ch;
    }

    .story-stop__text {
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .story-stop__accent {
        max-width: 26ch;
    }

    .story-stop__media {
        width: min(100%, 520px);
        aspect-ratio: 16 / 10;
    }

    .story-stop__media img,
    .story-stop__media video {
        height: 100%;
    }

    .story__destinations {
        gap: 16px;
        margin-top: 0;
    }
}

@media (max-width: 820px) {
    .story {
        background-size: auto, auto, 82px 82px, 82px 82px, auto;
    }

    .story__hero,
    .story__timeline,
    .story__closing {
        width: min(100%, calc(100% - 28px));
    }

    .story__hero {
        padding-top: 18px;
        padding-bottom: 58px;
    }

    .story__road {
        display: none;
    }

    .story__timeline {
        padding: 38px 0 86px;
    }

    .story__timeline::before {
        content: "";
        position: absolute;
        inset: 12px auto 12px 18px;
        width: 34px;
        border-radius: 999px;
        background: rgba(49, 54, 69, 0.58);
        box-shadow: 0 16px 36px rgba(125, 163, 207, 0.16);
    }

    .story__timeline::after {
        content: "";
        position: absolute;
        inset: 18px auto 18px 34px;
        width: 2px;
        background: repeating-linear-gradient(
            to bottom,
            rgba(244, 248, 255, 0.96) 0 14px,
            transparent 14px 28px
        );
    }

    .story-stop {
        grid-template-columns: 72px minmax(0, 1fr);
        min-height: unset;
        align-items: start;
    }

    .story-stop + .story-stop {
        margin-top: 48px;
    }

    .story-stop__marker {
        grid-column: 1;
        grid-row: 1;
        padding-top: 10px;
    }

    .story-stop__copy {
        grid-column: 2 !important;
        grid-row: 1;
        width: 100%;
        justify-self: stretch;
        padding: 10px 0 6px;
        gap: 10px;
    }

    .story-stop__copy::before,
    .story-stop--left .story-stop__copy::before,
    .story-stop--right .story-stop__copy::before {
        inset: -34px -26px -42px -34px;
        background:
            radial-gradient(circle at 50% 44%, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.94) 48%, rgba(247, 251, 255, 0.8) 68%, rgba(247, 251, 255, 0) 92%);
        filter: blur(18px);
    }

    .story-stop__wash {
        top: -2px;
        left: -2px;
        font-size: clamp(3.6rem, 14vw, 5.8rem);
    }

    .story-stop__media {
        grid-column: 2 !important;
        grid-row: 2;
        width: 100%;
        justify-self: stretch !important;
        margin-top: 18px;
        transform: none !important;
        border-radius: 26px 92px 26px 74px !important;
    }

    .story-stop__media-cta,
    .story-stop--left .story-stop__media-cta,
    .story-stop--right .story-stop__media-cta {
        inset: auto auto 18px 18px;
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.72rem;
    }

    .story-stop__mile {
        display: none;
    }

    .story-stop__copy h2,
    .story-stop__text,
    .story-stop__accent,
    .story-stop__meta {
        max-width: none;
    }

    .story__closing {
        gap: 38px;
    }

    .story__destinations {
        grid-template-columns: 1fr;
    }

    .story-destination:nth-child(n) {
        margin-top: 0;
    }
}

    .story__hero {
        padding-top: 14px;
    }

    .story__hero-copy {
        gap: 14px;
    }

    .story__title {
        font-size: clamp(2.5rem, 11vw, 4.4rem);
    }

    .story__lead {
        font-size: 0.97rem;
        line-height: 1.7;
    }

    .story__note {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .story__hero-film {
        min-height: 240px;
        border-radius: 24px 72px 24px 56px;
    }

    .story__hero-film video {
        object-position: center 48%;
        transform: scale(1.03);
    }

    .story__hero-film-meta {
        inset: auto auto 24px 28px;
        width: min(312px, calc(100% - 56px));
    }

    .story__hero-film-meta small {
        max-width: 24ch;
        font-size: 0.92rem;
    }

    .story-stop__copy {
        gap: 12px;
    }

    .story-stop__copy h2 {
        font-size: clamp(1.58rem, 8vw, 1.96rem);
    }

    .story-stop__text {
        font-size: 0.95rem;
        line-height: 1.68;
    }

    .story-stop__accent {
        font-size: 1rem;
    }

    .story-stop__meta {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
    }

    .story-stop__media {
        border-radius: 22px 72px 22px 54px !important;
        aspect-ratio: 16 / 11;
    }

    .story-stop__media img,
    .story-stop__media video {
        height: 100%;
    }

    .story__destinations {
        grid-template-columns: 1fr;
    }

    .story-destination {
        min-height: 320px;
        border-radius: 8px;
    }

    .story-destination:nth-child(even) {
        border-radius: 8px;
    }

    .story-destination:nth-child(n) {
        margin-top: 0;
    }
@media (max-width: 560px) {
    .story {
        padding: 14px 0 76px;
        background-size: auto, auto, 64px 64px, 64px 64px, auto;
    }

    .story__hero,
    .story__timeline,
    .story__closing {
        width: min(100%, calc(100% - 20px));
    }

    .story__hero {
        gap: 24px;
        padding-top: 12px;
        padding-bottom: 48px;
    }

    .story__title {
        font-size: clamp(2rem, 12vw, 3.1rem);
    }

    .story__lead {
        font-size: 0.94rem;
        line-height: 1.66;
    }

    .story__hero-film {
        min-height: 200px;
        border-radius: 22px 58px 22px 46px;
    }

    .story__hero-film video {
        object-position: center 50%;
        transform: scale(1.02);
    }

    .story__hero-film-meta {
        inset: auto auto 16px 18px;
        width: min(242px, calc(100% - 40px));
        gap: 6px;
    }

    .story__hero-film-kicker {
        font-size: 0.66rem;
    }

    .story__hero-film-meta strong {
        font-size: clamp(1.08rem, 5vw, 1.4rem);
    }

    .story__hero-film-meta small {
        max-width: 20ch;
        font-size: 0.84rem;
    }

    .story__timeline {
        padding: 34px 0 82px;
    }

    .story__timeline::before {
        inset: 10px auto 10px 12px;
        width: 26px;
    }

    .story__timeline::after {
        inset: 16px auto 16px 24px;
    }

    .story-stop {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .story-stop + .story-stop {
        margin-top: 36px;
    }

    .story-stop__marker {
        padding-top: 8px;
    }

    .story-stop__ping {
        width: 16px;
        height: 16px;
        border-width: 3px;
        box-shadow: 0 10px 22px rgba(48, 58, 75, 0.12);
    }

    .story-stop__ping::before {
        inset: -8px;
    }

    .story-stop__copy {
        padding: 8px 0 4px;
        gap: 9px;
    }

    .story-stop__copy::before,
    .story-stop--left .story-stop__copy::before,
    .story-stop--right .story-stop__copy::before {
        inset: -24px -18px -30px -22px;
        filter: blur(12px);
    }

    .story-stop__top {
        gap: 8px 12px;
    }

    .story-stop__stamp {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .story-stop__wash {
        top: 0;
        font-size: clamp(3rem, 18vw, 4.4rem);
    }

    .story-stop__copy h2 {
        font-size: clamp(1.44rem, 7vw, 1.82rem);
    }

    .story-stop__text {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .story-stop__accent {
        font-size: 0.96rem;
        line-height: 1.18;
    }

    .story-stop__meta {
        font-size: 0.62rem;
        letter-spacing: 0.1em;
    }

    .story-stop__link {
        gap: 10px;
        margin-top: 4px;
        font-size: 0.68rem;
    }

    .story-stop__link::after {
        width: 34px;
    }

    .story-stop__media {
        margin-top: 14px;
        border-radius: 20px 56px 20px 42px !important;
        box-shadow: 0 16px 36px rgba(16, 12, 9, 0.12);
        aspect-ratio: 4 / 3;
    }

    .story-stop__media img,
    .story-stop__media video {
        height: 100%;
    }

    .story-stop__media-cta,
    .story-stop--left .story-stop__media-cta,
    .story-stop--right .story-stop__media-cta {
        inset: auto auto 14px 14px;
        min-height: 34px;
        padding: 0 12px;
        gap: 10px;
        font-size: 0.66rem;
    }

    .story-stop__media-cta::after {
        width: 28px;
    }

    .story__closing {
        gap: 30px;
    }

    .story__actions {
        gap: 12px;
    }

    .story__actions .button {
        min-height: 44px;
        padding: 0 18px;
    }

    .story__destinations {
        gap: 14px;
    }

    .story-destination {
        min-height: 300px;
        border-radius: 8px;
    }

    .story-destination:nth-child(even) {
        border-radius: 8px;
    }

    .story-destination__overlay {
        gap: 6px;
        padding: 18px;
    }

    .story-destination__overlay h3 {
        font-size: 1.72rem;
    }

    .story-destination__overlay p {
        font-size: 0.88rem;
        line-height: 1.48;
    }
}
@media (max-height: 780px) and (min-width: 821px) {
    .story {
        padding-bottom: 84px;
    }

    .story__hero {
        padding-top: 24px;
        padding-bottom: 34px;
    }

    .story__hero-film {
        min-height: 290px;
    }

    .story-stop {
        min-height: 300px;
    }

    .story-stop + .story-stop {
        margin-top: 36px;
    }
}

/* Closing parking slots */
@media (min-width: 981px) {
    .story__closing {
        grid-template-columns: minmax(360px, 0.74fr) minmax(620px, 1fr);
        align-items: center;
        gap: clamp(34px, 4vw, 64px);
    }

    .story__destinations {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(4, minmax(120px, 1fr));
        gap: clamp(10px, 1vw, 16px);
        margin-top: clamp(-156px, -8.6vw, -96px);
        align-items: stretch;
    }

    .story-destination {
        z-index: 1;
        min-height: 0;
        aspect-ratio: 0.56;
        border-radius: 6px;
        border: 1px solid rgba(245, 248, 252, 0.78);
        box-shadow: 0 16px 34px rgba(28, 38, 52, 0.14);
    }

    .story-destination:nth-child(n) {
        margin-top: 0;
    }

    .story-destination::before {
        inset: 10px 8px;
        border-width: 2px;
        border-top: 0;
        background:
            linear-gradient(90deg, rgba(245, 248, 252, 0.76), rgba(245, 248, 252, 0.76)) center 14px / 28px 2px no-repeat,
            linear-gradient(90deg, rgba(245, 248, 252, 0.84), rgba(245, 248, 252, 0.84)) center calc(100% - 18px) / 46px 4px no-repeat;
    }

    .story-destination::after {
        inset: 16px 14px auto auto;
        font-size: clamp(1.6rem, 2.2vw, 2.9rem);
        color: rgba(245, 248, 252, 0.26);
    }

    .story-destination__overlay {
        gap: 7px;
        padding: 18px 14px 20px;
    }

    .story-destination__overlay h3 {
        font-size: clamp(1.45rem, 1.7vw, 1.92rem);
    }

    .story-destination__overlay p {
        max-width: 13ch;
        font-size: clamp(0.78rem, 0.8vw, 0.9rem);
        line-height: 1.38;
    }

    .story-destination__overlay .eyebrow {
        font-size: clamp(0.58rem, 0.62vw, 0.72rem);
        letter-spacing: 0.16em;
    }
}

@media (min-width: 981px) and (max-width: 1260px) {
    .story__closing {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .story__destinations {
        width: min(100%, 760px);
        justify-self: center;
        margin-top: clamp(-116px, -9vw, -72px);
    }
}

/* Client revision: every page background stays plain white. */
body.page-story,
body.page-story main,
body.page-story .story,
body.page-story .story__timeline,
body.page-story .story-hero,
body.page-story .story-road,
body.page-story .story-final {
    background: #ffffff !important;
    background-image: none !important;
}

body.page-story .story::before,
body.page-story .story::after,
body.page-story .story__timeline::before,
body.page-story .story__timeline::after,
body.page-story .story-road::before,
body.page-story .story-road::after {
    content: none !important;
    background: none !important;
    background-image: none !important;
}

/* Client revision: restore grid background on story page. */
body.page-story {
    background: linear-gradient(180deg, #f6fafe 0%, #edf4fb 100%) !important;
}

body.page-story .story {
    background:
        radial-gradient(circle at 14% 10%, rgba(86, 140, 215, 0.16), transparent 24%),
        radial-gradient(circle at 86% 76%, rgba(161, 185, 214, 0.18), transparent 28%),
        linear-gradient(rgba(24, 22, 20, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 22, 20, 0.07) 1px, transparent 1px),
        linear-gradient(180deg, #f6fafe 0%, #edf4fb 100%) !important;
    background-size: auto, auto, 120px 120px, 120px 120px, auto !important;
}

/* Client revision: center the story CTA buttons horizontally. */
body.page-story .story__actions {
    justify-content: center;
}

/* Client revision: keep the story grid visible, with only light text halos. */
body.page-story main,
body.page-story .story__timeline {
    background: transparent !important;
    background-image: none !important;
}

body.page-story .story-stop__copy::before {
    filter: blur(22px);
    opacity: 0.62;
}

body.page-story .story-stop--left .story-stop__copy::before {
    inset: -24px -22px -28px -34px;
}

body.page-story .story-stop--right .story-stop__copy::before {
    inset: -24px -34px -28px -22px;
}

/* Client revision: lighter story page with photos and a plain white background. */
body.page-story,
body.page-story main,
body.page-story .story,
body.page-story .story__timeline,
body.page-story .story__closing {
    background: #ffffff !important;
    background-image: none !important;
}

body.page-story .story {
    padding-bottom: 72px;
}

body.page-story .story__hero {
    grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.86fr);
    gap: clamp(22px, 3.4vw, 54px);
    padding-top: clamp(26px, 5vw, 70px);
    padding-bottom: clamp(34px, 5vw, 72px);
}

body.page-story .story__title {
    max-width: 10ch;
    font-size: clamp(2.6rem, 6.4vw, 5.2rem);
    letter-spacing: -0.06em;
    line-height: 0.9;
}

body.page-story .story__hero-film {
    min-height: clamp(280px, 30vw, 420px);
    border-radius: 8px;
    transform: none;
    box-shadow: 0 18px 46px rgba(18, 18, 18, 0.12);
}

body.page-story .story__hero-film img {
    transform: none;
    filter: saturate(1.02) contrast(1.02);
}

body.page-story .story-editorial {
    width: min(1400px, calc(100% - 56px));
    margin: 0 auto;
    display: grid;
    gap: clamp(42px, 6vw, 86px);
    padding: clamp(22px, 4vw, 54px) 0 clamp(36px, 5vw, 70px);
}

body.page-story .story-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.78fr);
    gap: clamp(28px, 5vw, 74px);
    align-items: center;
}

body.page-story .story-feature__copy {
    display: grid;
    gap: 18px;
    max-width: 760px;
}

body.page-story .story-feature__copy h2 {
    margin: 0;
    max-width: 15ch;
    font-family: "Libre Caslon Display", serif;
    font-size: clamp(2.35rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: 0;
    color: #111111;
}

body.page-story .story-feature__copy p {
    margin: 0;
    max-width: 64ch;
    color: rgba(24, 22, 20, 0.7);
    font-size: clamp(0.98rem, 1.15vw, 1.08rem);
    line-height: 1.76;
}

body.page-story .story-feature__media {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 18px 46px rgba(18, 18, 18, 0.1);
}

body.page-story .story-feature__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
}

body.page-story .story-feature__media--button {
    cursor: pointer;
}

body.page-story .story-feature__open {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    color: #ffffff;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    cursor: pointer;
}

body.page-story .story-gallery-preload {
    display: none;
}

body.page-story .story__road,
body.page-story .story-stop__marker,
body.page-story .story-stop__wash,
body.page-story .story-stop__copy::before,
body.page-story .story-stop--left .story-stop__copy::before,
body.page-story .story-stop--right .story-stop__copy::before {
    display: none !important;
}

body.page-story .story__timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(26px, 3vw, 46px);
    padding: clamp(22px, 4vw, 54px) 0 clamp(46px, 6vw, 86px);
}

body.page-story .story-stop,
body.page-story .story-stop--left,
body.page-story .story-stop--right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
}

body.page-story .story-stop + .story-stop {
    margin-top: 0;
}

body.page-story .story-stop__copy,
body.page-story .story-stop--left .story-stop__copy,
body.page-story .story-stop--right .story-stop__copy,
body.page-story .story-stop__media,
body.page-story .story-stop--left .story-stop__media,
body.page-story .story-stop--right .story-stop__media {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    margin: 0;
    transform: none;
}

body.page-story .story-stop__media,
body.page-story .story-stop--left .story-stop__media,
body.page-story .story-stop--right .story-stop__media {
    order: -1;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    box-shadow: none;
}

body.page-story .story-stop__copy {
    gap: 10px;
    padding: 0;
}

body.page-story .story-stop__copy h2 {
    max-width: 18ch;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.02;
}

body.page-story .story-stop__text {
    max-width: 48ch;
    font-size: 0.96rem;
    line-height: 1.62;
}

body.page-story .story-stop__accent,
body.page-story .story-stop__meta {
    display: none;
}

body.page-story .story-stop__media-cta {
    display: none;
}

body.page-story .story__closing {
    margin-top: 0;
}

@media (max-width: 980px) {
    body.page-story .story__hero,
    body.page-story .story__timeline,
    body.page-story .story-feature {
        grid-template-columns: 1fr;
    }

    body.page-story .story-editorial {
        width: min(100%, calc(100% - 28px));
    }
}
