﻿:root {
    --gold: #E5A812;
    --navy: #091318;
    --grey: #A8B0B5;
    --grey-dark: #475569;
    --teal: #0097B2;
    --teal-bright: #16A9D6;
    --teal-dark: #007A90;
    --red: #E10600;
    --white: #FFFFFF;
    --white-80: #FFFFFFCC;
    --color-white-60: #FFFFFF99;
    --slate: #334155;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:focus:not(:focus-visible) {
    outline: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: var(--white);
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font: inherit;
    cursor: pointer;
}

svg {
    display: block;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-inline: 1.25rem;
}


@media (min-width: 768px) {
    .container {
        padding-inline: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding-inline: 3.5rem;
    }
}

.font-heading {
    font-family: "Gotham Cond Black", sans-serif;
}

/* ══════════════════════════════════════════════════════════════
   TICKER
   ══════════════════════════════════════════════════════════════ */
.ticker {
    display: flex;
    align-items: stretch;
    background: var(--navy);
    overflow: hidden;
}

.ticker__badge {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--red);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.55rem 0.9rem;
    white-space: nowrap;
}

.ticker__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
    animation: tickerPulse 1.6s ease-in-out infinite;
}

@keyframes tickerPulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.ticker__viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker__track {
    display: flex;
    width: max-content;
    animation: tickerScroll 32s linear infinite;
}

.ticker:hover .ticker__track {
    animation-play-state: paused;
}

.ticker__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticker__item {
    flex-shrink: 0;
    padding: 0.55rem 2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--white-80);
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.12);
}

@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker__track {
        animation: none;
    }

    .ticker__badge-dot {
        animation: none;
    }
}

/* ══════════════════════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════════════════════ */
.site-header {
    background: var(--white);
    border-bottom: 1px solid rgba(9,19,24,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 0.9rem;
}

.nav__logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--teal);
    letter-spacing: -0.02em;
}

.nav__links {
    display: none;
    align-items: center;
    gap: 2.1rem;
}

    .nav__links a {
        font-family: 'Roboto', sans-serif;
        font-size: 0.875rem;
        font-weight: 400;
        color: var(--slate);
        transition: color 0.15s;
    }

    .nav__links li.active a {
        font-family: 'Roboto', sans-serif;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--slate);
        transition: color 0.15s;
    }


    .nav__links a:hover {
        color: var(--teal);
    }

.nav__cta {
    display: none;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
    background: var(--red);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.65rem 1.3rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

    .nav__cta:hover {
        background: #C00500;
    }

    .nav__cta svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* Burger */
.nav__burger {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
}

    .nav__burger span {
        width: 20px;
        height: 2px;
        background: var(--navy);
        border-radius: 2px;
        transition: transform 0.25s var(--ease), opacity 0.2s;
    }

    .nav__burger.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav__burger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .nav__burger.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

/* Drawer */
.nav__drawer {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    transform: translateY(-100%);
    transition: transform 0.35s var(--ease);
}

    .nav__drawer.is-open {
        transform: translateY(0);
    }

    .nav__drawer a {
        font-family: 'Roboto', sans-serif;
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--navy);
    }

.nav__drawer-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 0.8rem 1.8rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem !important;
}

.nav__drawer-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

    .nav__drawer-close svg {
        width: 22px;
        height: 22px;
        stroke: var(--navy);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
    }

@media (min-width: 960px) {
    .nav__links {
        display: flex;
    }

    .nav__cta {
        display: inline-flex;
    }

    .nav__burger {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    background-color: var(--teal-bright);
    background-image: url('/Frontend/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 0 3.5rem;
    overflow: visible;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.75rem;
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white-80);
    color: var(--navy);
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.55rem, 1vw, 0.65rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.85rem;
    margin-bottom: 1.75rem;
}

.hero__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
}

.hero__title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: 0.8;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero__title-row {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}

.hero__title mark {
    position: relative;
    background: var(--red);
    color: var(--white);
    padding: 5px 10px;
    display: inline-block;
    transform: rotate(-2deg);
    box-shadow: 0 10px 22px rgba(225,6,0,0.35);
    animation: heroActionBounce 2.4s ease-in-out infinite;
}

@keyframes heroActionBounce {
    0%, 100% {
        transform: rotate(-2deg) translateY(0);
    }

    50% {
        transform: rotate(-2deg) translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__title mark {
        animation: none;
    }
}

.hero__desc {
    font-family: 'Roboto', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    line-height: 1.7;
    color: white;
    margin-bottom: 2rem;
    font-weight: 400;
}

    .hero__desc strong {
        color: var(--navy);
        font-weight: 700;
    }

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 2.25rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.875rem 1.2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, background 0.2s, border-color 0.2s;
}

    .btn svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .btn:active {
        transform: scale(0.97);
    }

