/* ------------------------------------------
   Basketball Prep - Main Styles
------------------------------------------ */

/*-- -------------------------- -->
<---    Basketball Prep Hero    -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
    #hero-basketball-prep {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 50rem;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
    }

    #hero-basketball-prep:before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        background:
            linear-gradient(
                to right,
                rgba(10, 22, 40, 0.88) 0%,
                rgba(10, 22, 40, 0.65) 45%,
                rgba(10, 22, 40, 0.15) 75%,
                rgba(10, 22, 40, 0.05) 100%
            ),
            linear-gradient(
                to top,
                rgba(10, 22, 40, 0.6) 0%,
                transparent 50%
            );
    }

    /* ── Container ───────────────────────────────── */

    #hero-basketball-prep .cs-container {
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 1.5rem 4.5rem;
        gap: 2rem;
    }

    /* ── Content block ───────────────────────────── */

    #hero-basketball-prep .cs-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 47.5rem;
    }

    /* ── LIA badge ───────────────────────────────── */

    #hero-basketball-prep .cs-lia-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        background: rgba(201, 168, 76, 0.12);
        border: 0.0625rem solid rgba(201, 168, 76, 0.35);
        border-radius: 100px;
        padding: 0.3125rem 0.75rem 0.3125rem 0.5rem;
        margin-bottom: 0.75rem;
    }

    #hero-basketball-prep .cs-lia-dot {
        width: 0.375rem;
        height: 0.375rem;
        border-radius: 50%;
        background: var(--signingGold);
        flex-shrink: 0;
    }

    #hero-basketball-prep .cs-lia-text {
        font-family: var(--headerFont);
        font-size: 0.625rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.7);
    }

    /* ── Title (white override for dark bg) ──────── */

    #hero-basketball-prep .cs-title {
        font-size: clamp(2.4rem, 8vw, 5.5rem);
        font-weight: 600;
        line-height: 1.05em;
        color: var(--white);
        margin: 0 0 1rem;
        max-width: 100%;
    }

    /* ── Body text (white override for dark bg) ──── */

    #hero-basketball-prep .cs-text {
        font-weight: 300;
        line-height: 1.65;
        color: rgba(255, 255, 255, 0.75);
        max-width: 30rem;
        margin-bottom: 2rem;
    }

    /* ── Button group ────────────────────────────── */

    #hero-basketball-prep .cs-button-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    /* ── Stats ───────────────────────────────────── */

    #hero-basketball-prep .cs-stats {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    #hero-basketball-prep .cs-stat {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    #hero-basketball-prep .cs-stat-number {
        font-family: var(--headerFont);
        font-size: clamp(2.5rem, 6vw, 5rem);
        font-weight: 600;
        color: var(--white);
        line-height: 1em;
    }

    #hero-basketball-prep .cs-stat-label {
        font-family: var(--headerFont);
        font-size: 0.625rem;
        font-weight: 400;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
    }

    #hero-basketball-prep .cs-stat-divider {
        width: 2.5rem;
        height: 0.0625rem;
        background: rgba(255, 255, 255, 0.15);
    }

    /* ── Scroll indicator ────────────────────────── */

    #hero-basketball-prep .cs-scroll {
        display: none;
    }

    /* ── Carousel backgrounds ────────────────────── */

    #hero-basketball-prep .cs-backgrounds {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    #hero-basketball-prep .cs-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
            visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
    }

    #hero-basketball-prep .cs-bg.active {
        opacity: 1;
        visibility: visible;
    }

    #hero-basketball-prep .cs-bg.active img {
        transform: scale(1.05);
    }

    #hero-basketball-prep .cs-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
        transform: scale(1);
        transition: transform 7s ease-out;
    }

    /* ── Progress bar ────────────────────────────── */

    #hero-basketball-prep .cs-progress-track {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0.1875rem;
        background: rgba(255, 255, 255, 0.12);
        z-index: 10;
    }

    #hero-basketball-prep .cs-progress-bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(
            to right,
            rgba(201, 168, 76, 0.5),
            rgba(201, 168, 76, 1)
        );
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero-basketball-prep .cs-container {
        padding: 0 2.5rem 4.5rem;
    }

    #hero-basketball-prep .cs-button-group {
        flex-direction: row;
        align-items: center;
    }

    #hero-basketball-prep .cs-stats {
        flex-direction: row;
        align-items: flex-start;
        gap: 2.5rem;
    }

    #hero-basketball-prep .cs-stat-divider {
        width: 0.0625rem;
        height: 3.75rem;
        align-self: center;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero-basketball-prep .cs-container {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 0 6vw 5rem;
        gap: 3.75rem;
    }

    #hero-basketball-prep .cs-content {
        flex: 1;
    }

    /* ── Stats — right column, right-aligned ─────── */

    #hero-basketball-prep .cs-stats {
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        gap: 1.75rem;
        flex-shrink: 0;
        padding-bottom: 0.25rem;
    }

    #hero-basketball-prep .cs-stat {
        align-items: flex-end;
    }

    #hero-basketball-prep .cs-stat-divider {
        width: 100%;
        height: 0.0625rem;
    }

    /* ── Scroll indicator ────────────────────────── */

    #hero-basketball-prep .cs-scroll {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        position: absolute;
        bottom: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    #hero-basketball-prep .cs-scroll-label {
        font-family: var(--headerFont);
        font-size: 0.5625rem;
        font-weight: 500;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
    }

    #hero-basketball-prep .cs-scroll-line {
        width: 0.0625rem;
        height: 2.5rem;
        background: rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

    #hero-basketball-prep .cs-scroll-line:after {
        content: "";
        position: absolute;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.7);
        animation: scroll-drop 1.8s ease infinite;
        animation-delay: 1.2s;
    }

    @keyframes scroll-drop {
        0%   { top: -100%; }
        100% { top: 100%; }
    }
}

