/* ============================================
   SU GHANA ALUMNI — STYLESHEET
   Aesthetic: Editorial Homecoming
   ============================================ */

:root {
    --green: #004209;
    --green-dark: #002d06;
    --green-light: #1a5c24;
    --gold: #D4A017;
    --gold-light: #e8c55a;
    --gold-dark: #b8890f;
    --cream: #faf7f2;
    --cream-dark: #f0ebe2;
    --warm-gray: #6b6459;
    --text: #1a1a18;
    --text-light: #4a463f;
    --text-muted: #8a8478;
    --white: #ffffff;
    --shadow: 0 2px 20px rgba(0, 42, 9, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 42, 9, 0.12);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.section--dark {
    background: var(--green-dark);
    color: var(--cream);
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
}

h2 em, h1 em {
    font-style: italic;
    color: var(--gold);
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-tag--light { color: var(--gold-light); }

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--green);
    margin-bottom: 1rem;
}

.section-title--light { color: var(--white); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    line-height: 1.75;
}

.section--dark .section-desc { color: rgba(250, 247, 242, 0.7); }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.btn--primary {
    background: var(--green);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 66, 9, 0.3);
}

.btn--gold {
    background: var(--gold);
    color: var(--green-dark);
}
.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.35);
}

.btn--outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}
.btn--outline:hover {
    background: var(--white);
    color: var(--green);
    transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* ---- Kente Divider ---- */
.kente-divider {
    height: 6px;
    background: repeating-linear-gradient(
        90deg,
        var(--green) 0px, var(--green) 20px,
        var(--gold) 20px, var(--gold) 40px,
        var(--green-light) 40px, var(--green-light) 55px,
        var(--gold-dark) 55px, var(--gold-dark) 65px,
        #8B4513 65px, #8B4513 80px,
        var(--gold) 80px, var(--gold) 95px,
        var(--green) 95px, var(--green) 120px
    );
}

.kente-divider--gold {
    background: repeating-linear-gradient(
        90deg,
        var(--gold) 0px, var(--gold) 25px,
        var(--green) 25px, var(--green) 45px,
        var(--gold-dark) 45px, var(--gold-dark) 60px,
        #8B4513 60px, #8B4513 70px,
        var(--green-light) 70px, var(--green-light) 90px,
        var(--gold-light) 90px, var(--gold-light) 110px
    );
}

/* ---- Scripture Banner ---- */
.scripture-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--gold);
    color: var(--green-dark);
    padding: 0.4rem 1rem;
    text-align: center;
    font-size: 0.82rem;
    line-height: 1.5;
}

.scripture-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.scripture-icon {
    flex-shrink: 0;
    color: var(--green-dark);
    opacity: 0.7;
}

.scripture-text {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 0.82rem;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.scripture-text.fade {
    opacity: 0;
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
    padding: 1.25rem 0;
}

.nav.scrolled {
    background: rgba(0, 42, 9, 0.97);
    backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
    z-index: 10;
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--gold);
    color: var(--green-dark);
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 4px;
}

.nav-logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    letter-spacing: 0.01em;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--gold) !important;
    color: var(--green-dark) !important;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dark);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(212, 160, 23, 0.5) 40px, rgba(212, 160, 23, 0.5) 42px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(212, 160, 23, 0.5) 40px, rgba(212, 160, 23, 0.5) 42px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212, 160, 23, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 92, 36, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 820px;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    padding-top: 5rem;
}

.hero-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hero-line { display: block; }
.hero-line--accent { color: var(--gold); }

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(250, 247, 242, 0.75);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    padding-top: 3rem;
    border-top: 1px solid rgba(212, 160, 23, 0.2);
}

.hero-stat { text-align: center; }
.hero-stat-num {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(250, 247, 242, 0.5);
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
    display: block;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 247, 242, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.3); }
}

/* ---- About ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

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

.value-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 66, 9, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    background: var(--white);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 160, 23, 0.2);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.value-card h3 {
    font-size: 1.35rem;
    color: var(--green);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---- Events ---- */
.events-grid {
    display: grid;
    gap: 1.5rem;
}

