:root {
    --navy: #1B2D45;
    --navy-light: #27405E;
    --blue: #2DA8D8;
    --gold: #EC5800;
    --red-alert: #DC2626;

    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --border-color: #E2E8F0;
    --text-main: #334155;
    --text-light: #64748B;

    --max-w: 1600px;
    --pad-x: clamp(24px, 5vw, 80px);

    --font-head: 'Oswald', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --section-spacing: clamp(60px, 8vw, 140px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body); color: var(--text-main); line-height: 1.6;
    background: var(--white); overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); text-transform: uppercase; color: var(--navy); }

h1 {
    font-size: clamp(2.25rem, 5vw, 4.5rem);
    line-height: 1.1; font-weight: 700; width: 100%;
}
h1 .title-line { display: block; white-space: nowrap; }
h1 .highlight { color: var(--blue); }

h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; margin-bottom: 20px; line-height: 1.1; letter-spacing: -0.01em; }
p { margin-bottom: 24px; font-size: 1.1rem; color: var(--text-light); max-width: 65ch; font-weight: 400; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section-pad { padding: 120px 0; }

.eyebrow {
    font-size: 0.85rem; font-weight: 700; color: var(--blue); letter-spacing: 0.2em; font-family: var(--font-head);
    text-transform: uppercase; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ''; width: 30px; height: 2px; background: var(--gold); display: block; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 20px 40px; font-weight: 600; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid transparent;
    font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 0.95rem;
    position: relative; overflow: hidden; min-height: 50px;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

.btn-primary { background: var(--navy); color: white; border: 1px solid var(--navy); }
.btn-primary:hover { background: var(--blue); border-color: var(--blue); }

.btn-gold { background: var(--gold); color: white; border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--navy); border-color: var(--navy); }

.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: white; }

.btn-outline-white { border-color: rgba(255,255,255,0.3); color: white; background: transparent; }
.btn-outline-white:hover { background: white; color: var(--navy); }

nav {
    position: sticky; top: 0; z-index: 999;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color); padding: 15px 0;
    transition: all 0.3s ease;
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; }

.logo-lockup {
    display: flex; align-items: center;
    text-decoration: none; gap: 12px;
}
.logo-badge {
    height: 46px; width: auto; flex-shrink: 0;
}
.logo-text-wrapper {
    display: flex; flex-direction: column;
    justify-content: center; line-height: 1;
}
.company-name {
    font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700;
    color: var(--blue); text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 2px; white-space: nowrap;
}
.tagline {
    font-family: 'Montserrat', sans-serif; font-size: 9.5px; font-weight: 700;
    color: var(--navy); text-transform: uppercase; letter-spacing: -0.5px;
    white-space: nowrap;
}

.nav-links { display: flex; align-items: center; }
.nav-links a {
    text-decoration: none; color: var(--navy); font-weight: 600; font-size: 0.9rem;
    text-transform: uppercase; margin-left: 32px; transition: 0.2s;
    font-family: var(--font-head); letter-spacing: 0.05em; white-space: nowrap;
    position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active {
    color: var(--gold);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}
.nav-donate {
    background: var(--blue); color: white !important; padding: 10px 28px;
    border-radius: 2px; margin-left: 40px;
}
.nav-donate:hover { background: var(--navy); transform: translateY(-1px); }
.hamburger { display: none; }

.hero {
    display: grid; grid-template-columns: 0.9fr 1.1fr;
    min-height: max(600px, 80vh); max-height: 1080px; background: white; overflow: hidden; position: relative;
}
.hero-content {
    display: flex; flex-direction: column; justify-content: center;
    z-index: 2; padding: 80px 40px 80px max(var(--pad-x), calc((100vw - var(--max-w)) / 2 + var(--pad-x)));
}
.hero-visual {
    position: relative; height: 100%; width: 100%; z-index: 1; min-height: 600px;
    background-color: #475569; overflow: hidden;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.quote-slide { display: none; }
.quote-slide.active { display: block; }
.hero-visual::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, #1B2D45 0%, rgba(27, 45, 69, 0.85) 25%, rgba(39, 64, 94, 0.45) 40%, rgba(255,255,255,0) 70%);
    z-index: 1; pointer-events: none;
}
.hero-quote {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 70px 90px 70px 15%; z-index: 2;
}
blockquote {
    font-family: var(--font-head); font-size: 1.5rem; line-height: 1.25;
    color: white; margin-bottom: 18px; font-weight: 500;
}
.story-author h4 { font-size: 1rem; margin-bottom: 3px; color: white; }
.story-author span { font-size: 0.85rem; color: var(--gold); font-weight: 600; text-transform: uppercase; }
.story-nav { display: flex; gap: 10px; margin-top: 20px; }
.nav-dot { width: 35px; height: 3px; background: rgba(255,255,255,0.3); cursor: pointer; transition: 0.3s; }
.nav-dot.active { background: white; }

.stats-sec {
    position: relative;
    background-color: var(--navy);
    color: white;
    padding: clamp(80px, 10vw, 160px) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.impact-ghost-text {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    font-family: var(--font-head);
    font-size: 25vw;
    line-height: 0.8;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    user-select: none;
}

.impact-visual-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-image: url('https://res.cloudinary.com/dfpg7wqyu/image/upload/f_auto,q_auto:low,w_800/v1770055158/Untitled_design_4_l6y2y3.jpg');
    background-size: cover;
    background-position: center;
    z-index: 2;
    mask-image: linear-gradient(to bottom, transparent 0%, black 35%), linear-gradient(to right, transparent 0%, black 60%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 35%), linear-gradient(to right, transparent 0%, black 60%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
    opacity: 0.2;
    filter: grayscale(100%) contrast(1.2);
    pointer-events: none;
}

.impact-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.impact-statement h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 30px;
    color: white;
}
.impact-statement p {
    font-size: 1.2rem;
    color: #E2E8F0;
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
    border-left: 3px solid var(--gold);
    padding-left: 25px;
}

.impact-ledger {
    display: flex;
    flex-direction: column;
}
.ledger-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 35px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s ease;
    position: relative;
}
.ledger-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.ledger-item:hover::after { width: 100%; }