/* Mobile only — 480px and below */
@media only screen and (max-width: 30rem) {
    #hero-basketball-prep {
        min-height: 100svh;
    }

    #hero-basketball-prep .cs-container {
        padding: 0 1rem 4rem;
    }

    #hero-basketball-prep .cs-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
    }

    #hero-basketball-prep .cs-stats {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.75rem;
    }

    #hero-basketball-prep .cs-stat-number {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    #hero-basketball-prep .cs-stat-label {
        font-size: 0.5rem;
        white-space: nowrap;
    }

    #hero-basketball-prep .cs-stat-divider {
        display: block;
        width: 0.0625rem;
        height: 1.75rem;
        align-self: center;
    }
}

/*-- -------------------------- -->
<---     Basketball Prep Video  -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
    #video-basketball-prep {
        padding: var(--sectionPadding);
        background: var(--white);
    }

    #video-basketball-prep .cs-container {
        width: 100%;
        max-width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    /* ── Header ──────────────────────────────────── */

    #video-basketball-prep .cs-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    /* ── Topper with flanking lines (unique layout) ── */

    #video-basketball-prep .cs-topper {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    #video-basketball-prep .cs-topper-line {
        width: 2.5rem;
        height: 0.0625rem;
        background: var(--signingGold);
    }

    #video-basketball-prep .cs-topper-text {
        font-family: var(--headerFont);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--signingGold);
    }

    #video-basketball-prep .cs-subtitle {
        font-family: var(--headerFont);
        font-size: 1.125rem;
        font-weight: 300;
        color: var(--silver);
        margin: 0;
    }

    /* ── Video ───────────────────────────────────── */

    #video-basketball-prep .cs-video-wrap {
        width: 100%;
        border-radius: 0.75rem;
        overflow: hidden;
        background: var(--navy);
        box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.1);
        aspect-ratio: 16 / 9;
    }

    #video-basketball-prep .cs-video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    /* ── Bottom description ──────────────────────── */

    #video-basketball-prep .cs-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        text-align: center;
    }

    #video-basketball-prep .cs-title-accent {
        font-family: var(--headerFont);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--silver);
        margin: 0;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #video-basketball-prep .cs-container {
        padding: 0 2.5rem;
    }

    #video-basketball-prep .cs-bottom {
        gap: 1.5rem;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #video-basketball-prep {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    #video-basketball-prep .cs-video-wrap {
        border-radius: 1rem;
    }
}

