@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap");

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

:root {
    --navy: #0b1829;
    --navy2: #122240;
    --gold: #c8972a;
    --gold-lt: #f0c050;
    --white: #ffffff;
    --off: #f7f5f0;
    --stone: #e8e4dc;
    --ink: #1a1a1a;
    --muted: #6b6b6b;
    --border: #e0ddd6;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0 2.5rem;
    background: rgba(11, 24, 41, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo img,
.logo-img {
    max-height: 44px;
    width: auto;
    margin: 8px 0;
}

.logo-main {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.45rem 0.7rem;
    border-radius: 6px;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
}

.nav-donate {
    background: var(--gold) !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
    padding: 0.45rem 1.1rem !important;
    border-radius: 6px;
}

.nav-donate:hover {
    background: #b8851f !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
    padding: 0 8px;
    flex-shrink: 0;
    transition: border-color 0.2s;
}

.nav-toggle:hover {
    border-color: rgba(200, 151, 42, 0.5);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

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

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

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

section {
    display: none;
    padding-top: 68px;
}

section.active {
    display: block;
}

.hero {
    min-height: 92vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 2.5rem 4rem;
}

.hero-accent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    background: linear-gradient(160deg, #122240 0%, #0d2a4a 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-gold-line {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 120px;
    background: var(--gold);
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    pointer-events: none;
}

.hero-content {
    min-width: 0;
    pointer-events: auto;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    max-width: 700px;
    margin-bottom: 2rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-cta-group {
    display: inline-flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-fill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-fill:hover {
    background: #b8851f;
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.2s;
}

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

.hero-deck-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.85rem 1.4rem;
    background: rgba(184, 160, 83, 0.08);
    border: 1px solid rgba(184, 160, 83, 0.35);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    box-sizing: border-box;
}

.hero-deck-cta:hover {
    background: rgba(184, 160, 83, 0.15);
    border-color: rgba(184, 160, 83, 0.65);
    transform: translateY(-2px);
}

.hero-deck-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(184, 160, 83, 0.15);
    color: var(--gold);
    flex-shrink: 0;
}

.hero-deck-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-deck-cta-label {
    font-size: 0.68rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.hero-deck-cta-main {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.2px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hstat-num {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.hstat-num span {
    color: var(--gold);
}

.hstat-label {
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 6rem 2.5rem;
}

.section.dark {
    background: var(--navy);
    color: var(--white);
}

.section.stone {
    background: var(--off);
}

.eyebrow {
    font-size: 0.68rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-h {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.section-p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 560px;
}

.quote-block {
    background: var(--navy);
    padding: 6rem 2.5rem;
    text-align: center;
}

.quote-mark {
    font-family: "Playfair Display", serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 0.5;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.quote-text {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

.quote-text em {
    font-style: normal;
    color: var(--gold);
}

.quote-attr {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 3.5rem;
}

.serve-card {
    background: var(--white);
    padding: 3rem;
}

.serve-card.dark-card {
    background: var(--navy);
    color: var(--white);
}

.serve-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(200, 151, 42, 0.35);
    padding: 0.3rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1.75rem;
}

.serve-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.serve-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 1.75rem;
}

.serve-card.dark-card p {
    color: rgba(255, 255, 255, 0.55);
}

.serve-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.serve-list li {
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    line-height: 1.5;
    color: var(--ink);
}

.dark-card .serve-list li {
    color: rgba(255, 255, 255, 0.7);
}

.serve-list li::before {
    content: "";
    width: 5px;
    height: 5px;
    min-width: 5px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 0.45rem;
}

.serve-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 1.75rem;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
}

.pillar-card {
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.pillar-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(200, 151, 42, 0.08);
}

.pillar-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--off);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.pillar-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.pillar-card p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.65;
}

.page-hero {
    background: var(--navy);
    padding: 5.5rem 2.5rem 4.5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 151, 42, 0.4), transparent);
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 580px;
    line-height: 1.8;
    font-weight: 300;
}

.tracks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.track {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.track-label {
    background: var(--navy);
    color: var(--white);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.track-label h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.track-label p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.track-num {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: rgba(200, 151, 42, 0.2);
    font-weight: 700;
    line-height: 1;
}

.track-body {
    padding: 2.5rem;
    background: var(--white);
}

.track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.75rem;
}

.track-item {
    font-size: 0.83rem;
    color: var(--ink);
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.45;
}

.track-item::before {
    content: "✓";
    color: var(--gold);
    font-weight: 700;
    font-size: 0.75rem;
    margin-top: 0.1rem;
    min-width: 12px;
}

.prog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.prog-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.prog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.prog-card-top {
    padding: 1.75rem 1.75rem 1.25rem;
    border-bottom: 1px solid var(--border);
}

.prog-badge {
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-ath {
    background: #eff6ff;
    color: #1d4ed8;
}

.badge-vet {
    background: #ecfdf5;
    color: #065f46;
}

.badge-all {
    background: #fef9ec;
    color: #92400e;
}

.prog-card-top h4 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.3;
}

.prog-card-body {
    padding: 1.25rem 1.75rem 1.75rem;
}

.prog-card-body p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.prog-card-body .outcome {
    font-size: 0.75rem;
    color: var(--muted);
    font-style: italic;
    border-top: 1px solid var(--border);
    padding-top: 0.85rem;
}

.prog-card-body .outcome strong {
    color: var(--ink);
    font-style: normal;
}

.text-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.75rem;
    cursor: pointer;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 3rem;
}

.event-row {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    align-items: center;
    background: var(--white);
    padding: 1.5rem 2rem;
}

.event-row:hover {
    background: var(--off);
}

.event-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-info h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.25rem;
}

.event-info p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

.event-tag {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    background: var(--off);
    color: var(--muted);
    white-space: nowrap;
}

.resource-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
}

