*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --canvas: #0D1F0E;
    --mid: #162B18;
    --light: #166534;
    --dark-grn:#1E3A20;
    --card-hi: #274A2A;
    --border: rgba(34, 197, 94, .18);
    --border-hi: rgba(34, 197, 94, .40);
    --glow: rgba(34, 197, 94, .15);
    --glow-mid: rgba(34, 197, 94, .22);
    --text: #E6FFE9;
    --text-sec: #86EFAC;
    --text-dim: #4ADE80;
    --green: #22C55E;
    --green-lt: #86EFAC;
    --soil: #C2700A;
    --gold: #FFC107;
    --fire: #EA580C;
    --fire-dark: #C2460A;
    --fire-btn-text: #0D0600;
    --footer-text: #E6FFE9;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IBM Plex Sans', sans-serif;
    background: var(--canvas);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


/* ── NAV ── */

.nav {
    background: rgba(13, 31, 14, .97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    height: 68px;
    display: flex;
    align-items: center;
    padding: 0 48px;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.nav-parent {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--fire-dark);
    line-height: 1;
    margin-bottom: 2px;
}

.nav-name {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-sec);
    text-decoration: none;
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
}

.nav-cta {
    background: var(--fire);
    color: var(--fire-btn-text);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.nav-cta:hover {
    background: var(--fire-dark);
}


/* ── HERO DECORATIVE SVG (background overlay) ── */

.hero-bg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .08;
}

/* ── HERO VISUAL SVG (foreground element) ── */

.hero-svg {
    position: relative;
    z-index: 2;
}

/* ── HERO ── */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 96px 48px 72px;
}

.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
            radial-gradient(ellipse 60% 55% at 62% 44%, var(--glow-mid) 0%, transparent 58%),
            radial-gradient(ellipse 30% 30% at 85% 75%, rgba(120, 53, 15, .25) 0%, transparent 55%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}


/* ── TYPE ── */
.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-lt);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--green);
    flex-shrink: 0;
}

.eyebrow.center {
    justify-content: center;
}

.eyebrow.center::before {
    display: none;
}

h1 {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    font-size: clamp(42px, 5.5vw, 70px);
    line-height: 1.08;
    letter-spacing: -2px;
    color: var(--text);
}

h2 {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--text);
}

h4 {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    color: var(--text);
}

.accent {
    color: var(--green);
}

.body-lg {
    font-size: 20px;
    color: var(--text-sec);
    line-height: 1.75;
}

.body-md {
    font-size: 18px;
    color: var(--text-sec);
    line-height: 1.7;
}

.body-sm {
    font-size: 16px;
    color: var(--text-sec);
    line-height: 1.65;
}
small{
    color:var(--gold);
    font-size:14px;
    text-transform: uppercase;
    font-family:'IBM Plex Serif', serif;
    font-weight:bold;
}

/* ── FOCUS ── */

*:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 8px;
    background: var(--green);
    color: var(--canvas);
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    transition: top .15s;
}
.skip-link:focus {
    top: 0;
}

/* ── BUTTONS ── */

.btn-fire {
    background: var(--fire);
    color: var(--fire-btn-text);
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
    border: none;
    cursor: pointer;
    font-family: 'IBM Plex Sans', sans-serif;
}

.btn-fire:hover {
    background: var(--fire-dark);
}

.btn-ghost {
    border: 1.5px solid rgba(134, 239, 172, .32);
    color: var(--text-sec);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(34, 197, 94, .12);
    border-color: var(--green);
}

.flex-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}


/* ── HERO VISUAL ── */

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(34, 197, 94, .2) 0%, rgba(134, 239, 172, .06) 45%, transparent 70%);
    border-radius: 50%;
}


/* ── STAT STRIP ── */

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--mid);
    gap: 1px;
}

.stat-item {
    background: var(--mid);
    padding: 28px 36px;
    text-align: center;
}

.stat-item .n {
    font-family: 'IBM Plex Serif', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--fire);
    line-height: 1;
}

