    :root {
        --navy: #0D1F3C;
        --navy2: #162B50;
        --teal: #1A7A8A;
        --teal2: #1E8FA0;
        --gold: #C9A84C;
        --gold2: #E0BF6A;
        --white: #FFFFFF;
        --offwhite: #F4F7FA;
        --lightgray: #E8EDF3;
        --midgray: #8AACCC;
        --text: #1A2A3A;
        --muted: #556677;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        font-size: 16px;
    }

    body {
        font-family: 'Segoe UI', Arial, sans-serif;
        color: var(--text);
        background: #fff;
        line-height: 1.6;
    }

    /* NAV */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(13, 31, 60, 0.97);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 2rem;
        height: 64px;
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
    }

    .nav-logo img {
        height: 36px;
    }

    .nav-logo span {
        color: var(--white);
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.02em;
    }

    .nav-links {
        display: flex;
        gap: 1.8rem;
        list-style: none;
    }

    .nav-links a {
        color: var(--midgray);
        text-decoration: none;
        font-size: 0.85rem;
        letter-spacing: 0.04em;
        transition: color 0.2s;
    }

    .nav-links a:hover {
        color: var(--gold);
    }

    .nav-cta {
        background: var(--muted);
        /*color: var(--navy);*/
        padding: 0.45rem 1.2rem;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.85rem;
        transition: background 0.2s;
    }

    /*.nav-cta:hover {
        background: var(--gold2);
        color: var(--navy);
    }*/

    .nav-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        transition: all 0.3s ease;
    }

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--offwhite);
        margin: 5px 0;
    }

    @media (max-width:900px) {
        .nav-links {
            text-align: center;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            background: rgba(13, 31, 60, 0.97);
            flex-direction: column;
            padding: 20px 28px;
            gap: 18px;
            border-bottom: 1px solid var(--muted);
            display: none;
        }

        .nav-links.open {
            display: flex;
        }

        .nav-toggle {
            display: block;
        }


        /* Top line */
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        /* Middle line disappears */
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        /* Bottom line */
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /*.nav-cta {
            display: none;
        }*/
    }

    /* HERO */
    .hero {
        background: linear-gradient(135deg, var(--navy) 0%, #0A2845 60%, #0D3D5A 100%);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 120px 2rem 80px;
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('assets/vessel-exterior.jpg') center/cover no-repeat;
        opacity: 0.08;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(201, 168, 76, 0.15);
        border: 1px solid rgba(201, 168, 76, 0.4);
        color: var(--gold);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .hero-content {
        max-width: 820px;
        position: relative;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 5vw, 4rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1.12;
        margin-bottom: 1.2rem;
        letter-spacing: -0.02em;
    }

    .hero h1 em {
        color: var(--gold);
        font-style: normal;
    }

    .hero-sub {
        font-size: 1.15rem;
        color: rgba(255, 255, 255, 0.78);
        max-width: 640px;
        margin-bottom: 2rem;
        line-height: 1.65;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 3.5rem;
    }

    .btn-primary {
        background: var(--gold);
        color: var(--navy);
        padding: 0.9rem 2rem;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 800;
        font-size: 0.95rem;
        transition: transform 0.2s, background 0.2s;
        letter-spacing: 0.01em;
    }

    .btn-primary:hover {
        background: var(--gold2);
        transform: translateY(-1px);
    }

    .btn-outline {
        border: 2px solid rgba(255, 255, 255, 0.35);
        color: var(--white);
        padding: 0.9rem 2rem;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: border-color 0.2s, background 0.2s;
    }

    .btn-outline:hover {
        border-color: var(--gold);
        background: rgba(201, 168, 76, 0.08);
    }

    /* STATS STRIP */
    .stats-strip {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1px;
        background: rgba(255, 255, 255, 0.08);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        position: relative;
    }

    .stat {
        padding: 1.4rem 1.6rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.04);
    }

    .stat-value {
        font-size: 1.9rem;
        font-weight: 800;
        color: var(--gold);
        line-height: 1.1;
    }

    .stat-label {
        font-size: 0.72rem;
        color: var(--midgray);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-top: 4px;
    }

    .stat-sub {
        font-size: 0.68rem;
        color: rgba(138, 172, 204, 0.7);
        margin-top: 2px;
    }

    /* SECTIONS */
    section {
        padding: 80px 2rem;
    }

    .section-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    .section-eyebrow {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--teal);
        margin-bottom: 0.8rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
        font-weight: 800;
        color: var(--navy);
        line-height: 1.2;
        margin-bottom: 1rem;
        letter-spacing: -0.01em;
    }

    .section-intro {
        font-size: 1.05rem;
        color: var(--muted);
        max-width: 680px;
        line-height: 1.7;
    }

    /* MANDATE SECTION */
    .mandate-section {
        background: var(--navy);
        color: var(--white);
    }

    .mandate-section .section-title {
        color: var(--white);
    }

    .mandate-section .section-intro {
        color: rgba(255, 255, 255, 0.72);
    }

    .mandate-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }

    .mandate-details h3 {
        color: var(--gold);
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .mandate-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
    }

    .mandate-list li {
        display: flex;
        gap: 0.75rem;
        align-items: flex-start;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.5;
    }

    .mandate-list li::before {
        content: '›';
        color: var(--gold);
        font-weight: 800;
        flex-shrink: 0;
        margin-top: 0.05rem;
    }

    .mandate-card {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(201, 168, 76, 0.2);
        border-radius: 6px;
        padding: 1.5rem;
    }

    .mandate-card h3 {
        color: var(--gold);
        font-size: 1rem;
        margin-bottom: 1.2rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .proceeds-table {
        width: 100%;
        border-collapse: collapse;
    }

    .proceeds-table tr:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .proceeds-table td {
        padding: 0.6rem 0;
        font-size: 0.88rem;
    }

    .proceeds-table td:first-child {
        color: rgba(255, 255, 255, 0.78);
    }

    .proceeds-table td:last-child {
        color: var(--gold);
        font-weight: 700;
        text-align: right;
        white-space: nowrap;
    }

    /* WHY PARTNER */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .why-card {
        background: var(--offwhite);
        border-radius: 6px;
        padding: 1.8rem;
        border-top: 3px solid var(--teal);
    }

    .why-card h3 {
        color: var(--navy);
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 0.6rem;
    }

    .why-card p {
        color: var(--muted);
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .why-card .why-num {
        font-size: 2rem;
        font-weight: 800;
        color: var(--teal);
        line-height: 1;
        margin-bottom: 0.6rem;
    }

    /* FINANCIAL */
    .fin-section {
        background: var(--offwhite);
    }

    .fin-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-top: 2.5rem;
    }

    .snapshot-table {
        width: 100%;
        border-collapse: collapse;
    }

    .snapshot-table thead tr {
        background: var(--navy);
        color: var(--white);
    }

    .snapshot-table thead td {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .snapshot-table tbody tr:nth-child(even) {
        background: rgba(26, 122, 138, 0.04);
    }

    .snapshot-table tbody td {
        padding: 0.7rem 1rem;
        font-size: 0.88rem;
        border-bottom: 1px solid var(--lightgray);
    }

    .snapshot-table td:not(:first-child) {
        font-weight: 600;
        text-align: right;
    }

    .snapshot-label {
        font-size: 0.72rem;
        color: var(--muted);
        margin-top: 0.5rem;
    }

    .projections-chart {
        display: flex;
        align-items: flex-end;
        gap: 0.6rem;
        height: 160px;
        padding: 0 0 0.5rem;
    }

    .bar-wrap {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        height: 100%;
        justify-content: flex-end;
    }

    .bar {
        width: 100%;
        background: var(--teal);
        border-radius: 3px 3px 0 0;
        transition: background 0.2s;
        position: relative;
    }

    .bar:hover {
        background: var(--teal2);
    }

    .bar-value {
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--navy);
        position: absolute;
        top: -1.3rem;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
    }

    .bar-label {
        font-size: 0.7rem;
        color: var(--muted);
    }

    .metrics-strip {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .metric {
        background: var(--navy);
        border-radius: 6px;
        padding: 1.2rem;
        text-align: center;
    }

    .metric-val {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--gold);
    }

    .metric-lbl {
        font-size: 0.72rem;
        color: var(--midgray);
        margin-top: 4px;
    }

    /* PROBLEM + SOLUTION (keep from existing) */
    .problem-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .problem-card {
        background: var(--offwhite);
        border-radius: 6px;
        padding: 1.5rem;
        border-left: 3px solid var(--teal);
    }

    .problem-card h3 {
        color: var(--navy);
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .problem-card p {
        color: var(--muted);
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .stat-callout {
        display: inline-block;
        background: var(--teal);
        color: var(--white);
        font-size: 1.6rem;
        font-weight: 800;
        padding: 0.3rem 0.8rem;
        border-radius: 4px;
        margin-bottom: 0.4rem;
    }

    .solution-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .sol-card {
        border: 1px solid var(--lightgray);
        border-radius: 6px;
        padding: 1.5rem;
        text-align: center;
    }

    .sol-card .price {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--gold);
    }

    .sol-card .tier {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--teal);
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .sol-card h3 {
        font-size: 1rem;
        color: var(--navy);
        margin-bottom: 0.3rem;
    }

    .sol-card p {
        font-size: 0.82rem;
        color: var(--muted);
    }

    /* ROUTE */
    .route-section {
        background: var(--navy);
    }

    .route-section .section-title {
        color: var(--white);
    }

    .route-section .section-intro {
        color: rgba(255, 255, 255, 0.72);
    }

    .route-line {
        display: flex;
        align-items: center;
        gap: 0;
        margin: 3rem 0 1.5rem;
        flex-wrap: wrap;
    }

    .route-stop {
        text-align: center;
    }

    .route-stop-name {
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--white);
        white-space: nowrap;
    }

    .route-stop-dot {
        width: 12px;
        height: 12px;
        background: var(--gold);
        border-radius: 50%;
        margin: 6px auto;
    }

    .route-connector {
        flex: 1;
        height: 2px;
        background: rgba(201, 168, 76, 0.3);
        min-width: 20px;
    }

    .route-phase {
        margin-top: 2rem;
        padding: 1.5rem;
        border-radius: 6px;
    }

    .route-phase-1 {
        background: rgba(26, 122, 138, 0.2);
        border: 1px solid rgba(26, 122, 138, 0.4);
    }

    .route-phase-2 {
        background: rgba(201, 168, 76, 0.12);
        border: 1px solid rgba(201, 168, 76, 0.3);
    }

    .route-phase h3 {
        color: var(--gold);
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 0.5rem;
    }

    .route-phase p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
    }

    /* SAFETY */
    .safety-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .safety-card {
        background: var(--offwhite);
        border-radius: 6px;
        padding: 1.5rem;
    }

    .safety-num {
        font-size: 2rem;
        font-weight: 800;
        color: var(--teal);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .safety-card h3 {
        color: var(--navy);
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
    }

    .safety-card p {
        color: var(--muted);
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* TEAM */
    .team-section {
        background: var(--offwhite);
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .team-card {
        background: var(--white);
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    }

    .team-photo {
        height: 250px;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .team-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .team-photo .initials {
        width: 60px;
        height: 60px;
        background: var(--teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-weight: 800;
        font-size: 1.1rem;
    }

    .team-info {
        padding: 1rem;
    }

    .team-name {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--navy);
    }

    .team-role {
        font-size: 0.75rem;
        color: var(--teal);
        font-weight: 600;
        margin: 2px 0 0.5rem;
    }

    .team-bio {
        font-size: 0.75rem;
        color: var(--muted);
        line-height: 1.5;
    }

    /* CONTACT */
    .contact-section {
        background: var(--navy);
    }

    .contact-section .section-title {
        color: var(--white);
    }

    .contact-section .section-intro {
        color: rgba(255, 255, 255, 0.72);
    }

    .contact-layout {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 4rem;
        margin-top: 3rem;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-item h4 {
        color: var(--gold);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 0.3rem;
    }

    .contact-item p,
    .contact-item a {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.92rem;
        text-decoration: none;
    }

    .contact-item a:hover {
        color: var(--gold);
    }

    .next-steps {
        background: rgba(255, 255, 255, 0.06);
        border-radius: 6px;
        padding: 1.5rem;
        border: 1px solid rgba(201, 168, 76, 0.2);
    }

    .next-steps h4 {
        color: var(--gold);
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .next-step {
        display: flex;
        gap: 0.75rem;
        align-items: flex-start;
        margin-bottom: 0.75rem;
    }

    .next-step-num {
        width: 24px;
        height: 24px;
        background: var(--teal);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: 800;
        color: var(--white);
        flex-shrink: 0;
    }

    .next-step p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.88rem;
    }

    .form-wrap {
        background: rgba(255, 255, 255, 0.06);
        border-radius: 8px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group label {
        display: block;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 0.4rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 4px;
        color: var(--white);
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        font-family: inherit;
        transition: border-color 0.2s;
        outline: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--gold);
    }

    .form-group select option {
        background: var(--navy2);
        color: var(--white);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-submit {
        width: 100%;
        background: var(--gold);
        color: var(--navy);
        border: none;
        padding: 1rem;
        border-radius: 4px;
        font-size: 0.95rem;
        font-weight: 800;
        cursor: pointer;
        letter-spacing: 0.02em;
        transition: background 0.2s;
    }

    .form-submit:hover {
        background: var(--gold2);
    }

    /* PHASE 2 */
    .phase2-section {
        background: var(--offwhite);
    }

    .phase2-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .phase-card {
        background: var(--white);
        border-radius: 6px;
        padding: 2rem;
        border-top: 4px solid;
    }

    .phase-card.p1 {
        border-color: var(--teal);
    }

    .phase-card.p2 {
        border-color: var(--gold);
    }

    .phase-card .phase-tag {
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 0.6rem;
    }

    .phase-card.p1 .phase-tag {
        color: var(--teal);
    }

    .phase-card.p2 .phase-tag {
        color: var(--gold);
    }

    .phase-card h3 {
        color: var(--navy);
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 0.6rem;
    }

    .phase-card p {
        color: var(--muted);
        font-size: 0.88rem;
        line-height: 1.6;
    }

    .phase-tags {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-top: 1rem;
    }

    .phase-tag-item {
        background: var(--offwhite);
        color: var(--navy);
        font-size: 0.72rem;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 12px;
    }

    /* QUOTE */
    .quote-section {
        background: var(--teal);
        padding: 60px 2rem;
        text-align: center;
    }

    blockquote {
        max-width: 780px;
        margin: 0 auto;
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
        color: var(--white);
        font-style: italic;
        line-height: 1.65;
        font-weight: 400;
    }

    blockquote cite {
        display: block;
        font-style: normal;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.75);
        margin-top: 1.2rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    /* FOOTER */
    footer {
        background: #060E1C;
        color: rgba(255, 255, 255, 0.5);
        padding: 1.5rem 2rem;
        text-align: center;
        font-size: 0.78rem;
    }

    footer a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
    }

    /* GALLERY */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .gallery-grid img {
        width: 100%;
        aspect-ratio: 16/10;
        object-fit: cover;
        border-radius: 4px;
    }

    .video-frame {
        margin-top: 44px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: var(--shadow);
        background: #000;
    }

    .video-frame iframe {
        width: 100%;
        display: block;
        max-height: 560px;
    }

    /* DIVIDER */
    .gold-divider {
        height: 4px;
        background: linear-gradient(90deg, var(--gold) 0%, var(--teal) 100%);
    }

    /* RATE NOTE */
    .rate-note {
        font-size: 0.72rem;
        color: var(--muted);
        margin-top: 0.75rem;
        font-style: italic;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .stats-strip {
            grid-template-columns: repeat(2, 1fr);
        }

        .mandate-grid,
        .fin-grid,
        .why-grid,
        .contact-layout {
            grid-template-columns: 1fr;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .team-grid {
            grid-template-columns: repeat(2, 1fr);
        }


        .problem-grid,
        .solution-cards,
        .safety-grid,
        .phase2-grid {
            grid-template-columns: 1fr;
        }

        .nav-links {
            display: none;
        }

        .metrics-strip {
            grid-template-columns: repeat(2, 1fr);
        }
    }