.resource-col h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 1.5rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 0.65rem;
    cursor: pointer;
    transition:
        border-color 0.2s,
        background 0.2s;
}

.resource-item:hover {
    border-color: var(--gold);
    background: #fef9ec;
}

.resource-item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.resource-item h5 {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.15rem;
}

.resource-item p {
    font-size: 0.73rem;
    color: var(--muted);
}

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

.dl-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
}

.dl-card:hover {
    border-color: var(--gold);
    background: #fef9ec;
}

.dl-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.dl-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.dl-card p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.55;
}

.sp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.sp-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    text-align: center;
}

.sp-card-tier {
    width: 36px;
    height: 4px;
    border-radius: 2px;
    margin: 0 auto 1rem;
}

.sp-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sp-card p {
    font-size: 0.72rem;
    color: var(--muted);
    line-height: 1.55;
}

.give-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.give-card {
    border-radius: 12px;
    padding: 2.25rem;
    border: 1px solid var(--border);
}

.give-card.dark {
    background: var(--navy);
    border-color: transparent;
}

.give-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
}

.give-card h3.g {
    color: var(--gold);
}

.give-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--muted);
}

.give-card.dark p {
    color: rgba(255, 255, 255, 0.5);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.val-item {
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.val-item h5 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.2rem;
}

.val-item p {
    font-size: 0.73rem;
    color: var(--muted);
}

.founder-block {
    background: var(--navy);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.founder-block::before {
    content: "\201C";
    font-family: "Playfair Display", serif;
    font-size: 8rem;
    color: rgba(200, 151, 42, 0.12);
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    line-height: 1;
}

.founder-block blockquote {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    max-width: 780px;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

.founder-block cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.form-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.form-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.fg {
    margin-bottom: 1rem;
}

.fg label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    color: var(--ink);
    background: var(--white);
    font-family: "Inter", sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--gold);
}

.fg textarea {
    min-height: 90px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
    font-family: "Inter", sans-serif;
}

.submit-btn:hover {
    background: #122240;
}

.submit-btn.gold {
    background: var(--gold);
    color: var(--navy);
}

.submit-btn.gold:hover {
    background: #b8851f;
}

.form-msg {
    font-size: 0.875rem;
    padding: 0.6rem 0.9rem;
    border-radius: 6px;
    display: none;
    margin-bottom: 0.75rem;
}
.form-msg.success {
    display: block;
    background: #eaf7ee;
    color: #1e6e35;
    border: 1px solid #b6e2c4;
}
.form-msg.error {
    display: block;
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.cta-banner {
    background: var(--gold);
    padding: 3.5rem 2.5rem;
    text-align: center;
}

.cta-banner h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.65rem;
}

.cta-banner p {
    font-size: 0.9rem;
    color: rgba(11, 24, 41, 0.65);
    max-width: 480px;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
}

footer {
    background: #06101c;
    padding: 4rem 2.5rem 2.5rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 260px;
}

.footer-col h5 {
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    cursor: pointer;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ── Background Hero Slider ──────────────────────── */

.hero-accent {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    background: linear-gradient(160deg, #122240 0%, #0d2a4a 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    overflow: hidden;
}

.hero-slide-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 1;
}

.hero-slide-layer.active {
    opacity: 1;
}

.hero-slider-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(11, 24, 41, 0.55) 0%, rgba(11, 24, 41, 0.15) 60%),
        linear-gradient(0deg, rgba(11, 24, 41, 0.4) 0%, transparent 55%);
    z-index: 2;
    pointer-events: none;
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 151, 42, 0.45);
    background: rgba(11, 24, 41, 0.7);
    color: var(--gold);
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    padding: 0;
    flex-shrink: 0;
    pointer-events: auto;
}

