    :root {
        /* =========================
           PALETTE WÀLLU
        ========================= */

        --background: #FFFFFF;
        --background-soft: #F8F6F0;
        --background-card: #FFFFFF;

        --ink: #172033;          /* fond nuit indigo — teinture wax/indigo */
        --ink-soft: #232C42;

        --text: #172033;
        --text-secondary: #5F6470;
        --text-muted: #858A94;
        --text-on-ink: #EFEAE0;
        --text-on-ink-muted: #9AA0B4;

        --gold: #B8892E;
        --gold-light: #D4A84F;
        --gold-soft: #F3E7C7;

        --bronze: #7A5428;

        --border: #E8E3D8;
        --border-on-ink: rgba(239, 234, 224, .14);

        --shadow: rgba(23, 32, 51, 0.08);

        --container: 1180px;
    }


    /* =========================
       RESET
    ========================= */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Work Sans', sans-serif;
        background: var(--background);
        color: var(--text);
        overflow-x: hidden;
        min-height: 100vh;
    }

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

    a { color: inherit; }

    :focus-visible {
        outline: 2px solid var(--gold);
        outline-offset: 3px;
    }

    @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
            animation-duration: .001ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: .001ms !important;
            scroll-behavior: auto !important;
        }
    }

    .wrap {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 8%;
    }

    /* =========================
       PETIT TITRE / EYEBROW
    ========================= */

    .eyebrow {
        font-family: 'IBM Plex Mono', monospace;
        letter-spacing: 4px;
        color: var(--gold);
        font-size: 12.5px;
        font-weight: 500;
        margin-bottom: 22px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 1px;
        background: var(--gold);
        display: inline-block;
    }

    .eyebrow.on-ink { color: var(--gold-light); }

    h1, h2, h3 {
        font-family: 'Fraunces', serif;
        color: var(--text);
        font-weight: 700;
        line-height: 1.08;
    }

    h2 {
        font-size: clamp(32px, 3.6vw, 46px);
        max-width: 620px;
    }

    h3 {
        font-size: 22px;
        font-weight: 600;
    }

    .section-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 40px;
        margin-bottom: 60px;
    }

    .section-head .lede {
        max-width: 340px;
        color: var(--text-secondary);
        font-size: 16px;
        line-height: 1.7;
        padding-bottom: 4px;
    }

    section {
        position: relative;
        padding: 120px 0;
    }

    section.tight { padding: 90px 0; }


    /* =========================
       BOUTONS
    ========================= */

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: var(--gold);
        color: #FFFFFF;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        border: 1px solid var(--gold);
        transition: .3s;
        box-shadow: 0 8px 20px rgba(184, 137, 46, .15);
        cursor: pointer;
    }

    .btn:hover {
        transform: translateY(-3px);
        background: var(--gold-light);
        border-color: var(--gold-light);
        color: #FFFFFF;
        box-shadow: 0 12px 25px rgba(184, 137, 46, .22);
    }

    .secondary {
        border: 1px solid var(--gold);
        color: var(--gold);
        background: transparent;
        padding: 15px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        font-size: 15px;
        transition: .3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .secondary:hover {
        background: var(--gold-soft);
        color: var(--bronze);
        border-color: var(--gold-light);
        transform: translateY(-3px);
    }

    .secondary.on-ink {
        border-color: var(--border-on-ink);
        color: var(--text-on-ink);
    }

    .secondary.on-ink:hover {
        background: rgba(239, 234, 224, .08);
        color: var(--gold-light);
        border-color: var(--gold-light);
    }


    /* =========================
       HEADER
    ========================= */

    header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 60;
        padding: 30px 8%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        background: transparent;
        border-bottom: 1px solid transparent;
        transition: background .35s ease, padding .35s ease, border-color .35s ease, box-shadow .35s ease;
    }

    header.scrolled {
        background: rgba(255, 255, 255, .88);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border);
        padding: 18px 8%;
        box-shadow: 0 10px 30px -20px rgba(23, 32, 51, .25);
    }

    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
        min-width: 0;
    }

    .logo-image {
        display: block;
        width: 180px;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    nav {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    nav a {
        color: var(--text);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        opacity: .8;
        transition: .3s;
    }

    nav a:hover,
    nav a.active {
        color: var(--gold);
        opacity: 1;
    }

    header .cta-desktop { display: inline-flex; }

    /* =========================
       MENU BURGER (mobile)
    ========================= */

    .menu-toggle {
        display: none;
        position: relative;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 1px solid var(--border);
        background: var(--background);
        cursor: pointer;
        z-index: 70;
        flex-shrink: 0;
    }

    .menu-toggle span {
        position: absolute;
        left: 11px;
        width: 20px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: transform .3s ease, opacity .3s ease, top .3s ease;
    }

    .menu-toggle span:nth-child(1) { top: 15px; }
    .menu-toggle span:nth-child(2) { top: 21px; }
    .menu-toggle span:nth-child(3) { top: 27px; }

    .menu-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

    .mobile-nav {
        position: fixed;
        inset: 0;
        z-index: 55;
        background: var(--ink);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 90px 10% 60px;
        transform: translateY(-100%);
        transition: transform .4s cubic-bezier(.65,0,.35,1);
    }

    .mobile-nav.open { transform: translateY(0); }

    .mobile-nav nav {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .mobile-nav nav a {
        color: var(--text-on-ink);
        font-family: 'Fraunces', serif;
        font-size: 32px;
        font-weight: 600;
        opacity: 1;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-on-ink);
        width: 100%;
    }

    .mobile-nav nav a:hover { color: var(--gold-light); }

    .mobile-nav .btn {
        margin-top: 36px;
        align-self: flex-start;
    }

    body.nav-open { overflow: hidden; }


    /* =========================
       RACINES (fond décoratif global)
    ========================= */

    .roots {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: linear-gradient(to bottom, transparent, var(--gold), transparent);
        opacity: .18;
        z-index: 1;
        pointer-events: none;
    }

    .roots:before,
    .roots:after {
        content: "";
        position: absolute;
        width: 180px;
        height: 300px;
        border-left: 1px solid var(--gold);
        border-radius: 50%;
        opacity: .25;
    }

    .roots:before { top: 400px; left: -150px; transform: rotate(-20deg); }
    .roots:after  { top: 650px; right: -150px; transform: rotate(20deg); }


    /* =========================
       HERO
    ========================= */

    .hero {
        min-height: 100vh;
        position: relative;
        display: flex;
        align-items: center;
        padding: 170px 8% 100px;
        overflow: hidden;
        background:
            radial-gradient(circle at 80% 20%, rgba(212, 168, 79, .08), transparent 30%),
            var(--background);
    }

    .hero .wrap {
        padding: 0;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 70px;
        align-items: center;
        max-width: var(--container);
        width: 100%;
    }

    .hero-content { z-index: 5; }

    h1 {
        font-size: clamp(44px, 4.6vw, 68px);
        font-weight: 700;
    }

    h1 span { color: var(--gold); }

    .hero-content p {
        margin-top: 26px;
        max-width: 520px;
        font-size: 18px;
        line-height: 1.7;
        color: var(--text-secondary);
    }

    .hero-content p.agenda {
        font-size: 15px;
        color: var(--text-muted);
        border-left: 2px solid var(--gold-soft);
        padding-left: 18px;
    }

    .actions {
        margin-top: 40px;
        display: flex;
        gap: 18px;
        align-items: center;
        flex-wrap: wrap;
    }

    /* stat rail under hero text */
    .hero-stats {
        margin-top: 60px;
        display: flex;
        gap: 44px;
        flex-wrap: wrap;
    }

    .hero-stats div strong {
        display: block;
        font-family: 'Fraunces', serif;
        font-size: 30px;
        color: var(--text);
    }

    .hero-stats div span {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-muted);
    }

    /* =========================
       VIDEO CARD (hero)
    ========================= */

    .hero-media { position: relative; z-index: 5; }

    .video-card {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        aspect-ratio: 4 / 5;
        cursor: pointer;
        border: 1px solid var(--border);
        box-shadow: 0 30px 60px -20px rgba(23, 32, 51, .25);
        background: var(--ink);
    }

    .video-card .poster {
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at 30% 20%, rgba(212,168,79,.35), transparent 55%),
            linear-gradient(200deg, #1E2740 0%, #172033 55%, #10152A 100%);
    }

    .video-card .poster svg {
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 340px;
        opacity: .9;
    }

    .video-card .play {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 18px;
    }

    .play-btn {
        width: 74px;
        height: 74px;
        border-radius: 50%;
        background: rgba(255,255,255,.14);
        border: 1px solid rgba(255,255,255,.4);
        backdrop-filter: blur(6px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .3s;
    }

    .video-card:hover .play-btn {
        background: var(--gold);
        border-color: var(--gold);
        transform: scale(1.08);
    }

    .play-btn svg { width: 22px; height: 22px; margin-left: 4px; }

    .video-caption {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11.5px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--text-on-ink);
    }

    .video-card .badge {
        position: absolute;
        top: 20px;
        left: 20px;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        letter-spacing: 1px;
        color: var(--text-on-ink);
        background: rgba(0,0,0,.3);
        border: 1px solid rgba(255,255,255,.2);
        padding: 6px 12px;
        border-radius: 30px;
    }

    .video-card .duration {
        position: absolute;
        bottom: 20px;
        right: 20px;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 11px;
        color: var(--text-on-ink);
        background: rgba(0,0,0,.35);
        padding: 5px 10px;
        border-radius: 4px;
    }

    /* =========================
       MOTIF & BAOBAB
    ========================= */

    .pattern {
        position: absolute;
        right: 0;
        top: 0;
        width: 500px;
        height: 500px;
        opacity: .07;
        background-image: radial-gradient(var(--gold) 2px, transparent 2px);
        background-size: 35px 35px;
        pointer-events: none;
    }

    .baobab-mark { animation: float 6s infinite ease-in-out; }

    @keyframes float { 50% { transform: translateY(-15px); } }


    /* =========================
       VIDEO MODAL
    ========================= */

    .video-modal {
        position: fixed;
        inset: 0;
        background: rgba(10, 13, 26, .88);
        z-index: 100;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 6vw;
    }

    .video-modal.open { display: flex; }

    .video-modal .frame {
        width: 100%;
        max-width: 960px;
        aspect-ratio: 16/9;
        position: relative;
    }

    .video-modal iframe {
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 10px;
    }

    .video-modal .close {
        position: absolute;
        top: -46px;
        right: 0;
        background: none;
        border: 1px solid var(--border-on-ink);
        color: var(--text-on-ink);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
        line-height: 1;
    }


    /* =========================
       02 — VISION (texte + accent)
    ========================= */

    .vision {
        background: var(--background-soft);
    }

    .vision .grid {
        display: grid;
        grid-template-columns: .85fr 1.15fr;
        gap: 80px;
        align-items: start;
    }

    .vision blockquote {
        font-family: 'Fraunces', serif;
        font-size: clamp(24px, 2.4vw, 32px);
        font-weight: 500;
        line-height: 1.4;
        color: var(--text);
    }

    .vision blockquote::before {
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        background: var(--gold);
        margin-bottom: 26px;
    }

    .vision-copy p {
        color: var(--text-secondary);
        font-size: 16.5px;
        line-height: 1.85;
        margin-bottom: 20px;
        max-width: 560px;
    }

    .vision-copy p:last-child { margin-bottom: 0; }

    .vision-copy strong { color: var(--text); font-weight: 600; }


    /* =========================
       03 — MANIFESTE (piliers + racines)
    ========================= */

    .manifesto { background: var(--background); }

    .pillars {
        position: relative;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 20px;
    }

    .pillar-roots {
        position: absolute;
        top: -34px;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 0;
    }

    .pillar {
        position: relative;
        z-index: 1;
        padding: 0 26px;
        border-left: 1px solid var(--border);
    }

    .pillar:first-child { border-left: none; padding-left: 0; }
    .pillar:last-child { padding-right: 0; }

    .pillar .num {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 12px;
        color: var(--gold);
        letter-spacing: 1px;
        margin-bottom: 18px;
        display: block;
    }

    .pillar h3 { margin-bottom: 14px; }

    .pillar p {
        color: var(--text-secondary);
        font-size: 15px;
        line-height: 1.75;
    }


    /* =========================
       04 — AXES D'ACTION
    ========================= */

    .axes { background: var(--background-soft); }

    .axes-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        border-radius: 18px;
        overflow: hidden;
    }

    .axe {
        background: var(--background-card);
        padding: 44px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        transition: .3s;
    }

    .axe:hover { background: #FFFDF8; }

    .axe .icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: var(--gold-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bronze);
    }

    .axe .icon svg { width: 22px; height: 22px; }

    .axe h3 { font-size: 20px; }

    .axe p {
        color: var(--text-secondary);
        font-size: 15px;
        line-height: 1.75;
    }


    /* =========================
       05 — CHIFFRES (bandeau indigo)
    ========================= */

    .stats-band {
        background: var(--ink);
        color: var(--text-on-ink);
        overflow: hidden;
    }

    .stats-band .wrap { position: relative; z-index: 2; }

    .stats-band .section-head .lede { color: var(--text-on-ink-muted); }
    .stats-band h2 { color: var(--text-on-ink); }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .stat {
        border-top: 1px solid var(--border-on-ink);
        padding-top: 24px;
    }

    .stat strong {
        font-family: 'Fraunces', serif;
        font-size: clamp(34px, 3.4vw, 46px);
        font-weight: 600;
        display: block;
        color: var(--gold-light);
    }

    .stat span {
        font-size: 14px;
        color: var(--text-on-ink-muted);
        display: block;
        margin-top: 10px;
        line-height: 1.6;
    }

    .stats-note {
        margin-top: 50px;
        font-size: 13px;
        color: var(--text-on-ink-muted);
        font-family: 'IBM Plex Mono', monospace;
    }

    .ink-baobab {
        position: absolute;
        right: -60px;
        bottom: -60px;
        width: 380px;
        opacity: .08;
        z-index: 1;
    }


    /* =========================
       06 — VOIX DU MOUVEMENT
    ========================= */

    .voices { background: var(--background); }

    .voices-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .voice-card {
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 34px;
        background: var(--background-card);
    }

    .voice-card p.quote {
        font-family: 'Fraunces', serif;
        font-size: 18px;
        line-height: 1.6;
        color: var(--text);
        margin-bottom: 26px;
    }

    .voice-who {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .voice-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--gold-soft);
        color: var(--bronze);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'IBM Plex Mono', monospace;
        font-size: 13px;
        font-weight: 600;
    }

    .voice-who .name { font-size: 14.5px; font-weight: 600; }
    .voice-who .role { font-size: 13px; color: var(--text-muted); }


    /* =========================
       07 — REJOINDRE (CTA bandeau)
    ========================= */

    .cta-band {
        background: var(--gold-soft);
        border-radius: 28px;
        padding: 80px 70px;
        margin: 0 8%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
        position: relative;
        overflow: hidden;
    }

    .cta-band h2 {
        color: var(--bronze);
        max-width: 480px;
        font-size: clamp(28px, 3vw, 40px);
    }

    .cta-band p {
        color: var(--bronze);
        opacity: .85;
        margin-top: 14px;
        max-width: 420px;
        font-size: 15.5px;
        line-height: 1.7;
    }

    .cta-band .btn {
        background: var(--ink);
        border-color: var(--ink);
        white-space: nowrap;
    }

    .cta-band .btn:hover {
        background: var(--bronze);
        border-color: var(--bronze);
    }


    /* =========================
       FOOTER
    ========================= */

    footer {
        background: var(--ink);
        color: var(--text-on-ink-muted);
        padding: 90px 0 30px;
        margin-top: 120px;
    }

    .footer-top {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 50px;
        padding-bottom: 60px;
        border-bottom: 1px solid var(--border-on-ink);
    }

    .footer-brand .logo-image { width: 150px; margin-bottom: 20px; filter: brightness(0) invert(1); }

    .footer-brand p {
        font-size: 14.5px;
        line-height: 1.7;
        max-width: 280px;
        color: var(--text-on-ink-muted);
    }

    .footer-col h4 {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 12px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--gold-light);
        margin-bottom: 22px;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }

    .footer-col a {
        text-decoration: none;
        color: var(--text-on-ink-muted);
        font-size: 14.5px;
        transition: .25s;
    }

    .footer-col a:hover { color: var(--gold-light); }

    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        font-size: 13px;
        flex-wrap: wrap;
        gap: 14px;
        color: var(--text-on-ink-muted);
    }

    .footer-bottom .socials { display: flex; gap: 18px; }
    .footer-bottom .socials a { font-size: 13px; }


    /* =========================
       MOBILE
    ========================= */

    @media (max-width: 1024px) {
        .hero .wrap { grid-template-columns: 1fr; gap: 46px; }
        .hero-media { order: -1; width: 100%; max-width: 420px; margin: 0 auto; }
        .video-card { aspect-ratio: 3 / 4; }
        .vision .grid { grid-template-columns: 1fr; gap: 40px; }
        .pillars { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
        .pillar:nth-child(2n+1) { border-left: none; padding-left: 0; }
        .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--border); padding-bottom: 30px; }
        .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
        .voices-grid { grid-template-columns: 1fr; }
        .axes-list { grid-template-columns: 1fr; }
        .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
    }

    @media (max-width: 900px) {
        header > nav { display: none; }
        header .cta-desktop { display: none; }
        .menu-toggle { display: block; }
        header { padding: 22px 6%; }
        header.scrolled { padding: 16px 6%; }
        .hero { padding-top: 130px; padding-left: 6%; padding-right: 6%; }
        section { padding: 90px 0; }
        .wrap { padding: 0 6%; }
        .section-head { flex-direction: column; align-items: flex-start; gap: 18px; }
        .cta-band { margin: 0 6%; padding: 50px 34px; flex-direction: column; align-items: flex-start; }
        .hero-media { max-width: 380px; }
        .video-card .poster svg { width: 260px; }
    }

    @media (max-width: 768px) {
        .logo-image { width: 150px; }
        .actions { width: 100%; flex-direction: column; align-items: stretch; }
        .actions .btn, .actions .secondary { width: 100%; text-align: center; }
        .footer-top { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; align-items: flex-start; }
        .hero-media { max-width: 340px; }
        .video-card { aspect-ratio: 4 / 3; border-radius: 16px; }
        .video-modal { padding: 8vw 6vw; }
    }

    @media (max-width: 480px) {
        header { padding: 20px; }
        header.scrolled { padding: 14px 20px; }
        .logo-image { width: 130px; }
        .hero { padding: 120px 20px 60px; }
        .eyebrow { font-size: 10px; letter-spacing: 3px; margin-bottom: 18px; }
        h1 { font-size: 38px; }
        .hero-content p { margin-top: 22px; font-size: 16px; line-height: 1.6; }
        .actions { margin-top: 28px; }
        .hero-stats { gap: 30px; margin-top: 44px; }
        section { padding: 70px 0; }
        .pillars { grid-template-columns: 1fr; }
        .pillar:nth-child(-n+2) { border-bottom: none; padding-bottom: 0; }
        .pillar { border-bottom: 1px solid var(--border); padding-bottom: 30px; margin-bottom: 30px; }
        .pillar:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .stats-grid { grid-template-columns: 1fr; }

        .mobile-nav { padding: 90px 8% 50px; }
        .mobile-nav nav a { font-size: 26px; padding: 12px 0; }

        .hero-media { max-width: 100%; }
        .video-card { aspect-ratio: 16 / 11; border-radius: 14px; }
        .video-card .poster svg { width: 200px; bottom: -30px; }
        .play-btn { width: 56px; height: 56px; }
        .play-btn svg { width: 17px; height: 17px; }
        .video-card .badge { top: 14px; left: 14px; font-size: 10px; padding: 5px 10px; }
        .video-card .duration { bottom: 14px; right: 14px; font-size: 10px; padding: 4px 8px; }
        .video-caption { font-size: 10.5px; letter-spacing: 1px; }
        .video-card .play { gap: 12px; }

        .video-modal { padding: 0; align-items: flex-end; }
        .video-modal .frame { max-width: 100%; border-radius: 0; }
        .video-modal .close {
            top: 12px;
            right: 12px;
            background: rgba(0,0,0,.5);
        }
    }
