/* ========================================
   AIF Premium Mockup — ux/final/styles.css
   ======================================== */

:root {
    --gold: #c7a247;
    --gold-bright: #f2d58b;
    --gold-deep: #8b6521;
    --teal-bright: #16c7cf;
    --teal: #0b9ca7;
    --teal-deep: #0a727c;
    --deep-green: #0b8790;
    --footer-green: #061313;
    --ink: #123c42;
    --ink-light: #1b727b;
    --section-dark: #0b6f78;
    --section-dark-deep: #103e45;
    --paper: #f7f3eb;
    --paper-deep: #ece5d7;
    --white: #ffffff;
    --teal-gradient: linear-gradient(
        105deg,
        #16c7cf 0%,
        #0b9ca7 48%,
        #0a727c 100%
    );
    --dark-section-gradient:
        radial-gradient(
            circle at 12% 0%,
            rgba(22, 199, 207, 0.32),
            transparent 32%
        ),
        radial-gradient(
            circle at 86% 18%,
            rgba(242, 213, 139, 0.09),
            transparent 28%
        ),
        linear-gradient(112deg, #0b7c85 0%, #0b6570 46%, #123f46 100%);
    --line: rgba(11, 156, 167, 0.26);
    --shadow: 0 40px 90px rgba(10, 18, 20, 0.35);
    --radius: 16px;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
    --max: 1600px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background-color: var(--paper);
    color: var(--ink);
    font-family: "Montserrat", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a,
a:visited {
    color: inherit;
    text-decoration: none;
}
img,
video {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

/* Home experience effects */
.home-particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 7;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    opacity: 0.74;
    mix-blend-mode: screen;
    transition: opacity 0.45s ease;
}

.is-scroll-hero-active .home-particle-canvas,
.is-scroll-hero-active .home-depth-field {
    opacity: 0;
}

.home-page > section {
    isolation: isolate;
}

.home-page .scroll-hero::before,
.home-page .classic-hero::after,
.home-page .investors-section::after,
.home-page .premium-slider-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(rgba(22, 199, 207, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 199, 207, 0.06) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 72%);
    opacity: 0.38;
    animation: homeGridDrift 22s linear infinite;
}

.home-page .scroll-hero::after,
.home-page .classic-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 72% 34%,
            rgba(22, 199, 207, 0.28),
            transparent 0 10%,
            transparent 16%
        ),
        radial-gradient(
            circle at 72% 34%,
            transparent 0 16%,
            rgba(242, 213, 139, 0.22) 16.3%,
            transparent 17%
        ),
        radial-gradient(
            circle at 72% 34%,
            transparent 0 25%,
            rgba(22, 199, 207, 0.16) 25.3%,
            transparent 26%
        ),
        radial-gradient(
            circle at 24% 68%,
            rgba(22, 199, 207, 0.22),
            transparent 22%
        );
    opacity: 0.62;
    mix-blend-mode: screen;
    animation: homeOrbitalPulse 7s ease-in-out infinite;
}

.home-page .site-section::after,
.home-page .quick-links-section::after,
.home-page .history-accordion-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(
            115deg,
            transparent 0 42%,
            rgba(22, 199, 207, 0.12) 48%,
            transparent 56%
        ),
        radial-gradient(
            circle at var(--home-pointer-x, 50%) var(--home-pointer-y, 50%),
            rgba(22, 199, 207, 0.16),
            transparent 26%
        );
    transform: translateX(-18%);
    opacity: 0.68;
    animation: homeSectionScan 8.5s var(--transition) infinite;
}

.home-page .quick-link-tile,
.home-page .media-container,
.home-page .luxury-theater-slider,
.home-page .history-accordion-item {
    transform-style: preserve-3d;
    will-change: transform;
    transition:
        transform 0.45s var(--transition),
        box-shadow 0.45s var(--transition),
        border-color 0.45s ease;
}

.home-page .quick-link-tile::after {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(
            120deg,
            transparent 0 35%,
            rgba(255, 255, 255, 0.46) 45%,
            transparent 55%
        ),
        radial-gradient(
            circle at 80% 18%,
            rgba(22, 199, 207, 0.2),
            transparent 32%
        );
    opacity: 0;
    transform: translateX(-110%);
    transition: opacity 0.4s ease;
}

.home-page .quick-link-tile:hover::after {
    opacity: 1;
    animation: homeTileShimmer 1.25s var(--transition);
}

.home-page .media-container::after,
.home-page .luxury-theater-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    border-radius: inherit;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.18),
            transparent 18% 78%,
            rgba(22, 199, 207, 0.18)
        ),
        linear-gradient(
            90deg,
            transparent,
            rgba(242, 213, 139, 0.22),
            transparent
        );
    opacity: 0.24;
    mix-blend-mode: screen;
    transform: translateY(-100%);
    animation: homeMediaScan 6.8s ease-in-out infinite;
}

.home-page .mission-ticker-section::before,
.home-page .mission-ticker-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.home-page .mission-ticker-section::before {
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.34),
            transparent
        ),
        radial-gradient(
            circle at 14% 50%,
            rgba(18, 60, 66, 0.26),
            transparent 28%
        );
    transform: translateX(-100%);
    animation: homeTickerSweep 4.8s ease-in-out infinite;
}

.home-page .mission-ticker-section::after {
    background:
        linear-gradient(90deg, rgba(18, 60, 66, 0.16) 1px, transparent 1px),
        linear-gradient(rgba(18, 60, 66, 0.12) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.24;
}

.home-page .history-accordion-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(22, 199, 207, 0.18),
            transparent 26%
        ),
        linear-gradient(90deg, rgba(22, 199, 207, 0.08), transparent 48%);
    opacity: 0;
    transform: translateX(-16px);
    transition:
        opacity 0.45s ease,
        transform 0.45s var(--transition);
}

.home-page .history-accordion-item:hover::before,
.home-page .history-accordion-item.is-active::before {
    opacity: 1;
    transform: translateX(0);
}

.home-page .history-accordion-row,
.home-page .history-accordion-panel {
    position: relative;
    z-index: 1;
}

@keyframes homeGridDrift {
    from {
        background-position:
            0 0,
            0 0;
    }
    to {
        background-position:
            172px 86px,
            86px 172px;
    }
}

@keyframes homeOrbitalPulse {
    0%,
    100% {
        opacity: 0.46;
        filter: blur(0);
        transform: scale(1);
    }
    45% {
        opacity: 0.78;
        filter: blur(1px);
        transform: scale(1.035);
    }
}

@keyframes homeSectionScan {
    0%,
    18% {
        transform: translateX(-32%);
        opacity: 0;
    }
    42%,
    62% {
        opacity: 0.68;
    }
    100% {
        transform: translateX(32%);
        opacity: 0;
    }
}

@keyframes homeTileShimmer {
    from {
        transform: translateX(-110%);
    }
    to {
        transform: translateX(110%);
    }
}

@keyframes homeMediaScan {
    0%,
    18% {
        transform: translateY(-105%);
        opacity: 0;
    }
    42%,
    58% {
        opacity: 0.28;
    }
    100% {
        transform: translateY(105%);
        opacity: 0;
    }
}

@keyframes homeTickerSweep {
    0%,
    28% {
        transform: translateX(-100%);
        opacity: 0;
    }
    46%,
    62% {
        opacity: 0.65;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-particle-canvas {
        display: none;
    }

    .home-page .scroll-hero::before,
    .home-page .scroll-hero::after,
    .home-page .classic-hero::before,
    .home-page .classic-hero::after,
    .home-page .site-section::after,
    .home-page .quick-links-section::after,
    .home-page .investors-section::after,
    .home-page .premium-slider-section::after,
    .home-page .history-accordion-section::after,
    .home-page .mission-ticker-section::before,
    .home-page .media-container::after,
    .home-page .luxury-theater-slider::after {
        animation: none;
    }
}

/* Pattern background on all sections */
.site-section,
.quick-links-section,
.investors-section,
.history-accordion-section,
.premium-slider-section,
.theater-slider-section,
.site-footer {
    position: relative;
}

.site-section::before,
.quick-links-section::before,
.investors-section::before,
.history-accordion-section::before,
.premium-slider-section::before,
.theater-slider-section::before,
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("media/img/background_patern.avif");
    background-position: center top;
    background-repeat: repeat;
    opacity: 0.06;
    pointer-events: none;
}

.site-section.alt::before,
.investors-section::before,
.premium-slider-section::before,
.theater-slider-section::before,
.site-footer::before {
    opacity: 0.16;
}

.quick-links-section::before {
    opacity: 0.05;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", serif;
    margin-top: 0;
    line-height: 1.05;
    font-weight: 500;
}

h1 {
    font-size: clamp(3rem, 6.5vw, 6rem);
}
h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}
h3 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.section-copy p,
.modal-card p,
.modal-card li {
    font-size: clamp(0.95rem, 1.05vw, 1.05rem);
    line-height: 1.7;
    color: rgba(24, 38, 41, 0.82);
    max-width: 56ch;
}

.section-copy ul,
.section-copy ol {
    margin: 18px 0 0;
    padding-left: 22px;
    color: rgba(24, 38, 41, 0.82);
}

.section-copy li {
    margin: 9px 0;
}