.stat-item .l {
    font-size: 12px;
    color: var(--text-sec);
    margin-top: 6px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}


/* ── HERO TEXT CONSTRAINTS ── */

/* Split hero (homepage) — left column paragraph */
.hero-inner .body-lg {
    max-width: 540px;
}

/* Centered hero (inner pages) — auto-centered paragraph */
.hero-inner-content .body-lg {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ── SECTIONS ── */

.section {
    padding: 88px 48px;
}

/* Centered content wrapper within a section */
.section-center {
    text-align: center;
}

.section-center .body-md,
.section-center .body-lg {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Standalone intro paragraph under a section heading */
.section-lead {
    max-width: 600px;
}

.section-mid {
    background: var(--mid);
}

.section-card {
    /*background: var(--card);*/
    background: var(--dark-grn);
}

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

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split.rev {
    direction: rtl;
}

.split.rev > * {
    direction: ltr;
}

.split-visual {
    background: var(--card-hi);
    border: 1px solid var(--border);
    border-radius: 20px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.split-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.split-visual-fill {
    min-height: 0;
    display: block;
}

.split-visual-fill img {
    width: 100%;
    height: auto;
    display: block;
}

.split-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, var(--glow-mid) 0%, transparent 65%);
}

.split-visual em {
    font-size: 72px;
    position: relative;
    z-index: 1;
    font-style: normal;
}


/* ── CARDS ── */

.cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.cards-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.cards-2 .dark-card h4 {
    margin-bottom: 12px;
}

.section-center .flex-row {
    justify-content: center;
}

.dark-card {
    background: var(--card-hi);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color .2s, transform .2s;
    display: flex;
    flex-direction: column;
}

.dark-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-2px);
}
.darkest-card {
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: border-color .2s, transform .2s;
    display: flex;
    flex-direction: column;
}

.darkest-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-2px);
}
.card-num {
    font-family: 'IBM Plex Serif', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -2px;
}

.card-tag {
    display: inline-block;
    background: rgba(34, 197, 94, .12);
    color: var(--green-lt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(34, 197, 94, .25);
    margin-top: auto;
    align-self: flex-start;
}


/* ── MISSION BAND — text overrides ── */

.mission-inner h2 {
    color: var(--white);
    max-width: 760px;
}

.mission-inner .body-lg,
.mission-inner .body-md {
    color: var(--white);
    max-width: 580px;
}

.mission-inner .eyebrow {
    color: var(--white);
}

.mission-inner a {
    color: var(--white);
    text-decoration: underline;
}


/* ── MISSION BAND ── */

.mission-band {
    background: #166534;
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.mission-band::before {
    content: attr(data-word);
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'IBM Plex Serif', serif;
    font-size: 240px;
    font-weight: 700;
    color: rgba(255, 255, 255, .06);
    line-height: 1;
    letter-spacing: -8px;
    pointer-events: none;
    user-select: none;
}

.mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}


/* ── BULLET LIST ── */

.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bullet-list li {
    font-size: 15px;
    color: var(--text-sec);
    line-height: 1.65;
    padding-left: 22px;
    position: relative;
}

.bullet-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}


/* ── PROGRAM LIST ── */

.prog-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 28px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    cursor: default;
}

.prog-row:first-child {
    border-top: 1px solid var(--border);
}

.prog-row:hover .prog-arr {
    color: var(--green);
    transform: translateX(4px);
}


.prog-num {
    font-family: 'IBM Plex Serif', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: .08em;
    text-transform: uppercase;
    padding-top: 3px;
}

.prog-arr {
    color: var(--text-dim);
    font-size: 18px;
    padding-top: 3px;
    transition: color .2s, transform .2s;
}

.prog-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.prog-chip {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    border: 1px solid var(--border);
    color: var(--text-sec);
    padding: 3px 10px;
    border-radius: 9999px;
}


/* ── TESTIMONIAL ── */

