/* ==========================================================================
   Jacqueline Magawa — Portfolio
   Editorial aviation × cybersecurity. Cream / navy / terracotta / teal.
   ========================================================================== */

:root {
        --cream: #f3f1ea;
        --cream-2: #ece7db;
        --paper: #fbfaf5;
        --ink: #13293b;
        --ink-2: #24384c;
        --ink-soft: #4a5b6b;
        --rust: #c0503c;
        --rust-deep: #a53d2a;
        --teal: #2f7d6b;
        --gold: #d99a3a;
        --muted: #8b8676;
        --line: rgba(19, 41, 59, 0.12);
        --line-strong: rgba(19, 41, 59, 0.22);

        --font-display: "Outfit", system-ui, sans-serif;
        --font-body: "Hanken Grotesk", system-ui, sans-serif;
        --font-mono: "JetBrains Mono", ui-monospace, monospace;

        --container: 1536px;
        --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
}

body {
        font-family: var(--font-body);
        background: var(--cream);
        color: var(--ink);
        font-size: 17px;
        line-height: 1.65;
        overflow-x: hidden;
        position: relative;
}

/* Fine grain texture over the whole page */
body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 1;
        opacity: 0.4;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
        mix-blend-mode: multiply;
}

::selection {
        background: var(--rust);
        color: var(--cream);
}

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

a {
        color: inherit;
        text-decoration: none;
}

.container {
        width: 100%;
        max-width: var(--container);
        padding-inline: 80px;
        margin-inline: auto;
        position: relative;
        z-index: 2;
        box-sizing: border-box;
}

/* ---------- Type ---------- */
h1,
h2,
h3,
h4 {
        font-family: var(--font-display);
        font-weight: 700;
        line-height: 1.02;
        letter-spacing: -0.02em;
        color: var(--ink);
}

h2 {
        font-size: clamp(2.2rem, 5vw, 3.6rem);
}

h3 {
        font-size: 1.35rem;
        letter-spacing: -0.01em;
}

h4 {
        font-size: 1.1rem;
        letter-spacing: -0.01em;
}

.eyebrow {
        font-family: var(--font-mono);
        font-size: 0.72rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--teal);
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
}

.eyebrow .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--rust);
        display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-mono);
        font-size: 0.78rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        padding: 15px 26px;
        border-radius: 999px;
        border: 1px solid transparent;
        cursor: pointer;
        transition:
                background-color 0.35s var(--ease),
                color 0.35s var(--ease),
                border-color 0.35s var(--ease),
                transform 0.35s var(--ease);
}

.btn:active {
        transform: translateY(1px);
}

.btn-primary {
        background: var(--ink);
        color: var(--cream);
}

.btn-primary:hover {
        background: var(--rust);
}

.btn-rust {
        background: var(--rust);
        color: var(--cream);
}

.btn-rust:hover {
        background: var(--rust-deep);
}

.btn-ghost {
        background: transparent;
        color: var(--ink);
        border-color: var(--line-strong);
}

.btn-ghost:hover {
        border-color: var(--ink);
        background: var(--ink);
        color: var(--cream);
}

.on-dark .btn-ghost {
        color: var(--cream);
        border-color: rgba(243, 241, 234, 0.28);
}

.on-dark .btn-ghost:hover {
        background: var(--cream);
        color: var(--ink);
        border-color: var(--cream);
}

/* ============ NAV ============ */
.site-nav {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 100;
        padding: 18px 0;
        transition:
                background-color 0.4s var(--ease),
                padding 0.4s var(--ease),
                border-color 0.4s var(--ease);
        border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
        background: rgba(243, 241, 234, 0.82);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        padding: 12px 0;
        border-bottom: 1px solid var(--line);
}

.site-nav .container {
        display: flex;
        align-items: center;
        gap: 24px;
}

.brand {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        line-height: 1;
}

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

.brand-name {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.82rem;
        letter-spacing: 0.005em;
        background: linear-gradient(95deg, #1a46c6 0%, #2091d6 55%, #24c4e9 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
}

.nav-links {
        display: flex;
        gap: 26px;
        margin-left: auto;
}

.nav-link {
        font-family: var(--font-mono);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1.68px;
        text-transform: uppercase;
        color: var(--ink-soft);
        position: relative;
        padding: 4px 0;
        transition: color 0.3s var(--ease);
}

.nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        height: 2px;
        width: 0;
        background: var(--rust);
        transition: width 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
        color: var(--ink);
}

.nav-link.active::after {
        width: 100%;
}

.nav-cta {
        font-family: var(--font-mono);
        font-size: 0.74rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        background: var(--ink);
        color: var(--cream);
        padding: 11px 22px;
        border-radius: 999px;
        transition:
                background-color 0.3s var(--ease),
                transform 0.3s var(--ease);
}

.nav-cta:hover {
        background: var(--rust);
        transform: translateY(-1px);
}

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

.nav-toggle span {
        width: 24px;
        height: 2px;
        background: var(--ink);
        transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
        opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
}
.nav-toggle.open span {
        background: var(--cream);
}