/* Dark sections text color */
.site-section.alt .section-copy p,
.site-section.alt .section-copy li,
.investors-section .section-copy p,
.investors-section .section-copy li,
.premium-slider-section .section-copy p,
.premium-slider-section .section-copy li,
.theater-slider-section .section-copy p,
.theater-slider-section .section-copy li,
.site-footer p,
.site-footer a {
    color: rgba(247, 243, 235, 0.76);
}

.site-section.alt h2,
.site-section.alt h3,
.investors-section h2,
.investors-section h3,
.premium-slider-section h2,
.premium-slider-section h3,
.theater-slider-section h2,
.theater-slider-section h3,
.site-footer h2,
.site-footer h3,
.site-footer .footer-brand {
    color: var(--white);
}

.site-section:not(.alt) .eyebrow,
.quick-links-section .eyebrow,
.modal-card .eyebrow {
    color: var(--teal-deep);
}

.classic-hero .eyebrow,
.site-section.alt .eyebrow,
.investors-section .eyebrow,
.premium-slider-section .eyebrow,
.theater-slider-section .eyebrow {
    color: rgba(247, 243, 235, 0.82) !important;
}

.luxury-theater-slider .eyebrow {
    color: rgba(247, 243, 235, 0.66) !important;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px clamp(16px, 4vw, 60px);
}

.site-header.is-scrolled .nav {
    background: rgba(10, 15, 16, 0.92);
    border-color: rgba(199, 162, 71, 0.18);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: min(var(--max), 100%);
    margin: 0 auto;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(10, 15, 16, 0.75);
    backdrop-filter: blur(24px) saturate(1.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    color: var(--white);
    transition:
        background 0.4s ease,
        border-color 0.4s ease;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    height: 38px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    position: relative;
    padding: 8px 14px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 243, 235, 0.7);
    transition: color 0.35s var(--transition);
    border-radius: 999px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-bright);
    background: rgba(69, 154, 166, 0.14);
}

.nav-links a:visited {
    color: rgba(247, 243, 235, 0.7);
}

.nav-links a.active:visited {
    color: var(--gold-bright);
}

.language-choice {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
    padding: 3px 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
}

.language-choice button {
    border: 0;
    background: transparent;
    color: rgba(247, 243, 235, 0.6);
    font-family: inherit;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    padding: 3px 7px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.language-choice button.active,
.language-choice button:hover {
    color: var(--gold-bright);
    background: rgba(199, 162, 71, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold-bright);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* Buttons */
.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: linear-gradient(
        135deg,
        var(--gold-bright),
        var(--gold) 60%,
        var(--gold-deep)
    );
    color: var(--ink);
    font-family: "Montserrat", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(139, 101, 33, 0.15);
    transition: all 0.4s var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.button:visited {
    color: var(--ink);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(139, 101, 33, 0.28);
}

.button.secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.button.secondary:visited {
    color: var(--white);
}

.button.secondary:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.04);
}

.button.ghost {
    background: transparent;
    color: var(--ink);
    border-color: rgba(24, 38, 41, 0.25);
    box-shadow: none;
}

.site-section.alt .button.ghost,
.home-hero .button.ghost,
.classic-hero .button.ghost,
.quick-links-section .button.ghost,
.investors-section .button.ghost,
.premium-slider-section .button.ghost,
.theater-slider-section .button.ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.button.ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(199, 162, 71, 0.05);
}

/* Light-section button contrast */
.site-section:not(.alt) .button.secondary {
    color: var(--ink);
    border-color: rgba(24, 38, 41, 0.25);
}

.site-section:not(.alt) .button.secondary:visited {
    color: var(--ink);
}

.site-section:not(.alt) .button.secondary:hover {
    color: var(--gold-deep);
    border-color: var(--gold);
    background: rgba(199, 162, 71, 0.05);
}

/* Scroll-frame hero */
.scroll-hero {
    position: relative;
    height: 500vh;
    width: 100%;
    background: #040809;
    z-index: 1;
}

.hero-canvas {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    display: block;
}

.scroll-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(10, 15, 16, 0.18) 100%
    );
    pointer-events: none;
}

.hero-scroll-cue {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll-cue::after {
    content: "";
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--gold-bright), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1.3);
        opacity: 1;
    }
}

/* Classic hero */
.classic-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #040809;
}

.classic-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 130%;
    top: -15%;
    will-change: transform;
}

.classic-hero-media img,
.classic-hero-media video {
    width: 100%;
    height: 100%;
    filter: brightness(0.72) contrast(1.05) saturate(1.04);
}

.classic-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.42),
        rgba(0, 0, 0, 0.16) 55%,
        rgba(0, 0, 0, 0.24)
    );
    pointer-events: none;
}

.classic-hero-content {
    position: relative;
    z-index: 10;
    width: min(var(--max), calc(100% - 80px));
    margin: 0 auto;
    color: var(--white);
    padding: 140px 0 120px;
}

.classic-hero-content h1 {
    max-width: 900px;
    color: var(--white);
}

.classic-hero-content .lead {
    max-width: 700px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.05rem, 1.25vw, 1.2rem);
    line-height: 1.7;
}

.classic-hero-content .section-copy p:not(.eyebrow),
.classic-hero-content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.classic-hero-content .cta-row {
    margin-top: 44px;
}

/* Quick links */
.quick-links-section {
    position: relative;
    background:
        linear-gradient(
            180deg,
            rgba(247, 243, 235, 0.98),
            rgba(236, 229, 215, 0.94)
        ),
        var(--paper);
    padding: clamp(70px, 8vw, 115px) 0;
    z-index: 2;
}

.quick-links-shell {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 0;
}

.quick-link-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 240px;
    padding: 32px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(69, 154, 166, 0.22);
    box-shadow: 0 22px 60px rgba(7, 17, 18, 0.08);
    backdrop-filter: blur(18px) saturate(1.08);
    overflow: hidden;
    transition: all 0.5s var(--transition);
}

.quick-link-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(87, 191, 204, 0.24),
            transparent 28%
        ),
        linear-gradient(135deg, rgba(69, 154, 166, 0.16), transparent 62%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.quick-link-tile span:last-child {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    z-index: 2;
}

.quick-link-icon {
    position: absolute;
    top: 26px;
    right: 26px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(69, 154, 166, 0.38);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s var(--transition);
}

.quick-link-icon::after {
    content: "→";
    color: var(--teal-deep);
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

.quick-link-tile:hover {
    transform: translateY(-8px);
    border-color: var(--teal);
    box-shadow: 0 28px 56px rgba(51, 119, 130, 0.16);
}

.quick-link-tile:hover::before {
    opacity: 1;
}
.quick-link-tile:hover .quick-link-icon {
    background: var(--teal-gradient);
    border-color: transparent;
}
.quick-link-tile:hover .quick-link-icon::after {
    transform: translateX(3px) rotate(-45deg);
    color: var(--white);
}

/* Sections */
.site-section {
    position: relative;
    padding: clamp(72px, 8vw, 108px) 0;
    background: var(--paper);
    overflow: hidden;
}

.site-section.alt {
    background: var(--dark-section-gradient);
    color: var(--white);
}

.section-inner {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 80px));
    margin: 0 auto;
}

.section-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}

.section-layout.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.section-layout.reverse .section-copy {
    order: 2;
}
.section-layout.reverse .media-container {
    order: 1;
}

.section-layout.stack {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
}

.section-layout.stack .section-copy {
    max-width: 820px;
}

.slider-full-bleed {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 60px;
}

.media-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.media-parallax-wrap {
    position: absolute;
    inset: 0;
    height: 130%;
    top: -15%;
    will-change: transform;
}

.media-parallax-wrap img,
.media-parallax-wrap video {
    width: 100%;
    height: 100%;
}

/* Mission ticker */
.mission-ticker-section {
    position: relative;
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    min-height: 110px;
    background: var(--gold);
    color: var(--ink);
    overflow: hidden;
    z-index: 2;
}

.mission-ticker-label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mission-ticker-copy {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mission-ticker-track {
    display: flex;
    gap: 4rem;
    min-width: max-content;
    animation: missionTicker 40s linear infinite;
}

.mission-ticker-track span {
    white-space: nowrap;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
}

@keyframes missionTicker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Investors video section */
.investors-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--dark-section-gradient);
    color: var(--white);
    overflow: hidden;
}

.investors-background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.investors-background-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 60, 66, 0.92) 26%,
        rgba(11, 111, 120, 0.34) 68%,
        transparent 100%
    );
    pointer-events: none;
}

.investors-video-content {
    position: relative;
    z-index: 5;
}

/* History accordion — full width */
.history-accordion-section {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: var(--paper-deep);
    padding: 100px 0;
}

.history-accordion-heading {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 80px));
    margin: 0 auto 50px;
    text-align: center;
}

.history-accordion-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    padding: 0 clamp(20px, 5vw, 80px);
}

.history-accordion-item {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(199, 162, 71, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s var(--transition);
}

.history-accordion-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 36px;
    cursor: pointer;
}

.history-accordion-year {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: var(--gold-deep);
    margin: 0;
}

.history-accordion-place {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin: 0;
    color: var(--ink);
}

.history-accordion-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-deep);
    transition: color 0.3s ease;
}

.history-accordion-link span {
    transition: transform 0.3s ease;
}
.history-accordion-item.is-active .history-accordion-link span {
    transform: translateX(4px);
}

.history-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s var(--transition);
    display: grid;
    grid-template-columns: 1fr;
}