.l-info { display: flex; flex-direction: column; }

.l-label {
    font-family: var(--font-head);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}
.l-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: white;
    opacity: 0.7;
}
.l-num {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 400;
    line-height: 0.8;
    color: white;
    transition: 0.4s ease;
}
.ledger-item:hover .l-num { color: var(--gold); transform: translateX(-10px); }

@media (max-width: 1024px) {
    .impact-content { grid-template-columns: 1fr; gap: 60px; }
    .impact-ghost-text { font-size: 35vw; left: -20px; }
    .impact-visual-layer {
        width: 100%;
        opacity: 0.15;
        mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
    }
}

.programs-sec {
    background-color: #F8FAFC;
    padding: var(--section-spacing) 0;
    border-bottom: 1px solid #E2E8F0;
}

.mosaic-wrapper {
    border-top: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: var(--navy);
    gap: 1px;
}

.mosaic-cell {
    background: white;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.3s;
    min-height: 450px;
}

.cell-hero {
    grid-column: span 1;
    background-color: var(--navy);
    color: white;
}

.cell-text {
    grid-column: span 2;
    background-image: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.cell-standard {
    grid-column: span 1;
}

.idx-number {
    font-family: var(--font-head);
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    position: absolute;
    top: 20px;
    right: 30px;
    transition: 0.4s ease;
}
.cell-hero .idx-number { color: rgba(255,255,255,0.1); }

.m-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    display: block;
    color: var(--gold);
}

.m-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
    max-width: 90%;
}

.m-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 350px;
}
.cell-hero .m-title { color: white; }
.cell-hero .m-desc { color: rgba(255,255,255,0.7); }

.m-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: grayscale(100%) contrast(1.2);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}
.m-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }

.mosaic-cell:hover .m-bg-img {
    opacity: 0.15;
    transform: scale(1.05);
}
.cell-hero:hover .m-bg-img { opacity: 0.4; }

.mosaic-cell:hover .idx-number {
    transform: translateY(-10px);
    color: var(--gold);
    opacity: 1;
}

.reset-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: auto;
}
.reset-item {
    border-left: 2px solid var(--gold);
    padding-left: 15px;
}
.reset-item h5 { font-size: 1rem; margin-bottom: 5px; }
.reset-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

@media (max-width: 1024px) {
    .mosaic-wrapper { grid-template-columns: 1fr; gap: 1px; border: none; background: transparent; }
    .mosaic-cell { min-height: 450px; border-bottom: 1px solid var(--navy); }
    .cell-text { grid-column: span 1; }
}

