/* ============================================================
    NEXGEN LEADERS FOUNDATION — SHARED STYLES
    Professional yellow + black theme with restrained accent usage.
    ============================================================ */

:root {
    --yellow:     #d8ad2f;
    --yellow-soft:#f8efd1;
    --black:      #000000;
    --bg-grey:    #eef1f4;
    --white:      #ffffff;
    --off-white:  #f8f7f4;
    --dark-text:  #1f2329;
    --mid-grey:   #5e6670;
    --light-grey: #dce2e8;

    --shadow:    0 10px 24px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 6px 14px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 30px rgba(0, 0, 0, 0.16);

    --font-heading: 'Archivo Black', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    --font-accent:  'Permanent Marker', cursive;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    line-height: 1.1;
    margin: 0 0 1rem;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--black);
    border-bottom: 2px solid rgba(216, 173, 47, 0.75);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-brand img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}
.nav-brand-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}
.nav-brand-name em {
    color: var(--yellow);
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}
.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}
.nav-links .nav-cta {
    background: var(--yellow);
    color: var(--black) !important;
    padding: 9px 22px;
    border: 1px solid rgba(0, 0, 0, 0.8);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.8) !important;
    transition: transform 0.2s, box-shadow 0.2s;
}
.nav-links .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    color: var(--black) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* ============================================================
   HERO — MAIN PAGE
   ============================================================ */
.hero {
    padding-top: 70px;
    background: var(--black);
    color: var(--white);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}
.hero-eyebrow {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--yellow);
    display: block;
    margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 .hl {
    color: var(--yellow);
    -webkit-text-stroke: 1px var(--yellow);
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO — INNER PAGES
   ============================================================ */
.page-hero {
    padding-top: 70px;
    background: var(--black);
    color: var(--white);
}
.page-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem 3.5rem;
}
.page-hero .eyebrow {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--yellow);
    display: block;
    margin-bottom: 0.75rem;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    max-width: 580px;
    margin: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border: 1px solid rgba(0, 0, 0, 0.85);
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.18s, box-shadow 0.18s;
    white-space: nowrap;
}
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}
.btn-primary {
    background: var(--yellow);
    color: var(--black);
}
.btn-primary:hover { box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}
.btn-black {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn-black:hover { box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3); }
.btn-lg { padding: 17px 40px; font-size: 0.95rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section         { padding: 6rem 2rem; }
.section-grey    { background: var(--bg-grey); }
.section-black   { background: var(--black); color: var(--white); }
.section-yellow  { background: var(--yellow); }
.section-offwhite { background: var(--off-white); }

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--mid-grey);
    display: block;
    margin-bottom: 0.5rem;
}
.section-black .section-eyebrow { color: rgba(255,255,255,0.45); }
.section-yellow .section-eyebrow { color: rgba(0,0,0,0.55); }

.section-title { margin-bottom: 0; }
.section-title .accent {
    color: var(--yellow);
    -webkit-text-stroke: 0;
}
.section-black .section-title { color: var(--white); }
.section-black .section-title .accent { -webkit-text-stroke: 1px var(--yellow); }

.section-bar {
    height: 4px;
    width: 56px;
    background: var(--yellow);
    border: 0;
    margin: 1.5rem 0 2.5rem;
}
.section-black .section-bar { background: var(--yellow); }

.section-lead {
    font-size: 1.05rem;
    color: var(--mid-grey);
    max-width: 620px;
    line-height: 1.75;
    margin-bottom: 0;
}
.section-black .section-lead { color: rgba(255,255,255,0.65); }

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
    background: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
    padding: 4rem 2rem;
}
.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat-item {
    border-right: 1px solid rgba(0,0,0,0.1);
    padding: 0 1rem;
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(0,0,0,0.55);
}