/* ============ HERO ============ */
.hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 140px 0 80px;
        overflow: hidden;
}

.hero .container {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        column-gap: 60px;
        row-gap: 0;
        align-items: center;
}

.hero-line {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 22%;
        width: 100%;
        z-index: 1;
        opacity: 0.55;
        pointer-events: none;
}

.hero-kicker {
        margin-bottom: 26px;
}

.hero h1 {
        font-size: clamp(3.4rem, 9vw, 7.2rem);
        line-height: 0.86;
        font-weight: 300;
        letter-spacing: -0.03em;
        margin-bottom: 28px;
}

.hero h1 .rust {
        color: var(--rust);
        font-weight: 400;
}

.hero .lede {
        max-width: 600px;
        color: var(--ink-soft);
        font-size: 1.08rem;
        margin-bottom: 34px;
}

.lede-lead {
        display: block;
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 1.35rem;
        line-height: 1.2;
        color: var(--ink);
        margin-bottom: 12px;
        letter-spacing: -0.01em;
}

.hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 46px;
}

.hero-contact {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px 14px;
        margin-bottom: 30px;
}

.hero-contact .hc-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-mono);
        font-size: 0.78rem;
        letter-spacing: 0.03em;
        color: var(--ink-soft);
        transition: color 0.3s var(--ease);
}

.hero-contact a.hc-item:hover {
        color: var(--rust);
}

.hero-contact .hc-item svg {
        width: 15px;
        height: 15px;
        color: var(--teal);
        flex-shrink: 0;
}

.hero-contact .hc-sep {
        color: var(--line-strong);
        font-size: 0.8rem;
}

.hero-stats {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        gap: 22px 52px;
        flex-wrap: wrap;
        margin-top: 8px;
        padding-top: 26px;
        border-top: 1px solid var(--line);
}

.stat {
        text-align: center;
}

.stat b {
        font-family: var(--font-display);
        font-size: 1.85rem;
        font-weight: 700;
        color: var(--ink);
        display: block;
        line-height: 1;
}

.stat span {
        font-family: var(--font-mono);
        font-size: 0.64rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 8px;
        display: block;
        white-space: nowrap;
}

/* Hero portrait — arched, dashed frame */
.hero-portrait {
        position: relative;
        display: flex;
        justify-content: center;
}

.portrait-frame {
        position: relative;
        width: min(360px, 82%);
        aspect-ratio: 1 / 1;
}

.portrait-frame::before {
        content: "";
        position: absolute;
        inset: 0;
        transform: translate(18px, 18px);
        border: 1.5px solid var(--rust);
        border-radius: 16px;
        z-index: 0;
}

.portrait-frame img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 16px;
        box-shadow:
                0 24px 55px rgba(19, 41, 59, 0.40),
                0 55px 110px rgba(19, 41, 59, 0.34),
                0 80px 160px rgba(19, 41, 59, 0.22);
        filter: saturate(1.02);
}

.portrait-badge {
        position: absolute;
        right: -10px;
        bottom: 22px;
        z-index: 2;
        background: var(--rust);
        color: var(--cream);
        font-family: var(--font-mono);
        font-size: 0.66rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        padding: 9px 16px;
        border-radius: 999px;
        box-shadow: 0 12px 30px rgba(192, 80, 60, 0.35);
}

.scroll-cue {
        position: absolute;
        left: 4vw;
        bottom: 30px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: var(--font-mono);
        font-size: 0.66rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
        z-index: 3;
        opacity: 0;
}

.scroll-cue .arrow {
        color: var(--rust);
        animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(4px); }
}

/* ============ MARQUEE ============ */
.marquee {
        background: var(--ink);
        overflow: hidden;
        padding: 20px 0;
        position: relative;
        z-index: 3;
}

.marquee-track {
        display: flex;
        gap: 0;
        width: max-content;
        animation: marquee 32s linear infinite;
}

.marquee:hover .marquee-track {
        animation-play-state: paused;
}

.marquee-item {
        font-family: var(--font-mono);
        font-size: 0.9rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--cream);
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        padding: 0 30px;
}

.marquee-item::after {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--rust);
        margin-left: 60px;
}

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

/* ============ SECTIONS ============ */
.section {
        padding: 120px 0;
        position: relative;
}

.on-cream {
        background: var(--cream);
}
.on-paper {
        background: var(--paper);
}
.on-dark {
        background: var(--ink);
        color: var(--cream);
}
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 {
        color: var(--cream);
}

.sec-head {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 24px;
        align-items: baseline;
        margin-bottom: 64px;
        border-top: 1px solid var(--line);
        padding-top: 26px;
}

.on-dark .sec-head {
        border-color: rgba(243, 241, 234, 0.16);
}

.sec-index {
        font-family: var(--font-mono);
        font-size: 0.85rem;
        letter-spacing: 0.1em;
        color: var(--rust);
        font-weight: 500;
}

.sec-head h2 {
        grid-column: 2;
}

.sec-kicker {
        grid-column: 2;
        font-family: var(--font-mono);
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 10px;
}