.vision-executive {
    background: var(--navy); color: white; padding: var(--section-spacing) 0;
    position: relative; border-top: 1px solid rgba(255,255,255,0.1);
}
.ve-container {
    max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x);
    display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
}
.ve-eyebrow {
    font-family: var(--font-head); color: var(--gold); font-size: 0.9rem;
    letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 30px;
    display: flex; align-items: center; gap: 15px;
}
.ve-eyebrow::after { content: ''; height: 1px; width: 60px; background: var(--gold); opacity: 0.5; }
.ve-title { font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1; font-weight: 400; margin-bottom: 30px; color: white; }
.ve-title strong { font-weight: 700; color: white; }
.ve-text { font-size: 1.15rem; color: #94A3B8; line-height: 1.8; max-width: 520px; margin-bottom: 50px; }
.ve-stat-block { display: inline-flex; flex-direction: column; align-items: flex-start; padding-right: 40px; margin-bottom: 50px; }
.ve-big-num { font-size: 6rem; line-height: 0.8; font-family: var(--font-head); font-weight: 700; color: white; letter-spacing: -0.03em; }
.ve-stat-label { font-size: 0.9rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 15px; font-weight: 600; }
.ve-image-wrap { width: 100%; height: 380px; background: #000; position: relative; margin-bottom: 40px; border: 1px solid rgba(255,255,255,0.15); }
.ve-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: 0.5s; filter: grayscale(100%) contrast(1.2); }
.ve-image-wrap:hover .ve-img { opacity: 1; filter: grayscale(0%); }
.ve-list { list-style: none; border-top: 1px solid rgba(255,255,255,0.15); }
.ve-item { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.15); transition: 0.3s; }
.ve-item:hover { padding-left: 15px; border-color: var(--gold); background: rgba(255,255,255,0.02); }
.ve-item-name { font-family: var(--font-head); font-size: 1.25rem; color: white; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.ve-icon { color: var(--gold); opacity: 0; transition: 0.3s; }
.ve-item:hover .ve-icon { opacity: 1; transform: translateX(-10px); }

.contact-clean { background: white; padding: var(--section-spacing) 0; border-top: 1px solid var(--border-color); }
.contact-layout { display: flex; justify-content: space-between; gap: 80px; }
.contact-info { flex: 0.8; }
.contact-form-wrap { flex: 1.2; }
.info-block { margin-bottom: 40px; }
.info-label { font-size: 0.75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; display: block; }
.info-data { font-family: var(--font-head); font-size: 1.8rem; color: var(--navy); font-weight: 600; line-height: 1.2; }
.info-data a { color: var(--navy); text-decoration: none; transition: 0.3s; }
.minimal-group { position: relative; margin-bottom: 45px; }
.minimal-input, .minimal-select { width: 100%; padding: 15px 0; border: none; border-bottom: 2px solid #E2E8F0; font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); background: transparent; border-radius: 0; outline: none; transition: 0.3s; }
.minimal-input:focus { border-color: var(--gold); }
.minimal-label { position: absolute; top: -18px; left: 0; font-size: 0.75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }

footer { background: var(--off-white); border-top: 1px solid var(--border-color); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); font-weight: 800; margin-bottom: 20px; display: block; letter-spacing: -0.02em; text-decoration: none; }
.footer-link { display: block; color: var(--text-light); text-decoration: none; margin-bottom: 12px; font-size: 0.95rem; transition: 0.2s; font-weight: 500; }
.footer-link:hover { color: var(--blue); padding-left: 5px; }
.copyright { padding-top: 30px; display: flex; justify-content: space-between; color: var(--text-light); font-size: 0.85rem; }

.about-hero, .programs-hero, .events-hero, .athletics-hero, .contact-hero, .volunteer-hero, .gallery-hero, .scholarship-hero, .donate-hero {
    background: var(--navy);
    padding: 140px 0 110px;
    position: relative;
    overflow: hidden;
}
.about-hero-content, .programs-hero-content, .events-hero-content, .athletics-hero-content, .contact-hero-content, .volunteer-hero-content, .gallery-hero-content, .scholarship-hero-content, .donate-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.about-hero .eyebrow, .programs-hero .eyebrow, .events-hero .eyebrow, .athletics-hero .eyebrow, .contact-hero .eyebrow, .volunteer-hero .eyebrow, .gallery-hero .eyebrow, .scholarship-hero .eyebrow, .donate-hero .eyebrow { color: var(--gold); }
.about-hero h1, .programs-hero h1, .events-hero h1, .athletics-hero h1, .contact-hero h1, .volunteer-hero h1, .gallery-hero h1, .scholarship-hero h1, .donate-hero h1 {
    color: white;
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 20px;
}
.about-hero p, .programs-hero p, .events-hero p, .athletics-hero p, .contact-hero p, .volunteer-hero p, .gallery-hero p, .scholarship-hero p, .donate-hero p {
    color: rgba(255,255,255,0.55);
    font-size: 1.15rem;
    max-width: 540px;
    margin: 0;
    line-height: 1.7;
}

.founders-sec {
    padding: var(--section-spacing) 0;
    background: white;
}
.founders-header { margin-bottom: 80px; }
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.founder-card { display: flex; flex-direction: column; }
.founder-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
    margin-bottom: 36px;
    background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy) 100%);
}
.founder-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 35%, rgba(45, 168, 216, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 100%, rgba(236, 88, 0, 0.06) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}
.founder-photo-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.founder-photo-icon i {
    font-size: 7rem;
    color: rgba(255,255,255,0.07);
}
.founder-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 28px;
    background: linear-gradient(to top, rgba(27, 45, 69, 0.85) 0%, transparent 100%);
    z-index: 2;
}
.founder-photo-label span {
    font-family: var(--font-head);
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}
.founder-name {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
}
.founder-title {
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}
.founder-bio {
    list-style: none;
    padding: 0;
    margin: 0;
}
.founder-bio li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.5;
}
.founder-bio li:last-child { border-bottom: none; }
.founder-bio li i {
    color: var(--gold);
    font-size: 0.65rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.team-sec {
    padding: var(--section-spacing) 0;
    background: var(--off-white);
    border-top: 1px solid var(--border-color);
}
.team-header { margin-bottom: 70px; }
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 32px;
}
.team-member {
    padding-top: 24px;
    border-top: 2px solid var(--navy);
    transition: border-color 0.3s;
}
.team-member:hover { border-top-color: var(--gold); }
.team-member-name {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.board-sec {
    padding: 140px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.board-sec::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(45, 168, 216, 0.07) 0%, transparent 65%);
    pointer-events: none;
}
.board-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.board-header { margin-bottom: 70px; }
.board-header h2 { color: white; }
.board-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 100px;
}
.board-col { padding-top: 1px; }
.board-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 30px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    transition: all 0.3s ease;
}
.board-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.board-item:hover::after { width: 100%; }
.board-item:hover { padding-left: 10px; }
.board-item-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.board-item-affil {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    text-align: right;
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 140px 0;
}
.feature-split.img-right { direction: rtl; }
.feature-split.img-right > * { direction: ltr; }
.feature-image {
    width: 100%;
    height: 440px;
    overflow: hidden;
    position: relative;
}
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.6s ease;
}
.feature-image:hover img {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.03);
}
.feature-content h2 { margin-bottom: 24px; }
.feature-content p { margin-bottom: 16px; }
.feature-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}
.feature-content ul li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 1rem;
}
.feature-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
}