.event-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.12);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateX(8px);
}

.event-date {
    flex-shrink: 0;
    width: 90px;
    text-align: center;
    padding: 1rem 0.5rem;
    border-right: 2px solid var(--gold);
}

.event-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.event-day {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1.1;
}

.event-year {
    display: block;
    font-size: 0.75rem;
    color: rgba(250, 247, 242, 0.4);
}

.event-type {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 160, 23, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.5rem;
}

.event-body h3 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.event-body p {
    font-size: 0.95rem;
    color: rgba(250, 247, 242, 0.65);
    line-height: 1.65;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(250, 247, 242, 0.4);
}

/* Recurring / Prayer Tower event */
.event-card--recurring {
    border-color: rgba(212, 160, 23, 0.25);
    background: rgba(212, 160, 23, 0.06);
}

.event-date--recurring {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.event-recurring-icon {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.event-date--recurring .event-month {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.event-date--recurring .event-day-sm {
    font-size: 0.7rem;
    color: rgba(250, 247, 242, 0.5);
    letter-spacing: 0.05em;
}

.event-type--prayer {
    background: rgba(212, 160, 23, 0.2);
    color: var(--gold-light);
}

.events-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.events-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.events-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---- Sponsor ---- */
.sponsor-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.sponsor-feature-text h3 {
    font-size: 1.6rem;
    color: var(--green);
    margin-bottom: 1rem;
}

.sponsor-feature-text > p {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.sponsor-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sponsor-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.sponsor-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
}

.sponsor-step strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.sponsor-step p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
}

.sponsor-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sponsor-track {
    padding: 2rem;
    border: 1px solid rgba(0, 66, 9, 0.1);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: all var(--transition);
}

.sponsor-track:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 160, 23, 0.25);
}

.sponsor-track-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--green);
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

.sponsor-track-badge--alt {
    background: var(--gold-dark);
}

.sponsor-track h4 {
    font-size: 1.25rem;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.sponsor-track > p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.sponsor-track-cost {
    margin-bottom: 1.25rem;
}

.sponsor-track-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--green);
}

.sponsor-track-cost span:last-child {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sponsor-track-includes {
    list-style: none;
    margin-bottom: 1.5rem;
}

.sponsor-track-includes li {
    font-size: 0.88rem;
    color: var(--text-light);
    padding: 0.3rem 0;
    padding-left: 1.4rem;
    position: relative;
}

.sponsor-track-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
}

/* Sponsor Impact Stats */
.sponsor-impact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: clamp(3rem, 5vw, 4.5rem);
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 66, 9, 0.06);
    box-shadow: var(--shadow);
}

.sponsor-impact-item {
    text-align: center;
}

.sponsor-impact-num {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.sponsor-impact-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* Sponsor CTA Quote */
.sponsor-cta {
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
}

.sponsor-cta blockquote {
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    position: relative;
}

.sponsor-cta blockquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green-light), var(--gold));
    border-radius: 0 0 3px 3px;
}

.sponsor-cta blockquote p {
    font-size: 1.05rem;
    color: rgba(250, 247, 242, 0.85);
    line-height: 1.8;
    font-style: italic;
    font-family: 'DM Serif Display', serif;
}

.sponsor-cta blockquote footer {
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: var(--gold);
    font-style: normal;
}

.sponsor-cta blockquote cite {
    font-weight: 600;
    font-style: normal;
}

@media (max-width: 1024px) {
    .sponsor-feature { grid-template-columns: 1fr; }
    .sponsor-impact { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sponsor-impact { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

@media (max-width: 480px) {
    .sponsor-impact { grid-template-columns: 1fr; }
}

/* ---- Donate ---- */
.donate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.donate-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0, 66, 9, 0.1);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: all var(--transition);
    position: relative;
}

.donate-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.donate-card--featured {
    border-color: var(--gold);
    background: linear-gradient(165deg, var(--white) 0%, rgba(212, 160, 23, 0.04) 100%);
    box-shadow: var(--shadow);
    transform: scale(1.03);
}

.donate-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.donate-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--green-dark);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.donate-amount {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    color: var(--green);
    margin-bottom: 0.25rem;
}