.sec-head--split {
        grid-template-columns: auto 1fr auto;
        align-items: baseline;
}

.sec-head--split .sec-kicker {
        grid-column: 3;
        grid-row: 1;
        margin-top: 0;
        text-align: right;
}

.sec-head--split .sec-note {
        grid-column: 2 / -1;
        max-width: none;
}

.sec-head .sec-note {
        grid-column: 2;
        max-width: 460px;
        color: var(--ink-soft);
        margin-top: 16px;
        font-size: 0.98rem;
}

.on-dark .sec-head .sec-note {
        color: rgba(243, 241, 234, 0.72);
}

/* ============ ABOUT ============ */
.about-grid {
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 64px;
        align-items: start;
}

.about-copy p {
        margin-bottom: 18px;
        color: var(--ink-soft);
}

.about-copy p.lead {
        font-size: 1.15rem;
        color: var(--ink);
}

.about-copy a {
        color: var(--rust);
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 1px;
        transition: color 0.3s var(--ease);
}

.about-copy a:hover {
        color: var(--rust-deep);
}

.about-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
        margin-top: 46px;
}

.about-stat {
        border-top: 1px solid var(--line-strong);
        padding-top: 16px;
}

.about-stat b {
        font-family: var(--font-display);
        font-size: 2.6rem;
        font-weight: 400;
        line-height: 1;
        color: var(--rust);
        display: block;
}

.about-stat span {
        display: block;
        margin-top: 14px;
        font-size: 0.86rem;
        color: var(--ink-soft);
        line-height: 1.45;
}

.about-info {
        border-top: 1px solid var(--line);
}

.about-info-row {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 18px;
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
}

.about-info-row .k {
        color: var(--ink);
        font-size: 0.98rem;
}

.about-info-row .v {
        font-family: var(--font-mono);
        font-size: 0.76rem;
        letter-spacing: 0.04em;
        color: var(--ink-soft);
        text-align: right;
}

.about-info-row .v a {
        color: var(--rust);
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color 0.3s var(--ease);
}

.about-info-row .v a:hover {
        color: var(--rust-deep);
}

.info-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
        background: var(--line);
        border: 1px solid var(--line);
        border-radius: 14px;
        overflow: hidden;
        margin-top: 30px;
}

.info-cell {
        background: var(--paper);
        padding: 18px 20px;
}

.info-cell span {
        font-family: var(--font-mono);
        font-size: 0.64rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
        display: block;
        margin-bottom: 6px;
}

.info-cell b {
        font-size: 0.98rem;
        color: var(--ink);
}

.about-panel {
        background: var(--ink);
        color: var(--cream);
        border-radius: 18px;
        padding: 34px 30px;
}

.about-panel h3 {
        color: var(--cream);
        margin-bottom: 22px;
        font-size: 1.15rem;
}

.credential-list {
        list-style: none;
        margin-bottom: 26px;
}

.credential-list li {
        padding: 15px 0;
        border-top: 1px solid rgba(243, 241, 234, 0.14);
}

.credential-list li:first-child {
        border-top: none;
}

.credential-list b {
        display: block;
        font-family: var(--font-display);
        font-size: 0.98rem;
        color: var(--cream);
        margin-bottom: 3px;
}

.credential-list span {
        font-family: var(--font-mono);
        font-size: 0.7rem;
        letter-spacing: 0.06em;
        color: rgba(243, 241, 234, 0.6);
}

.panel-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
}

.about-panel .btn-ghost {
        color: var(--cream);
        border-color: rgba(243, 241, 234, 0.28);
}

.about-panel .btn-ghost:hover {
        background: var(--cream);
        color: var(--ink);
        border-color: var(--cream);
}

/* ============ TIMELINE (Flight Log) ============ */
.timeline {
        border-top: 1px solid var(--line-strong);
}

.tl-item {
        display: grid;
        grid-template-columns: 3fr 6fr 3fr;
        gap: 20px 40px;
        align-items: start;
        padding: 30px 4px;
        border-bottom: 1px solid var(--line);
        transition: border-color 0.5s var(--ease);
}

.tl-item:hover {
        border-bottom-color: var(--ink);
}

.tl-when {
        display: flex;
        flex-direction: column;
        gap: 9px;
        padding-top: 5px;
}

.tl-date {
        font-family: var(--font-mono);
        font-size: 0.8rem;
        letter-spacing: 0.03em;
        color: var(--teal);
}

.tl-tag {
        font-family: var(--font-mono);
        font-size: 0.6rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--rust);
}

.tl-main h3 {
        font-size: clamp(1.35rem, 2.4vw, 1.72rem);
        font-weight: 400;
        letter-spacing: -0.01em;
        line-height: 1.15;
        transition: transform 0.5s var(--ease);
}

.tl-item:hover .tl-main h3 {
        transform: translateX(5px);
}

.tl-org {
        margin-top: 9px;
        font-style: italic;
        font-size: 0.95rem;
        color: var(--ink-soft);
}

.tl-note {
        padding-top: 5px;
        color: var(--ink-soft);
        font-size: 0.94rem;
        line-height: 1.6;
}