/*-- -------------------------- -->
<---      LIA Partnership       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
    #lia-partnership {
        padding: var(--sectionPadding);
        background: var(--navy);
    }

    #lia-partnership .cs-container {
        width: 100%;
        max-width: 100%;
        margin: auto;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
    }

    /* ── Top — content + logo ────────────────────── */

    #lia-partnership .cs-top {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    #lia-partnership .cs-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* ── Topper — gold line decoration (unique) ──── */

    #lia-partnership .cs-topper {
        color: var(--signingGold);
        display: flex;
        align-items: center;
        gap: 0.625rem;
        margin-bottom: 0.75rem;
    }

    #lia-partnership .cs-topper:before {
        content: "";
        display: block;
        width: 2rem;
        height: 0.125rem;
        background: var(--signingGold);
        flex-shrink: 0;
    }

    /* ── Title — white override for dark bg ──────── */

    #lia-partnership .cs-title {
        color: var(--white);
        max-width: 35rem;
        margin: 0 0 1.25rem;
    }

    /* ── Text — muted white for dark bg ─────────── */

    #lia-partnership .cs-text {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 0.75rem;
    }

    #lia-partnership .cs-text:last-of-type {
        margin-bottom: 0;
    }

    /* ── Tagline ─────────────────────────────────── */

    #lia-partnership .cs-tagline {
        font-family: var(--headerFont);
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        margin: 1.75rem 0 0;
        padding-top: 1.75rem;
        border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }

    /* ── Logo column ─────────────────────────────── */

    #lia-partnership .cs-logo-col {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    #lia-partnership .cs-logo-block {
        background: var(--white);
        border: 0.0625rem solid rgba(255, 255, 255, 0.08);
        border-radius: 0.5rem;
        padding: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 10rem;
    }

    #lia-partnership .cs-logo {
        width: 100%;
        max-width: 15rem;
        height: auto;
        object-fit: contain;
    }

    /* ── Pillars strip ───────────────────────────── */

    #lia-partnership .cs-pillars {
        display: flex;
        flex-direction: column;
        border: 0.0625rem solid rgba(255, 255, 255, 0.08);
        border-radius: 0.5rem;
        overflow: hidden;
    }

    #lia-partnership .cs-pillar {
        padding: 1.75rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
        background: rgba(255, 255, 255, 0.02);
    }

    #lia-partnership .cs-pillar + .cs-pillar {
        border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
    }

    #lia-partnership .cs-pillar-icon {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: rgba(201, 168, 76, 0.12);
        position: relative;
        flex-shrink: 0;
    }

    #lia-partnership .cs-pillar-icon:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0.5rem;
        height: 0.5rem;
        border-radius: 50%;
        background: var(--signingGold);
    }

    #lia-partnership .cs-pillar-title {
        font-family: var(--headerFont);
        font-size: 0.8125rem;
        font-weight: 900;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--white);
        line-height: 1.2em;
        margin: 0;
    }

    #lia-partnership .cs-pillar-text {
        font-size: 0.875rem;
        font-weight: 300;
        line-height: 1.65em;
        color: rgba(255, 255, 255, 0.45);
        margin: 0;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #lia-partnership .cs-container {
        padding: 0 2.5rem;
    }

    #lia-partnership .cs-pillars {
        flex-direction: row;
    }

    #lia-partnership .cs-pillar {
        flex: 1;
    }

    #lia-partnership .cs-pillar + .cs-pillar {
        border-top: none;
        border-left: 0.0625rem solid rgba(255, 255, 255, 0.08);
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #lia-partnership {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    #lia-partnership .cs-container {
        padding: 0;
        gap: 4.5rem;
    }

    #lia-partnership .cs-top {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }

    #lia-partnership .cs-content {
        flex: 1;
    }

    #lia-partnership .cs-logo-col {
        flex-shrink: 0;
        width: 22.5rem;
    }

    #lia-partnership .cs-logo-block {
        min-height: 13.75rem;
    }
}