.btn--white {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--white);
}

    .btn--white:hover {
        background: rgba(255,255,255,0.9);
    }

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.55);
}

    .btn--outline:hover {
        background: rgba(255,255,255,0.1);
        border-color: var(--white);
    }

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.hero__stat {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

.hero__stat-dash {
    display: inline-block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
}

.hero__stat-dash--dark {
    background: var(--navy);
}

.hero__stat-dash--red {
    background: var(--red);
}

/* ── Hero media / photo card ── */
.hero__media {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.hero__photo-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 1rem;
    border: 4px solid rgba(255,255,255,0.9);
    overflow: visible;
    box-shadow: 0 30px 60px rgba(9,19,24,0.35);
}

.hero__photo-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 4.7;
    max-height: 420px;
    border-radius: 10px;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y; /* let vertical page scroll through, keep horizontal drag for the carousel */
    user-select: none; /* avoid selecting text/images while dragging */
}

    .hero__photo-slides.is-dragging {
        cursor: grabbing;
    }

    .hero__photo-slides::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(to top, rgba(9,19,24,0.7) 0%, rgba(9,19,24,0.32) 18%, rgba(9,19,24,0) 42%);
    }

.hero__photo-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    touch-action: pan-y;
}

.hero__photo-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.hero__photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.6);
}

    .hero__photo-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -webkit-user-drag: none; /* stop the browser's native image ghost-drag from fighting the carousel drag */
        user-drag: none;
    }



    .hero__photo-placeholder svg {
        width: 56px;
        height: 56px;
        stroke: rgba(255,255,255,0.35);
        fill: none;
        stroke-width: 1.5;
    }

    .hero__photo-placeholder span {
        font-family: 'Roboto', sans-serif;
        font-size: 0.78rem;
        font-weight: 500;
        color: rgba(255,255,255,0.4);
    }

.hero__tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--white);
    border-radius: 12px;
    padding: 0.7rem 1rem;
    box-shadow: 0 14px 32px rgba(9,19,24,0.22);
}

.hero__tag--top {
    top: -1.25rem;
    left: -1.25rem;
}

.hero__tag-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hero__tag-icon svg {
        width: 17px;
        height: 17px;
        stroke: var(--white);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.hero__tag--top strong {
    display: block;
    font-family: "League Spartan", sans-serif;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.hero__tag--top small {
    display: block;
    font-family: "League Spartan", sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--grey-dark);
    margin-top: 0.15rem;
}

.hero__tag--bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    right: -1rem;
    bottom: 2.75rem;
    background: var(--navy);
}

    .hero__tag--bottom strong {
        font-family: "League Spartan", sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.35;
    }

    .hero__tag--bottom small {
        font-family: "League Spartan", sans-serif;
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 0.03em;
        color: var(--teal);
    }

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero__dot {
    width: 4px;
    height: 4px;
    padding: 0;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.64);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .hero__dot.is-active {
        width: 12px;
        height: 12px;
        background: transparent;
        border: 1px solid rgba(10, 10, 10, 0.64);
    }

@media (min-width: 960px) {
    .hero {
        padding: 5rem 0 6rem;
    }

    .hero__grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3.5rem;
    }

    .hero__media {
        padding-left: 1.5rem;
        margin-bottom: 0;
    }

    .hero__photo-slides {
        max-height: none;
    }

    .hero__title mark {
        padding-right: 100px;
    }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════════════════════════ */