.tl-note a {
        color: var(--rust);
        text-decoration: underline;
        text-underline-offset: 3px;
        transition: color 0.3s var(--ease);
}

.tl-note a:hover {
        color: var(--rust-deep);
}

/* ============ EDUCATION & CREDENTIALS ============ */
.edu-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 56px;
        align-items: start;
}

.edu-left {
        position: relative;
        border-top: 1px solid var(--line-strong);
        padding-top: 44px;
}

.edu-left::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 42%;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--rust);
}

.edu-cap {
        display: block;
        color: var(--rust);
        margin-bottom: 20px;
}

.edu-cap svg {
        width: 30px;
        height: 30px;
}

.edu-block {
        margin-bottom: 48px;
}

.edu-block:last-child {
        margin-bottom: 0;
}

.edu-block h3 {
        font-size: clamp(1.4rem, 2.4vw, 1.9rem);
        font-weight: 400;
        line-height: 1.15;
}

.edu-sub {
        font-style: italic;
        color: var(--ink-soft);
        margin: 12px 0 18px;
        font-size: 0.98rem;
}

.edu-arrow {
        display: inline-block;
        width: 1.2em;
        height: 0;
        border-top: 1px solid var(--ink);
        vertical-align: middle;
        margin: 0 2px;
}

.cert-card {
        background: var(--cream-2);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 22px 24px;
        margin-bottom: 18px;
        transition:
                transform 0.35s var(--ease),
                box-shadow 0.35s var(--ease);
}

.cert-card:last-child {
        margin-bottom: 0;
}

.cert-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 38px rgba(19, 41, 59, 0.08);
}

.cert-head {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: var(--font-mono);
        font-size: 0.66rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 12px;
}

.cert-head svg {
        width: 16px;
        height: 16px;
        color: var(--teal);
}

.cert-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--rust);
}

.cert-card h4 {
        font-size: 1.12rem;
        font-weight: 600;
        margin-bottom: 8px;
}

.cert-card p {
        font-size: 0.92rem;
        color: var(--ink-soft);
        line-height: 1.55;
}

/* ============ CHECKLIST ============ */
.checklist-subhead {
        font-family: var(--font-mono);
        font-size: 0.72rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--rust);
        margin: 8px 0 22px;
}

.checklist-subhead:not(:first-of-type) {
        margin-top: 48px;
}

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

.check-item {
        display: flex;
        gap: 16px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 24px 22px;
        transition:
                transform 0.35s var(--ease),
                border-color 0.35s var(--ease),
                box-shadow 0.35s var(--ease);
}

.on-cream .check-item {
        background: #fff;
}

.check-item:hover {
        transform: translateY(-4px);
        border-color: var(--line-strong);
        box-shadow: 0 18px 40px rgba(19, 41, 59, 0.08);
}

.check-box {
        flex-shrink: 0;
        width: 34px;
        height: 34px;
        border-radius: 9px;
        background: var(--teal);
        color: var(--cream);
        display: grid;
        place-items: center;
}

.check-box svg {
        width: 18px;
        height: 18px;
}

.check-item h4 {
        margin-bottom: 5px;
}

.check-item p {
        font-size: 0.9rem;
        color: var(--ink-soft);
}

/* ============ PROJECTS / FILMS GRID ============ */
.cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
}

.project-card {
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 30px 26px;
        transition:
                transform 0.35s var(--ease),
                box-shadow 0.35s var(--ease),
                border-color 0.35s var(--ease);
}

.project-card:hover {
        transform: translateY(-5px);
        border-color: var(--line-strong);
        box-shadow: 0 22px 50px rgba(19, 41, 59, 0.1);
}

.card-meta {
        font-family: var(--font-mono);
        font-size: 0.62rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--muted);
        margin-bottom: 14px;
}

.project-card h4 {
        font-size: 1.18rem;
        margin-bottom: 12px;
        line-height: 1.2;
}

.project-card p {
        font-size: 0.93rem;
        color: var(--ink-soft);
        margin-bottom: 18px;
}

.tag-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
}

.tag-chip {
        font-family: var(--font-mono);
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--teal);
        border: 1px solid var(--line-strong);
        padding: 5px 11px;
        border-radius: 999px;
}

.center-cta {
        text-align: center;
        margin-top: 46px;
}

/* Training films */
.film-card {
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 16px;
        overflow: hidden;
        transition:
                transform 0.35s var(--ease),
                box-shadow 0.35s var(--ease);
}

.film-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 50px rgba(19, 41, 59, 0.1);
}

.film-media {
        position: relative;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        cursor: pointer;
        background: #0c1a26;
}

.film-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s var(--ease);
}

.film-card:hover .film-media img {
        transform: scale(1.05);
}

.film-media video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 2;
}

.film-media iframe.film-fullvideo {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        z-index: 4;
}