.t-card {
    background: var(--canvas);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.t-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 36px;
    font-family: 'IBM Plex Serif', serif;
    font-size: 100px;
    font-weight: 700;
    color: var(--green);
    line-height: .7;
    pointer-events: none;
    padding-top:10px;
}

.t-text {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    color: var(--white);
    line-height: 1.55;
    margin-bottom: 24px;
    padding-top: 16px;
}

.t-attr {
    font-size: 14px;
    color: var(--text-sec);
    font-weight: 600;
}

.t-attr strong {
    color: var(--green-lt);
}


/* ── CTA BAND ── */

.cta-band {
    background: var(--canvas);
    /*border-top: 1px solid var(--border);*/
    padding: 80px 48px;
}

.cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.cta-btns {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-end;
}


/* ── FOOTER ── */

footer {
    background: var(--light);
    padding: 64px 48px 32px;
}

.footer-wordmark {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 700;
    color:rgba(255,255,255,.1);
    letter-spacing: -4px;
    line-height: 1;
    text-align: center;
    margin-bottom: 48px;
    user-select: none;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 44px;
}

.footer-brand-name {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--footer-text);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--footer-text);
    line-height: 1.65;
}

.footer-col h5 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--footer-text);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--footer-text);
}

.footer-sep {
    border: none;
    border-top: 1px solid rgba(13, 31, 14, .2);
    max-width: 1200px;
    margin: 44px auto 20px;
}

.footer-copy {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    color: var(--footer-text);
}

.footer-family-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--footer-text);
    text-decoration: none;
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-family-link:hover {
    color: var(--fire-dark);
}


/* ── HOMEPAGE: WHAT FRAMEWORK MAPS GIVES YOU LIST ── */

.fm-what-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fm-what-list li {
    font-size: 16px;
    color: var(--text-sec);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.fm-what-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 2px;
    background: var(--green);
}

.fm-what-list li strong {
    color: var(--text);
}


/* ── SPACING UTILITIES ── */

.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-36 { margin-top: 36px; }
.mb-10{ margin-bottom: 10px; }
.mb-16{ margin-bottom: 16px; }

.text-green-lt { color: var(--green-lt); }


/* ── ANIMATIONS ── */

.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.a1 { animation: fadeUp .75s .05s both; }
.a2 { animation: fadeUp .75s .2s both; }
.a3 { animation: fadeUp .75s .36s both; }
.a4 { animation: fadeUp .75s .52s both; }

/* ═══════════════════════════════════════════════════
   INNER PAGE COMPONENTS
   ═══════════════════════════════════════════════════ */

h3 {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 28px);
    line-height: 1.3;
    letter-spacing: -.5px;
    color: var(--text);
}

/* ─── HERO — centered variant for inner pages ─── */

