:root {
    --brand-gray: #e7e7e7;
    --brand-gray-dark: #d2d2d2;
    --ink: #050505;
    --ink-soft: #232323;
    --muted: #5f5f5f;
    --surface: #e7e7e7;
    --surface-soft: #efefef;
    --card: #f5f5f5;
    --line: #d4d4d4;
    --accent: #3B82F6;
    --accent-dark: #1d4ed8;
    --accent-soft: #dbeafe;
    --warm: #8a8f98;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --max-width: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    background: var(--brand-gray);
    color: var(--ink);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg, iframe {
    max-width: 100%;
}

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

p {
    color: var(--muted);
    line-height: 1.75;
}

strong {
    color: var(--ink);
}

body.no-scroll {
    overflow: hidden;
}

#navbar-container {
    min-height: 78px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(231, 231, 231, 0.96);
    border-bottom: 1px solid rgba(5, 5, 5, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}


.brand-link {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    flex: 0 0 auto;
}


.brand-logo {
    width: 176px;
    max-width: 42vw;
    height: auto;
    display: block;
}

.brand-link {
    padding: 4px 6px;
    border-radius: 18px;
}


.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    flex: 0 1 auto;
    border: 1px solid rgba(5, 5, 5, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
}

.primary-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.92rem;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    background: var(--ink);
    color: var(--brand-gray);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}


.mobile-menu-button {
    display: none;
    appearance: none;
    border: 1px solid rgba(5, 5, 5, 0.14);
    background: var(--surface-soft);
    color: var(--ink);
    width: 46px;
    height: 46px;
    border-radius: 14px;
    cursor: pointer;
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto 16px;
    padding: 14px;
    background: var(--surface-soft);
    border: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.mobile-menu.is-open {
    display: grid;
    gap: 8px;
}

.mobile-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--ink);
    font-weight: 800;
}

.mobile-menu a:hover,
.mobile-menu a.is-active {
    background: var(--brand-gray);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: var(--accent);
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.01em;
    box-shadow: 0 14px 35px rgba(59, 130, 246, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
    box-shadow: 0 18px 44px rgba(59, 130, 246, 0.30);
}

.btn-small {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.92rem;
}

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: rgba(5, 5, 5, 0.18);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--ink);
    color: var(--brand-gray);
    border-color: var(--ink);
    box-shadow: none;
}

.btn-dark {
    background: var(--ink);
    color: var(--brand-gray);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.btn-dark:hover {
    background: #222;
}

.btn-light {
    background: var(--brand-gray);
    color: var(--ink);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.btn-light:hover {
    background: #fff;
    color: var(--ink);
}

main {
    padding-top: 78px;
}

.container {
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    background: linear-gradient(135deg, var(--brand-gray), #ededed 52%, #dddddd);
}

.hero::before,
.section-ambient::before {
    content: '';
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18), rgba(14, 124, 123, 0) 68%);
    top: -160px;
    right: -160px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0) 70%);
    bottom: -180px;
    left: -120px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 52px;
    align-items: center;
}