.reveal, .reveal-down, .reveal-left, .reveal-right,
.reveal-img, .reveal-img-left, .reveal-img-right {
    opacity: 0;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal {
    transform: translateY(22px);
}

.reveal-down {
    transform: translateY(-16px);
}

.reveal-left {
    transform: translateX(-34px);
}

.reveal-right {
    transform: translateX(34px);
}

.reveal-img {
    transform: translateY(28px) scale(0.98);
}

.reveal-img-left {
    transform: translateX(-42px) scale(0.97);
}

.reveal-img-right {
    transform: translateX(42px) scale(0.97);
}

    .reveal.is-visible,
    .reveal-down.is-visible,
    .reveal-left.is-visible,
    .reveal-right.is-visible,
    .reveal-img.is-visible,
    .reveal-img-left.is-visible,
    .reveal-img-right.is-visible {
        opacity: 1;
        transform: none;
    }

.reveal-d1 {
    transition-delay: 0.12s;
}

.reveal-d2 {
    transition-delay: 0.24s;
}

.reveal-d3 {
    transition-delay: 0.36s;
}

.reveal-d4 {
    transition-delay: 0.48s;
}

.reveal-d5 {
    transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-down, .reveal-left, .reveal-right,
    .reveal-img, .reveal-img-left, .reveal-img-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ══════════════════════════════════════════════════════════════
   STATS BAND — overlaps the hero/legacy section boundary
   ══════════════════════════════════════════════════════════════ */
.stats-band {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(50%);
    z-index: 3;
}

.stats-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    /* background: rgba(9,19,24,0.08); */
    /* box-shadow: 0 20px 45px rgba(9,19,24,0.14); */
}

    .stats-grid::-webkit-scrollbar {
        display: none;
    }

.stat-card {
    flex: 1 1 0%;
    /* min-width: 168px; */
    scroll-snap-align: start;
    background: var(--white);
    padding: 1rem;
    transition: background 0.25s ease;
}

    .stat-card:hover {
        background: var(--navy);
    }

        .stat-card:hover .stat-card__num {
            color: var(--white);
        }

        .stat-card:hover .stat-card__label {
            color: rgba(255,255,255,0.6);
        }

.stat-card__dash {
    display: block;
    width: 22px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 0.9rem;
}

.stat-card__dash--teal {
    background: var(--teal);
}

.stat-card__dash--red {
    background: var(--red);
}

.stat-card__dash--gold {
    background: var(--gold);
}

.stat-card__num {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 0.65rem;
    transition: color 0.25s ease;
}

.stat-card__label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #62757B;
    transition: color 0.25s ease;
    text-wrap: nowrap;
}



/* ══════════════════════════════════════════════════════════════
   LEGACY — quote + leadership timeline
   ══════════════════════════════════════════════════════════════ */
.legacy {
    background: #EEF8F9;
    padding: 6.5rem 0 4rem;
    overflow: hidden;
}

.legacy__quote-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3.5rem;
    padding-top: 6.5rem; /* reserves room for the seal sitting above, top-right */
}

.legacy__eyebrow {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
}

.legacy__quote-wrap {
    position: relative;
}

.legacy__quote {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    font-style: normal;
    color: var(--navy);
    text-align: justify;
    margin-bottom: 1rem;
}

.legacy__cite {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-size: 0.85rem;
    color: #5A6F75;
}

.legacy__seal {
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
    height: 96px;
}

.legacy__seal-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: legacySealSpin 12s linear infinite;
}

@keyframes legacySealSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .legacy__seal-img {
        animation: none;
    }
}

@media (min-width: 1200px) {
    .legacy {
        padding-top: 8.5rem;
    }

    .legacy__quote-row {
        grid-template-columns: 420px 1fr;
        align-items: center;
        gap: 2.5rem;
        padding-top: 0;
    }

    .legacy__quote-wrap {
        max-width: 640px;
    }


    .legacy__seal {
        top: -1.75rem;
        right: -2.5rem;
        width: 84px;
        height: 84px;
    }
}

/* ── Timeline ── */
.timeline__item {
    border-bottom: 1px solid rgba(0,151,178,0.25);
}

    .timeline__item:first-child {
        border-top: 1px solid rgba(0,151,178,0.25);
    }

.timeline__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 1.1rem;
    padding: 1.4rem 0 0;
    cursor: pointer;
}

.timeline__num {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold);
}

.timeline__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.timeline__desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.5;
}