.history-accordion-item.is-active {
    box-shadow: var(--shadow);
    border-color: var(--gold);
    background: var(--paper);
}

.history-accordion-item.is-active .history-accordion-panel {
    max-height: 600px;
}

.history-accordion-image-wrap {
    padding: 0 36px 36px;
    height: 380px;
}

.history-accordion-image-wrap img {
    width: 100%;
    height: 100%;
    border-radius: calc(var(--radius) - 4px);
}

.history-accordion-actions {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 80px));
    margin: 42px auto 0;
    text-align: center;
}

.home-page .hw-archive.history-accordion-section {
    --history-open-height: 50svh;
    --history-top-offset: clamp(5rem, 9vh, 6.6rem);
    --history-row-height: clamp(4.2rem, 7vw, 5rem);
    padding: 0;
    overflow: visible;
    background:
        linear-gradient(rgba(5, 31, 35, 0.9), rgba(5, 31, 35, 0.9)),
        url("media/img/background_patern.avif") center / 620px repeat;
}

.home-page .hw-archive .history-accordion-stage {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    background:
        radial-gradient(
            circle at 16% 12%,
            rgba(22, 199, 207, 0.22),
            transparent 34%
        ),
        radial-gradient(
            circle at 84% 24%,
            rgba(242, 213, 139, 0.14),
            transparent 32%
        ),
        linear-gradient(rgba(5, 31, 35, 0.92), rgba(5, 31, 35, 0.94)),
        url("media/img/background_patern.avif") center / 620px repeat;
}

.home-page .hw-archive .history-accordion-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(242, 213, 139, 0.18),
            transparent 28%,
            transparent 72%,
            rgba(22, 199, 207, 0.16)
        ),
        radial-gradient(
            circle at var(--home-pointer-x, 50%) var(--home-pointer-y, 50%),
            rgba(22, 199, 207, 0.16),
            transparent 28%
        );
    opacity: 0.72;
}

.home-page .hw-archive .history-accordion-list {
    position: relative;
    z-index: 1;
    width: min(1680px, calc(100% - clamp(32px, 6vw, 110px)));
    margin: 0 auto;
    padding: var(--history-top-offset) 0 0;
    gap: 10px;
}

.home-page .hw-archive .history-accordion-item {
    background: rgba(248, 247, 242, 0.9);
    border: 1px solid rgba(242, 213, 139, 0.4);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(22px);
}

.home-page .hw-archive .history-accordion-row {
    grid-template-columns: minmax(110px, 0.16fr) 1fr auto;
    min-height: var(--history-row-height);
    padding: clamp(1rem, 2vw, 1.55rem) clamp(1.25rem, 3.2vw, 2.6rem);
}

.home-page .hw-archive .history-accordion-year {
    color: var(--gold-deep);
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

.home-page .hw-archive .history-accordion-place {
    color: var(--ink);
}

.home-page .hw-archive .history-accordion-place span {
    display: block;
}

.home-page .hw-archive .history-accordion-link {
    color: var(--gold-deep);
}

.home-page .hw-archive .history-accordion-link span {
    transform: none;
}

.home-page .hw-archive .history-accordion-panel {
    max-height: none;
    height: 0;
    opacity: 0.32;
    transition:
        height 0.75s var(--transition),
        opacity 0.75s var(--transition);
}

.home-page .hw-archive .history-accordion-item.is-active {
    background: rgba(248, 247, 242, 0.96);
}

.home-page
    .hw-archive
    .history-accordion-item.is-active
    .history-accordion-panel {
    height: var(--history-open-height);
    opacity: 1;
}

.home-page .hw-archive .history-accordion-image-wrap {
    height: 100%;
    padding: 0 clamp(1.25rem, 3.2vw, 2.6rem) clamp(1.25rem, 3.2vw, 2.6rem);
}

.home-page .hw-archive .history-accordion-image-wrap img {
    height: 100%;
    border-radius: 18px;
    transform: scale(1.01);
}

.home-page .hw-archive .history-accordion-image-now {
    object-position: center 36%;
}

.home-page .hw-archive .history-accordion-image-2024 {
    object-position: center 40%;
}

.home-page .hw-archive .history-accordion-image-2023,
.home-page .hw-archive .history-accordion-image-2019 {
    object-position: center 42%;
}

.home-page .hw-archive .history-accordion-image-2022,
.home-page .hw-archive .history-accordion-image-2021 {
    object-position: center 48%;
}

.phone-video-section {
    background: #fff !important;
    color: var(--ink);
}

.phone-video-section::before,
.phone-video-section::after {
    opacity: 0 !important;
}

.phone-video-section .section-copy p,
.phone-video-section .section-copy li,
.phone-video-section .section-copy ol {
    color: rgba(24, 38, 41, 0.74);
}

.phone-video-section .eyebrow,
.phone-video-section h2 {
    color: var(--teal-deep);
}

.phone-video-section .button.secondary,
.phone-video-section .button.ghost {
    color: var(--ink);
    border-color: rgba(24, 38, 41, 0.24);
    background: rgba(255, 255, 255, 0.72);
}

.phone-video-media {
    /* Real phone video proportions (220x510) so the device is never cropped */
    aspect-ratio: 220 / 510;
    width: auto;
    height: 700px;
    /* Don't stretch across the grid column: width comes from the ratio */
    justify-self: center;
    overflow: hidden;
    padding: 0;
    /* Pure white so the video's white background blends with the section */
    background: #fff;
    border-color: transparent;
    /* No shadow: the phone sits directly on the white section, no visible card */
    box-shadow: none;
}

.phone-video-media::before,
.phone-video-media::after {
    display: none;
}

.scroll-frame-video {
    width: 100%;
    height: 100%;
    /* contain (not cover) keeps the full phone visible, no cropping */
    object-fit: contain;
    background: #fff;
}

/* Premium slider — test01 / basic cinema */
.premium-slider-section {
    position: relative;
    background: var(--dark-section-gradient);
    color: var(--white);
    padding: clamp(72px, 8vw, 108px) 0;
}

.hero-follow-slider {
    margin-top: 0;
    background: var(--dark-section-gradient);
}

.premium-slider-section .section-layout {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: clamp(42px, 6vw, 76px) !important;
    align-items: start;
}

.premium-slider-section .section-copy {
    max-width: 840px;
}

.premium-slider-section .section-copy .cta-row {
    margin-top: 28px;
}

.premium-slider-section .luxury-theater-slider {
    margin-top: clamp(14px, 2vw, 24px);
}

.premium-slider-container {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.premium-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    align-items: flex-end;
    padding: 50px;
}

.premium-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.premium-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    scale: 1.1;
    transition: transform 8s linear;
}

.premium-slide.is-active .premium-slide-bg {
    transform: scale(1);
}

.premium-slide-bg img {
    width: 100%;
    height: 100%;
    filter: brightness(0.5);
}

.premium-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        0deg,
        rgba(11, 18, 20, 0.9) 0%,
        transparent 60%
    );
}

.premium-slide-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 520px;
    transform: translateY(30px);
    opacity: 0;
    transition:
        transform 1.2s var(--transition),
        opacity 1.2s var(--transition);
    transition-delay: 0.3s;
}

.premium-slide.is-active .premium-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.premium-slide-content h3 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 12px;
    color: var(--white);
}

.premium-slide-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}

.premium-slider-controls {
    position: absolute;
    bottom: 36px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 14px;
}

.slider-bar-nav {
    position: relative;
    width: 56px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
}

.slider-bar-progress {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background: var(--gold-bright);
}

.slider-bar-nav.is-active .slider-bar-progress {
    width: 100%;
    transition: width 6s linear;
}

/* Theater slider — test02 style */
.theater-slider-section {
    position: relative;
    background: var(--dark-section-gradient);
    color: var(--white);
    padding: 100px 0;
}

.luxury-theater-slider {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background: #090f10;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.slider-left-pane {
    position: relative;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
}

.slider-text-wrapper {
    position: relative;
    height: 280px;
}

.slider-meta-story {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(40px);
    transition:
        transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1s linear;
}

.slider-meta-story.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.slider-meta-story h3 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--white);
    margin-bottom: 18px;
}

.slider-meta-story p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 460px;
}

.slider-right-pane {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-visual-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slider-image-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    scale: 1.15;
    transition:
        opacity 1.4s cubic-bezier(0.33, 1, 0.68, 1),
        scale 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-image-card.is-active {
    opacity: 0.7;
    scale: 1;
    z-index: 2;
}

.slider-image-card img {
    width: 100%;
    height: 100%;
    filter: grayscale(0.2);
}

.slider-luxury-timeline {
    position: absolute;
    bottom: 50px;
    left: 60px;
    display: flex;
    align-items: center;
    gap: 32px;
    z-index: 10;
}

.slider-counter {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    color: var(--gold-bright);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-counter .total {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
}

.timeline-markers {
    display: flex;
    gap: 10px;
}

.timeline-bar {
    position: relative;
    width: 70px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    background: var(--gold-bright);
}

.timeline-bar.is-active .timeline-progress {
    width: 100%;
    transition: width 6.5s linear;
}

/* Footer */
.site-footer {
    position: relative;
    background:
        linear-gradient(180deg, rgba(6, 19, 19, 0.97), rgba(3, 10, 10, 0.98)),
        var(--footer-green);
    color: rgba(247, 243, 235, 0.65);
    padding: 0;
}

.footer-main {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 80px));
    margin: 0 auto;
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}