.service-grid {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.service-grid .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.grid-card {
    padding: 40px 28px;
    background: white;
    border-top: 3px solid var(--navy);
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.grid-card:hover {
    border-top-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(27, 45, 69, 0.1);
}
.grid-card h4 {
    font-size: 1.05rem;
    margin-bottom: 14px;
    color: var(--navy);
}
.grid-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.nfl-flag-logo {
    display: block;
    height: 56px;
    width: auto;
    margin-bottom: 20px;
}
.nfl-reg-form { margin-top: 28px; }
.nfl-reg-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}
.nfl-reg-input {
    flex: 1;
    min-width: 0;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: white;
    outline: none;
    transition: border-color 0.3s;
}
.nfl-reg-input:focus { border-color: var(--gold); }
.nfl-reg-input::placeholder { color: var(--text-light); }

.events-schedule {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.grid-section-header {
    text-align: center;
    margin-bottom: 60px;
}
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.card-date {
    font-family: var(--font-head);
    font-size: 0.82rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 10px;
}
.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.card-meta i { font-size: 0.75rem; }

.impact-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}
.impact-list li {
    padding: 16px 0 16px 24px;
    border-bottom: 1px solid #F1F5F9;
    position: relative;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}
.impact-list li:last-child { border-bottom: none; }
.impact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    width: 8px;
    height: 8px;
    background: var(--gold);
}

.partner-sec {
    padding: 100px 0;
    background: white;
    border-top: 1px solid var(--border-color);
}
.partner-header {
    text-align: center;
    margin-bottom: 60px;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.partner-card {
    padding: 48px 24px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.partner-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(27, 45, 69, 0.08);
}
.partner-card-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.partner-showcase-sec {
    padding: 100px 0;
    background: #FAFBFC;
    border-top: 1px solid var(--border-color);
}
.partner-showcase-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 60px;
}
.partner-showcase-header h2 { margin-top: 12px; }
.partner-showcase-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 18px;
}
.partner-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    gap: 32px;
}
.partner-showcase-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 40px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: start;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.partner-showcase-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(27, 45, 69, 0.08);
}
.partner-showcase-logo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.partner-showcase-copy h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 14px;
}
.partner-showcase-copy p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}
.partner-showcase-contact {
    color: var(--navy) !important;
    font-size: 0.95rem;
    margin-bottom: 0 !important;
}
.partner-showcase-contact a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}
.partner-showcase-contact a:hover { text-decoration: underline; }

.cta-sec {
    background: var(--navy);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-sec::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(45, 168, 216, 0.1) 0%, transparent 65%);
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-sec h2 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}
.cta-sec p {
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.donate-sec {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}
.donate-header {
    text-align: center;
    margin-bottom: 60px;
}
.donate-header p {
    max-width: 540px;
    margin: 0 auto;
}
.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}
.donate-card {
    background: white;
    padding: 56px 44px;
    text-align: center;
    border-top: 3px solid var(--navy);
    transition: border-color 0.3s, box-shadow 0.3s;
}
.donate-card:hover {
    border-top-color: var(--gold);
    box-shadow: 0 12px 30px rgba(27, 45, 69, 0.1);
}
.donate-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: white;
}
.donate-card-icon i { font-size: 1.6rem; }
.donate-card h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--navy);
}
.donate-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Digital Giving (Cash App / PayPal / Venmo) */
.qr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1240px;
    margin: 0 auto 60px;
}
.qr-card {
    background: white;
    padding: 40px 32px;
    text-align: center;
    border-top: 3px solid var(--navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.qr-card:hover {
    border-top-color: var(--gold);
    box-shadow: 0 12px 30px rgba(27, 45, 69, 0.1);
    transform: translateY(-4px);
}
.qr-card-tag {
    font-family: var(--font-head);
    font-size: 0.78rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    margin-bottom: 18px;
}
.qr-frame {
    width: 200px;
    height: 200px;
    padding: 10px;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.qr-frame img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.qr-handle {
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 18px;
    word-break: break-word;
}
.qr-note {
    font-size: 0.88rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Mail-a-check banner */
.mail-check {
    max-width: 880px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--gold);
    padding: 36px 40px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.mail-check-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: white;
}
.mail-check-icon i { font-size: 1.4rem; }
.mail-check-body h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--navy);
}
.mail-check-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.6;
}
.mail-check-body .donate-address {
    font-style: normal;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .qr-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}
@media (max-width: 600px) {
    .qr-grid { grid-template-columns: 1fr; max-width: 380px; }
    .mail-check { flex-direction: column; gap: 20px; padding: 28px 24px; }
}
.donate-address {
    font-family: var(--font-head);
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.8;
    margin-top: 8px;
}

.gallery-sec {
    padding: 100px 0;
    background: white;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    position: relative;
    transition: background 0.4s;
}
.gallery-placeholder:hover {
    background: linear-gradient(145deg, #2E4D6B 0%, #1B2D45 100%);
}
.gallery-placeholder i {
    font-size: 2.8rem;
    color: rgba(255,255,255,0.08);
}
.gallery-placeholder span {
    font-family: var(--font-head);
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.vol-intro {
    padding: 100px 0;
    background: white;
}
.vol-intro-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
}
.vol-intro-text h2 { margin-bottom: 24px; }
.vol-intro-contact {
    background: var(--off-white);
    padding: 48px 40px;
    border-left: 3px solid var(--gold);
}
.vol-intro-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--navy);
}
.vol-intro-contact p a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
}
.vol-intro-contact p a:hover { color: var(--navy); }