.timeline__toggle {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

    .timeline__toggle svg {
        width: 16px;
        height: 16px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
    }

.timeline__toggle-v {
    transform-origin: center;
    transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.timeline__item.is-open .timeline__toggle-v {
    transform: scaleY(0);
    opacity: 0;
}

/* ── Expandable panel ──
   Animated via the "0fr → 1fr" grid-row trick: the outer .timeline__panel
   is always display:grid with a single row track that's sized to 0fr when
   closed and 1fr when open, which is transitionable (unlike height:auto).
   The inner wrapper clips content while collapsed and carries the actual
   two-column photo/content layout. */
.timeline__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s var(--ease);
}

.timeline__item.is-open .timeline__panel {
    grid-template-rows: 1fr;
}

.timeline__panel-inner {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: #fff;
    margin-top: 10px;
}

.timeline__item.is-open .timeline__panel-inner {
    opacity: 1;
    transition-delay: 0.1s;
}

.timeline__panel-photo {
    aspect-ratio: 4 / 3.5;
    overflow: hidden;
    background: linear-gradient(155deg, #2b2f31, #17191a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

    .timeline__panel-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.timeline__panel-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

.timeline__panel-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.timeline__panel-content {
    padding: 16px;
}

.timeline__panel-point {
    display: flex;
    align-items: start;
    gap: 0.9rem;
    background: #F8FAFC;
    border-radius: 12px;
    padding: 12px;
}

.timeline__panel-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}

    .timeline__panel-check svg {
        width: 11px;
        height: 11px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.timeline__panel-point p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--slate);
}

@media (min-width: 640px) {
    .timeline__title {
        font-size: 1.08rem;
    }
}

@media (min-width: 900px) {
    .timeline__panel-inner {
        grid-template-columns: 425px 1fr;
        gap: 2.5rem;
        align-items: center;
        padding: 12px 24px;
    }

    .timeline__row {
        align-items: center;
    }

    .timeline__panel-point {
        align-items: center;
    }

    .timeline__panel-photo {
        aspect-ratio: auto;
        height: 100%;
    }

    .timeline__panel-content {
        max-width: 640px;
        margin-left: auto;
        padding: 32px;
    }
}

/* ══════════════════════════════════════════════════════════════
   MEDIA SHOWCASE — video carousel
   ══════════════════════════════════════════════════════════════ */
.media-showcase {
    overflow: hidden;
    background: #F8FAFC;
    padding: 3rem 0 3rem;
}

.media-showcase__head {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.media-showcase__eyebrow {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.media-showcase__title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    line-height: 1.05;
    color: var(--navy);
}

    .media-showcase__title span {
        color: var(--teal);
    }

.media-showcase__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 140px;
    margin-left: auto;
}

.media-showcase__watermark {
    right: 0;
    font-family: "League Spartan", sans-serif;
    font-weight: 700;
    font-size: clamp(4.2rem, 8vw, 6.5rem);
    color: rgba(9,19,24,0.06);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -0.05em;
}

.media-showcase__arrows {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.media-showcase__arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

    .media-showcase__arrow:hover {
        background: var(--navy);
        border-color: var(--navy);
    }

    .media-showcase__arrow svg {
        width: 16px;
        height: 16px;
        stroke: var(--navy);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.2s;
    }

    .media-showcase__arrow:hover svg {
        stroke: var(--white);
    }

@media (min-width: 900px) {

    .media-showcase {
        padding: 4rem 0 4rem;
    }

    .media-showcase__head {
        flex-direction: row;
    }

    .media-showcase__watermark {
        display: block;
    }
}

/* ── Video card ── */
.media-card__frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(155deg, #2b2f31, #17191a);
}

.media-card__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(155deg, #2b2f31, #17191a); /* shows while the thumbnail loads */
}

.media-card__embed {
    position: absolute;
    inset: 0;
}

.media-card__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Once a video is playing, the facade (thumbnail, badge, play button, caption)
   steps aside so YouTube's own controls are fully clickable underneath. */
.media-card__frame.is-playing .media-card__thumb,
.media-card__frame.is-playing .media-card__badge,
.media-card__frame.is-playing .media-card__play,
.media-card__frame.is-playing .media-card__caption {
    display: none;
}

.media-card__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    background: var(--red);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
}

.media-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(9,19,24,0.3);
    transition: transform 0.15s ease;
}

    .media-card__play:hover {
        transform: translate(-50%, -50%) scale(1.06);
    }

    .media-card__play svg {
        width: 22px;
        height: 22px;
        fill: var(--navy);
    }

    .media-card__play .icon-play {
        margin-left: 3px;
    }

.media-card__seal {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--red);
    transform: rotate(-8deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 0.82rem;
    color: var(--white);
    box-shadow: 0 10px 24px rgba(225,6,0,0.35);
}

.media-card__caption {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.4rem;
    z-index: 2;
}

.media-card__kicker {
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white-80);
    margin-bottom: 0.4rem;
}

.media-card__title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--teal);
    line-height: 1.2;
}

.media-card__footer {
    background: var(--navy);
    padding: 0.85rem 1.5rem;
    margin-top: -8px;
    padding-top: 1.1rem;
    display: none;
}

    .media-card__footer span {
        font-family: 'Roboto', sans-serif;
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.5);
    }

@media (min-width: 640px) {
    .media-card__frame {
        aspect-ratio: 16 / 10;
    }
}