.footer-brand .gold {
    color: var(--gold);
}

.footer-brand-logo {
    display: block;
    width: clamp(190px, 18vw, 300px);
    height: auto;
    max-height: 78px;
    object-fit: contain;
    object-position: left center;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(247, 243, 235, 0.6);
    max-width: 280px;
    line-height: 1.6;
}

.footer-col-title {
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 24px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(247, 243, 235, 0.65);
    transition: color 0.3s ease;
}

.footer-links a:visited {
    color: rgba(247, 243, 235, 0.65);
}

.footer-links a:hover {
    color: var(--gold-bright);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 80px));
    margin: 0 auto;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(247, 243, 235, 0.45);
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(4, 8, 9, 0.88);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.is-open {
    display: flex;
    opacity: 1;
}

.modal-card {
    position: relative;
    width: min(820px, 100%);
    max-height: min(820px, 86vh);
    overflow: auto;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow:
        var(--shadow),
        0 0 0 1px rgba(199, 162, 71, 0.15);
    padding: 38px;
    transform: translateY(30px) scale(0.98);
    transition: transform 0.5s var(--transition);
}

.modal.is-open .modal-card {
    transform: translateY(0) scale(1);
}

.modal-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: start;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.modal-top h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    color: var(--ink);
}

.modal-card h3 {
    margin-top: 26px;
    color: var(--ink);
    font-size: 1.4rem;
}

.modal-card h4 {
    margin: 20px 0 0;
    color: var(--gold-deep);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.modal-card p {
    color: rgba(24, 38, 41, 0.8);
    margin-top: 12px;
}

.modal-card ul,
.modal-card ol {
    margin: 14px 0 0;
    padding-left: 22px;
    color: rgba(24, 38, 41, 0.8);
}

.modal-card li {
    margin: 7px 0;
}

.modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--gold-deep);
    font-size: 1.3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

/* Reveal animations */
.reveal {
    opacity: 1;
    transform: none;
}

.reveal .section-copy > .eyebrow,
.reveal .section-copy > h2,
.reveal .section-copy > h3,
.reveal .section-copy > p,
.reveal .section-copy > ul,
.reveal .section-copy > ol,
.reveal .section-copy > .cta-row,
.reveal .parallax-node > .eyebrow,
.reveal .parallax-node > h2,
.reveal .parallax-node > h3,
.reveal .parallax-node > p,
.reveal .media-container,
.reveal .luxury-theater-slider {
    opacity: 0;
    transform: translate3d(0, 64px, 0);
    filter: blur(12px);
    transition:
        opacity 1.15s var(--transition),
        transform 1.15s var(--transition),
        filter 1.15s var(--transition);
}