.vol-form-sec {
    background: white;
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}
.vol-form {
    background: white;
}
.form-block {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border-color);
    background: white;
}
.form-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.form-section-label {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    display: block;
}
.form-section-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: none;
}
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    font-size: 0.92rem;
    color: var(--text-main);
}
.checkbox-label:hover {
    border-color: var(--blue);
    background: rgba(45, 168, 216, 0.04);
}
.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--navy);
    flex-shrink: 0;
}

.scholarship-overview {
    padding: 100px 0;
    background: white;
}
.scholarship-overview-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
}
.scholarship-overview-text h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}
.key-details-card {
    background: white;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--navy);
}
.key-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}
.key-detail-item:last-child { border-bottom: none; }
.key-detail-label {
    font-family: var(--font-head);
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    white-space: nowrap;
}
.key-detail-value {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}
.key-detail-highlight {
    background: var(--off-white);
    margin: 0 -40px;
    padding: 24px 40px !important;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color) !important;
}
.key-detail-highlight .key-detail-label { color: var(--gold); }
.key-detail-highlight .key-detail-value { color: var(--navy); font-size: 1.25rem; font-weight: 700; }
.key-detail-link a {
    color: var(--blue);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s;
}
.key-detail-link a:hover { color: var(--navy); }

.scholarship-info-sec {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}
.info-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.info-block-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}