.hero-center {
    position: relative;
    overflow: hidden;
    padding: 96px 48px 80px;
    min-height: 52vh;
    display: flex;
    align-items: center;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

/* ─── SECTION VARIANTS ─── */

.section-dark {
    background: var(--mid);
}

/* ─── SECTION HEADER — eyebrow + h2 + body grouped ─── */

.section-header {
    margin-bottom: 52px;
}

.section-header .body-lg,
.section-header .body-md {
    max-width: 600px;
}

.section-header.centered .body-lg,
.section-header.centered .body-md {
    margin-left: auto;
    margin-right: auto;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .eyebrow {
    justify-content: center;
}

.section-header.centered .eyebrow::before {
    display: none;
}

/* ─── CTA INNER — centered variant ─── */

.cta-inner.centered {
    align-items: center;
    text-align: center;
    max-width: 600px;
}

.cta-inner.centered .cta-btns {
    justify-content: center;
}

/* ─── BUTTON: ghost on green band ─── */

.btn-ghost-band {
    border: 2px solid rgba(255, 255, 255, .35);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s, color .2s;
    background: transparent;
}

.btn-ghost-band:hover {
    border-color: rgba(255, 255, 255, .7);
    color: var(--white);
}

/* ─── PROGRAM PAGE — STEP LIST ─── */

.step-list {
    display: flex;
    flex-direction: column;
    margin-top: 48px;
}

.step-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    align-items: stretch;
}

.step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--card-hi);
    border: 2px solid var(--border-hi);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Serif', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--green-lt);
    letter-spacing: .04em;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-connector {
    width: 1px;
    background: var(--border);
    flex: 1;
    min-height: 32px;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-content {
    padding-top: 10px;
    padding-bottom: 48px;
}

.step-item:last-child .step-content {
    padding-bottom: 0;
}

/* ─── CARD LABEL (top-anchored pill, mirrors card-tag) ─── */

.card-label {
    display: inline-block;
    background: rgba(34, 197, 94, .12);
    color: var(--green-lt);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(34, 197, 94, .25);
    margin-bottom: 14px;
    align-self: flex-start;
}

/* ─── INLINE BODY LINK ─── */

.body-link {
    color: var(--green-lt);
    text-decoration: underline;
    text-decoration-color: rgba(134, 239, 172, .35);
    transition: color .2s;
}

.body-link:hover {
    color: var(--green);
}


/* ─── GET INVOLVED GRID ─── */

.involve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.involve-card {
    background: var(--card-hi);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: border-color .2s, transform .2s;
}

.involve-card-cta {
    margin-top: auto;
    padding-top: 24px;
}

.involve-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-2px);
}

.involve-icon {
    width: 64px;
    height: 64px;
    background: var(--fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.involve-card h4 {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.involve-card p {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.65;
}

.download-card-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

/* ─── ABOUT PAGE — EXEC CARD (Program Director) ─── */

.exec-card {
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 260px 1fr;
}

.exec-photo {
    background: linear-gradient(160deg, var(--mid) 0%, var(--canvas) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
    position: relative;
    min-height: 300px;
}


.exec-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.exec-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.exec-body small {
    color: var(--text-sec);
}
.exec-name {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--text);
    margin-bottom: 4px;
}

.exec-role {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.exec-bio {
    font-size: 16px;
    color: var(--text-sec);
    line-height: 1.75;
}

.exec-quote {
    border-left: 3px solid var(--green);
    padding-left: 20px;
    margin-top: 20px;
}

.exec-quote p {
    font-family: 'IBM Plex Serif', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--text-sec);
    line-height: 1.6;
}
.linkedin-badge {
    display: inline-flex;
    gap: 6px;
    margin-top: auto;
    padding-top: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: color .2s;
    align-items: flex-end;
}
.linkedin-badge:hover { color: var(--green-lt); }
.linkedin-badge::before {
    content: 'in';
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    background: var(--dark-grn);
    color: var(--green-lt);
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}
/* ─── ABOUT PAGE — BOARD GRID ─── */

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.board-card {
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
    display: flex;
    flex-direction: column;
}

.board-card:hover {
    border-color: var(--border-hi);
    transform: translateY(-2px);
}
.board-photo {
    /*background: linear-gradient(135deg, var(--card) 0%, var(--canvas-mid) 100%);*/
    aspect-ratio:3 / 3;
    background: linear-gradient(160deg, var(--mid) 0%, var(--canvas) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    overflow: hidden;
}
.board-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.board-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.board-info small {
    font-size: 12px;
    color: var(--text-sec);
    margin-bottom: 12px;
    margin-top: 0;
    display: block;
}

.board-name {
    font-family: 'IBM Plex Serif', serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text);
    margin-bottom: 3px;
}

.board-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.board-bio {
    font-size: 16px;
    color: var(--text-sec);
    line-height: 1.6;
}


/* ─── CONTACT PAGE ─── */

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(34, 197, 94, .12);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-lt);
}

.contact-info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 3px;
}

.contact-info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-sec);
    text-decoration: none;
    transition: color .2s;
}

.contact-info-value:hover {
    color: var(--green-lt);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark-grn);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-sec);
    text-decoration: none;
    transition: border-color .2s, color .2s, background .2s;
}