.reveal.is-visible .section-copy > .eyebrow,
.reveal.is-visible .section-copy > h2,
.reveal.is-visible .section-copy > h3,
.reveal.is-visible .section-copy > p,
.reveal.is-visible .section-copy > ul,
.reveal.is-visible .section-copy > ol,
.reveal.is-visible .section-copy > .cta-row,
.reveal.is-visible .parallax-node > .eyebrow,
.reveal.is-visible .parallax-node > h2,
.reveal.is-visible .parallax-node > h3,
.reveal.is-visible .parallax-node > p,
.reveal.is-visible .media-container,
.reveal.is-visible .luxury-theater-slider {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.reveal .section-copy > h2,
.reveal .section-copy > h3,
.reveal .parallax-node > h2,
.reveal .parallax-node > h3 {
    transition-delay: 0.12s;
}

.reveal .section-copy > p,
.reveal .section-copy > ul,
.reveal .section-copy > ol,
.reveal .parallax-node > p {
    transition-delay: 0.22s;
}

.reveal .section-copy > .cta-row,
.reveal .media-container,
.reveal .luxury-theater-slider {
    transition-delay: 0.34s;
}

.classic-hero-content .eyebrow,
.classic-hero-content h1,
.classic-hero-content .lead,
.classic-hero-content .section-copy p:not(.eyebrow),
.classic-hero-content > p:not(.eyebrow),
.classic-hero-content .cta-row {
    animation: heroTextIn 1.25s var(--transition) both;
}

.classic-hero-content h1 {
    animation-delay: 0.12s;
}
.classic-hero-content .lead,
.classic-hero-content .section-copy p:not(.eyebrow),
.classic-hero-content > p:not(.eyebrow) {
    animation-delay: 0.22s;
}
.classic-hero-content .cta-row {
    animation-delay: 0.36s;
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translate3d(0, 76px, 0);
        filter: blur(14px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

.parallax-node {
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* Utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-links a {
        padding: 8px 10px;
        font-size: 0.65rem;
    }
    .luxury-theater-slider {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 14px);
        left: clamp(16px, 4vw, 60px);
        right: clamp(16px, 4vw, 60px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px;
        background: rgba(10, 15, 16, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(20px);
    }

    .nav-links.is-open {
        display: flex;
    }
    .nav-links a {
        padding: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .language-choice {
        margin: 14px 0 0;
    }
    .nav-toggle {
        display: flex;
    }

    .section-layout,
    .section-layout.reverse,
    .premium-slider-section .section-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .section-layout.reverse .section-copy,
    .section-layout.reverse .media-container {
        order: initial;
    }

    .media-container {
        aspect-ratio: 16/10;
    }

    /* Keep the phone video at its real proportions on mobile too */
    .phone-video-media {
        aspect-ratio: 220 / 510;
        height: auto;
        min-height: 0;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }

    .mission-ticker-section {
        grid-template-columns: 1fr;
    }
    .mission-ticker-label {
        min-height: 56px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .premium-slider-container {
        height: 460px;
    }
    .premium-slide {
        padding: 36px;
    }

    .luxury-theater-slider {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .slider-left-pane {
        padding: 40px 28px 100px;
    }
    .slider-right-pane {
        height: 320px;
        order: -1;
    }
    .slider-luxury-timeline {
        left: 28px;
        bottom: 30px;
    }

    .history-accordion-row {
        grid-template-columns: 90px 1fr;
        padding: 22px;
    }
    .history-accordion-link {
        grid-column: 1 / -1;
        justify-content: flex-end;
        margin-top: 8px;
    }
    .history-accordion-image-wrap {
        height: 280px;
        padding: 0 22px 22px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 0;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 10px 18px;
    }
    .brand img {
        height: 32px;
    }

    .classic-hero-content,
    .section-inner,
    .footer-main,
    .footer-bottom,
    .history-accordion-heading {
        width: calc(100% - 32px);
    }

    .scroll-hero {
        bottom: 80px;
    }
    .classic-hero-content {
        padding: 120px 0 100px;
    }

    .quick-link-tile {
        min-height: 190px;
        padding: 24px;
    }

    .button {
        width: 100%;
    }

    .premium-slider-container {
        height: 400px;
    }
    .premium-slider-controls {
        right: 28px;
        bottom: 28px;
    }

    .slider-text-wrapper {
        height: 320px;
    }
    .slider-meta-story h3 {
        font-size: 1.8rem;
    }

    .modal-card {
        padding: 26px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* Home cinematic redesign */
.home-depth-field {
    position: fixed;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.7;
    mix-blend-mode: screen;
}

.home-depth-field span {
    position: absolute;
    width: 1px;
    height: 48vh;
    top: -18vh;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(22, 199, 207, 0.64),
        rgba(242, 213, 139, 0.18),
        transparent
    );
    box-shadow: 0 0 28px rgba(22, 199, 207, 0.42);
    transform: rotate(34deg);
    animation: homeDepthBeam 9s linear infinite;
}

.home-depth-field span:nth-child(1) {
    left: 14%;
    animation-delay: -4s;
}
.home-depth-field span:nth-child(2) {
    left: 38%;
    animation-delay: -7s;
    animation-duration: 11s;
}
.home-depth-field span:nth-child(3) {
    left: 67%;
    animation-delay: -2s;
    animation-duration: 8s;
}
.home-depth-field span:nth-child(4) {
    left: 88%;
    animation-delay: -6s;
    animation-duration: 12s;
}

.home-page {
    background:
        radial-gradient(
            circle at 82% 6%,
            rgba(22, 199, 207, 0.24),
            transparent 24rem
        ),
        linear-gradient(180deg, #0a727c 0%, var(--paper) 18%, var(--paper) 100%);
}

.home-page .eyebrow {
    color: var(--teal-deep);
}

.home-page .home-portal-hero .eyebrow,
.home-page .home-about-section .eyebrow,
.home-page .home-investor-portal .eyebrow,
.home-page .home-archive-stack .eyebrow,
.home-page .home-insights-section .eyebrow,
.home-page .luxury-theater-slider .eyebrow {
    color: var(--gold-bright);
}

.home-page .home-scroll-portal {
    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(22, 199, 207, 0.24),
            transparent 28%
        ),
        linear-gradient(180deg, #061f23 0%, #0a727c 58%, #071619 100%);
}

.home-page .home-scroll-portal .hero-canvas {
    filter: saturate(1.14) contrast(1.04) brightness(1);
}

.home-page .home-scroll-portal .scroll-hero-overlay {
    background:
        radial-gradient(
            circle at 50% 45%,
            transparent 0 28%,
            rgba(22, 199, 207, 0.16) 42%,
            transparent 64%
        ),
        linear-gradient(
            180deg,
            rgba(3, 18, 20, 0.04) 0%,
            rgba(5, 31, 35, 0.1) 52%,
            rgba(5, 20, 22, 0.08) 100%
        );
}

.scroll-hero-vectors {
    position: sticky;
    top: 0;
    z-index: 8;
    height: 100vh;
    margin-top: -100vh;
    pointer-events: none;
    overflow: hidden;
}

.scroll-hero-vectors span {
    position: absolute;
    inset: 16vh auto auto 50%;
    width: min(70vw, 1120px);
    height: min(70vw, 1120px);
    border: 1px solid rgba(22, 199, 207, 0.22);
    border-radius: 50%;
    transform: translateX(-50%) rotateX(68deg) rotateZ(0deg);
    box-shadow:
        inset 0 0 44px rgba(22, 199, 207, 0.1),
        0 0 38px rgba(22, 199, 207, 0.08);
    animation: homeVectorSpin 18s linear infinite;
}

.scroll-hero-vectors span:nth-child(2) {
    width: min(52vw, 840px);
    height: min(52vw, 840px);
    border-color: rgba(242, 213, 139, 0.26);
    animation-direction: reverse;
    animation-duration: 24s;
}

.scroll-hero-vectors span:nth-child(3) {
    width: min(34vw, 560px);
    height: min(34vw, 560px);
    border-style: dashed;
    animation-duration: 13s;
}

.home-page .hero-scroll-cue {
    position: sticky;
    margin-left: auto;
    margin-right: 42px;
    bottom: 36px;
}

.home-page .home-portal-hero {
    min-height: 116vh;
    align-items: stretch;
    background:
        radial-gradient(
            circle at 78% 36%,
            rgba(22, 199, 207, 0.34),
            transparent 28%
        ),
        linear-gradient(125deg, #0a727c 0%, #0b6570 46%, #123f46 100%);
}

.home-page .home-portal-hero .classic-hero-media {
    height: 122%;
    top: -11%;
    transform-origin: center;
}

.home-page .home-portal-hero .classic-hero-media img {
    filter: brightness(0.48) saturate(1.18) contrast(1.08);
    transform: scale(1.04);
}

.home-page .home-portal-hero .classic-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(4, 28, 31, 0.9) 0%,
            rgba(8, 81, 88, 0.56) 43%,
            rgba(10, 114, 124, 0.16) 100%
        ),
        linear-gradient(180deg, rgba(6, 22, 24, 0.2), rgba(6, 22, 24, 0.72));
}

.home-hero-orbits {
    position: absolute;
    z-index: 6;
    inset: 6% -14% auto auto;
    width: min(58vw, 980px);
    aspect-ratio: 1;
    pointer-events: none;
    opacity: 0.86;
    mix-blend-mode: screen;
}

.home-hero-orbits span {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(22, 199, 207, 0.28);
    border-radius: 50%;
    transform: rotateX(64deg) rotateZ(0deg);
    animation: homeOrbitSpin 22s linear infinite;
}

.home-hero-orbits span:nth-child(2) {
    inset: 12%;
    border-color: rgba(242, 213, 139, 0.28);
    animation-duration: 15s;
    animation-direction: reverse;
}

.home-hero-orbits span:nth-child(3) {
    inset: 24%;
    border-style: dashed;
    box-shadow: 0 0 80px rgba(22, 199, 207, 0.2);
    animation-duration: 11s;
}

.home-hero-orbits span:nth-child(4) {
    inset: 43%;
    background: radial-gradient(
        circle,
        rgba(22, 199, 207, 0.42),
        rgba(22, 199, 207, 0.05) 44%,
        transparent 70%
    );
    border: 0;
    animation: homeCorePulse 3.8s ease-in-out infinite;
}

.home-page .home-portal-hero .classic-hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    grid-template-rows: auto auto auto;
    gap: 22px clamp(32px, 5vw, 88px);
    align-content: end;
    width: min(1720px, calc(100% - 88px));
    padding: clamp(160px, 20vh, 240px) 0 clamp(110px, 13vh, 160px);
}

.home-page .home-portal-hero .classic-hero-content .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.home-page .home-portal-hero .classic-hero-content h1 {
    grid-column: 1 / -1;
    max-width: 1260px;
    margin: 0;
    font-size: clamp(4.1rem, 10.5vw, 11.5rem);
    line-height: 0.88;
    color: var(--white);
    text-shadow: 0 18px 80px rgba(3, 14, 16, 0.66);
}

.home-page .home-portal-hero .classic-hero-content .lead {
    grid-column: 1;
    max-width: 760px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.35vw, 1.28rem);
}

.home-page .home-portal-hero .classic-hero-content .cta-row {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 10px;
    padding: 18px;
    border: 1px solid rgba(242, 213, 139, 0.2);
    border-radius: 28px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.03)
    );
    box-shadow: 0 30px 90px rgba(2, 14, 16, 0.34);
    backdrop-filter: blur(24px) saturate(1.28);
}

.home-page .home-portal-hero .classic-hero-content .button {
    width: 100%;
    min-height: 54px;
    justify-content: center;
}

.home-page .home-access-deck {
    margin-top: -82px;
    padding: 0 0 clamp(90px, 10vw, 150px);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(22, 199, 207, 0.22),
            transparent 32rem
        ),
        linear-gradient(
            180deg,
            rgba(247, 243, 235, 0.98) 0%,
            rgba(236, 229, 215, 0.98) 100%
        );
}

.home-access-radar {
    position: absolute;
    inset: -28% auto auto 50%;
    z-index: 0;
    width: min(84vw, 1280px);
    aspect-ratio: 1;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: 0.52;
}

.home-access-radar span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(11, 156, 167, 0.22);
    animation: homeRadarPulse 4.8s ease-in-out infinite;
}

.home-access-radar span:nth-child(2) {
    inset: 18%;
    border-color: rgba(199, 162, 71, 0.2);
    animation-delay: -1.6s;
}

.home-access-radar span:nth-child(3) {
    inset: 36%;
    animation-delay: -3.1s;
}

.home-page .home-access-deck .quick-links-shell {
    width: min(1720px, calc(100% - 64px));
    transform: translateY(-34px);
}

.home-page .home-access-deck .quick-links-grid {
    perspective: 1400px;
    gap: clamp(18px, 2.4vw, 34px);
}

.home-page .home-access-deck .quick-link-tile {
    min-height: clamp(260px, 24vw, 390px);
    padding: clamp(28px, 3.2vw, 54px);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.46),
            rgba(255, 255, 255, 0.18)
        ),
        radial-gradient(
            circle at 82% 18%,
            rgba(22, 199, 207, 0.18),
            transparent 32%
        );
    border-color: rgba(11, 156, 167, 0.28);
    box-shadow: 0 32px 90px rgba(10, 114, 124, 0.12);
}

.home-page .home-access-deck .quick-link-tile:nth-child(2) {
    transform: translateY(42px);
}

.home-page .home-access-deck .quick-link-tile:nth-child(3) {
    transform: translateY(84px);
}

.home-page .home-access-deck .quick-link-tile:hover {
    box-shadow: 0 42px 110px rgba(10, 114, 124, 0.2);
}

.home-page .home-access-deck .quick-link-tile span:last-child {
    font-size: clamp(2rem, 3.3vw, 3.8rem);
    max-width: 12ch;
    color: var(--ink);
}

.home-page .home-access-deck .quick-link-icon {
    width: 62px;
    height: 62px;
    border-color: rgba(10, 114, 124, 0.32);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(14px);
}

.home-page .home-cinematic-section {
    padding: clamp(112px, 12vw, 190px) 0;
    overflow: hidden;
}

.home-page .home-cinematic-section .section-inner {
    width: min(1660px, calc(100% - 80px));
}

.home-page .home-cinematic-section .section-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    gap: clamp(44px, 7vw, 118px);
}

.home-page .home-cinematic-section .section-layout.reverse {
    grid-template-columns: minmax(440px, 1.08fr) minmax(0, 0.92fr);
}

.home-page .home-cinematic-section .section-copy {
    position: relative;
    padding: clamp(30px, 4vw, 58px);
    border-radius: 30px;
    border: 1px solid rgba(11, 156, 167, 0.18);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.56),
        rgba(255, 255, 255, 0.22)
    );
    box-shadow: 0 34px 110px rgba(9, 68, 75, 0.1);
    backdrop-filter: blur(22px) saturate(1.18);
}

.home-page .home-cinematic-section .section-copy::before {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: -1;
    border-radius: 22px;
    border: 1px solid rgba(22, 199, 207, 0.12);
}

.home-page .home-cinematic-section h2,
.home-page .home-cinematic-section h3 {
    font-size: clamp(2.7rem, 6vw, 6.5rem);
    line-height: 0.95;
}

.home-page .home-cinematic-section .section-copy p:not(.eyebrow) {
    font-size: clamp(1rem, 1.2vw, 1.18rem);
    line-height: 1.8;
}

.home-page .home-cinematic-section .media-container {
    aspect-ratio: 1 / 1.08;
    border-radius: 32px;
    border-color: rgba(22, 199, 207, 0.28);
    box-shadow: 0 38px 120px rgba(8, 44, 49, 0.24);
    clip-path: polygon(0 7%, 100% 0, 100% 93%, 84% 100%, 0 100%);
}