textarea.minimal-input {
    border: 2px solid #E2E8F0;
    padding: 14px 16px;
    border-radius: 0;
    resize: vertical;
    min-height: 80px;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 8px;
}
textarea.minimal-input:focus { border-color: var(--gold); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-load { opacity: 0; animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.3s; }
.animate-delay-3 { animation-delay: 0.5s; }
.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal-up.active { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; max-height: none; background: var(--navy); }
    .hero-content { padding: 60px var(--pad-x); order: 1; background: white; }
    .hero-visual { order: 2; min-height: 400px; clip-path: none; }
    .hero-visual::before { background: linear-gradient(to top, #1B2D45 0%, rgba(27, 45, 69, 0.75) 35%, rgba(27, 45, 69, 0.45) 100%); }
    .hero-quote { padding: 40px 30px; background: linear-gradient(to top, rgba(27, 45, 69, 1) 0%, rgba(27, 45, 69, 0.5) 100%); }
    .ve-container { grid-template-columns: 1fr; gap: 60px; }
    .contact-layout { flex-direction: column; gap: 60px; }
    .founders-grid { grid-template-columns: 1fr; gap: 80px; max-width: 520px; }
    .board-layout { grid-template-columns: 1fr; gap: 0; }
    .feature-split { grid-template-columns: 1fr; gap: 60px; padding: 100px 0; }
    .feature-split.img-right { direction: ltr; }
    .service-grid .container { grid-template-columns: repeat(2, 1fr); }
    .schedule-grid { grid-template-columns: repeat(2, 1fr); }
    .vol-intro-layout { grid-template-columns: 1fr; gap: 48px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .scholarship-overview-layout { grid-template-columns: 1fr; }
    .info-two-col { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: none; cursor: pointer; -webkit-tap-highlight-color: transparent; }
    .hamburger span, .hamburger span::before, .hamburger span::after { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: 0.3s ease; }
    .hamburger span { position: relative; }
    .hamburger span::before, .hamburger span::after { content: ''; position: absolute; left: 0; }
    .hamburger span::before { top: -7px; }
    .hamburger span::after { top: 7px; }
    nav.nav-open .hamburger span { background: transparent; }
    nav.nav-open .hamburger span::before { top: 0; transform: rotate(45deg); }
    nav.nav-open .hamburger span::after { top: 0; transform: rotate(-45deg); }

    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); padding: 16px var(--pad-x) 24px; box-shadow: 0 8px 24px rgba(15,23,42,0.12); border-top: 1px solid var(--border-color); }
    nav.nav-open .nav-links { display: flex; }
    .nav-links a { margin-left: 0; padding: 13px 0; font-size: 1rem; border-bottom: 1px solid var(--border-color); }
    .nav-links a.active::after { display: none; }
    .nav-links a.active { border-left: 3px solid var(--gold); padding-left: 10px; }
    .nav-donate { margin-left: 0; margin-top: 16px; padding: 13px; text-align: center; border-bottom: none; }

    .logo-badge { height: 34px; }
    .company-name { font-size: 20px; }
    .tagline { font-size: 7.5px; }

    .section-pad { padding: 80px 0; }
    h2 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .copyright { flex-direction: column; gap: 15px; text-align: center; }
    .hero-content div[style*="flex"] { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .about-hero, .programs-hero, .athletics-hero, .scholarship-hero, .donate-hero { padding: 100px 0 70px; }
    .founders-sec, .team-sec, .board-sec { padding: 80px 0; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
    .feature-split { padding: 70px 0; }
    .service-grid { padding: 70px 0; }
    .service-grid .container { grid-template-columns: 1fr 1fr; }
    .events-schedule, .partner-sec, .partner-showcase-sec, .cta-sec { padding: 70px 0; }
    .schedule-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-grid { grid-template-columns: repeat(2, 1fr); }
    .partner-showcase-grid { grid-template-columns: 1fr; }
    .partner-showcase-card { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
    .partner-showcase-logo { max-width: 220px; margin: 0 auto; }
    .nfl-reg-row { flex-direction: column; }
    .jr-grizzlies-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
    .donate-sec { padding: 70px 0; }
    .donate-grid { grid-template-columns: 1fr; gap: 32px; }
    .vol-intro, .vol-form-sec, .gallery-sec { padding: 70px 0; }
    .scholarship-overview, .scholarship-info-sec { padding: 70px 0; }
    .two-col { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ==========================================================================
   Footer Styles
   ========================================================================== */

   .site-footer {
    background: var(--off-white);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px 40px;
    padding-bottom: 60px;
}

/* Footer Logo & Mission */
#footer-col-1 .logo-lockup { margin-bottom: 20px; }
#footer-col-1 .company-name { font-size: 24px; } /* Slightly smaller for footer context */
#footer-col-1 .tagline { font-size: 8.5px; }
.footer-mission {
    color: var(--text-light);
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 25px;
}

/* Footer Headings */
.footer-heading {
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 24px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}
.footer-link:hover {
    color: var(--blue);
    transform: translateX(5px);
}
.footer-link:last-child {
    margin-bottom: 0;
}

/* Footer Contact Info */
.footer-contact {
    font-style: normal;
    line-height: 1.8;
}
.footer-contact .footer-link {
    margin-bottom: 8px;
    display: inline-block;
}

/* Social Media Icons */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    background-color: var(--navy);
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 0.85rem;
}
.footer-legal-links {
    display: flex;
    gap: 25px;
}
.footer-bottom .footer-link {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
}
.footer-bottom .footer-link:hover {
    color: var(--navy);
    transform: none;
}


/* --- Responsive Footer --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding-top: 60px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 45px;
        padding-bottom: 45px;
        text-align: center;
    }
    .logo-lockup {
        justify-content: center;
    }
    .footer-mission {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .footer-legal-links {
        gap: 20px;
    }
}

/* ==========================================================================
   Short Screen / Laptop Fixes (max-height)
   Targets scaled Windows laptops and short browser viewports
   ========================================================================== */
@media screen and (max-height: 900px) {
    h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
    h2 {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }

    .hero {
        min-height: auto;
        max-height: none;
    }
    .hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .stats-sec,
    .programs-sec,
    .vision-executive,
    .contact-clean,
    .founders-sec,
    .team-sec {
        padding: 80px 0;
    }

    .impact-content,
    .ve-container,
    .contact-layout,
    .founders-grid {
        gap: 50px;
    }

    .mosaic-cell {
        min-height: 400px;
        padding: 30px;
    }
}

/* ==========================================================================
   Ballers Academy Registration
   ========================================================================== */
.ba-reg-sec {
    background: var(--off-white);
    padding: 120px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.ba-reg-header {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}
.ba-reg-header h2 { margin-top: 12px; }
.ba-reg-header p { color: var(--text-light); margin-top: 14px; }

.ba-reg-form {
    max-width: 920px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--gold);
}
.ba-fieldset { border: none; padding: 0; margin: 0 0 50px; }
.ba-fieldset:last-of-type { margin-bottom: 30px; }
.ba-fieldset legend {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 36px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}
.ba-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
}
.ba-subhead {
    font-family: var(--font-head);
    font-size: 0.95rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin: 30px 0 24px;
}
.ba-help {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 28px;
}
.ba-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}
.ba-grid-full { grid-column: 1 / -1; }

.ba-yn {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 600;
}
.ba-yn span { margin-right: auto; }
.ba-yn label { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 500; color: var(--text-light); }

.ba-options { display: flex; flex-direction: column; gap: 14px; }
.ba-options-inline { flex-direction: row; flex-wrap: wrap; gap: 14px 24px; }
.ba-radio, .ba-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--navy);
    line-height: 1.5;
}
.ba-radio input, .ba-check input { margin-top: 4px; flex-shrink: 0; }

.ba-waiver {
    background: var(--off-white);
    border-left: 3px solid var(--navy);
    padding: 28px 30px;
    margin-bottom: 30px;
}
.ba-waiver h4 {
    font-family: var(--font-head);
    font-size: 0.95rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 20px 0 10px;
}
.ba-waiver h4:first-child { margin-top: 0; }
.ba-waiver p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; margin: 0 0 14px; }
.ba-waiver ul { margin: 0 0 10px 18px; padding: 0; }
.ba-waiver ul li { font-size: 0.9rem; color: var(--text-light); margin-bottom: 6px; line-height: 1.5; }
.ba-waiver label { margin-top: 10px; display: flex; }

.ba-acknowledge {
    padding: 18px 22px;
    background: rgba(232, 178, 14, 0.08);
    border-left: 3px solid var(--gold);
    font-weight: 600;
    color: var(--navy);
}
.ba-submit { width: 100%; margin-top: 10px; padding: 20px; font-size: 1rem; }