.film-badge {
        position: absolute;
        left: 12px;
        bottom: 12px;
        z-index: 3;
        font-family: var(--font-mono);
        font-size: 0.58rem;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--cream);
        background: rgba(8, 21, 33, 0.62);
        border: 1px solid rgba(243, 241, 234, 0.22);
        padding: 5px 10px;
        border-radius: 999px;
        opacity: 0;
        transform: translateY(6px);
        transition:
                opacity 0.35s var(--ease),
                transform 0.35s var(--ease);
        pointer-events: none;
        backdrop-filter: blur(4px);
}

.film-media.is-preview .film-badge {
        opacity: 1;
        transform: none;
}

.film-media.is-preview .film-play,
.film-media.is-playing .film-play {
        opacity: 0;
}

.film-media.is-playing .film-badge {
        display: none;
}

.film-play {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        transition: opacity 0.35s var(--ease);
}

.film-play svg {
        width: 58px;
        height: 58px;
        transition: transform 0.3s var(--ease);
}

.film-media:hover .film-play svg {
        transform: scale(1.12);
}

.film-body {
        padding: 22px 22px 26px;
}

.film-body .card-meta {
        margin-bottom: 8px;
}

.film-body h4 {
        margin-bottom: 8px;
}

.film-body p {
        font-size: 0.9rem;
        color: var(--ink-soft);
}

.films-intro {
        max-width: 620px;
        color: var(--ink-soft);
        margin: -34px 0 44px;
        font-size: 1.05rem;
}

/* ============ GALLERY — straight aligned grid ============ */
.gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
}

.gallery-item {
        position: relative;
        aspect-ratio: 1 / 1;
        overflow: hidden;
        border-radius: 12px;
        cursor: pointer;
        background: var(--cream-2);
}

.gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
        transform: scale(1.07);
}

.gallery-cap {
        position: absolute;
        inset: auto 0 0 0;
        padding: 30px 16px 14px;
        background: linear-gradient(to top, rgba(12, 26, 38, 0.9), transparent);
        color: var(--cream);
        opacity: 0;
        transform: translateY(8px);
        transition:
                opacity 0.35s var(--ease),
                transform 0.35s var(--ease);
}

.gallery-item:hover .gallery-cap {
        opacity: 1;
        transform: none;
}

.gallery-cap b {
        display: block;
        font-family: var(--font-display);
        font-size: 0.9rem;
        margin-bottom: 3px;
}

.gallery-cap span {
        font-size: 0.75rem;
        color: rgba(243, 241, 234, 0.8);
        line-height: 1.4;
}

/* ============ CONTACT ============ */
.contact-grid {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 56px;
        align-items: start;
}

.contact-lede {
        color: rgba(243, 241, 234, 0.75);
        max-width: 420px;
        margin-bottom: 34px;
}

.freq-list {
        display: flex;
        flex-direction: column;
        gap: 4px;
}

.freq-item {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 0;
        border-top: 1px solid rgba(243, 241, 234, 0.14);
}

.freq-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 1px solid rgba(243, 241, 234, 0.22);
        display: grid;
        place-items: center;
        color: var(--gold);
        flex-shrink: 0;
}

.freq-icon svg {
        width: 18px;
        height: 18px;
}

.freq-item span {
        font-family: var(--font-mono);
        font-size: 0.62rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(243, 241, 234, 0.55);
        display: block;
        margin-bottom: 2px;
}

.freq-item a,
.freq-item p {
        color: var(--cream);
        font-size: 0.98rem;
        transition: color 0.3s var(--ease);
}

.freq-item a:hover {
        color: var(--gold);
}

/* Form */
.form-card {
        background: var(--paper);
        border-radius: 18px;
        padding: 36px 34px;
        color: var(--ink);
}

.form-card h3 {
        margin-bottom: 6px;
}

.form-card > p {
        color: var(--ink-soft);
        font-size: 0.94rem;
        margin-bottom: 26px;
}

.form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
}

.field {
        margin-bottom: 16px;
}

.field label {
        font-family: var(--font-mono);
        font-size: 0.64rem;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--muted);
        display: block;
        margin-bottom: 7px;
}

.field input,
.field textarea {
        width: 100%;
        font-family: var(--font-body);
        font-size: 0.98rem;
        color: var(--ink);
        background: var(--cream);
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 13px 15px;
        transition:
                border-color 0.3s var(--ease),
                box-shadow 0.3s var(--ease);
}

.field input:focus,
.field textarea:focus {
        outline: none;
        border-color: var(--rust);
        box-shadow: 0 0 0 3px rgba(192, 80, 60, 0.14);
}

.field textarea {
        min-height: 130px;
        resize: vertical;
}

.honeypot {
        position: absolute;
        left: -9999px;
        opacity: 0;
        height: 0;
        overflow: hidden;
}

.form-card .btn {
        width: 100%;
        justify-content: center;
        margin-top: 4px;
}

.form-note {
        font-family: var(--font-mono);
        font-size: 0.66rem;
        letter-spacing: 0.04em;
        color: var(--muted);
        margin-top: 16px;
        min-height: 20px;
        text-align: center;
}

.form-note.ok {
        color: var(--teal);
}

.form-note.err {
        color: var(--rust);
}

/* ============ CONTACT ============ */
.contact-pink {
        background: #f6dae0;
}