.home-page .home-cinematic-section .media-parallax-wrap img {
    filter: saturate(1.08) contrast(1.05);
}

.home-page .home-about-section,
.home-page .home-insights-section {
    color: var(--white);
    background:
        radial-gradient(
            circle at 78% 16%,
            rgba(22, 199, 207, 0.32),
            transparent 28rem
        ),
        radial-gradient(
            circle at 14% 80%,
            rgba(242, 213, 139, 0.1),
            transparent 26rem
        ),
        linear-gradient(128deg, #0b8790 0%, #0a727c 46%, #123f46 100%);
}

.home-page .home-about-section .section-copy,
.home-page .home-insights-section .section-copy {
    border-color: rgba(242, 213, 139, 0.2);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.035)
    );
    box-shadow: 0 38px 120px rgba(5, 22, 24, 0.26);
}

.home-page .home-about-section h2,
.home-page .home-about-section .section-copy p:not(.eyebrow),
.home-page .home-insights-section h2,
.home-page .home-insights-section .section-copy p:not(.eyebrow) {
    color: var(--white);
}

.home-page .home-about-section .section-copy p:not(.eyebrow),
.home-page .home-insights-section .section-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
}

.home-page .home-mission-strip {
    min-height: clamp(170px, 19vw, 250px);
    grid-template-columns: minmax(150px, 20vw) minmax(0, 1fr);
    background: linear-gradient(
        105deg,
        rgba(242, 213, 139, 0.98) 0%,
        rgba(199, 162, 71, 0.98) 52%,
        rgba(22, 199, 207, 0.68) 100%
    );
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.24),
        inset 0 -1px rgba(18, 60, 66, 0.2);
}

.home-page .home-mission-strip .mission-ticker-label {
    font-size: 0.86rem;
    letter-spacing: 0.3em;
}

.home-page .home-mission-strip .mission-ticker-track span {
    font-size: clamp(3.2rem, 7.8vw, 8.5rem);
    line-height: 0.92;
    color: rgba(18, 60, 66, 0.92);
}

.home-page .home-investor-portal {
    min-height: 112vh;
    background:
        radial-gradient(
            circle at 74% 24%,
            rgba(22, 199, 207, 0.38),
            transparent 28rem
        ),
        linear-gradient(120deg, #0b8790 0%, #0a727c 44%, #123f46 100%);
}

.home-page .home-investor-portal .investors-background-video {
    opacity: 0.58;
    filter: saturate(1.1) contrast(1.1);
}

.home-page .home-investor-portal .investors-background-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 63, 70, 0.96) 0%,
            rgba(10, 114, 124, 0.58) 52%,
            rgba(22, 199, 207, 0.12) 100%
        ),
        radial-gradient(
            circle at 72% 50%,
            rgba(242, 213, 139, 0.18),
            transparent 34%
        );
}

.home-page .home-investor-portal .investors-video-content {
    width: min(1660px, calc(100% - 80px));
}

.home-page .home-investor-portal .section-copy {
    max-width: 760px;
    padding: clamp(34px, 4.8vw, 66px);
    border: 1px solid rgba(242, 213, 139, 0.22);
    border-radius: 34px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.14),
        rgba(255, 255, 255, 0.04)
    );
    box-shadow: 0 38px 120px rgba(4, 22, 24, 0.36);
    backdrop-filter: blur(24px) saturate(1.25);
}

.home-page .home-investor-portal .section-copy h2 {
    color: var(--white);
    font-size: clamp(3rem, 6.6vw, 7.6rem);
    line-height: 0.92;
}

.home-page .home-investor-portal .section-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.home-page .home-project-section {
    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(22, 199, 207, 0.17),
            transparent 28rem
        ),
        linear-gradient(
            180deg,
            rgba(247, 243, 235, 1),
            rgba(236, 229, 215, 0.96)
        );
}

.home-page .home-archive-stack {
    background:
        radial-gradient(
            circle at 70% 0%,
            rgba(22, 199, 207, 0.32),
            transparent 30rem
        ),
        linear-gradient(128deg, #0b8790 0%, #0a727c 46%, #123f46 100%);
    color: var(--white);
    padding: clamp(112px, 12vw, 180px) 0;
}

.home-page .home-archive-stack .history-accordion-heading h2 {
    color: var(--white);
    font-size: clamp(3rem, 7vw, 7.2rem);
    line-height: 0.94;
}

.home-page .home-archive-stack .history-accordion-list {
    width: min(1580px, calc(100% - 80px));
    padding: 0;
    margin: 0 auto;
    gap: 18px;
}

.home-page .home-archive-stack .history-accordion-item {
    border-radius: 28px;
    border-color: rgba(242, 213, 139, 0.22);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.035)
    );
    box-shadow: 0 24px 90px rgba(4, 22, 24, 0.18);
    backdrop-filter: blur(20px) saturate(1.2);
}

.home-page .home-archive-stack .history-accordion-item.is-active {
    border-color: rgba(242, 213, 139, 0.62);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.16),
        rgba(255, 255, 255, 0.05)
    );
    box-shadow: 0 42px 120px rgba(4, 22, 24, 0.34);
}

.home-page .home-archive-stack .history-accordion-row {
    grid-template-columns: minmax(110px, 0.24fr) 1fr auto;
    padding: clamp(26px, 3.4vw, 48px);
}

.home-page .home-archive-stack .history-accordion-year {
    color: var(--gold-bright);
    font-size: clamp(3rem, 7vw, 7rem);
    line-height: 0.82;
}

.home-page .home-archive-stack .history-accordion-place {
    color: rgba(255, 255, 255, 0.82);
}

.home-page .home-archive-stack .history-accordion-link {
    color: var(--gold-bright);
}

.home-page .home-archive-stack .history-accordion-image-wrap {
    height: clamp(360px, 44vw, 640px);
    padding: 0 clamp(24px, 3.4vw, 48px) clamp(24px, 3.4vw, 48px);
}

.home-page .home-archive-stack .history-accordion-image-wrap img {
    border-radius: 22px;
    filter: saturate(1.08) contrast(1.08);
}

.home-page .home-archive-stack .button.secondary,
.home-page .home-archive-stack .button.ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
}

.home-page .home-archive-stack .button.secondary:visited,
.home-page .home-archive-stack .button.ghost:visited {
    color: var(--white);
}

.home-page .home-archive-stack .button.secondary:hover,
.home-page .home-archive-stack .button.ghost:hover {
    color: var(--gold-bright);
    border-color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.06);
}

.home-page .home-event-theater {
    color: var(--ink);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(22, 199, 207, 0.18),
            transparent 28rem
        ),
        linear-gradient(
            180deg,
            rgba(247, 243, 235, 1),
            rgba(236, 229, 215, 0.98)
        );
    padding: clamp(110px, 12vw, 178px) 0;
}

.home-page .home-event-theater .section-inner {
    width: min(1720px, calc(100% - 72px));
}

.home-page .home-event-theater .section-copy {
    max-width: 1120px;
}

.home-page .home-event-theater .section-copy h2 {
    color: var(--ink);
    font-size: clamp(3.2rem, 8vw, 8.4rem);
    line-height: 0.9;
    max-width: 980px;
}

.home-page .home-event-theater .section-copy p:not(.eyebrow) {
    color: rgba(18, 60, 66, 0.78);
    font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.home-page .home-event-theater .button.secondary {
    color: var(--ink);
    border-color: rgba(18, 60, 66, 0.28);
}

.home-page .home-event-theater .luxury-theater-slider {
    min-height: clamp(620px, 56vw, 860px);
    border-radius: 34px;
    border-color: rgba(11, 156, 167, 0.32);
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(22, 199, 207, 0.22),
            transparent 28rem
        ),
        linear-gradient(128deg, #0b8790 0%, #0a727c 44%, #123f46 100%);
    box-shadow: 0 48px 140px rgba(9, 68, 75, 0.22);
}

.home-page .home-event-theater .slider-left-pane {
    padding: clamp(46px, 6vw, 96px);
}

.home-page .home-event-theater .slider-meta-story h3 {
    font-size: clamp(2.8rem, 6vw, 6.6rem);
    line-height: 0.94;
}

.home-page .home-event-theater .slider-meta-story p {
    font-size: clamp(1rem, 1.25vw, 1.22rem);
}

.home-page .home-event-theater .slider-right-pane::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        90deg,
        rgba(10, 114, 124, 0.18),
        transparent 32%
    );
    pointer-events: none;
}

.home-page .home-sponsor-section {
    color: var(--ink);
    background:
        radial-gradient(
            circle at 78% 24%,
            rgba(22, 199, 207, 0.17),
            transparent 28rem
        ),
        linear-gradient(
            180deg,
            rgba(247, 243, 235, 1),
            rgba(236, 229, 215, 0.96)
        );
}

.home-page .home-sponsor-section .section-copy h2,
.home-page .home-sponsor-section .section-copy p:not(.eyebrow) {
    color: var(--ink);
}

.home-page .home-sponsor-section .button.secondary,
.home-page .home-sponsor-section .button.ghost {
    color: var(--ink);
    border-color: rgba(18, 60, 66, 0.25);
}

.home-page .home-sponsor-section .button.secondary:hover,
.home-page .home-sponsor-section .button.ghost:hover {
    color: var(--gold-deep);
    border-color: var(--gold);
}