@media (max-width: 768px) {
    .ba-reg-sec { padding: 70px 0; }
    .ba-reg-form { padding: 36px 24px; }
    .ba-grid-2 { grid-template-columns: 1fr; gap: 0; }
    .ballers-intro { grid-template-columns: 1fr !important; gap: 36px !important; text-align: center; }
    .ballers-intro .eyebrow { margin-left: auto; margin-right: auto; }
    .ballers-logo-wrap img { max-width: 200px !important; }
}

/* ==========================================================================
   Community Changers Circle (Monthly Donor Program)
   ========================================================================== */
.ccc-sec {
    background: var(--navy);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.ccc-sec::before {
    content: 'CHANGERS';
    position: absolute;
    right: -40px;
    bottom: -40px;
    font-family: var(--font-head);
    font-size: clamp(8rem, 18vw, 20rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.025);
    text-transform: uppercase;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
}
.ccc-sec .container { position: relative; z-index: 2; }

.ccc-header {
    max-width: 720px;
    margin: 0 auto 80px;
    text-align: center;
}
.ccc-header h2 { color: white; margin-top: 12px; font-size: clamp(2.5rem, 5vw, 4rem); }
.ccc-lede {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-top: 18px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.ccc-why {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
    padding-bottom: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.ccc-why-copy h3 {
    color: white;
    font-size: 2rem;
    margin: 16px 0 20px;
    line-height: 1.2;
}
.ccc-why-copy p { color: rgba(255, 255, 255, 0.65); }
.ccc-impact-list { list-style: none; padding: 0; margin: 0; }
.ccc-impact-list li {
    display: flex;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 28px;
}
.ccc-impact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold);
}
.ccc-impact-list li:last-child { border-bottom: none; }

.ccc-levels-block { margin-bottom: 100px; }
.ccc-levels-header { text-align: center; margin-bottom: 60px; }
.ccc-levels-header h3 {
    color: white;
    font-size: 2rem;
    margin-top: 12px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ccc-levels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.ccc-level {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--blue);
    padding: 36px 26px;
    display: flex;
    flex-direction: column;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.ccc-level:hover {
    background: rgba(255, 255, 255, 0.07);
    border-top-color: var(--gold);
    transform: translateY(-4px);
}
.ccc-level-accent { border-top-color: var(--gold); }
.ccc-level-custom {
    background: rgba(232, 178, 14, 0.06);
    border-color: rgba(232, 178, 14, 0.25);
    border-top-color: var(--gold);
}
.ccc-level-tag {
    font-family: var(--font-head);
    font-size: 0.72rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    margin-bottom: 14px;
}
.ccc-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 18px;
    color: white;
    font-family: var(--font-head);
    line-height: 1;
}
.ccc-amount-num { font-size: 2.4rem; font-weight: 700; }
.ccc-amount-per { font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); font-weight: 500; }
.ccc-level p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 24px;
    flex: 1;
}
.ccc-level-cta {
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s;
}
.ccc-level-cta:hover { gap: 14px; }
.ccc-level-cta i { font-size: 0.7rem; }

.ccc-benefits {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
}
.ccc-benefits-copy h3 {
    color: white;
    font-size: 1.8rem;
    margin: 16px 0 20px;
    line-height: 1.25;
}
.ccc-benefits-copy p { color: rgba(255, 255, 255, 0.65); }
.ccc-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.ccc-benefits-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 0.92rem;
    line-height: 1.4;
}
.ccc-benefits-list i {
    color: var(--gold);
    font-size: 1rem;
    width: 22px;
    flex-shrink: 0;
}

.ccc-final-cta {
    text-align: center;
    padding: 70px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.ccc-final-cta h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 18px;
}
.ccc-final-cta p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .ccc-levels-grid { grid-template-columns: repeat(3, 1fr); }
    .ccc-level-custom { grid-column: span 3; }
}
@media (max-width: 768px) {
    .ccc-sec { padding: 80px 0; }
    .ccc-why,
    .ccc-benefits { grid-template-columns: 1fr; gap: 40px; }
    .ccc-why { padding-bottom: 60px; margin-bottom: 60px; }
    .ccc-levels-grid { grid-template-columns: 1fr; }
    .ccc-level-custom { grid-column: span 1; }
    .ccc-benefits-list { grid-template-columns: 1fr; }
    .ccc-final-cta { padding: 48px 24px; }
}

/* ============================================
   MEMORIAL WALKWAY
   ============================================ */
.memorial-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #0F1E33 100%);
    padding: 140px 0 110px;
    position: relative;
    overflow: hidden;
}
.memorial-hero::before {
    content: 'REMEMBERED';
    position: absolute;
    right: -40px;
    bottom: -40px;
    font-family: var(--font-head);
    font-size: clamp(7rem, 15vw, 17rem);
    font-weight: 700;
    color: rgba(236, 88, 0, 0.04);
    text-transform: uppercase;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.02em;
}
.memorial-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.memorial-hero .eyebrow { color: var(--gold); }
.memorial-hero h1 {
    color: white;
    font-size: clamp(3rem, 7vw, 5.5rem);
    margin-bottom: 20px;
}
.memorial-hero p {
    color: rgba(255,255,255,0.65);
    font-size: 1.15rem;
    max-width: 620px;
    margin: 0;
    line-height: 1.7;
}