/*-- -------------------------- -->
<---      Athlete Development   -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
    #athlete-development {
        background: var(--white);
        padding: var(--sectionPadding);
    }

    #athlete-development .cs-container {
        width: 100%;
        max-width: 100%;
        margin: auto;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
    }

    /* ── Header ──────────────────────────────────── */

    #athlete-development .cs-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* ── Title / text — centered override ───────── */

    #athlete-development .cs-title {
        font-weight: 600;
        text-align: center;
        margin: 0 0 0.75rem;
    }

    #athlete-development .cs-text {
        text-align: center;
        max-width: 32.5rem;
    }

    /* ── Pillars — mobile card layout ────────────── */

    #athlete-development .cs-pillars {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    #athlete-development .cs-pillar {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    #athlete-development .cs-pillar + .cs-pillar {
        border-top: 0.0625rem solid rgba(0, 0, 0, 0.08);
        padding-top: 1rem;
    }

    /* ── Background image ────────────────────────── */

    #athlete-development .cs-pillar-bg {
        width: 100%;
        height: 12.5rem;
        border-radius: 0.5rem;
        overflow: hidden;
        flex-shrink: 0;
    }

    #athlete-development .cs-pillar-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    #athlete-development .cs-pillar-overlay {
        display: none;
    }

    /* ── Inner ───────────────────────────────────── */

    #athlete-development .cs-pillar-inner {
        padding: 0 0.25rem;
    }

    /* ── Content ─────────────────────────────────── */

    #athlete-development .cs-pillar-content {
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }

    #athlete-development .cs-pillar--right .cs-pillar-content {
        text-align: left;
    }

    #athlete-development .cs-pillar-num {
        font-family: var(--headerFont);
        font-size: 0.625rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        color: rgba(0, 0, 0, 0.35);
        display: block;
    }

    #athlete-development .cs-pillar-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
        font-weight: 600;
        line-height: 1.1em;
        color: var(--navy);
        margin: 0 0 0.5rem;
    }

    /* ── List ────────────────────────────────────── */

    #athlete-development .cs-pillar-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }

    #athlete-development .cs-pillar-list li {
        font-size: 0.75rem;
        font-weight: 300;
        color: var(--charcoal);
        line-height: 1.6em;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    #athlete-development .cs-pillar-list li:before {
        content: "";
        display: block;
        width: 0.3125rem;
        height: 0.3125rem;
        border-radius: 50%;
        background: var(--signingGold);
        flex-shrink: 0;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #athlete-development .cs-container {
        padding: 0 2.5rem;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #athlete-development {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    #athlete-development .cs-container {
        padding: 0;
        gap: 3.5rem;
    }

    #athlete-development .cs-pillars {
        gap: 1rem;
    }

    /* ── Full-width image panel ───────────────────── */

    #athlete-development .cs-pillar {
        position: relative;
        width: 100%;
        height: 26.25rem;
        border-radius: 0.625rem;
        overflow: hidden;
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    #athlete-development .cs-pillar + .cs-pillar {
        border-top: none;
        padding-top: 0;
    }

    #athlete-development .cs-pillar-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        overflow: hidden;
    }

    #athlete-development .cs-pillar-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

    /* ── Overlay ─────────────────────────────────── */

    #athlete-development .cs-pillar-overlay {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    #athlete-development .cs-pillar--left .cs-pillar-overlay {
        background: linear-gradient(
            to right,
            rgba(10, 22, 40, 0.92) 0%,
            rgba(10, 22, 40, 0.7) 40%,
            rgba(10, 22, 40, 0.2) 70%,
            transparent 100%
        );
    }

    #athlete-development .cs-pillar--right .cs-pillar-overlay {
        background: linear-gradient(
            to left,
            rgba(10, 22, 40, 0.92) 0%,
            rgba(10, 22, 40, 0.7) 40%,
            rgba(10, 22, 40, 0.2) 70%,
            transparent 100%
        );
    }

    /* ── Inner ───────────────────────────────────── */

    #athlete-development .cs-pillar-inner {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0 6vw;
    }

    #athlete-development .cs-pillar--right .cs-pillar-inner {
        justify-content: flex-end;
    }

    #athlete-development .cs-pillar--right .cs-pillar-content {
        text-align: right;
    }

    #athlete-development .cs-pillar--right .cs-pillar-list li {
        flex-direction: row-reverse;
    }

    /* ── Content ─────────────────────────────────── */

    #athlete-development .cs-pillar-content {
        max-width: 30rem;
        gap: 0.5rem;
    }

    #athlete-development .cs-pillar-num {
        font-size: 0.625rem;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 0.25rem;
    }

    #athlete-development .cs-pillar-title {
        font-size: clamp(1.6rem, 2.5vw, 2.2rem);
        color: var(--white);
        margin: 0 0 0.75rem;
    }

    #athlete-development .cs-pillar-list li {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.75);
    }

    #athlete-development .cs-pillar-list li:before {
        background: var(--signingGold);
    }
}