.hero-slider-btn:hover {
    background: rgba(200, 151, 42, 0.9);
    border-color: var(--gold);
    color: var(--navy);
}

/* Prev arrow sits just inside the angled left edge (>15% clip boundary) */
.hero-slider-prev {
    left: 22%;
}

.hero-slider-next {
    right: 16px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 4;
    align-items: center;
    pointer-events: auto;
}

.hero-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.hero-slider-dot.active {
    width: 22px;
    background: var(--gold);
}

/* ─────────────────────────────────────────────────── */

@media (max-width: 768px) {

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(11, 24, 41, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        flex-direction: column;
        padding: 0.75rem 1.5rem 1.5rem;
        gap: 0.1rem;
        z-index: 199;
        animation: navSlideDown 0.22s ease;
    }

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

    @keyframes navSlideDown {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.7rem 0.75rem;
        font-size: 0.88rem;
        border-radius: 7px;
        width: 100%;
    }

    .nav-links .nav-donate {
        margin-top: 0.65rem;
        text-align: center;
        border-radius: 7px !important;
    }

    .hero-gold-line {
        display: none;
    }

    .hero-accent {
        width: 100%;
        clip-path: none;
    }

    .hero-slider-overlay {
        background: rgba(11, 24, 41, 0.72);
    }

    .hero-slider-prev {
        left: 12px;
    }

    .hero-slider-next {
        right: 12px;
    }

    .hero-slider-btn {
        width: 34px;
        height: 34px;
        font-size: 1.4rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-actions {
        flex-wrap: nowrap;
    }

    .hero-actions .btn-fill,
    .hero-actions .btn-ghost {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.82rem;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .serve-grid,
    .resource-cols,
    .forms-grid,
    .give-cards {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .track-num {
        display: none;
    }

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

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

@media (max-width: 380px) {
    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-actions .btn-fill,
    .hero-actions .btn-ghost {
        flex: unset;
        width: 100%;
    }
}

/* =====================================================
   GLOBAL MOBILE OVERFLOW FIXES
===================================================== */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

* {
    max-width: 100%;
}

img,
picture,
video,
svg {
    max-width: 100%;
    height: auto;
}

.hero,
.section,
.wrap,
.page-hero,
.quote-block {
    overflow-x: hidden;
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */
@media (max-width: 1024px) {

    nav {
        padding: 0 1.25rem;
    }

    .wrap {
        padding: 0 1.5rem;
    }

    .section {
        padding: 4.5rem 1.5rem;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        order: 1;
    }

    .hero-accent {
        width: 100%;
        clip-path: none;
    }

    .hero-slider-overlay {
        background: rgba(11, 24, 41, 0.65);
    }

    .hero-slider-prev {
        left: 16px;
    }

    .hero-gold-line {
        display: none;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

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

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

    .serve-grid,
    .resource-cols,
    .give-cards {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .event-row {
        grid-template-columns: 56px 1fr;
        gap: 1rem;
    }

    .event-tag {
        grid-column: 2;
        justify-self: start;
        margin-top: 0.75rem;
    }

    .prog-card[style*="grid-column"] {
        grid-column: span 2 !important;
    }

    .prog-card-body[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    nav {
        padding: 0 1rem;
    }

    .nav-inner {
        height: 64px;
    }

    .logo img,
    .logo-img {
        max-height: 36px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(11, 24, 41, 0.99);
        backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        max-height: calc(100vh - 64px);
        overflow-y: auto;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.95rem 1rem;
        font-size: 0.92rem;
        border-radius: 10px;
    }

    section {
        padding-top: 64px;
    }

    .hero {
        min-height: auto;
        padding: 6rem 1rem 3rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        width: 100%;
    }

    .hero-cta-group {
        width: 100%;
    }

    .hero-eyebrow {
        font-size: 0.62rem;
        letter-spacing: 2px;
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
    }

    .hero-eyebrow::before {
        width: 20px;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.15;
        margin-bottom: 1.25rem;
    }

    .hero-sub {
        font-size: 0.96rem;
        line-height: 1.75;
        margin-bottom: 2rem;
    }

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

    .btn-fill,
    .btn-ghost {
        justify-content: center;
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
        padding-top: 2rem;
    }

    .hstat-num {
        font-size: 1.7rem;
    }

    .hstat-label {
        font-size: 0.64rem;
        letter-spacing: 1px;
    }

    .quote-block {
        padding: 4rem 1rem;
    }

    .quote-text {
        font-size: 1.15rem;
        line-height: 1.7;
    }

    .section {
        padding: 4rem 1rem;
    }

    .wrap {
        padding: 0;
    }

    .section-h {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .serve-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .serve-card {
        padding: 2rem 1.25rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .pillar-card {
        padding: 1.5rem 1.25rem;
    }

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

    .track-label,
    .track-body {
        padding: 1.5rem;
    }

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

    .prog-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .prog-card[style*="grid-column"] {
        grid-column: span 1 !important;
    }

    .prog-card-top,
    .prog-card-body {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .events-list {
        margin-top: 2rem;
    }

    .event-row {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 1.25rem;
    }

    .event-icon {
        margin-bottom: 0.75rem;
        justify-content: flex-start;
    }

    .event-tag {
        margin-top: 1rem;
        justify-self: flex-start;
    }

    .resource-cols,
    .give-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

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

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

    .founder-block {
        padding: 2rem 1.25rem;
    }

    .page-hero {
        padding: 4.5rem 1rem 3rem;
    }

    .page-hero h1 {
        line-height: 1.2;
    }

    .cta-banner {
        padding: 3rem 1rem;
    }

    .cta-banner h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
}

/* =====================================================
   SMALL MOBILE DEVICES
===================================================== */
@media (max-width: 480px) {

    .hero-deck-cta-main {
        font-size: 0.82rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .section-h,
    .page-hero h1,
    .cta-banner h2 {
        font-size: 1.8rem;
    }

    .quote-text {
        font-size: 1.05rem;
    }

    .btn-fill,
    .btn-ghost {
        padding: 0.9rem 1.25rem;
        font-size: 0.88rem;
    }

    .serve-card,
    .pillar-card,
    .prog-card-top,
    .prog-card-body,
    .track-label,
    .track-body,
    .founder-block {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}