/* ============================================================
   CARDS
   ============================================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}
.card-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}
.card-tag {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    background: var(--black);
    padding: 3px 10px;
    display: inline-block;
    margin-bottom: 1rem;
}
.card-tag.yellow { background: var(--yellow); color: var(--black); }
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.card p  { font-size: 0.92rem; color: var(--mid-grey); line-height: 1.65; margin-bottom: 0; }
.card .card-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    border-bottom: 2px solid var(--yellow);
    margin-top: 1.25rem;
    transition: border-color 0.2s;
}
.card .card-link:hover { border-color: var(--black); }

/* ============================================================
   PROGRAM CARDS (large)
   ============================================================ */
.program-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.program-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}
.program-card-header {
    background: var(--black);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.program-card-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    line-height: 1;
}
.program-card-header h3 {
    color: var(--white);
    margin: 0 0 0.25rem;
    font-size: 1.3rem;
}
.program-card-header .prog-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
}
.program-card-body { padding: 2rem; flex: 1; }
.program-card-body p { font-size: 0.95rem; color: var(--mid-grey); line-height: 1.7; }
.program-bullet-list {
    list-style: disc;
    margin: 0.5rem 0 0.5rem 1.25rem;
    padding: 0;
}
.program-bullet-list li {
    font-size: 0.94rem;
    color: var(--mid-grey);
    line-height: 1.7;
    margin-bottom: 0.25rem;
}
.program-details {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--light-grey);
    flex-wrap: wrap;
}
.program-detail {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mid-grey);
}
.program-detail span {
    display: block;
    color: var(--black);
    font-size: 0.9rem;
    margin-top: 0.15rem;
}

/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.team-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}
.team-avatar {
    background: var(--bg-grey);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--black);
    border-bottom: 2px solid var(--black);
    position: relative;
    overflow: hidden;
}
.team-avatar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
}
.team-info { padding: 1.25rem 1.5rem; }
.team-info h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-role {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--mid-grey);
    margin-bottom: 0.75rem;
}
.team-bio { font-size: 0.88rem; color: var(--mid-grey); line-height: 1.6; margin-bottom: 0; }

/* ============================================================
   FORMS
   ============================================================ */
.form-wrap {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.14);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: var(--black);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--black);
    background: var(--white);
    outline: none;
    color: var(--dark-text);
    appearance: none;
    transition: box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(216, 173, 47, 0.28);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-note {
    font-size: 0.85rem;
    color: var(--mid-grey);
    margin-top: 0.5rem;
}

.form-status {
    min-height: 1.25rem;
    margin-top: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.5;
}

.form-status.is-loading { color: #3f4c59; }
.form-status.is-success { color: #146c2e; }
.form-status.is-error { color: #a62026; }

button[disabled] {
    opacity: 0.75;
    cursor: not-allowed;
}

/* ============================================================
   DONATION AMOUNTS
   ============================================================ */
.donation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.amt-btn {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.18s;
    text-align: center;
}
.amt-btn:hover, .amt-btn.selected {
    background: var(--yellow-soft);
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}
.amt-btn small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mid-grey);
    margin-top: 0.15rem;
}
.amt-btn.selected small { color: rgba(0,0,0,0.6); }

/* ============================================================
   CALLOUT BOX
   ============================================================ */
.callout {
    background: var(--yellow-soft);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: var(--shadow);
    padding: 2rem 2.5rem;
    margin: 2rem 0;
}
.callout-accent {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}
.callout p { font-size: 0.95rem; color: rgba(0,0,0,0.75); }

/* ============================================================
   VALUE / FEATURE ITEMS
   ============================================================ */
.values-list { display: flex; flex-direction: column; gap: 1.5rem; }
.value-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.value-icon {
    width: 48px;
    height: 48px;
    background: var(--yellow-soft);
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.value-text h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.value-text p  { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.6; }

/* ============================================================
   LARGE QUOTE / PULL QUOTE
   ============================================================ */
.pull-quote {
    background: var(--black);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pull-quote::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(255,210,0,0.07);
    line-height: 1;
    pointer-events: none;
}
.pull-quote blockquote {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.pull-quote blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 2rem);
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
.pull-quote blockquote p .hl { color: var(--yellow); }
.pull-quote cite {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    font-style: normal;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(180deg, #131313 0%, #202020 100%);
    border-top: 2px solid rgba(216, 173, 47, 0.72);
    border-bottom: 2px solid rgba(216, 173, 47, 0.72);
    padding: 5rem 2rem;
    text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section h2 span { color: var(--yellow); }
.cta-section p  { color: rgba(255,255,255,0.76); font-size: 1.05rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT BLOCK
   ============================================================ */
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--yellow-soft);
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}
.contact-detail h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mid-grey);
    margin-bottom: 0.2rem;
}
.contact-detail p { font-size: 0.95rem; color: var(--dark-text); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 2rem 2rem;
    border-top: 2px solid rgba(216, 173, 47, 0.75);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}
.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.footer-slogan {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--yellow);
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--yellow);
    margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p, .footer-bottom a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
    margin: 0;
}
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center  { text-align: center; }
.text-yellow  { color: var(--yellow); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }

/* Body-copy prose text — replaces repeated inline paragraph styles */
.prose {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.25rem;
}
.prose-mb2 { margin-bottom: 2rem; }
.prose-mb3 { margin-bottom: 3rem; }

.school-list {
    list-style: disc;
    margin: 0 0 2rem 1.25rem;
    padding: 0;
}

.school-list li {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 0.2rem;
}

/* Centred section header block */
.section-center-wrap {
    max-width: 680px;
    margin: 0 auto;
}

/* Centred divider bar */
.section-bar-center {
    margin-left: auto;
    margin-right: auto;
}

/* Wrapper for a centred button below a grid */
.btn-center-wrap {
    text-align: center;
    margin-top: 2.5rem;
}

/* ---- COMPONENT-SCOPED SPACING (avoids utility classes on elements) ---- */

/* About page */
.about-story-text         { font-size: 1.05rem; line-height: 1.8; color: #444; margin-bottom: 1.25rem; }
.about-story-text-gap     { font-size: 1.05rem; line-height: 1.8; color: #444; margin-bottom: 2rem; }
.about-mission-wrap       { max-width: 680px; margin: 0 auto; margin-bottom: 2rem; }

/* Programs page */
.programs-intro-text      { font-size: 1.05rem; line-height: 1.8; color: #444; margin-bottom: 1.25rem; }
.programs-intro-text-gap  { font-size: 1.05rem; line-height: 1.8; color: #444; margin-bottom: 2rem; }
.programs-cards-label     { margin-top: 3rem; }
.program-card-actions     { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.program-card-cta         { margin-top: 1.5rem; }
.impact-goal-wrap         { max-width: 900px; }
.impact-goal-text         { max-width: 900px; margin-bottom: 0; }

/* Team page */
.team-bio-text            { font-size: 0.95rem; line-height: 1.75; color: #444; margin-bottom: 1.25rem; }
.team-bio-text-gap        { font-size: 0.95rem; line-height: 1.75; color: #444; margin-bottom: 2rem; }
.team-board-intro         { font-size: 1.05rem; color: #5a5a5a; line-height: 1.75; max-width: 600px; margin-bottom: 2.5rem; }

/* Get involved page */
.involve-step-text        { font-size: 1.05rem; line-height: 1.8; color: #444; margin-bottom: 1.25rem; }
.involve-step-text-gap    { font-size: 1.05rem; line-height: 1.8; color: #444; margin-bottom: 2rem; }
.involve-section-intro    { font-size: 1.05rem; color: #5a5a5a; line-height: 1.8; max-width: 580px; margin-bottom: 2rem; }

/* Donate page */
.donate-intro-text        { font-size: 1.05rem; line-height: 1.8; color: #444; margin-bottom: 2rem; }

.donate-trust-list {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.donate-trust-item {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #36424f;
    background: #f4f6f8;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.6rem 0.8rem;
}

.impact-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.impact-item:last-of-type {
    border-bottom: 0;
    margin-bottom: 1rem;
}

.impact-amount {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--black);
}

.impact-desc h4 {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.impact-desc p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--mid-grey);
}

.freq-toggle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.freq-btn {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #f5f6f7;
    color: #2a3138;
    padding: 0.65rem 0.5rem;
    cursor: pointer;
    transition: all 0.18s;
}

.freq-btn:hover,
.freq-btn.active {
    background: var(--yellow-soft);
    border-color: rgba(0, 0, 0, 0.32);
}

.check-group {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
    color: var(--mid-grey);
}

.check-group input {
    width: 16px;
    height: 16px;
}

.form-group > span {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
}

/* Contact page */
.contact-other-intro      { font-size: 1.05rem; color: #5a5a5a; line-height: 1.75; margin-bottom: 1.5rem; }
.contact-callout-link     { color: var(--dark-text); border-bottom: 1px solid var(--yellow); }
.contact-callout-link:hover { color: var(--black); }

/* Ghost/outline button on light backgrounds */
.btn-ghost-black {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}
.btn-ghost-black:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 26px rgba(0,0,0,0.28);
}

/* Dark info panel (about page timeline, quick-links, etc.) */
.dark-panel {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    box-shadow: var(--shadow);
    color: white;
    margin-top: 1.5rem;
}
.dark-panel-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    margin-bottom: 1.25rem;
}

/* Timeline inside dark panel */
.timeline { display: flex; flex-direction: column; gap: 1rem; }
.timeline-item { display: flex; gap: 1rem; align-items: flex-start; }
.timeline-year {
    font-family: var(--font-heading);
    color: var(--yellow);
    font-size: 1.1rem;
    min-width: 50px;
    flex-shrink: 0;
}
.timeline-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

/* Mission / Vision split boxes */
.mission-box {
    background: var(--black);
    border: 2px solid var(--black);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    color: white;
}
.vision-box {
    background: var(--yellow-soft);
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}
.box-eyebrow {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    display: block;
}
.mission-box .box-eyebrow { color: rgba(255,255,255,0.45); }
.vision-box  .box-eyebrow { color: rgba(0,0,0,0.5); }
.mission-box h3 { color: white; font-size: 1.5rem; margin-bottom: 1.25rem; line-height: 1.3; }
.vision-box  h3 { color: var(--black); font-size: 1.5rem; margin-bottom: 1.25rem; line-height: 1.3; }
.prose-panel { font-size: 0.95rem; line-height: 1.75; margin-bottom: 0; }
.mission-box .prose-panel { color: rgba(255,255,255,0.6); }
.vision-box  .prose-panel { color: rgba(0,0,0,0.65); }

/* Board of directors */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.board-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.2s, box-shadow 0.2s;
}
.board-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.16);
}
.board-avatar {
    width: 56px;
    height: 56px;
    background: var(--bg-grey);
    border: 2px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.board-info h4 { font-size: 0.95rem; margin-bottom: 0.15rem; }
.board-role {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--mid-grey);
    margin-bottom: 0.5rem;
}
.board-info p { font-size: 0.85rem; color: var(--mid-grey); line-height: 1.5; margin-bottom: 0; }

/* Wide program cards grid */
.program-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
@media (max-width: 600px) {
    .program-cards-grid { grid-template-columns: 1fr; }
}

/* Mentor quote block */
.mentor-quote {
    background: var(--yellow-soft);
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.mentor-quote-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.mentor-quote-cite {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(0,0,0,0.55);
}

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.15);
    margin-bottom: -2px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.faq-summary {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-icon { font-size: 1.2rem; transition: transform 0.2s; }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-body {
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--mid-grey);
    line-height: 1.7;
    border-top: 1px solid var(--light-grey);
}
.faq-body a { border-bottom: 1px solid var(--yellow); }
.faq-body a:hover { color: var(--black); }

/* Quick links panel (contact page) */
.quick-links-panel {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
    color: white;
}
.quick-links-panel h4 {
    color: var(--yellow);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}
.quick-links-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.quick-links-list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.quick-links-list li:last-child { border-bottom: none; }
.quick-links-list a {
    display: block;
    padding: 0.65rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    transition: color 0.2s;
}
.quick-links-list a:hover { color: var(--yellow); }

/* Breadcrumb bar at top of page hero */
.breadcrumb {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--yellow); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 1.5rem; }
    .stat-item:nth-child(2n) { border-bottom: none; }
}

@media (max-width: 768px) {
    /* Nav mobile */
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--black);
        padding: 1.5rem 2rem 2rem;
        gap: 1rem;
        border-bottom: 2px solid rgba(216, 173, 47, 0.75);
    }
    .nav-links.open a { font-size: 0.9rem; }

    /* Layout */
    .section { padding: 4rem 1.5rem; }
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .two-col.flip { direction: ltr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .hero-inner { padding: 4rem 1.5rem 3rem; }
    .page-hero-inner { padding: 3rem 1.5rem 2.5rem; }
    .cta-section { padding: 4rem 1.5rem; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .donation-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-actions, .cta-actions { flex-direction: column; align-items: flex-start; }
    .cta-actions { align-items: center; }
    .btn { text-align: center; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-item { border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 1.5rem; }
    .stat-item:last-child { border-bottom: none; }
    .donation-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .form-wrap { padding: 1.75rem 1.25rem; }
    .impact-item { grid-template-columns: 1fr; gap: 0.35rem; }
}

/* ============================================================
   LEGAL PAGES (Privacy Policy, Terms of Use)
   ============================================================ */
.legal-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 4rem;
    align-items: start;
}

.legal-toc {
    position: sticky;
    top: 110px;
    border-left: 4px solid var(--yellow);
    padding-left: 1.25rem;
}
.legal-toc h4 {
    color: var(--black);
    margin-bottom: 1rem;
}
.legal-toc ol {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: legal-toc;
}
.legal-toc li {
    counter-increment: legal-toc;
    margin-bottom: 0.6rem;
}
.legal-toc a {
    display: block;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--mid-grey);
    transition: color 0.2s ease;
}
.legal-toc a::before {
    content: counter(legal-toc) ". ";
    color: var(--yellow);
    font-weight: 500;
}
.legal-toc a:hover { color: var(--black); }

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.legal-meta span {
    background: var(--off-white);
    border: 1px solid var(--light-grey);
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mid-grey);
    padding: 0.45rem 0.9rem;
}

.legal-body h2 {
    font-size: clamp(1.3rem, 2.6vw, 1.75rem);
    margin: 3.5rem 0 1.25rem;
    scroll-margin-top: 110px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
    font-size: 1.05rem;
    margin: 2rem 0 0.75rem;
}
.legal-body p,
.legal-body li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}
.legal-body p { margin-bottom: 1.25rem; }
.legal-body ul {
    list-style: disc;
    margin: 0 0 1.5rem 1.25rem;
    padding: 0;
}
.legal-body li { margin-bottom: 0.5rem; }
.legal-body a {
    color: #8a6d16;
    border-bottom: 1px solid rgba(216, 173, 47, 0.5);
}
.legal-body a:hover { border-bottom-color: var(--yellow); }
.legal-body .callout p:last-child { margin-bottom: 0; }

.legal-table-wrap {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border: 1px solid var(--light-grey);
}
.legal-table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    background: var(--white);
}
.legal-table th,
.legal-table td {
    text-align: left;
    padding: 0.9rem 1.1rem;
    border-bottom: 1px solid var(--light-grey);
    font-size: 0.93rem;
    line-height: 1.65;
    color: #444;
    vertical-align: top;
}
.legal-table th {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--off-white);
}
.legal-table tr:last-child td { border-bottom: none; }

/* Highlights details that must be replaced before publishing. */
.legal-placeholder {
    background: var(--yellow);
    color: var(--black);
    font-weight: 500;
    padding: 0 0.25rem;
}

@media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .legal-toc {
        position: static;
        border-left: none;
        border-top: 4px solid var(--yellow);
        padding: 1.5rem 0 0;
    }
}