.home-page .reveal .section-copy > .eyebrow,
.home-page .reveal .section-copy > h2,
.home-page .reveal .section-copy > h3,
.home-page .reveal .section-copy > p,
.home-page .reveal .section-copy > .cta-row,
.home-page .reveal .parallax-node > .eyebrow,
.home-page .reveal .parallax-node > h2,
.home-page .reveal .parallax-node > h3,
.home-page .reveal .parallax-node > p {
    transform: translate3d(0, 120px, 0) rotateX(16deg);
    transform-origin: 50% 100%;
    clip-path: inset(0 0 100% 0);
    transition-duration: 1.45s;
}

.home-page .reveal .media-container,
.home-page .reveal .luxury-theater-slider {
    transform: translate3d(8vw, 150px, 0) rotateZ(2.5deg) scale(0.9);
    filter: blur(18px) saturate(0.7);
    transition-duration: 1.55s;
}

.home-page .reveal .section-layout.reverse .media-container {
    transform: translate3d(-8vw, 150px, 0) rotateZ(-2.5deg) scale(0.9);
}

.home-page .reveal.is-visible .section-copy > .eyebrow,
.home-page .reveal.is-visible .section-copy > h2,
.home-page .reveal.is-visible .section-copy > h3,
.home-page .reveal.is-visible .section-copy > p,
.home-page .reveal.is-visible .section-copy > .cta-row,
.home-page .reveal.is-visible .parallax-node > .eyebrow,
.home-page .reveal.is-visible .parallax-node > h2,
.home-page .reveal.is-visible .parallax-node > h3,
.home-page .reveal.is-visible .parallax-node > p {
    transform: translate3d(0, 0, 0) rotateX(0deg);
    clip-path: inset(0);
}

.home-page .reveal.is-visible .media-container,
.home-page .reveal.is-visible .luxury-theater-slider {
    transform: translate3d(0, 0, 0) rotateZ(0deg) scale(1);
    filter: blur(0) saturate(1);
}

.home-page .home-access-deck .quick-link-tile,
.home-page .home-archive-stack .history-accordion-item {
    animation: homeFloat 7s ease-in-out infinite;
}

.home-page .home-access-deck .quick-link-tile:nth-child(2),
.home-page .home-archive-stack .history-accordion-item:nth-child(2) {
    animation-delay: -2s;
}

.home-page .home-access-deck .quick-link-tile:nth-child(3),
.home-page .home-archive-stack .history-accordion-item:nth-child(3) {
    animation-delay: -4s;
}

.home-page .home-archive-stack .history-accordion-item:nth-child(4) {
    animation-delay: -6s;
}

@keyframes homeDepthBeam {
    from {
        transform: translate3d(0, -18vh, 0) rotate(34deg);
        opacity: 0;
    }
    16%,
    72% {
        opacity: 1;
    }
    to {
        transform: translate3d(0, 138vh, 0) rotate(34deg);
        opacity: 0;
    }
}

@keyframes homeVectorSpin {
    from {
        transform: translateX(-50%) rotateX(68deg) rotateZ(0deg);
    }
    to {
        transform: translateX(-50%) rotateX(68deg) rotateZ(360deg);
    }
}

@keyframes homeOrbitSpin {
    from {
        transform: rotateX(64deg) rotateZ(0deg);
    }
    to {
        transform: rotateX(64deg) rotateZ(360deg);
    }
}

@keyframes homeCorePulse {
    0%,
    100% {
        transform: scale(0.82);
        opacity: 0.36;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.9;
    }
}

@keyframes homeRadarPulse {
    0%,
    100% {
        transform: scale(0.94);
        opacity: 0.32;
    }
    50% {
        transform: scale(1.04);
        opacity: 0.72;
    }
}

@keyframes homeFloat {
    0%,
    100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-depth-field,
    .scroll-hero-vectors,
    .home-hero-orbits,
    .home-access-radar {
        display: none;
    }

    .home-page .home-access-deck .quick-link-tile,
    .home-page .home-archive-stack .history-accordion-item {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .home-page .home-portal-hero .classic-hero-content {
        display: block;
        width: calc(100% - 48px);
        padding: 150px 0 120px;
    }

    .home-page .home-portal-hero .classic-hero-content h1 {
        font-size: clamp(3.7rem, 15vw, 8rem);
    }

    .home-page .home-portal-hero .classic-hero-content .cta-row {
        max-width: 540px;
        margin-top: 34px;
    }

    .home-page .home-access-deck .quick-links-grid {
        grid-template-columns: 1fr;
    }

    .home-page .home-access-deck .quick-link-tile,
    .home-page .home-access-deck .quick-link-tile:nth-child(2),
    .home-page .home-access-deck .quick-link-tile:nth-child(3) {
        min-height: 240px;
        transform: none;
    }

    .home-page .home-cinematic-section .section-layout,
    .home-page .home-cinematic-section .section-layout.reverse {
        grid-template-columns: 1fr;
    }

    .home-page .home-cinematic-section .section-copy,
    .home-page .home-investor-portal .section-copy {
        border-radius: 24px;
    }

    .home-page .home-cinematic-section .media-container {
        aspect-ratio: 16 / 10;
        clip-path: none;
    }

    .home-page .home-archive-stack .history-accordion-row {
        grid-template-columns: 100px 1fr;
    }

    .home-page .home-archive-stack .history-accordion-link {
        grid-column: 1 / -1;
    }

    .home-page .home-event-theater .luxury-theater-slider {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .home-depth-field {
        opacity: 0.42;
    }

    .home-page .home-portal-hero .classic-hero-content,
    .home-page .home-cinematic-section .section-inner,
    .home-page .home-investor-portal .investors-video-content,
    .home-page .home-archive-stack .history-accordion-heading,
    .home-page .home-archive-stack .history-accordion-list,
    .home-page .home-event-theater .section-inner,
    .home-page .home-access-deck .quick-links-shell {
        width: calc(100% - 32px);
    }

    .home-page .home-portal-hero {
        min-height: 104vh;
    }

    .home-page .home-portal-hero .classic-hero-content h1 {
        font-size: clamp(3.1rem, 16vw, 5.4rem);
    }

    .home-page .home-portal-hero .classic-hero-content .lead,
    .home-page .home-cinematic-section .section-copy p:not(.eyebrow),
    .home-page .home-investor-portal .section-copy p:not(.eyebrow),
    .home-page .home-event-theater .section-copy p:not(.eyebrow) {
        font-size: 0.98rem;
    }

    .home-page .home-cinematic-section,
    .home-page .home-archive-stack,
    .home-page .home-event-theater {
        padding: 86px 0;
    }

    .home-page .home-cinematic-section h2,
    .home-page .home-investor-portal .section-copy h2,
    .home-page .home-archive-stack .history-accordion-heading h2,
    .home-page .home-event-theater .section-copy h2 {
        font-size: clamp(2.5rem, 14vw, 4.4rem);
    }

    .home-page .home-mission-strip {
        grid-template-columns: 1fr;
        min-height: 170px;
    }

    .home-page .home-mission-strip .mission-ticker-track span {
        font-size: clamp(2.8rem, 18vw, 4.8rem);
    }

    .home-page .home-archive-stack .history-accordion-year {
        font-size: 3rem;
    }

    .home-page .home-archive-stack .history-accordion-image-wrap {
        height: 280px;
    }
}

/* =========================================================
   HOME v2 — WOW rebuild (palette conservée, éditorial conservé)
   ========================================================= */

/* Scroll progress bar */
.hw-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 300;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.hw-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--teal-gradient);
    box-shadow: 0 0 14px rgba(22, 199, 207, 0.75);
    transition: width 0.1s linear;
}

/* ---------- AURORA HERO ---------- */
.hw-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-section-gradient);
    overflow: hidden;
}
.hw-hero-aurora {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}
.hw-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.55;
    mix-blend-mode: screen;
    will-change: transform;
}
.hw-orb-teal {
    width: 55vw;
    height: 55vw;
    max-width: 760px;
    max-height: 760px;
    top: -18%;
    left: -12%;
    background: radial-gradient(
        circle,
        rgba(22, 199, 207, 0.9),
        transparent 64%
    );
    animation: hw-float 18s ease-in-out infinite;
}
.hw-orb-gold {
    width: 42vw;
    height: 42vw;
    max-width: 600px;
    max-height: 600px;
    bottom: -18%;
    right: -8%;
    background: radial-gradient(
        circle,
        rgba(242, 213, 139, 0.5),
        transparent 64%
    );
    animation: hw-float 22s ease-in-out infinite reverse;
}
.hw-orb-deep {
    width: 48vw;
    height: 48vw;
    max-width: 680px;
    max-height: 680px;
    top: 28%;
    left: 38%;
    background: radial-gradient(
        circle,
        rgba(10, 114, 124, 0.85),
        transparent 60%
    );
    animation: hw-float 26s ease-in-out infinite;
}
@keyframes hw-float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(6%, -4%) scale(1.08);
    }
    66% {
        transform: translate(-5%, 5%) scale(0.95);
    }
}

.hw-hero-grid {
    position: absolute;
    left: -25%;
    right: -25%;
    bottom: -8%;
    height: 70%;
    z-index: 1;
    background-image:
        linear-gradient(rgba(22, 199, 207, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(22, 199, 207, 0.16) 1px, transparent 1px);
    background-size: 64px 64px;
    transform: perspective(420px) rotateX(68deg);
    transform-origin: bottom center;
    -webkit-mask-image: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        transparent 78%
    );
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent 78%);
    animation: hw-grid 22s linear infinite;
}
@keyframes hw-grid {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 0 64px;
    }
}