.donate-amount span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.donate-tier {
    font-size: 1.2rem;
    color: var(--gold-dark);
    margin-bottom: 0.75rem;
}

.donate-ops-line {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green);
    background: rgba(0, 66, 9, 0.06);
    padding: 0.45rem 0.75rem;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    margin-bottom: 0.75rem !important;
    line-height: 1.5 !important;
}

.donate-card > p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.donate-perks {
    list-style: none;
    margin-bottom: 2rem;
}

.donate-perks li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.donate-perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
}

/* Operations Banner */
.donate-operations-banner {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem 2.5rem;
    background: var(--green-dark);
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.donate-operations-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green-light), var(--gold));
}

.donate-operations-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
}

.donate-operations-banner h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.donate-operations-banner p {
    font-size: 0.92rem;
    color: rgba(250, 247, 242, 0.7);
    line-height: 1.75;
}

/* Section labels */
.donate-section-label {
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 66, 9, 0.08);
}

/* Two-column grid for one-time/custom */
.donate-grid--two {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
}

/* Custom amount input */
.donate-amount-custom {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.25rem;
}

.donate-currency {
    font-family: 'DM Serif Display', serif;
    font-size: 2rem;
    color: var(--green);
}

.donate-custom-input {
    font-family: 'DM Serif Display', serif;
    font-size: 2.8rem;
    color: var(--green);
    border: none;
    border-bottom: 2px solid rgba(0, 66, 9, 0.15);
    background: transparent;
    width: 160px;
    outline: none;
    transition: border-color var(--transition);
    -moz-appearance: textfield;
}

.donate-custom-input::-webkit-outer-spin-button,
.donate-custom-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.donate-custom-input::placeholder {
    color: rgba(0, 66, 9, 0.2);
}

.donate-custom-input:focus {
    border-color: var(--gold);
}

/* Frequency toggle */
.donate-frequency {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.donate-freq-option {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1.5px solid rgba(0, 66, 9, 0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.donate-freq-option:has(input:checked) {
    border-color: var(--green);
    background: rgba(0, 66, 9, 0.04);
    color: var(--green);
    font-weight: 600;
}

.donate-freq-option input {
    accent-color: var(--green);
}

/* Quick amount buttons */
.donate-quick-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.donate-quick-btn {
    padding: 0.7rem 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--green);
    border: 1.5px solid rgba(0, 66, 9, 0.12);
    border-radius: var(--radius);
    background: var(--cream);
    cursor: pointer;
    transition: all var(--transition);
}

.donate-quick-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.08);
}

.donate-quick-btn.selected {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--green-dark);
}

.donate-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 2.5rem;
}

.donate-note a {
    color: var(--gold-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
}

@media (max-width: 1024px) {
    .donate-grid--two { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .donate-operations-banner { flex-direction: column; gap: 1rem; padding: 1.5rem; }
    .donate-quick-amounts { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Stories ---- */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-card {
    padding: 2.5rem 2rem 2rem;
    border: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 0 0 3px 3px;
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.story-quote p {
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 1.8;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--cream-dark);
}

.story-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.story-author cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}

.story-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- Chapters ---- */
.chapters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.chapter-card {
    padding: 2rem;
    border: 1px solid rgba(0, 66, 9, 0.08);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.chapter-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.chapter-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.chapter-card:hover::after {
    transform: scaleX(1);
}

.chapter-flag {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.chapter-card h3 {
    font-size: 1.3rem;
    color: var(--green);
    margin-bottom: 0.25rem;
}

.chapter-locations {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.chapter-card > p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.chapter-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 66, 9, 0.06);
}

.chapter-stat strong {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--gold-dark);
    line-height: 1.1;
}

.chapter-stat span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chapter-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: color var(--transition);
}

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

.chapters-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.chapters-cta p {
    font-size: 1rem;
    color: var(--text-light);
}

.chapters-cta a {
    color: var(--gold-dark);
    font-weight: 600;
    border-bottom: 1px solid var(--gold);
    transition: color var(--transition);
}

.chapters-cta a:hover {
    color: var(--green);
}

/* Stagger chapter cards */
.chapters-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.chapters-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.chapters-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.chapters-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.chapters-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

@media (max-width: 1024px) {
    .chapters-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .chapters-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ---- News ---- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 66, 9, 0.06);
    transition: all var(--transition);
    background: var(--white);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.news-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

/* Decorative pattern overlay for placeholder images */
.news-img::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 66, 9, 0.08) 10px, rgba(0, 66, 9, 0.08) 12px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(212, 160, 23, 0.08) 10px, rgba(212, 160, 23, 0.08) 12px);
}