.memorial-design-sec {
    background: var(--off-white);
    padding: var(--section-spacing) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.memorial-design {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}
.memorial-design-copy h2 {
    margin: 16px 0 24px;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    line-height: 1.2;
}
.memorial-design-copy p {
    color: var(--text-light);
    margin-bottom: 16px;
}
.memorial-design-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    border: 1px solid var(--border-color);
}
.memorial-design-list li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border-color);
    color: var(--navy);
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 500;
}
.memorial-design-list li:last-child { border-bottom: none; }
.memorial-design-list i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.memorial-tiers-sec {
    background: white;
    padding: var(--section-spacing) 0;
}
.memorial-tiers-header {
    max-width: 720px;
    margin: 0 auto 70px;
    text-align: center;
}
.memorial-tiers-header h2 {
    margin-top: 12px;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}
.memorial-lede {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 18px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.memorial-tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.memorial-tier {
    background: white;
    border: 1px solid var(--border-color);
    border-top: 4px solid #B5651D;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.memorial-tier:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(27, 45, 69, 0.1);
}
.memorial-tier-bronze { border-top-color: #B5651D; }
.memorial-tier-silver { border-top-color: #9CA3B0; }
.memorial-tier-gold {
    border-top-color: var(--gold);
    background: linear-gradient(180deg, #FFFBF3 0%, white 50%);
}
.memorial-tier-tag {
    font-family: var(--font-head);
    font-size: 0.72rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    margin-bottom: 14px;
}
.memorial-tier-gold .memorial-tier-tag { color: var(--gold); }
.memorial-tier-amount {
    color: var(--navy);
    font-family: var(--font-head);
    line-height: 1;
    margin-bottom: 22px;
}
.memorial-tier-num {
    font-size: 2.6rem;
    font-weight: 700;
    display: inline-block;
}
.memorial-tier-plus { font-size: 1.6rem; color: var(--gold); }
.memorial-tier-brick {
    padding: 14px 16px;
    background: var(--off-white);
    border: 1px solid var(--border-color);
    margin-bottom: 22px;
}
.memorial-tier-spec {
    font-family: var(--font-head);
    font-size: 0.85rem;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.memorial-tier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex: 1;
}
.memorial-tier-list li {
    position: relative;
    padding: 8px 0 8px 22px;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.5;
}
.memorial-tier-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    width: 8px;
    height: 1px;
    background: var(--gold);
}
.memorial-tier-cta {
    color: var(--navy);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.25s, color 0.25s;
    margin-top: auto;
}
.memorial-tier-cta:hover { gap: 14px; color: var(--gold); }
.memorial-tier-cta i { font-size: 0.7rem; }

/* Donate-page spotlight banner pointing to walkway */
.walkway-spotlight {
    background: var(--off-white);
    padding: 100px 0;
    border-top: 1px solid var(--border-color);
}
.walkway-spotlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.walkway-spotlight-image {
    overflow: hidden;
    border: 1px solid var(--border-color);
}
.walkway-spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}
.walkway-spotlight-grid:hover .walkway-spotlight-image img { transform: scale(1.04); }
.walkway-spotlight-copy h2 {
    margin: 16px 0 22px;
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    line-height: 1.2;
}
.walkway-spotlight-copy p {
    color: var(--text-light);
    margin-bottom: 16px;
}
.walkway-spotlight-copy .btn { margin-top: 14px; }

@media (max-width: 1100px) {
    .memorial-tiers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .memorial-hero { padding: 100px 0 70px; }
    .memorial-design-sec { padding: 70px 0; }
    .memorial-design { grid-template-columns: 1fr; gap: 40px; }
    .memorial-tiers-sec { padding: 70px 0; }
    .memorial-tiers-grid { grid-template-columns: 1fr; }
    .walkway-spotlight { padding: 60px 0; }
    .walkway-spotlight-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* Character Club */
.character-club-sec {
    padding: 110px 0;
    background: var(--off-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.character-club-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 90px;
}
.character-club-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border-color);
    background: white;
}
.character-club-copy h2 { margin-bottom: 18px; }
.character-club-tagline {
    font-family: var(--font-head);
    font-size: 1.15rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 22px;
}
.character-club-roster {
    background: white;
    padding: 56px 60px;
    border-top: 3px solid var(--gold);
    max-width: 980px;
    margin: 0 auto;
}
.character-club-roster-header {
    text-align: center;
    margin-bottom: 36px;
}
.character-club-roster-header h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--navy);
}
.character-club-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    max-width: 520px;
    margin: 0 auto;
}
.character-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-color);
}
.character-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.98rem;
}
.character-list li:nth-child(odd) {
    border-right: 1px solid var(--border-color);
}
.character-list li span:first-child {
    color: var(--navy);
    font-weight: 500;
}
.character-list li span:last-child {
    color: var(--gold);
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.character-club-cta {
    text-align: center;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
}
.character-club-cta h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 8px;
    text-align: center;
}
.character-club-cta p {
    color: var(--text-light);
    margin-bottom: 12px;
    text-align: center;
}
.character-club-contact {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.8;
    text-align: center;
}
.character-club-contact a {
    color: var(--blue);
    text-decoration: none;
}
.character-club-contact a:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .character-club-sec { padding: 70px 0; }
    .character-club-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
    .character-club-roster { padding: 36px 24px; }
    .character-list { grid-template-columns: 1fr; }
    .character-list li:nth-child(odd) { border-right: none; }
}