.contact-statement {
        font-size: clamp(2.3rem, 5vw, 3.7rem);
        font-weight: 300;
        letter-spacing: -0.02em;
        line-height: 1.06;
        max-width: 860px;
        margin-bottom: 56px;
        color: var(--ink);
}

.contact-statement .rust {
        color: var(--rust);
        font-weight: 400;
}

.contact-grid {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 28px;
        align-items: stretch;
}

.contact-cards {
        display: flex;
        flex-direction: column;
        gap: 14px;
        height: 100%;
}

.c-connect,
.c-open {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
}

.contact-cards .c-open {
        flex: 1;
        padding-bottom: 35px;
}

.c-card {
        background: #1b3244;
        border: 1px solid rgba(243, 241, 234, 0.08);
        border-radius: 16px;
        padding: 16px 22px;
        display: flex;
        align-items: center;
        gap: 18px;
        text-align: left;
        transition:
                transform 0.35s var(--ease),
                border-color 0.35s var(--ease);
}

a.c-card:hover {
        transform: translateY(-3px);
        border-color: rgba(243, 241, 234, 0.2);
}

.c-icon {
        flex-shrink: 0;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--cream);
        color: var(--ink);
        display: grid;
        place-items: center;
}

.c-icon svg {
        width: 20px;
        height: 20px;
}

.c-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 0;
}

.c-label {
        font-family: var(--font-mono);
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--gold);
}

.c-value {
        color: var(--cream);
        font-size: 1.12rem;
        word-break: break-word;
}

.c-connect,
.c-open {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 14px;
}

.c-socials {
        display: flex;
        gap: 12px;
}

.c-socials a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        border: 1px solid rgba(243, 241, 234, 0.16);
        transition:
                background-color 0.3s var(--ease),
                color 0.3s var(--ease),
                transform 0.3s var(--ease);
}

.c-socials a:nth-child(1) { color: #4a9fe0; }
.c-socials a:nth-child(2) { color: #f3f1ea; }
.c-socials a:nth-child(3) { color: #25d366; }

.c-socials a:nth-child(1):hover { background: #0a66c2; border-color: #0a66c2; color: #fff; }
.c-socials a:nth-child(2):hover { background: #000; border-color: #000; color: #fff; }
.c-socials a:nth-child(3):hover { background: #25d366; border-color: #25d366; color: #fff; }
.c-socials a:hover { transform: translateY(-2px); }

.c-socials svg {
        width: 18px;
        height: 18px;
}

.c-open p {
        color: rgba(243, 241, 234, 0.72);
        font-size: 1.02rem;
        line-height: 1.55;
}

.c-open-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: auto;
}

.c-open-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        white-space: nowrap;
        font-weight: 600;
        padding: 13px 16px;
}

.c-open .btn-ghost {
        color: var(--cream);
        border-color: rgba(243, 241, 234, 0.28);
}

.c-open .btn-ghost:hover {
        background: var(--cream);
        color: var(--ink);
        border-color: var(--cream);
}

/* Contact form — dark card */
.form-card {
        background: #1b3244;
        border: 1px solid rgba(243, 241, 234, 0.08);
        border-radius: 18px;
        padding: 24px 26px;
        color: var(--cream);
        display: flex;
        flex-direction: column;
}

.form-card .btn {
        margin-top: auto;
}

.form-card .form-note {
        min-height: 0;
        margin-top: 10px;
        margin-bottom: 0;
}

.form-card .field label {
        color: var(--gold);
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        margin-bottom: 9px;
}

.form-card .field textarea {
        resize: none;
}

.form-card .field input,
.form-card .field textarea {
        background: #eceadf;
        border: 1px solid transparent;
        color: var(--ink);
}

.form-card .field input::placeholder,
.form-card .field textarea::placeholder {
        color: #8b8676;
}

.form-card .field input:focus,
.form-card .field textarea:focus {
        border-color: var(--rust);
        box-shadow: 0 0 0 3px rgba(192, 80, 60, 0.22);
}

.form-card .btn {
        width: 100%;
        justify-content: center;
        margin-top: auto;
}

.form-card .form-note {
        color: rgba(243, 241, 234, 0.6);
}

.form-card .form-note.ok {
        color: #7fd1bd;
}

/* ============ FOOTER ============ */
.site-footer {
        background: #0d1b27;
        color: var(--cream);
        padding: 56px 0;
}

.footer-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
}

.footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        font-family: var(--font-mono);
        font-size: 15px;
        letter-spacing: 0.08em;
        color: rgba(243, 241, 234, 0.6);
}

.footer-brand > span {
        white-space: nowrap;
}

.footer-tagline {
        font-family: var(--font-mono);
        color: rgb(174, 184, 192);
        font-weight: 500;
        font-size: 14px;
        letter-spacing: normal;
}

/* ============ CUSTOM CURSOR (smooth blue dot) ============ */
.cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 9px;
        height: 9px;
        background: #10b981;
        border-radius: 50%;
        pointer-events: none;
        z-index: 100000;
        opacity: 0;
        will-change: transform;
        transition: opacity 0.2s ease;
}

.cursor-dot.is-visible {
        opacity: 1;
}

.cursor-dot.is-hover {
        opacity: 0;
}

@media (hover: none), (pointer: coarse) {
        .cursor-dot {
                display: none;
        }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 70;
        width: 46px;
        height: 46px;
        border-radius: 9999px;
        border: none;
        background: #f5842a;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow:
                0 6px 18px 0 rgba(245, 130, 32, 0.35),
                0 2px 6px 0 rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition:
                opacity 0.3s var(--ease),
                transform 0.3s var(--ease),
                background-color 0.3s var(--ease);
}

.back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
}