@media (min-width: 960px) {
    .media-card__frame {
        aspect-ratio: 2.7 / 1;
    }

    .media-card__play {
        width: 76px;
        height: 76px;
    }

        .media-card__play svg {
            width: 26px;
            height: 26px;
        }

    .media-card__seal {
        width: 64px;
        height: 64px;
        font-size: 0.9rem;
    }

    .media-card__badge {
        top: 1.5rem;
        left: 1.5rem;
    }

    .media-card__caption {
        left: 1.75rem;
        right: 1.75rem;
        bottom: 1.75rem;
    }
}

.btn--dark {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
}

    .btn--dark:hover {
        background: #1a2b33;
    }

.btn--red {
    background: var(--red);
    color: var(--white);
    border: 1px solid var(--red);
}

    .btn--red:hover {
        background: #b80500;
    }

/* ══════════════════════════════════════════════════════════════
   PROJECTS — current work grid
   ══════════════════════════════════════════════════════════════ */
.projects {
    background: var(--white);
    padding: 3rem 0 3rem;
}

.projects__head {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.75rem;
}

.projects__eyebrow {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.projects__title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4.5vw, 2.6rem);
    line-height: 1.05;
    color: var(--navy);
}

    .projects__title span {
        color: var(--teal);
    }

.projects__intro {
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #627278;
    max-width: 40ch;
}

.projects__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 2.75rem;
}

.project-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(9,19,24,0.06);
    display: flex;
    flex-direction: column;
}

    .project-card:hover {
        box-shadow: 0px 22px 38px 0px #00000029;
    }

.project-card__photo {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(155deg, #2b2f31, #17191a);
}

    .project-card__photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .project-card__photo span {
        font-family: 'Roboto', sans-serif;
        font-size: 0.75rem;
        font-weight: 500;
        color: rgba(255,255,255,0.4);
    }

.project-card__body {
    padding: 1.5rem 1.4rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    flex: 1;
}

.project-card__tag {
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.project-card__tag--teal {
    color: var(--teal);
}

.project-card__tag--red {
    color: var(--red);
}

.project-card__tag--gold {
    color: var(--gold);
}

.project-card__title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.project-card__desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--grey);
    margin-bottom: 1.4rem;
}

.project-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-top:auto;
}

    .project-card__link svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.2s ease;
    }

    .project-card__link:hover svg {
        transform: translateX(3px);
    }

.projects__cta {
    display: flex;
    justify-content: center;
}

@media (min-width: 700px) {
    .projects__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .projects {
        padding: 4rem 0 4rem;
    }

    .projects__head {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 2rem;
    }

    .projects__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ══════════════════════════════════════════════════════════════
   CONNECT CTA BANNER
   ══════════════════════════════════════════════════════════════ */
.connect-cta {
    position: relative;
    background: var(--red);
    background-image: url('/Frontend/assets/images/yarbgpng.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 3.5rem 0;
}

.connect-cta__watermark {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%) rotate(-6deg);
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 7rem;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    white-space: nowrap;
    pointer-events: none;
    display: none;
}

    .connect-cta__watermark small {
        display: block;
        font-family: 'Roboto', sans-serif;
        font-style: normal;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        text-align: right;
        margin-top: -0.5rem;
    }

.connect-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
}

.connect-cta__eyebrow {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.connect-cta__title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 5vw, 2.3rem);
    line-height: 1.2;
    color: var(--white);
}

@media (min-width: 900px) {
    .connect-cta {
        padding: 4.5rem 0;
    }

    .connect-cta__watermark {
        display: block;
    }

    .connect-cta__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   ENGAGEMENTS & EVENTS
   ══════════════════════════════════════════════════════════════ */
.engagements {
    background: #F7F9FB;
    padding: 4.5rem 0 5.5rem;
}

.engagements__head {
    max-width: 640px;
    margin-bottom: 2.5rem;
}

.engagements__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
}

.engagements__eyebrow-dash {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.engagements__title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.1rem;
}

.engagements__desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--grey);
    margin-bottom: 1.75rem;
}

.engagements__tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--white);
    border: 1px solid rgba(9,19,24,0.1);
    border-radius: 9999px;
    padding: 0.3rem;
}