/* Large Desktop - 1280px */
@media only screen and (min-width: 80rem) {
    #athlete-development {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    #athlete-development .cs-pillar {
        height: 30rem;
    }

    #athlete-development .cs-pillar-inner {
        padding: 0 6vw;
    }
}

/*-- -------------------------- -->
<---        Typical Day         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
    #typical-day {
        padding: var(--sectionPadding);
        padding-bottom: 0;
        background: var(--white);
    }

    #typical-day .cs-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* ── Header ──────────────────────────────────── */

    #typical-day .cs-header {
        text-align: center;
        margin-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* ── Topper — muted dark override ───────────── */

    #typical-day .cs-topper {
        font-size: 0.6875rem;
        color: rgba(0, 0, 0, 0.35);
        margin-bottom: 0.5rem;
    }

    /* ── Title — centered ────────────────────────── */

    #typical-day .cs-title {
        font-weight: 600;
        color: var(--navy);
        margin: 0 0 0.75rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }

    /* ── Text — centered, muted ──────────────────── */

    #typical-day .cs-text {
        font-size: 0.9375rem;
        line-height: 1.65;
        color: var(--charcoal);
        opacity: 0.6;
        max-width: 27.5rem;
        margin: 0 auto;
        text-align: center;
    }

    /* ── Mobile timeline ─────────────────────────── */

    #typical-day .cs-tl-mobile {
        display: flex;
        flex-direction: column;
        position: relative;
        padding-left: 2.125rem;
    }

    #typical-day .cs-tl-mobile:before {
        content: "";
        position: absolute;
        left: 0.5625rem;
        top: 1.75rem;
        bottom: 5.125rem;
        width: 0.0625rem;
        background: rgba(0, 0, 0, 0.1);
    }

    #typical-day .cs-tl-wrap {
        display: none;
    }

    /* ── Row ─────────────────────────────────────── */

    #typical-day .cs-tl-row {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 0.875rem;
        margin-bottom: 0.75rem;
        position: relative;
    }

    #typical-day .cs-tl-row:last-child {
        margin-bottom: 0;
    }

    /* ── Rail ────────────────────────────────────── */

    #typical-day .cs-tl-rail {
        position: absolute;
        left: -2.125rem;
        top: 0.875rem;
        width: 1.25rem;
        display: flex;
        justify-content: center;
    }

    #typical-day .cs-tl-node {
        width: 0.625rem;
        height: 0.625rem;
        border-radius: 50%;
        background: var(--navy);
        box-shadow: 0 0 0 0.1875rem rgba(15, 47, 91, 0.15);
        position: relative;
        z-index: 1;
        flex-shrink: 0;
    }

    #typical-day .cs-tl-connector {
        display: none;
    }

    /* ── Card ────────────────────────────────────── */

    #typical-day .cs-tl-card {
        flex: 1;
        min-width: 0;
        background: #f8f8f8;
        border: 0.0625rem solid rgba(0, 0, 0, 0.06);
        border-radius: 0.625rem;
        padding: 0.875rem 1rem;
        text-align: left;
    }

    #typical-day .cs-tl-time {
        display: block;
        font-family: var(--headerFont);
        font-size: 0.625rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--navy);
        margin-bottom: 0.25rem;
    }

    #typical-day .cs-tl-title {
        font-family: var(--headerFont);
        font-size: 1rem;
        font-weight: 600;
        color: var(--navy);
        line-height: 1.3;
        margin: 0 0 0.25rem;
    }

    #typical-day .cs-tl-desc {
        font-size: 0.75rem;
        font-weight: 300;
        line-height: 1.65;
        color: var(--charcoal);
        opacity: 0.55;
        margin: 0;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #typical-day .cs-container {
        padding: 0 2.5rem;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #typical-day {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    #typical-day .cs-container {
        padding: 0;
    }

    #typical-day .cs-tl-mobile {
        display: none;
    }

    #typical-day .cs-tl-wrap {
        display: block;
        position: relative;
        width: 100%;
    }

    /* ── Center line ─────────────────────────────── */

    #typical-day .cs-tl-line {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 0.0625rem;
        background: rgba(0, 0, 0, 0.1);
        pointer-events: none;
    }

    #typical-day .cs-tl-line-fill {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: var(--navy);
        transition: height 0.6s ease;
    }

    /* ── Timeline item ───────────────────────────── */

    #typical-day .cs-tl-item {
        display: grid;
        grid-template-columns: 1fr 3rem 1fr;
        align-items: start;
        gap: 0;
        margin-bottom: 3rem;
        opacity: 0;
        transform: translateY(1.25rem);
        transition: opacity 0.55s ease, transform 0.55s ease;
    }

    #typical-day .cs-tl-item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    #typical-day .cs-tl-item.is-visible .cs-tl-node {
        width: 0.875rem;
        height: 0.875rem;
        background: var(--navy);
        border-color: var(--white);
        box-shadow:
            0 0 0 0.1875rem var(--white),
            0 0 0 0.3125rem var(--navy);
    }

    #typical-day .cs-tl-item.is-visible .cs-tl-time {
        color: var(--navy);
        opacity: 1;
    }

    /* ── Node column ─────────────────────────────── */

    #typical-day .cs-tl-node-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 1.125rem;
    }

    #typical-day .cs-tl-node {
        width: 0.625rem;
        height: 0.625rem;
        border-radius: 50%;
        background: transparent;
        border: 0.09375rem solid rgba(0, 0, 0, 0.2);
        flex-shrink: 0;
        box-shadow: none;
        transition:
            width 0.35s ease,
            height 0.35s ease,
            background 0.35s ease,
            border-color 0.35s ease,
            box-shadow 0.35s ease;
    }

    /* ── Left / Right columns ────────────────────── */

    #typical-day .cs-tl-left,
    #typical-day .cs-tl-right {
        display: block;
    }

    #typical-day .cs-tl-left {
        padding-right: 1.75rem;
        text-align: right;
    }

    #typical-day .cs-tl-right {
        padding-left: 1.75rem;
        text-align: left;
    }

    #typical-day .cs-tl-card {
        display: inline-block;
        width: 100%;
        text-align: left;
        background: #f8f8f8;
        border: 0.0625rem solid rgba(0, 0, 0, 0.06);
        border-radius: 0.625rem;
        padding: 1rem 1.25rem;
    }

    #typical-day .cs-tl-left .cs-tl-card {
        text-align: right;
    }

    #typical-day .cs-tl-time {
        font-size: 0.6875rem;
        opacity: 0.5;
        transition: opacity 0.35s ease;
    }

    #typical-day .cs-tl-title {
        font-size: 1.125rem;
    }

    #typical-day .cs-tl-desc {
        font-size: 0.8125rem;
    }
}