.back-to-top:hover {
        background: #e0761f;
        transform: translateY(-2px);
}

.footer-brand img {
        height: 60px;
}

.footer-socials {
        display: flex;
        gap: 22px;
}

.footer-socials a {
        font-family: var(--font-mono);
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(243, 241, 234, 0.7);
        transition: color 0.3s var(--ease);
}

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

/* ============ RÉSUMÉ PREVIEW CHIP ============ */
.resume-chip {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 10px 18px 10px 10px;
        cursor: pointer;
        text-align: left;
        transition:
                transform 0.35s var(--ease),
                box-shadow 0.35s var(--ease),
                border-color 0.35s var(--ease);
}

.resume-chip:hover {
        transform: translateY(-3px);
        border-color: var(--line-strong);
        box-shadow: 0 16px 38px rgba(19, 41, 59, 0.14);
}

.resume-chip-thumb {
        position: relative;
        width: 46px;
        height: 60px;
        flex-shrink: 0;
        border-radius: 6px;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--line);
        box-shadow: 0 6px 14px rgba(19, 41, 59, 0.18);
        transform: rotate(-3deg);
        transition: transform 0.35s var(--ease);
}

.resume-chip:hover .resume-chip-thumb {
        transform: rotate(0deg) scale(1.04);
}

.resume-chip-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
}

.resume-chip-text {
        display: flex;
        flex-direction: column;
        line-height: 1.25;
}

.resume-chip-text b {
        font-family: var(--font-display);
        font-size: 0.98rem;
        color: var(--ink);
        font-weight: 700;
}

.resume-chip-text span {
        font-family: var(--font-mono);
        font-size: 0.62rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--muted);
        margin-top: 3px;
}

.resume-chip-eye {
        margin-left: 6px;
        color: var(--rust);
        display: grid;
        place-items: center;
}

.resume-chip-eye svg {
        width: 18px;
        height: 18px;
}

.about-panel .resume-chip {
        width: 100%;
}

/* ============ RÉSUMÉ MODAL ============ */
.resume-modal {
        position: fixed;
        inset: 0;
        z-index: 210;
        background: rgba(9, 18, 27, 0.9);
        backdrop-filter: blur(6px);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 3vh 3vw;
}

.resume-modal.open {
        display: flex;
        animation: animIn 0.3s var(--ease) both;
}

.resume-dialog {
        width: min(920px, 100%);
        height: min(92vh, 1100px);
        background: var(--paper);
        border-radius: 16px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.resume-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 16px 14px 22px;
        background: var(--ink);
        color: var(--cream);
}

.resume-title {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
}

.resume-kicker {
        font-family: var(--font-mono);
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
}

.resume-title b {
        font-family: var(--font-display);
        font-size: 1.05rem;
}

.resume-bar-actions {
        display: flex;
        align-items: center;
        gap: 12px;
}

.resume-bar-actions .btn {
        padding: 10px 18px;
}

.resume-close {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(243, 241, 234, 0.12);
        border: 1px solid rgba(243, 241, 234, 0.2);
        color: var(--cream);
        cursor: pointer;
        transition: background 0.3s var(--ease);
}

.resume-close:hover {
        background: var(--rust);
        border-color: var(--rust);
}

.resume-frame-wrap {
        flex: 1;
        background: #52534f;
        overflow: hidden;
}

.resume-frame-wrap iframe {
        width: 100%;
        height: 100%;
        border: 0;
}

@media (max-width: 720px) {
        .resume-dialog {
                height: 94vh;
        }
        .resume-bar-actions .btn {
                display: none;
        }
}

/* ============ LIGHTBOX ============ */
.lightbox {
        position: fixed;
        inset: 0;
        z-index: 200;
        background: rgba(9, 18, 27, 0.94);
        backdrop-filter: blur(6px);
        display: none;
        align-items: center;
        justify-content: center;
        padding: 40px;
}

.lightbox.open {
        display: flex;
}

.lightbox figure {
        max-width: 90vw;
        max-height: 86vh;
        text-align: center;
}

.lightbox img {
        max-width: 100%;
        max-height: 74vh;
        border-radius: 10px;
        margin-inline: auto;
}

.lightbox figcaption {
        color: var(--cream);
        margin-top: 16px;
}

.lightbox figcaption b {
        font-family: var(--font-display);
        display: block;
        font-size: 1.05rem;
}

.lightbox figcaption span {
        font-size: 0.85rem;
        color: rgba(243, 241, 234, 0.7);
}