.hw-hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hw-hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hw-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    animation: hw-kenburns 26s ease-in-out infinite alternate;
}
@keyframes hw-kenburns {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.18);
    }
}

.hw-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(
            circle at 50% 40%,
            transparent 0%,
            rgba(6, 19, 19, 0.22) 70%
        ),
        linear-gradient(
            180deg,
            rgba(6, 19, 19, 0.08) 0%,
            rgba(6, 19, 19, 0.42) 62%,
            var(--paper) 100%
        );
}

.hw-hero-content {
    position: relative;
    z-index: 8;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 9rem 4vw 7rem;
    text-align: center;
}
.hw-hero-eyebrow {
    display: inline-block;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-bright);
    font-size: clamp(0.72rem, 1.4vw, 0.92rem);
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 8px 24px rgba(3, 16, 18, 0.6);
    transition:
        opacity 0.7s var(--transition),
        transform 0.7s var(--transition);
}
.hw-hero-title {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: 0;
    margin: 1.1rem 0 0;
    font-size: clamp(3rem, 8.4vw, 7.4rem);
    color: var(--white);
    text-shadow: 0 18px 60px rgba(4, 14, 16, 0.55);
}
.hw-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.5em) rotateX(-55deg);
    transform-origin: bottom center;
    transition:
        opacity 0.85s var(--transition),
        transform 0.85s var(--transition);
    margin: 0 0.16em;
}
.hw-hero-lead {
    max-width: 760px;
    margin: 1.8rem auto 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.02rem, 1.7vw, 1.32rem);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.8s var(--transition),
        transform 0.8s var(--transition);
}
.hw-hero-cta {
    justify-content: center;
    margin-top: 2.4rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.8s var(--transition),
        transform 0.8s var(--transition);
}

.hw-hero .button.ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
}

.hw-hero .button.ghost:hover {
    color: var(--ink);
    border-color: var(--gold-bright);
    background: var(--gold-bright);
}
.hw-trust {
    margin-top: 2.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.8s var(--transition),
        transform 0.8s var(--transition);
}
.hw-trust-chip {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(242, 213, 139, 0.32);
    backdrop-filter: blur(6px);
}

.hw-hero.hw-in .hw-hero-eyebrow {
    opacity: 1;
    transform: none;
    transition-delay: 0.05s;
}
.hw-hero.hw-in .hw-word {
    opacity: 1;
    transform: none;
}
.hw-hero.hw-in .hw-word:nth-child(1) {
    transition-delay: 0.18s;
}
.hw-hero.hw-in .hw-word:nth-child(2) {
    transition-delay: 0.3s;
}
.hw-hero.hw-in .hw-word:nth-child(3) {
    transition-delay: 0.42s;
}
.hw-hero.hw-in .hw-word:nth-child(4) {
    transition-delay: 0.54s;
}
.hw-hero.hw-in .hw-word:nth-child(5) {
    transition-delay: 0.66s;
}
.hw-hero.hw-in .hw-hero-lead {
    opacity: 1;
    transform: none;
    transition-delay: 0.82s;
}
.hw-hero.hw-in .hw-hero-cta {
    opacity: 1;
    transform: none;
    transition-delay: 0.96s;
}
.hw-hero.hw-in .hw-trust {
    opacity: 1;
    transform: none;
    transition-delay: 1.12s;
}

.hw-hero-cue {
    position: absolute;
    left: 50%;
    bottom: 1.8rem;
    transform: translateX(-50%);
    z-index: 8;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.hw-hero-cue::after {
    content: "";
    display: block;
    width: 1px;
    height: 38px;
    margin: 0.7rem auto 0;
    background: linear-gradient(var(--teal-bright), transparent);
    animation: hw-cue 2s ease-in-out infinite;
}
@keyframes hw-cue {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ---------- PRIORITY PORTALS ---------- */
.hw-portals {
    position: relative;
    z-index: 2;
    background: var(--paper-deep);
    padding: 6rem 4vw;
}
.hw-portals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    max-width: 1280px;
    margin: 0 auto;
}
.hw-portal-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 2.4rem 2rem 2.2rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(14px);
    transform-style: preserve-3d;
    transition:
        box-shadow 0.45s var(--transition),
        border-color 0.45s var(--transition);
}
.hw-portal-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s var(--transition);
    background: radial-gradient(
        circle at var(--mx, 50%) var(--my, 50%),
        rgba(22, 199, 207, 0.2),
        transparent 60%
    );
    pointer-events: none;
}
.hw-portal-card:hover {
    border-color: rgba(22, 199, 207, 0.5);
    box-shadow: 0 50px 100px rgba(10, 18, 20, 0.4);
}
.hw-portal-card:hover .hw-portal-glow {
    opacity: 1;
}
.hw-portal-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--teal);
    border-radius: 12px;
    background: rgba(22, 199, 207, 0.1);
    border: 1px solid var(--line);
}
.hw-portal-icon svg {
    width: 28px;
    height: 28px;
}
.hw-portal-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-deep);
}
.hw-portal-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.15;
}
.hw-portal-arrow {
    margin-top: auto;
    font-size: 1.4rem;
    color: var(--teal);
    transition: transform 0.4s var(--transition);
}
.hw-portal-card:hover .hw-portal-arrow {
    transform: translateX(8px);
}

.hw-portals.reveal .hw-portal-card {
    opacity: 0;
    transform: translateY(42px);
    transition:
        opacity 0.75s var(--transition),
        transform 0.75s var(--transition),
        box-shadow 0.45s var(--transition),
        border-color 0.45s var(--transition);
}
.hw-portals.reveal.is-visible .hw-portal-card {
    opacity: 1;
    transform: none;
}
.hw-portals.reveal.is-visible .hw-portal-card:nth-child(1) {
    transition-delay: 0.1s;
}
.hw-portals.reveal.is-visible .hw-portal-card:nth-child(2) {
    transition-delay: 0.24s;
}
.hw-portals.reveal.is-visible .hw-portal-card:nth-child(3) {
    transition-delay: 0.38s;
}

/* ---------- MISSION MARQUEE ---------- */
.hw-marquee {
    background: linear-gradient(105deg, #0a727c 0%, #0b9ca7 100%);
    color: var(--gold-bright);
    padding: 2.6rem 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.hw-marquee-rail {
    display: flex;
    width: max-content;
}
.hw-marquee-track {
    display: flex;
    align-items: center;
    gap: 2.6rem;
    white-space: nowrap;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: clamp(1.8rem, 3.6vw, 3.2rem);
    animation: hw-scroll 34s linear infinite;
}
.hw-marquee-dot {
    color: var(--teal-bright);
    font-size: 1rem;
    font-style: normal;
}
@keyframes hw-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ---------- SPLIT ENHANCEMENTS ---------- */
.hw-split .media-parallax-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hw-split .media-parallax-wrap img {
    transition: transform 1.3s var(--transition);
}
.hw-split .media-container:hover .media-parallax-wrap img {
    transform: scale(1.04);
}

/* Generic chapter section (used on sponsor.html) */
.home-chapter-section {
    padding: 5rem 4vw 1rem;
    text-align: center;
}
.home-chapter-section .section-narrow {
    max-width: 860px;
    margin: 0 auto;
}
.home-chapter-section h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin: 0.6rem 0 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hw-portals-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
    }
    .hw-hero-content {
        padding: 7rem 6vw 5rem;
    }
    .home-page .hw-archive.history-accordion-section {
        --history-open-height: 42svh;
    }
    .home-page .hw-archive .history-accordion-row {
        grid-template-columns: 88px 1fr;
    }
    .home-page .hw-archive .history-accordion-link {
        grid-column: 2;
        justify-self: start;
    }
    .phone-video-media {
        min-height: auto;
        width: min(520px, 100%);
        margin-inline: auto;
    }
}
@media (max-width: 640px) {
    .hw-portals {
        padding: 4rem 6vw;
    }
    .hw-portals-grid {
        gap: 1.2rem;
    }
    .hw-portal-card {
        padding: 1.8rem 1.4rem;
    }
    .hw-hero-cue {
        display: none;
    }
    .hw-marquee-track {
        gap: 1.6rem;
    }
    .home-page .hw-archive.history-accordion-section {
        --history-open-height: 36svh;
        --history-top-offset: 4.8rem;
    }
    .home-page .hw-archive .history-accordion-list {
        width: calc(100% - 28px);
    }
    .home-page .hw-archive .history-accordion-row {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }
    .home-page .hw-archive .history-accordion-link {
        grid-column: auto;
    }
    .home-page .hw-archive .history-accordion-image-wrap {
        padding: 0 1rem 1rem;
    }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .hw-orb,
    .hw-hero-grid,
    .hw-hero-media img,
    .hw-marquee-track,
    .hw-hero-cue::after {
        animation: none !important;
    }
    .hw-word,
    .hw-hero-eyebrow,
    .hw-hero-lead,
    .hw-hero-cta,
    .hw-trust {
        opacity: 1 !important;
        transform: none !important;
    }
}

.home-page .hw-archive.history-accordion-section {
    overflow: visible !important;
}