.engagements__tab {
    background: none;
    border: none;
    border-radius: 9999px;
    padding: 0.7rem 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

    .engagements__tab.is-active {
        background: var(--teal);
        color: var(--white);
    }

/* ── Event cards ── */
.engagements__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

.event-card {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(9,19,24,0.06);
    border: 1px solid rgba(9,19,24,0.06);
}

    .event-card[hidden] {
        display: none;
    }

.event-card__date {
    flex-shrink: 0;
    width: 84px;
    background: var(--teal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    padding: 1rem 0.5rem;
}

.event-card__day {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--white);
}

.event-card__month {
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
}

.event-card__year {
    font-family: 'Roboto', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

.event-card__body {
    padding: 1.4rem 1.4rem 1.5rem;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.event-card__title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.event-card__location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    color: var(--grey);
    margin-bottom: 0.85rem;
}

    .event-card__location svg {
        width: 14px;
        height: 14px;
        stroke: var(--grey);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

.event-card__desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #5B6570;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.event-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(0,151,178,0.1);
    color: var(--teal);
    font-family: 'Roboto', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.55rem 0.9rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: auto;
}

    .event-card__link:hover {
        background: rgba(0,151,178,0.18);
    }

.event-card__link--download {
    background: var(--red);
    color: var(--white);
}

    .event-card__link--download:hover {
        background: #C10500;
    }

    .event-card__link--download svg {
        stroke: var(--white);
    }

.event-card__link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

@media (min-width: 700px) {
    .engagements__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .engagements__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ══════════════════════════════════════════════════════════════
   CITIZEN HELPDESK
   ══════════════════════════════════════════════════════════════ */
.helpdesk {
    background: var(--navy);
    padding: 4.5rem 0 5.5rem;
}

.helpdesk__head {
    max-width: 620px;
    margin-bottom: 2.5rem;
}

.helpdesk__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.helpdesk__eyebrow-dash {
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

.helpdesk__title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.1rem;
}

.helpdesk__desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}

.helpdesk__card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

/* Tabs */
.helpdesk__tabs {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(9,19,24,0.08);
}

.helpdesk__tab {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    padding: 1.1rem 1.4rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

    .helpdesk__tab.is-active {
        background: rgba(0,151,178,0.07);
        border-left-color: var(--teal);
        color: var(--teal);
    }

.helpdesk__tab-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(9,19,24,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.helpdesk__tab.is-active .helpdesk__tab-icon {
    background: var(--teal);
}

.helpdesk__tab-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--navy);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.helpdesk__tab.is-active .helpdesk__tab-icon svg {
    stroke: var(--white);
}

/* Panel / form */
.helpdesk__panel {
    padding: 1.75rem 1.5rem 2rem;
}

.helpdesk__panel-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #5B6570;
    margin-bottom: 1.5rem;
}

.helpdesk__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

.helpdesk__field {
    display: block;
    margin-bottom: 1.2rem;
}

    .helpdesk__field span {
        display: block;
        font-family: 'Roboto', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 0.5rem;
    }

        .helpdesk__field span em {
            font-style: normal;
            color: var(--red);
            margin-left: 0.15rem;
        }

    .helpdesk__field input,
    .helpdesk__field select,
    .helpdesk__field textarea {
        width: 100%;
        font-family: 'Roboto', sans-serif;
        font-size: 0.88rem;
        color: var(--navy);
        background: var(--white);
        border: 1.5px solid rgba(9,19,24,0.15);
        border-radius: 10px;
        padding: 0.85rem 1rem;
        outline: none;
        transition: border-color 0.15s;
    }

    .helpdesk__field textarea {
        min-height: 130px;
        resize: vertical;
        line-height: 1.6;
    }

        .helpdesk__field input::placeholder,
        .helpdesk__field textarea::placeholder {
            color: var(--grey);
        }

        .helpdesk__field input:focus,
        .helpdesk__field select:focus,
        .helpdesk__field textarea:focus {
            border-color: var(--teal);
        }

    .helpdesk__field input.is-invalid,
    .helpdesk__field select.is-invalid {
        border-color: var(--red);
    }

.helpdesk__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    margin-top: 0.5rem;
}

    .helpdesk__footer p {
        font-family: 'Roboto', sans-serif;
        font-size: 0.78rem;
        color: var(--grey);
    }

    .helpdesk__footer .btn {
        flex-shrink: 0;
    }

/* Success state */
.helpdesk__success {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.helpdesk__success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #16A34A;
    margin: 0 auto 1.1rem;
}

    .helpdesk__success-icon svg {
        width: 24px;
        height: 24px;
        stroke: var(--white);
        fill: none;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.helpdesk__success-title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.helpdesk__success-body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--grey);
    max-width: 42ch;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .helpdesk__tabs {
        flex-direction: row;
    }

    .helpdesk__tab {
        flex: 1;
        border-left: none;
        border-bottom: 3px solid transparent;
        justify-content: flex-start;
    }

        .helpdesk__tab.is-active {
            border-bottom-color: var(--teal);
        }

    .helpdesk__row {
        grid-template-columns: 1fr 1fr;
    }

    .helpdesk__panel {
        padding: 2rem 2.25rem 2.25rem;
    }

    .helpdesk__footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ══════════════════════════════════════════════════════════════
   SITE FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy);
    padding: 3.5rem 0 0;
}