.lightbox-close,
.lightbox-nav {
        position: absolute;
        background: rgba(243, 241, 234, 0.1);
        border: 1px solid rgba(243, 241, 234, 0.2);
        color: var(--cream);
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        cursor: pointer;
        transition: background 0.3s var(--ease);
}

.lightbox-close:hover,
.lightbox-nav:hover {
        background: var(--rust);
        border-color: var(--rust);
}

.lightbox-close {
        top: 26px;
        right: 26px;
}

.lightbox-nav.prev {
        left: 26px;
        top: 50%;
        transform: translateY(-50%);
}

.lightbox-nav.next {
        right: 26px;
        top: 50%;
        transform: translateY(-50%);
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
        opacity: 0;
        transform: translateY(26px);
        transition:
                opacity 0.7s var(--ease),
                transform 0.7s var(--ease);
}

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

/* Accessibility & renderer fallback: never hide content when motion is reduced */
@media (prefers-reduced-motion: reduce) {
        * {
                animation-duration: 0.001ms !important;
                animation-delay: 0ms !important;
                transition-duration: 0.001ms !important;
                scroll-behavior: auto !important;
        }
        [data-anim],
        .reveal {
                opacity: 1 !important;
                transform: none !important;
        }
        .marquee-track {
                animation: none !important;
        }
        .scroll-cue {
                opacity: 1 !important;
        }
}

@keyframes animIn {
        from {
                transform: translateY(22px);
        }
        to {
                transform: none;
        }
}

[data-anim] {
        opacity: 1;
        animation: animIn 0.85s var(--ease) both;
}

.hero-copy [data-anim]:nth-child(1) { animation-delay: 0.1s; }
.hero-copy [data-anim]:nth-child(2) { animation-delay: 0.22s; }
.hero-copy [data-anim]:nth-child(3) { animation-delay: 0.34s; }
.hero-copy [data-anim]:nth-child(4) { animation-delay: 0.46s; }
.hero-copy [data-anim]:nth-child(5) { animation-delay: 0.58s; }
.hero-portrait[data-anim] { animation-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
        .container {
                padding-inline: 40px;
        }
        .nav-links {
                position: fixed;
                top: 95px;
                left: 0;
                right: 0;
                width: 100%;
                background: var(--cream);
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 16px;
                padding: 24px 22px 30px;
                transform: translateY(-115%);
                opacity: 0;
                transition:
                        transform 0.4s var(--ease),
                        opacity 0.3s var(--ease);
                z-index: 90;
                box-shadow: 0 22px 40px rgba(19, 41, 59, 0.14);
                border-bottom: 1px solid rgba(19, 41, 59, 0.08);
        }
        .nav-links.open {
                transform: translateY(0);
                opacity: 1;
        }
        .nav-links .nav-link {
                font-family: var(--font-display);
                font-weight: 300;
                color: var(--ink);
                font-size: 24px;
                letter-spacing: -0.48px;
                text-transform: none;
                width: 100%;
                padding: 0;
                border-bottom: none;
        }
        .nav-cta {
                display: none;
        }
        .nav-toggle {
                display: flex;
                margin-left: auto;
                z-index: 95;
        }
        .hero .container {
                grid-template-columns: 1fr;
                gap: 48px;
        }
        .hero-portrait {
                order: -1;
        }
        .about-grid,
        .contact-grid,
        .edu-grid {
                grid-template-columns: 1fr;
                gap: 40px;
        }
        .cards-grid,
        .checklist-grid {
                grid-template-columns: repeat(2, 1fr);
        }
        .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
        }
}

@media (max-width: 720px) {
        body {
                font-size: 16px;
        }
        .container {
                padding-inline: 22px;
        }
        .nav-cta {
                display: none;
        }
        .nav-toggle {
                display: flex;
                margin-left: auto;
                z-index: 95;
        }
        .section {
                padding: 84px 0;
        }
        .sec-head {
                margin-bottom: 44px;
        }
        .cards-grid,
        .checklist-grid {
                grid-template-columns: 1fr;
        }
        .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
        }
        .form-row {
                grid-template-columns: 1fr;
                gap: 0;
        }
        .info-strip {
                grid-template-columns: 1fr;
        }
        .tl-item {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 24px 0;
        }
        .tl-when {
                flex-direction: row;
                align-items: baseline;
                gap: 14px;
        }
        .hero-stats {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-align: center;
                gap: 20px;
                flex-wrap: nowrap;
        }
        .hero-stats .stat {
                width: 100%;
        }
        .about-stats {
                grid-template-columns: 1fr;
                gap: 18px;
                justify-items: center;
                text-align: center;
        }
        .about-stat {
                width: 100%;
        }
        .scroll-cue {
                display: none;
        }
        .portrait-label {
                left: -26px;
        }
        .footer-inner {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 16px;
        }
        .footer-brand {
                align-items: center;
                text-align: center;
        }
        .footer-brand > span {
                white-space: normal;
        }
        .footer-socials {
                justify-content: center;
        }
        .footer-tagline {
                text-align: center;
        }
}