.news-body {
    padding: 1.75rem;
}

.news-body time {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.news-body h3 {
    font-size: 1.2rem;
    color: var(--green);
    margin: 0.5rem 0 0.75rem;
    line-height: 1.3;
}

.news-body p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

.news-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    transition: color var(--transition);
}

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

/* ---- Connect ---- */
.connect {
    position: relative;
    overflow: hidden;
}

.connect-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(120deg, transparent, transparent 60px, rgba(212, 160, 23, 0.5) 60px, rgba(212, 160, 23, 0.5) 62px),
        repeating-linear-gradient(60deg, transparent, transparent 60px, rgba(212, 160, 23, 0.3) 60px, rgba(212, 160, 23, 0.3) 62px);
}

.connect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
    position: relative;
}

.connect-text p {
    font-size: 1.05rem;
    color: rgba(250, 247, 242, 0.7);
    margin-top: 1rem;
    line-height: 1.75;
}

.connect-benefits {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.connect-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(250, 247, 242, 0.8);
}

.connect-benefit svg { color: var(--gold); flex-shrink: 0; }

.connect-form {
    background: var(--white);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

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

.form-group {
    margin-bottom: 1.15rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.optional {
    font-weight: 400;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(0, 66, 9, 0.12);
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: all var(--transition);
    background: var(--cream);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
    background: var(--white);
}

.form-group textarea { resize: vertical; }

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ---- Footer ---- */
.footer {
    background: var(--green-dark);
    color: var(--cream);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(250, 247, 242, 0.6);
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(250, 247, 242, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 247, 242, 0.6);
    transition: all var(--transition);
}

.footer-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 160, 23, 0.1);
}

.footer-links h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links a,
.footer-links p {
    display: block;
    font-size: 0.88rem;
    color: rgba(250, 247, 242, 0.55);
    line-height: 1.6;
    margin-bottom: 0.4rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(250, 247, 242, 0.08);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(250, 247, 242, 0.4);
}

.footer-bottom a {
    color: var(--gold);
    transition: color var(--transition);
}

.footer-verse {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: rgba(212, 160, 23, 0.4) !important;
    font-size: 0.9rem !important;
}

/* ---- Toast ---- */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    background: var(--green-dark);
    color: var(--cream);
    padding: 1rem 1.75rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 160, 23, 0.2);
    z-index: 9999;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ---- Reveal Animation ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered children */
.about-values .reveal:nth-child(2) { transition-delay: 0.12s; }
.about-values .reveal:nth-child(3) { transition-delay: 0.24s; }
.events-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.events-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.donate-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.donate-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.stories-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.stories-grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.news-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.news-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-values { grid-template-columns: repeat(3, 1fr); }
    .donate-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .donate-card--featured { transform: none; }
    .donate-card--featured:hover { transform: translateY(-4px); }
    .stories-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
    .news-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--green-dark);
        flex-direction: column;
        justify-content: center;
        gap: 1.75rem;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.3rem;
        color: var(--white);
    }

    .nav-cta {
        font-size: 1.1rem !important;
        padding: 0.75rem 2rem;
    }

    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .about-values { grid-template-columns: 1fr; }

    .event-card { flex-direction: column; gap: 1rem; }
    .event-date {
        border-right: none;
        border-bottom: 2px solid var(--gold);
        padding-bottom: 1rem;
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
        justify-content: flex-start;
    }
    .event-day { font-size: 1.8rem; }

    .connect-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; text-align: center; }
}