.site-footer__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    padding-bottom: 2.5rem;
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
}

.site-footer__logo {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: 2.2rem;
    color: var(--teal);
    line-height: 1;
}

.site-footer__logo-caption {
    font-family: 'Roboto', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 0.3rem;
}

.site-footer__tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
}

.site-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}

    .site-footer__bottom span {
        font-family: 'Roboto', sans-serif;
        font-size: 0.72rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: rgba(255,255,255,0.35);
    }

.site-footer__totop {
    background: none;
    border: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

    .site-footer__totop:hover {
        color: var(--white);
    }

@media (min-width: 900px) {
    .site-footer__top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .site-footer__bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT MODAL
   ══════════════════════════════════════════════════════════════ */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

    .contact-modal.is-open {
        opacity: 1;
        pointer-events: auto;
    }

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 19, 24, 0.75);
    /* backdrop-filter: blur(2px); */
}

.contact-modal__panel {
    position: relative;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow: hidden;
    background: #EAF6F8;
    border-radius: 12px;
    box-shadow: 0 30px 70px rgba(9,19,24,0.35);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s ease;
}

.contact-modal.is-open .contact-modal__panel {
    transform: translateY(0) scale(1);
}

.contact-modal__scroll {
    max-height: 90vh;
    overflow-y: auto;
    padding: 1.75rem 1rem;
    scrollbar-width: none; /* Firefox: hide scrollbar, keep scrolling */
    -ms-overflow-style: none; /* old Edge/IE */
}

    .contact-modal__scroll::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
/* Chrome/Safari */

.contact-modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s;
}

    .contact-modal__close:hover {
        background: rgba(9,19,24,0.06);
    }

    .contact-modal__close svg {
        width: 16px;
        height: 16px;
        stroke: #5B6570;
        fill: none;
        stroke-width: 1.75;
        stroke-linecap: round;
    }

.contact-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.9rem;
}

.contact-modal__eyebrow-dash {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}

.contact-modal__title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 0.9rem;
}

.contact-modal__desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5B6570;
    max-width: 480px;
    margin-bottom: 1.5rem;
}

.contact-modal__form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem 1rem;
    box-shadow: 0 8px 24px rgba(9,19,24,0.05);
}

.contact-modal__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 1.1rem;
}

.contact-modal__field {
    display: block;
    margin-bottom: 1.1rem;
}

    .contact-modal__field span {
        display: block;
        font-family: 'Roboto', sans-serif;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 0.45rem;
    }

        .contact-modal__field span em {
            font-style: normal;
            color: var(--red);
            margin-left: 0.15rem;
        }

    .contact-modal__field input,
    .contact-modal__field textarea {
        width: 100%;
        font-family: 'Roboto', sans-serif;
        font-size: 0.86rem;
        color: var(--navy);
        background: var(--white);
        border: 1.5px solid rgba(9,19,24,0.12);
        border-radius: 10px;
        padding: 0.8rem 0.95rem;
        outline: none;
        transition: border-color 0.15s;
    }

    .contact-modal__field textarea {
        min-height: 110px;
        resize: vertical;
        line-height: 1.6;
    }

        .contact-modal__field input::placeholder,
        .contact-modal__field textarea::placeholder {
            color: var(--grey);
        }

        .contact-modal__field input:focus,
        .contact-modal__field textarea:focus {
            border-color: var(--teal);
        }

    .contact-modal__field input.is-invalid {
        border-color: var(--red);
    }

.contact-modal__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0.4rem;
}

    .contact-modal__footer p {
        font-family: 'Roboto', sans-serif;
        font-size: 0.74rem;
        color: var(--grey);
    }

    .contact-modal__footer .btn {
        flex-shrink: 0;
    }

/* Success state */
#contactSuccessView {
    text-align: center;
    padding: 0.5rem 0.25rem;
}

.contact-modal__success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #16A34A;
    margin: 0 auto 1rem;
}

    .contact-modal__success-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--white);
        fill: none;
        stroke-width: 3;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.contact-modal__success-title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.contact-modal__success-body {
    font-family: 'Roboto', sans-serif;
    font-size: 0.86rem;
    line-height: 1.6;
    color: var(--grey);
    margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
    .contact-modal__row {
        grid-template-columns: 1fr 1fr;
    }

    .contact-modal__footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 640px) {
    .contact-modal__scroll {
        padding: 2.25rem;
    }

    .contact-modal__form-card {
        padding: 2rem 2.25rem;
    }
}