.hero-copy {
    max-width: 740px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 8px 14px;
    border: 1px solid rgba(5, 5, 5, 0.12);
    border-radius: 999px;
    background: rgba(250, 250, 247, 0.55);
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

h1, h2, h3, h4 {
    margin: 0;
    color: var(--ink);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

h1 {
    font-size: clamp(3.4rem, 9vw, 7.8rem);
    max-width: 900px;
}

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

h3 {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.lede {
    margin: 22px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    max-width: 760px;
    color: #3e3e3e;
}

.hero-actions,
.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 34px;
}

.visual-card {
    position: relative;
    min-height: 440px;
    padding: 30px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(5, 5, 5, 0.1);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.logo-tile {
    position: absolute;
    top: 28px;
    left: 28px;
    width: 116px;
    height: 116px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(5, 5, 5, 0.1);
    background: var(--brand-gray);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.logo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vinyl {
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: min(390px, 80vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--brand-gray) 0 6%, #050505 6.2% 16%, transparent 16.4%),
        repeating-radial-gradient(circle at center, #050505 0 16px, #242424 17px 18px, #050505 19px 31px);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.3);
}

.vinyl::after {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.sound-bars {
    position: absolute;
    left: 32px;
    bottom: 34px;
    display: flex;
    align-items: flex-end;
    gap: 9px;
    height: 118px;
}

.sound-bars span {
    display: block;
    width: 18px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 14px 24px rgba(59, 130, 246, 0.22);
}

.sound-bars span:nth-child(1) { height: 46px; }
.sound-bars span:nth-child(2) { height: 86px; }
.sound-bars span:nth-child(3) { height: 64px; background: var(--ink); }
.sound-bars span:nth-child(4) { height: 112px; }
.sound-bars span:nth-child(5) { height: 74px; background: var(--warm); }

.section {
    position: relative;
    padding: 90px 0;
    background: var(--surface);
}

.section-soft {
    background: var(--brand-gray);
}

.section-light {
    background: var(--surface-soft);
}

.section-dark {
    background: var(--ink);
    color: var(--brand-gray);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark strong {
    color: #fff;
}

.section-dark p,
.section-dark li {
    color: #cfcfca;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.kicker {
    color: var(--accent);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.preview-grid,
.card-grid,
.program-grid,
.team-grid,
.stats-grid,
.partner-grid {
    display: grid;
    gap: 22px;
}

.preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid,
.program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.program-card,
.team-card,
.stat-card,
.partner-card,
.form-card,
.portal-card {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(5, 5, 5, 0.09);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

.card:hover,
.program-card:hover,
.portal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.11);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--ink);
    color: var(--brand-gray);
    font-weight: 900;
    margin-bottom: 22px;
}

.card h3,
.program-card h3,
.portal-card h3 {
    margin-bottom: 12px;
}

.card p,
.program-card p,
.portal-card p {
    margin: 0 0 22px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 900;
}

.text-link:hover {
    color: var(--accent-dark);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 46px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
}

.story-panel {
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: 34px;
    color: var(--brand-gray);
    min-height: 380px;
    position: relative;
    overflow: hidden;
}

.story-panel h3,
.story-panel p,
.story-panel strong {
    color: #fff;
}

.story-panel p {
    color: #deded9;
}

.story-panel::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    right: -90px;
    bottom: -90px;
    border: 36px solid rgba(231, 231, 231, 0.08);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.pill,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.84rem;
    font-weight: 900;
}

.pill.dark {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
}

.stat-card {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.07em;
    color: var(--ink);
}

.stat-label {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
}

.team-card {
    text-align: center;
}

.avatar {
    width: 132px;
    height: 132px;
    margin: 0 auto 18px;
    border-radius: 999px;
    object-fit: cover;
    background: var(--brand-gray-dark);
    border: 6px solid var(--brand-gray);
    box-shadow: 0 15px 32px rgba(0, 0, 0, 0.12);
}

.role {
    margin: 8px 0 0;
    color: var(--accent);
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-card {
    padding: 34px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field,
.form-card label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(5, 5, 5, 0.14);
    border-radius: 16px;
    padding: 15px 16px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-weight: 500;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.full-span {
    grid-column: 1 / -1;
}

.program-card {
    position: relative;
    overflow: hidden;
    min-height: 430px;
}

.program-card::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18), rgba(14, 124, 123, 0) 68%);
    pointer-events: none;
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.dj-visual,
.mentor-visual {
    position: relative;
    min-height: 260px;
    border-radius: var(--radius-lg);
    background: var(--ink);
    overflow: hidden;
    margin-bottom: 24px;
}

.dj-visual::before,
.dj-visual::after {
    content: '';
    position: absolute;
    width: 158px;
    height: 158px;
    border-radius: 50%;
    top: 48px;
    background: repeating-radial-gradient(circle, #050505 0 12px, #333 13px 14px, #050505 15px 28px);
    border: 10px solid #111;
}

.dj-visual::before { left: 36px; }
.dj-visual::after { right: 36px; }

.fader-row {
    position: absolute;
    left: 50%;
    top: 54px;
    transform: translateX(-50%);
    display: grid;
    gap: 16px;
}

.fader-row span {
    display: block;
    width: 10px;
    height: 150px;
    border-radius: 999px;
    background: linear-gradient(var(--brand-gray) 0 100%);
    position: relative;
}

.fader-row span::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 56%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 18px;
    border-radius: 999px;
    background: var(--accent);
}

.mentor-visual {
    background: linear-gradient(135deg, #111, #282828);
}

.mentor-visual::before {
    content: '';
    position: absolute;
    inset: 36px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%, var(--brand-gray) 0 8%, transparent 8.5%),
        radial-gradient(circle at 32% 65%, var(--accent) 0 7%, transparent 7.5%),
        radial-gradient(circle at 68% 65%, var(--warm) 0 7%, transparent 7.5%),
        conic-gradient(from 90deg, rgba(231,231,231,.08), rgba(231,231,231,.28), rgba(59,130,246,.38), rgba(231,231,231,.08));
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.mentor-visual::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 120px;
    border-top: 3px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.timeline {
    display: grid;
    gap: 18px;
    counter-reset: steps;
}

.timeline-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
}

.timeline-item::before {
    counter-increment: steps;
    content: counter(steps);
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--brand-gray);
    font-weight: 900;
}

.timeline-item h3 {
    margin-bottom: 6px;
}

.timeline-item p {
    margin: 0;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.portal-card {
    min-height: 260px;
}

.notice {
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 800;
}

.donation-frame-wrap {
    position: relative;
    height: 930px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(5, 5, 5, 0.1);
    box-shadow: var(--shadow);
}

.donation-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    background: var(--ink);
    color: var(--brand-gray);
    padding: 58px 0 34px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.footer-logo {
    width: 190px;
    opacity: 0.96;
    margin-bottom: 14px;
    border-radius: 14px;
}

.site-footer p,
.site-footer a {
    color: #cfcfca;
}

.site-footer a:hover {
    color: #fff;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-title {
    color: #fff;
    font-weight: 900;
    margin-bottom: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 36px;
    padding-top: 22px;
    font-size: 0.9rem;
    color: #aaa;
}

.redirect-card {
    min-height: calc(100vh - 78px);
    display: grid;
    place-items: center;
    padding: 60px 16px;
    text-align: center;
}

.redirect-card .card {
    max-width: 640px;
}

@media (max-width: 1080px) {
    .primary-nav,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
        place-items: center;
    }

    .brand-link {
        min-width: auto;
    }

    .brand-logo {
        width: 164px;
    }

    .hero-inner,
    .split,
    .split.reverse {
        grid-template-columns: 1fr;
    }

    .preview-grid,
    .card-grid,
    .program-grid,
    .team-grid,
    .stats-grid,
    .partner-grid,
    .portal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .visual-card {
        min-height: 360px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .nav-shell {
        width: min(100% - 24px, var(--max-width));
        min-height: 70px;
    }

    #navbar-container {
        min-height: 70px;
    }

    main {
        padding-top: 70px;
    }

    .brand-logo {
        width: 148px;
    }

    .hero {
        padding: 74px 0 64px;
    }

    .section {
        padding: 64px 0;
    }

    .hero-actions,
    .action-row {
        align-items: stretch;
    }

    .hero-actions .btn,
    .action-row .btn {
        width: 100%;
    }

    .preview-grid,
    .card-grid,
    .program-grid,
    .team-grid,
    .stats-grid,
    .partner-grid,
    .portal-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .visual-card {
        min-height: 310px;
        padding: 22px;
    }

    .logo-tile {
        width: 94px;
        height: 94px;
        top: 22px;
        left: 22px;
    }

    .vinyl {
        right: -96px;
        bottom: -80px;
        width: 310px;
    }

    .sound-bars {
        left: 24px;
        bottom: 24px;
        height: 100px;
    }

    .form-card {
        padding: 24px;
    }

    .donation-frame-wrap {
        height: 1040px;
    }
}

/* v1.1.0 refinements: long-scroll homepage, stronger responsive nav, photo sections, and program tools */
.section-compact {
    padding: 70px 0;
}

.section-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 32px;
    align-items: stretch;
}

.section-feature.reverse {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.feature-copy {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(5, 5, 5, 0.08);
    border-radius: var(--radius-xl);
    padding: clamp(26px, 4vw, 42px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
}

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

.media-card,
.photo-card,
.update-card,
.staff-card,
.contact-card {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(5, 5, 5, 0.09);
    border-radius: var(--radius-xl);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.photo-card img,
.media-card img,
.staff-photo img,
.update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-card {
    min-height: 420px;
    position: relative;
}

.photo-card .photo-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(5, 5, 5, 0.78);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.photo-card .photo-caption p,
.photo-card .photo-caption strong {
    color: #fff;
    margin: 0;
}

.home-band {
    background: var(--ink);
    color: var(--brand-gray);
    border-radius: var(--radius-xl);
    padding: clamp(28px, 5vw, 48px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.home-band::after {
    content: '';
    position: absolute;
    right: -90px;
    top: -120px;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    border: 42px solid rgba(59, 130, 246, 0.25);
}

.home-band h2,
.home-band p,
.home-band strong {
    color: #fff;
    position: relative;
    z-index: 1;
}

.home-band p {
    color: #d8d8d3;
    margin-bottom: 0;
}

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

.mini-card {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(5, 5, 5, 0.09);
    border-radius: var(--radius-lg);
    padding: 22px;
}

.mini-card h3 {
    margin-bottom: 10px;
}

.mini-card p {
    margin: 0;
}

.staff-highlight {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.staff-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--brand-gray-dark);
}

.staff-content {
    padding: 30px 30px 30px 0;
}

.staff-content p:last-child {
    margin-bottom: 0;
}

.update-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.update-image {
    height: 180px;
    background: var(--ink);
}

.update-body {
    padding: 22px;
}

.update-body h3 {
    margin-bottom: 10px;
}

.update-body p {
    margin-bottom: 18px;
}

.contact-card {
    padding: clamp(26px, 4vw, 40px);
}

.program-tools {
    margin-top: 22px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.22);
}

.program-tools h4 {
    margin-bottom: 8px;
    letter-spacing: -0.035em;
}

.program-tools p {
    margin-top: 0;
}

.tool-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-links .btn {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.9rem;
}

.image-fill {
    min-height: 360px;
}

.about-order-note {
    margin-top: 18px;
    color: var(--muted);
    font-weight: 700;
}

@media (max-width: 1080px) {
    .section-feature,
    .section-feature.reverse,
    .home-band,
    .staff-highlight {
        grid-template-columns: 1fr;
    }

    .staff-content {
        padding: 28px;
    }

    .mini-grid,
    .update-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .section-feature,
    .section-feature.reverse {
        gap: 18px;
    }

    .photo-card {
        min-height: 320px;
    }

    .mini-grid,
    .update-list {
        grid-template-columns: 1fr;
    }

    .home-band {
        padding: 26px;
    }

    .staff-photo {
        max-width: 240px;
        margin: 0 auto;
    }

    .tool-links .btn {
        width: 100%;
    }
}


/* v1.2.0 polish: smaller headings, unified footer CTA, AOS-ready components, and stronger responsiveness */
h1 {
    font-size: clamp(2.45rem, 6.4vw, 5.55rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

h2 {
    font-size: clamp(1.85rem, 4vw, 3.35rem);
    line-height: 1.03;
    letter-spacing: -0.052em;
}

h3 {
    font-size: clamp(1.16rem, 1.8vw, 1.55rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

h4 {
    font-size: 1.05rem;
    line-height: 1.2;
}

.lede {
    font-size: clamp(0.98rem, 1.7vw, 1.16rem);
    max-width: 700px;
}

.hero {
    padding: 94px 0 80px;
}

.section-heading {
    max-width: 710px;
}

.card,
.program-card,
.team-card,
.stat-card,
.partner-card,
.form-card,
.portal-card,
.mini-card,
.update-card,
.contact-card,
.feature-copy,
.story-panel,
.media-card,
.photo-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card:hover,
.program-card:hover,
.portal-card:hover,
.update-card:hover,
.mini-card:hover {
    border-color: rgba(59, 130, 246, 0.24);
}

.footer-cta {
    position: relative;
    overflow: hidden;
    background: #020202;
    color: var(--brand-gray);
    padding: clamp(54px, 8vw, 90px) 0 clamp(48px, 7vw, 80px);
}

.footer-cta::after {
    content: '';
    position: absolute;
    right: -82px;
    top: -96px;
    width: clamp(230px, 32vw, 420px);
    height: clamp(230px, 32vw, 420px);
    border-radius: 999px;
    border: clamp(24px, 5vw, 44px) solid rgba(59, 130, 246, 0.28);
    pointer-events: none;
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-cta .kicker {
    color: #fff;
    font-size: 0.72rem;
    margin-bottom: 12px;
}

.footer-cta h2 {
    color: #fff;
    max-width: 690px;
    font-size: clamp(2.1rem, 5.4vw, 4.6rem);
    line-height: 0.97;
}

.footer-cta p {
    color: #f0f0ee;
    max-width: 720px;
    margin-top: 22px;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.footer-cta .btn-light,
.footer-cta .btn-secondary.btn-light {
    min-height: 46px;
    padding: 0 20px;
}

.site-footer {
    padding-top: 46px;
}

.article-hero {
    padding: 92px 0 42px;
    background: linear-gradient(135deg, var(--brand-gray), #efefef 55%, #dddddd);
}

.article-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.article-meta {
    color: var(--muted);
    font-weight: 800;
    margin-top: 18px;
}

.article-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(5, 5, 5, 0.08);
    background: var(--ink);
    margin-top: 34px;
}

.article-image img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.article-card {
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(5, 5, 5, 0.08);
    border-radius: var(--radius-xl);
    padding: clamp(26px, 5vw, 46px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
}

.article-card p {
    font-size: 1rem;
    margin-top: 0;
}

.article-card h3 {
    margin: 30px 0 12px;
}

.utility-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--brand-gray), #efefef);
}

.utility-main {
    min-height: calc(100vh - 78px);
    display: grid;
    place-items: center;
    padding: 120px 16px 70px;
}

.utility-card {
    width: min(640px, 100%);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(5, 5, 5, 0.09);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: clamp(26px, 5vw, 42px);
    text-align: center;
}

.utility-card h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
}

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

.form-frame-shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.frame-card {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #fff;
    border: 1px solid rgba(5, 5, 5, 0.1);
    box-shadow: var(--shadow);
}

.frame-topbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding: 16px 20px;
    background: var(--ink);
    color: #fff;
}

.frame-topbar p,
.frame-topbar strong {
    color: #fff;
    margin: 0;
}

.frame-card iframe {
    width: 100%;
    min-height: 820px;
    border: 0;
    display: block;
    background: #fff;
}

.clean-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

.clean-list li {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.16);
    color: var(--ink-soft);
    font-weight: 700;
}

@media (max-width: 1080px) {
    .footer-cta-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: clamp(2.1rem, 12vw, 3.25rem);
        line-height: 1.02;
    }

    h2 {
        font-size: clamp(1.7rem, 9vw, 2.55rem);
    }

    .lede {
        font-size: 0.98rem;
    }

    .hero {
        padding: 68px 0 58px;
    }

    .footer-cta-actions .btn {
        width: 100%;
    }

    .footer-cta::after {
        right: -128px;
        top: -110px;
        opacity: 0.8;
    }

    .article-hero {
        padding-top: 70px;
    }

    .frame-topbar {
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

/* v1.3.0 deployment polish: public-ready responsive details, accessibility, and utility page consistency */
:root {
    --focus-ring: 0 0 0 4px rgba(59, 130, 246, 0.22);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    transform: translateY(-140%);
    background: var(--ink);
    color: #fff;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.16s ease;
}

.skip-link:focus {
    transform: translateY(0);
    outline: none;
    box-shadow: var(--focus-ring);
}

:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
}

button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
}

.site-header {
    isolation: isolate;
}

.brand-logo {
    object-fit: contain;
}

.primary-nav a,
.mobile-menu a,
.btn,
.text-link {
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.btn,
.mobile-menu-button,
input,
select,
textarea {
    font-family: inherit;
}

.btn {
    text-align: center;
}

.btn[aria-disabled="true"],
.btn:disabled,
button:disabled {
    opacity: 0.56;
    cursor: not-allowed;
    transform: none !important;
}

.hero-home {
    min-height: min(760px, calc(100vh - 78px));
    display: grid;
    align-items: center;
}

.hero-copy > * {
    overflow-wrap: anywhere;
}

.footer-logo {
    object-fit: contain;
}

.footer-bottom {
    display: grid;
    gap: 8px;
}

.footer-bottom p {
    margin: 0;
}

.error-page-code {
    display: block;
    font-size: clamp(4.5rem, 18vw, 10rem);
    line-height: 0.85;
    font-weight: 900;
    letter-spacing: -0.08em;
    color: var(--accent);
}

.utility-shell {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--brand-gray), #efefef);
}

.file-lock-card {
    text-align: left;
}

.file-lock-card .utility-card {
    text-align: left;
}

.status-box,
.message {
    min-height: 24px;
    font-size: 0.92rem;
    font-weight: 800;
    margin-top: 14px;
}

.status-box.success,
.message.success {
    color: #12633d;
}

.status-box.error,
.message.error {
    color: #9f1239;
}

.status-box.loading {
    color: var(--accent-dark);
}

.inline-notice {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.16);
    color: var(--ink-soft);
}

.inline-notice p,
.inline-notice strong {
    margin: 0;
    color: inherit;
}

.file-preview.show,
.status.show {
    display: block;
}

.file-preview,
.status {
    display: none;
}

.form-card .hint,
.hint {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 8px 0 0;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
}

.required {
    color: var(--accent-dark);
}

.download-ready {
    display: none;
    margin-top: 20px;
}

.download-ready.is-visible {
    display: block;
}

.partner-logo-card {
    display: grid;
    place-items: center;
    min-height: 140px;
}

.partner-logo-card img {
    max-width: 170px;
    max-height: 88px;
    object-fit: contain;
    filter: grayscale(1);
}

.cdf-schedule {
    display: grid;
    gap: 18px;
}

.schedule-card {
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(5, 5, 5, 0.09);
}

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

@media (hover: none) {
    .card:hover,
    .program-card:hover,
    .portal-card:hover,
    .update-card:hover,
    .mini-card:hover,
    .btn:hover {
        transform: none;
    }
}

@media (max-width: 860px) {
    .footer-cta h2 {
        font-size: clamp(2rem, 11vw, 3.6rem);
    }

    .program-card {
        min-height: auto;
    }

    .footer-logo {
        width: 168px;
    }
}

@media (max-width: 440px) {
    .container,
    .mobile-menu,
    .nav-shell,
    .form-frame-shell {
        width: min(100% - 22px, var(--max-width));
    }

    .brand-logo {
        width: 132px;
        max-width: 60vw;
    }

    .mobile-menu-button {
        width: 42px;
        height: 42px;
    }

    .hero-actions,
    .action-row,
    .footer-cta-actions,
    .tool-links {
        width: 100%;
    }

    .card,
    .program-card,
    .team-card,
    .stat-card,
    .partner-card,
    .form-card,
    .portal-card,
    .mini-card,
    .update-card,
    .contact-card,
    .feature-copy,
    .story-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .stats-grid {
        gap: 14px;
    }

    .footer-cta p {
        margin-top: 16px;
    }

    .site-footer p {
        font-size: 0.92rem;
    }
}


/* v2.1.0 navigation, logo, about/team, and heading polish */
.brand-logo {
    width: 158px;
    max-width: 42vw;
    max-height: 58px;
    object-fit: contain;
    border-radius: 0;
}

.primary-nav {
    overflow: visible;
}

.nav-group {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.primary-nav .nav-top {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.92rem;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.primary-nav .nav-top::after {
    content: 'v';
    font-size: 0.72rem;
    margin-left: 7px;
    transform: translateY(-1px);
}

.primary-nav .nav-top:hover,
.primary-nav .nav-top.is-active,
.nav-group:focus-within .nav-top,
.nav-group:hover .nav-top {
    background: var(--ink);
    color: var(--brand-gray);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 245px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 20px;
    background: rgba(247, 247, 247, 0.97);
    border: 1px solid rgba(5, 5, 5, 0.10);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 14px;
    color: var(--ink);
    font-weight: 800;
    font-size: 0.91rem;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
    background: var(--ink);
    color: var(--brand-gray);
}

.mobile-menu-section {
    display: grid;
    gap: 6px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(5, 5, 5, 0.035);
}

.mobile-submenu {
    display: grid;
    gap: 4px;
    padding-left: 8px;
}

.mobile-submenu a {
    font-size: 0.92rem;
    font-weight: 750;
    padding: 11px 14px;
    opacity: 0.92;
}

.footer-wordmark {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: lowercase;
}

.about-team-top {
    padding-top: 112px;
}

.team-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.team-card-link .text-link {
    margin-top: 14px;
}

.team-card-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.11);
    border-color: rgba(59, 130, 246, 0.24);
}

.team-profile-page {
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
}

.team-profile-card {
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(5, 5, 5, 0.09);
    border-radius: var(--radius-xl);
    padding: clamp(26px, 5vw, 44px);
    box-shadow: var(--shadow);
}

.profile-avatar {
    width: 150px;
    height: 150px;
    margin: 0 0 22px;
}

h1 {
    font-size: clamp(2.05rem, 5.25vw, 4.55rem);
    line-height: 1.01;
}

h2 {
    font-size: clamp(1.65rem, 3.45vw, 2.95rem);
    line-height: 1.06;
}

.footer-cta h2 {
    font-size: clamp(1.85rem, 4.3vw, 3.7rem);
}

@media (max-width: 1080px) {
    .primary-nav {
        display: none;
    }

    .brand-logo {
        width: 152px;
    }
}

@media (max-width: 640px) {
    .brand-logo {
        width: 132px;
        max-width: 58vw;
    }

    .about-team-top {
        padding-top: 84px;
    }

    h1 {
        font-size: clamp(2rem, 10.5vw, 3.05rem);
    }

    h2 {
        font-size: clamp(1.55rem, 8vw, 2.35rem);
    }

    .profile-avatar {
        width: 126px;
        height: 126px;
    }
}

/* v2.2.0 final polish: tighter geometry, stable type, local-brand cleanup */
:root {
    --brand-gray: #f3f4f6;
    --brand-gray-dark: #d6dbe3;
    --surface: #f3f4f6;
    --surface-soft: #ffffff;
    --card: #ffffff;
    --line: #d8dee8;
    --accent: #2563eb;
    --accent-dark: #1747b7;
    --accent-soft: #dbeafe;
    --accent-alt: #0f766e;
    --accent-alt-soft: #ccfbf1;
    --accent-warm: #b45309;
    --accent-warm-soft: #ffedd5;
    --warm: #64748b;
    --shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
    --radius-xl: 8px;
    --radius-lg: 8px;
    --radius-md: 8px;
}

*,
*::before,
*::after {
    letter-spacing: 0 !important;
}

body {
    background: var(--brand-gray);
}

main {
    padding-top: 0;
}

.site-header {
    background: rgba(243, 244, 246, 0.94);
}

.hero,
.article-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 62%, #dfe7f2 100%);
}

.hero::before,
.hero::after,
.section-ambient::before,
.home-band::after,
.footer-cta::after,
.program-card::after,
.story-panel::after {
    display: none;
}

.hero {
    padding: 72px 0 64px;
}

.hero-home {
    min-height: auto;
}

h1 {
    font-size: 4.35rem;
    line-height: 1.02;
}

h2 {
    font-size: 2.75rem;
    line-height: 1.08;
}

h3 {
    font-size: 1.38rem;
    line-height: 1.16;
}

h4 {
    font-size: 1.05rem;
    line-height: 1.22;
}

.lede {
    font-size: 1.08rem;
}

.stat-number {
    font-size: 3rem;
}

.footer-cta h2 {
    font-size: 3rem;
    line-height: 1.04;
}

.utility-card h1 {
    font-size: 2.7rem;
}

.error-page-code {
    font-size: 7rem;
}

.card,
.program-card,
.team-card,
.stat-card,
.partner-card,
.form-card,
.portal-card,
.mini-card,
.update-card,
.contact-card,
.feature-copy,
.story-panel,
.media-card,
.photo-card,
.visual-card,
.article-card,
.team-profile-card,
.schedule-card,
.utility-card,
.frame-card,
.donation-frame-wrap {
    border-radius: 8px;
}

.card,
.program-card,
.team-card,
.stat-card,
.partner-card,
.form-card,
.portal-card,
.mini-card,
.update-card,
.contact-card,
.feature-copy,
.media-card,
.photo-card,
.article-card,
.team-profile-card,
.schedule-card,
.utility-card {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(15, 23, 42, 0.10);
}

.story-panel,
.home-band,
.footer-cta,
.site-footer {
    background: #05070c;
}

.btn {
    min-height: 48px;
    border-radius: 999px;
}

.primary-nav,
.mobile-menu,
.mobile-menu-section,
.nav-dropdown,
.nav-dropdown a,
.mobile-menu a,
input,
select,
textarea,
.inline-notice,
.clean-list li {
    border-radius: 8px;
}

.primary-nav .nav-top::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.pill:nth-child(3n + 2),
.tag:nth-child(3n + 2),
.program-meta span:nth-child(3n + 2) {
    background: var(--accent-alt-soft);
    color: var(--accent-alt);
}

.pill:nth-child(3n),
.tag:nth-child(3n),
.program-meta span:nth-child(3n) {
    background: var(--accent-warm-soft);
    color: var(--accent-warm);
}

.pill.dark {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.logo-tile,
.staff-photo,
.avatar,
.profile-avatar,
.article-image,
.update-image,
.dj-visual,
.mentor-visual {
    border-radius: 8px;
}

.photo-card .photo-caption {
    border-radius: 8px;
}

@media (max-width: 1080px) {
    h1 {
        font-size: 3.4rem;
    }

    h2 {
        font-size: 2.35rem;
    }

    .footer-cta h2 {
        font-size: 2.55rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 52px 0 46px;
    }

    h1 {
        font-size: 2.45rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .lede {
        font-size: 0.98rem;
    }

    .stat-number {
        font-size: 2.3rem;
    }

    .footer-cta h2,
    .utility-card h1 {
        font-size: 2rem;
    }
}

/* Keep desktop dropdowns open while moving from the nav item into the menu. */
.nav-group::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 260px;
    top: 100%;
    height: 24px;
    transform: translateX(-50%);
}

.nav-dropdown {
    top: 100%;
    z-index: 1001;
}

.nav-group:hover,
.nav-group:focus-within {
    z-index: 1002;
}