.social-link:hover {
    border-color: var(--border-hi);
    color: var(--green);
    background: var(--card-hi);
}

.contact-form-wrap {
    background: var(--mid);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-sec);
    letter-spacing: .01em;
}

.form-required {
    color: var(--fire);
}

.form-input,
.form-textarea,
.form-select {
    background: var(--canvas);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-sec);
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    padding: 12px 16px;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-dim);
    opacity: .6;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--glow);
}

.form-textarea {
    resize: vertical;
    min-height: 148px;
    line-height: 1.6;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2386EFAC' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.form-select option {
    background: var(--card-hi);
    color: var(--text-sec);
}

/* ─── CONTACT — sidebar info card label ─── */

.contact-note-label {
    font-size: 15px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}


/* ─── CONTACT FORM HEADER ─── */

.form-title {
    margin-top: 0;
    margin-bottom: 8px;
}

.form-subtitle {
    margin-bottom: 32px;
}


.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 4px;
}


/* ── NAV TOGGLE ── */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ── TABLET (≤1024px) ── */

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .split {
        gap: 48px;
    }

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

    .cta-inner {
        gap: 32px;
    }

    .hero-center {
        padding: 80px 48px 64px;
    }

    .involve-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .exec-card {
        grid-template-columns: 1fr;
    }

    .exec-photo {
        min-height: 200px;
        font-size: 72px;
    }

    .contact-split {
        grid-template-columns: 1fr;
        gap: 52px;
    }
}


/* ── MOBILE (≤768px) ── */

@media (max-width: 768px) {
    /* Nav */
    .nav {
        padding: 0 24px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(13, 31, 14, .98);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        padding: 8px 0 16px;
        z-index: 190;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 13px 24px;
        font-size: 15px;
        border-bottom: 1px solid var(--border);
    }

    .nav-cta {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 72px 24px 60px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    /* Stat strip */
    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Layout */
    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split.rev {
        direction: ltr;
    }

    .split-visual {
        display: none;
    }

    /* Cards */
    .cards-4 {
        grid-template-columns: 1fr;
    }

    .cards-3 {
        grid-template-columns: 1fr;
    }

    .cards-2 {
        grid-template-columns: 1fr;
    }

    /* Program rows */
    .prog-row {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .prog-arr {
        display: none;
    }

    /* Sections & bands */
    .section {
        padding: 60px 24px;
    }

    .mission-band {
        padding: 60px 24px;
    }

    .mission-band::before {
        font-size: 100px;
    }

    .cta-band {
        padding: 60px 24px;
    }

    .cta-inner {
        text-align: center;
        align-items: center;
    }

    .cta-btns {
        align-items: center;
        flex-direction: row;
    }

    /* Footer */
    footer {
        padding: 48px 24px 28px;
    }

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

    /* Buttons */
    .flex-row {
        gap: 12px;
    }

    .hero-center {
        padding: 72px 24px 60px;
        min-height: auto;
    }

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

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

    .contact-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrap {
        padding: 28px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-footer .btn-fire {
        width: 100%;
        justify-content: center;
    }

    .step-item {
        grid-template-columns: 48px 1fr;
        gap: 20px;
    }

    .step-num {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}


/* ── SMALL MOBILE (≤480px) ── */

@media (max-width: 480px) {
    .hero {
        padding: 56px 20px 48px;
    }

    .section {
        padding: 48px 20px;
    }

    .mission-band {
        padding: 48px 20px;
    }

    .cta-band {
        padding: 48px 20px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-item .n {
        font-size: 26px;
    }

    .hero .flex-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero .flex-row .btn-fire,
    .hero .flex-row .btn-ghost {
        text-align: center;
        justify-content: center;
    }

    .t-card {
        padding: 32px 24px;
    }

    .t-card::before {
        font-size: 80px;
    }

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

    footer {
        padding: 40px 20px 24px;
    }

    .footer-wordmark {
        font-size: clamp(36px, 12vw, 80px);
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }
}