/* ── Event modal: details → RSVP → confirmation ─────────────────── */
.event-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

    .event-modal.is-open {
        opacity: 1;
        pointer-events: auto;
    }

.event-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 19, 24, 0.75);
}

.event-modal__panel {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    overflow: hidden;
    background: #EEF8F9;
    box-shadow: 0 30px 70px rgba(9,19,24,0.35);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s ease;
}

.event-modal.is-open .event-modal__panel {
    transform: translateY(0) scale(1);
}

.event-modal__scroll {
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .event-modal__scroll::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

.event-modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.15s;
}

    .event-modal__close:hover {
        background: rgba(9,19,24,0.06);
    }

    .event-modal__close svg {
        width: 16px;
        height: 16px;
        stroke: #5B6570;
        fill: none;
        stroke-width: 1.75;
        stroke-linecap: round;
    }

.event-modal__head {
    padding: 1.5rem 1rem 1.25rem;
}

.event-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.9rem;
}

.event-modal__eyebrow-dash {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.event-modal__title {
    font-family: "Gotham Cond Black", sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.event-modal__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.9rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.86rem;
    color: var(--grey);
}

    .event-modal__meta strong {
        color: var(--navy);
    }

.event-modal__image-wrapper {
    padding-inline: 1rem;
}

.event-modal__image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(155deg, #2b2f31, #17191a); /* shows while the image loads */
}

.event-modal__body {
    padding: 1.5rem 1.75rem 1.75rem;
}

.event-modal__label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.event-modal__label--details {
    margin-top: 1.5rem;
}

.event-modal__about {
    font-family: 'Roboto', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #3E4750;
}

.event-modal__key-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 0.88rem;
    color: #3E4750;
}

    .event-modal__key-list strong {
        color: var(--navy);
        margin-right: 0.35rem;
    }

.event-modal__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
}

/* Step 2 — full-bleed white form section beneath the image */
.event-modal__form-card-wrapper {
    background: #EEF8F9;
    padding-inline: 1rem;
}

.event-modal__form-card {
    background: var(--white);
    padding: 1rem;
}

.event-modal__form-eyebrow {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.event-modal__form-title {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 1.4rem;
    letter-spacing: -0.02em;
}

.event-modal__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 1.1rem;
}

.event-modal__field {
    display: block;
    margin-bottom: 1.1rem;
}

    .event-modal__field span {
        display: block;
        font-family: 'Roboto', sans-serif;
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 0.45rem;
    }

        .event-modal__field span em {
            font-style: normal;
            color: var(--red);
            margin-left: 0.15rem;
        }

    .event-modal__field input,
    .event-modal__field select,
    .event-modal__field textarea {
        width: 100%;
        font-family: 'Roboto', sans-serif;
        font-size: 0.86rem;
        color: var(--navy);
        background: #EEF8F9;
        border: 1px solid rgba(9,19,24,0.12);
        padding: 0.8rem 0.95rem;
        outline: none;
        appearance: none;
        transition: border-color 0.15s;
    }

    .event-modal__field select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23091318' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.9rem center;
        background-size: 16px;
        padding-right: 2.4rem;
    }

    .event-modal__field textarea {
        min-height: 110px;
        resize: vertical;
        line-height: 1.6;
    }

        .event-modal__field input::placeholder,
        .event-modal__field textarea::placeholder {
            color: var(--grey);
        }

        .event-modal__field input:focus,
        .event-modal__field select:focus,
        .event-modal__field textarea:focus {
            border-color: var(--teal);
        }

        .event-modal__field input.is-invalid,
        .event-modal__field select.is-invalid,
        .event-modal__field textarea.is-invalid {
            border-color: var(--red);
        }

.event-modal__form-footer {
    display: flex;
    justify-content: center;
    margin-top: 0.4rem;
}

@media (min-width: 480px) {
    .event-modal__row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 640px) {
    .event-modal__head {
        padding: 2rem 1.75rem 1.25rem;
    }

    .event-modal__body {
        padding: 1.75rem 2.25rem 2.25rem;
    }

    .event-modal__form-card {
        padding: 2rem 2.25rem;
    }

    .event-modal__image {
        height: 280px;
    }

    .event-modal__image-wrapper {
        padding-inline: 1.75rem;
    }
}