/*-- -------------------------- -->
<---          Pathways          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
    #pathways {
        padding: var(--sectionPadding);
        background: var(--white);
    }

    #pathways .cs-container {
        width: 100%;
        max-width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    #pathways .cs-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* ── Rows ────────────────────────────────────── */

    #pathways .cs-rows {
        display: flex;
        flex-direction: column;
        border-top: 0.0625rem solid rgba(0, 0, 0, 0.08);
    }

    #pathways .cs-row {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.75rem 0;
        border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.08);
    }

    #pathways .cs-row-num {
        font-family: var(--headerFont);
        font-size: 2.25rem;
        font-weight: 600;
        color: rgba(15, 47, 91, 0.12);
        line-height: 1em;
        display: block;
    }

    #pathways .cs-row-left {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    #pathways .cs-row-title {
        font-family: var(--headerFont);
        font-size: 1.125rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--navy);
        line-height: 1.1em;
        margin: 0;
    }

    #pathways .cs-row-tag {
        display: inline-block;
        font-family: var(--headerFont);
        font-size: 0.625rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.4);
        background: rgba(0, 0, 0, 0.04);
        border: 0.0625rem solid rgba(0, 0, 0, 0.08);
        border-radius: 0.25rem;
        padding: 0.25rem 0.625rem;
    }

    #pathways .cs-row-text {
        font-size: 0.875rem;
        font-weight: 300;
        color: var(--charcoal);
        line-height: 1.65em;
        margin: 0;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #pathways .cs-row {
        display: grid;
        grid-template-columns: 3.75rem 1fr 1fr;
        gap: 1.25rem 2rem;
        align-items: center;
    }

    #pathways .cs-row-left {
        align-items: flex-start;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #pathways {
        padding-left: 6vw;
        padding-right: 6vw;
    }

    #pathways .cs-container {
        gap: 3.5rem;
    }

    #pathways .cs-row {
        grid-template-columns: 5rem 1fr 1fr;
        gap: 1.5rem 3rem;
        padding: 2.25rem 0;
    }

    #pathways .cs-row-num {
        font-size: 3rem;
    }

    #pathways .cs-row-title {
        font-size: 1.25rem;
    }

    #pathways .cs-row-text {
        font-size: 0.9375rem;
    }
}

/*-- -------------------------- -->
<---         Social Feed        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0px) {
    #social-feed {
        padding: 3rem 0 0;
        background: var(--white);
        overflow: hidden;
    }

    #social-feed .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        padding: 0 1rem 2rem;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }

    #social-feed .cs-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    #social-feed .cs-header-left {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    #social-feed .cs-handle {
        font-size: 0.8125rem;
        font-weight: 300;
        color: rgba(0, 0, 0, 0.4);
        letter-spacing: 0.04em;
        margin: 0;
    }

    /* ── Grid ────────────────────────────────────── */

    #social-feed .cs-grid {
        display: flex;
        flex-direction: row;
        gap: 0;
        width: 100vw;
        margin-left: -1rem;
        overflow: hidden;
    }

    #social-feed .cs-grid-item {
        position: relative;
        display: block;
        overflow: hidden;
        flex-shrink: 0;
        width: calc(100vw / 3);
        aspect-ratio: 1 / 1;
        background: var(--navy);
    }

    #social-feed .cs-grid-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        transition: transform 0.5s ease;
    }

    #social-feed .cs-grid-item:hover img {
        transform: scale(1.05);
    }

    #social-feed .cs-grid-item:hover .cs-grid-overlay {
        opacity: 1;
    }

    #social-feed .cs-grid-overlay {
        position: absolute;
        inset: 0;
        background: rgba(10, 22, 40, 0.45);
        opacity: 0;
        transition: opacity 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #social-feed .cs-grid-overlay:after {
        content: "";
        display: block;
        width: 1.75rem;
        height: 1.75rem;
        border: 0.125rem solid rgba(255, 255, 255, 0.8);
        border-radius: 0.375rem;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #social-feed .cs-container {
        padding: 0 2.5rem 2.25rem;
    }

    #social-feed .cs-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    #social-feed .cs-grid {
        width: 100%;
        margin-left: 0;
    }

    #social-feed .cs-grid-item {
        width: 20%;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #social-feed {
        padding: 4rem 0 0;
    }

    #social-feed .cs-container {
        padding: 0 6vw 2.5rem;
        gap: 2rem;
    }

    #social-feed .cs-grid {
        width: 100%;
        margin-left: 0;
    }

    #social-feed .cs-grid-item {
        width: calc(100% / 6);
    }
}