:root {
    --forest: #0F3D2E;
    --forest-deep: #082820;
    --forest-light: #1a5742;
    --cream: #F5EFE6;
    --cream-warm: #EDE4D3;
    --terracotta: #C8553D;
    --gold: #D4A574;
    --charcoal: #1a1a1a;
    --muted: #6B6B6B;
    --line: rgba(15, 61, 46, 0.12);
    --sky: #5B8FA8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.display {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Team leader images */
.leader-img {
    background: transparent; /* remove background fallback, image will cover */
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* If you still have .leader-placeholder somewhere, you can hide it or remove it from HTML.
   The old placeholder style can stay but won't be used since we removed those divs. */
.leader-placeholder {
    display: none; /* optional, since we removed the divs */
}
/* Announcement Bar */
.announce {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 0.6rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(245, 239, 230, 0.08);
}

.announce-track {
    display: flex;
    gap: 4rem;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.announce-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.announce-item .dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Navigation */
nav {
    position: sticky;
    top: 0;
    background: rgba(245, 239, 230, 0.88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    z-index: 100;
    border-bottom: 1px solid var(--line);
    transition: all 0.3s;
}

nav.scrolled {
    box-shadow: 0 1px 20px rgba(15, 61, 46, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    display: block;
    max-width: 200px;       /* prevents the logo from becoming too wide */
    height: auto;           /* keeps the natural aspect ratio */
    max-height: 60px;       /* restricts the height so the nav stays slim */
    object-fit: contain;
    transition: transform 0.3s, opacity 0.3s;
}

.logo:hover img {
    transform: scale(1.03);
    opacity: 0.9;
}

@media (max-width: 640px) {
    .logo img {
        max-width: 140px;   /* slightly smaller on mobile */
        max-height: 45px;
    }
}

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

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.88rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--forest);
    transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 1px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--forest);
    color: var(--cream) !important;
    padding: 0.75rem 1.6rem;
    border-radius: 100px;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.35s;
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    background: var(--forest-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(15, 61, 46, 0.3);
}

.nav-cta i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.nav-cta:hover i {
    transform: scale(1.2);
}

.nav-cta.active {
    background: var(--terracotta);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--forest);
    cursor: pointer;
    padding: 0.5rem;
}

/* HERO (Home) */
.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.1rem;
    background: rgba(15, 61, 46, 0.07);
    border: 1px solid var(--line);
    border-radius: 100px;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.hero-tag:hover {
    background: rgba(15, 61, 46, 0.12);
}

.hero-tag .pulse {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    position: relative;
}

.hero-tag .pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1.5px solid var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.hero-tag span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
}

.hero h1,
.page-hero-content h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.96;
    font-weight: 400;
    color: var(--forest-deep);
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.page-hero-content h1 {
    color: var(--cream);
}

.hero h1 .italic,
.page-hero-content h1 .italic {
    font-style: italic;
    font-weight: 300;
    color: var(--terracotta);
}

.page-hero-content h1 .italic {
    color: var(--gold);
}

.hero h1 .underline {
    position: relative;
    display: inline-block;
}

.hero h1 .underline::after {
    content: '';
    position: absolute;
    bottom: 0.06em;
    left: 0;
    right: 0;
    height: 0.14em;
    background: var(--gold);
    z-index: -1;
    border-radius: 2px;
}

.hero-desc,
.page-hero-desc {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.page-hero-desc {
    color: rgba(245, 239, 230, 0.8);
    max-width: 650px;
}

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

.btn {
    padding: 1rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--forest);
    color: var(--cream);
}

.btn-primary:hover {
    background: var(--forest-deep);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(15, 61, 46, 0.35);
}

.btn-primary .arrow {
    transition: transform 0.35s;
    font-size: 1.1rem;
}

.btn-primary:hover .arrow {
    transform: translateX(5px);
}

.btn-ghost {
    background: transparent;
    color: var(--forest);
    border: 1.5px solid var(--forest);
}

.btn-ghost:hover {
    background: var(--forest);
    color: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 61, 46, 0.2);
}

.hero-meta {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.hero-meta-item .num {
    font-family: 'Fraunces', serif;
    font-size: 2.3rem;
    font-weight: 500;
    color: var(--forest-deep);
    line-height: 1;
}

.hero-meta-item .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.66rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.5rem;
}

.hero-right {
    position: relative;
    height: 620px;
}

.hero-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 61, 46, 0.28);
    transition: transform 0.1s ease-out;
}

.hero-img-main img,
.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.hero-img-main:hover img,
.hero-img-accent:hover img {
    transform: scale(1.04);
}

.hero-img-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 45%;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid var(--cream);
    box-shadow: 0 20px 50px rgba(15, 61, 46, 0.22);
    transition: transform 0.1s ease-out;
}

.hero-badge {
    position: absolute;
    top: 28%;
    left: -24px;
    background: var(--cream);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    transition: transform 0.3s;
}

.hero-badge:hover {
    transform: translateY(-4px);
}

.hero-badge-icon {
    width: 50px;
    height: 50px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1.2rem;
}

.hero-badge-text strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--forest-deep);
}

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

.deco-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1.5px dashed var(--gold);
    border-radius: 50%;
    top: -40px;
    right: 10%;
    opacity: 0.4;
    animation: rotate 60s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.deco-dots {
    position: absolute;
    bottom: 15%;
    right: -8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    opacity: 0.3;
    pointer-events: none;
}

.deco-dots span {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* PAGE HERO */
.page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero-about {
    background: var(--forest-deep);
}

.page-hero-programs {
    background: var(--forest);
}

.page-hero-education {
    background: var(--forest-deep);
}

.page-hero-impact {
    background: var(--forest);
}

.page-hero-stories {
    background: var(--forest-deep);
}

.page-hero-news {
    background: var(--forest);
}

.page-hero-contact {
    background: var(--forest-deep);
}

.page-hero-support {
    background: var(--forest);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 40, 32, 0.75), rgba(8, 40, 32, 0.35));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
}

/* SECTION HEADERS */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: end;
}

.section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-label::before {
    content: '';
    width: 32px;
    height: 1.5px;
    background: var(--terracotta);
    border-radius: 1px;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--forest-deep);
    letter-spacing: -0.02em;
}

.section-title .italic {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 300;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 600px;
}

/* MANIFESTO */
.manifesto {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: '"';
    position: absolute;
    top: -120px;
    right: 3%;
    font-family: 'Fraunces', serif;
    font-size: 40rem;
    color: rgba(245, 239, 230, 0.025);
    line-height: 1;
    pointer-events: none;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.manifesto-left .section-label {
    color: var(--gold);
}

.manifesto-left .section-label::before {
    background: var(--gold);
}

.manifesto-left h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.manifesto-left h2 .italic {
    font-style: italic;
    color: var(--gold);
}

.manifesto-left p {
    color: rgba(245, 239, 230, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.manifesto-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(245, 239, 230, 0.15);
}

.manifesto-stat .num {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.manifesto-stat .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.6);
    margin-top: 0.75rem;
    display: block;
}

.pillar {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(245, 239, 230, 0.1);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: start;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.pillar:first-child {
    border-top: 1px solid rgba(245, 239, 230, 0.1);
}

.pillar:hover {
    padding-left: 1.2rem;
    background: rgba(245, 239, 230, 0.03);
    border-radius: 8px;
}

.pillar:hover .pillar-num {
    color: var(--gold);
}

.pillar-num {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: rgba(245, 239, 230, 0.4);
    font-style: italic;
    transition: color 0.35s;
}

.pillar-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.pillar-content p {
    color: rgba(245, 239, 230, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
}

.pillar-arrow {
    color: rgba(245, 239, 230, 0.3);
    font-size: 1.3rem;
    transition: all 0.35s;
    align-self: center;
}

.pillar:hover .pillar-arrow {
    color: var(--gold);
    transform: translateX(6px);
}

/* BENTO */
.bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 210px;
    gap: 1.25rem;
}

.bento-item {
    background: var(--cream-warm);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid transparent;
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(15, 61, 46, 0.14);
    border-color: rgba(15, 61, 46, 0.08);
}

.bento-item.large {
    grid-column: span 3;
    grid-row: span 2;
    background: var(--forest);
    color: var(--cream);
}

.bento-item.wide {
    grid-column: span 3;
}

.bento-item.accent {
    background: var(--terracotta);
    color: var(--cream);
}

.bento-item.gold {
    background: var(--gold);
    color: var(--forest-deep);
}

.bento-item.sky {
    background: #5B8FA8;
    color: #fff;
}

.bento-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(15, 61, 46, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--forest);
    margin-bottom: 1.25rem;
    transition: all 0.35s;
}

.bento-item.large .bento-icon,
.bento-item.accent .bento-icon,
.bento-item.sky .bento-icon {
    background: rgba(245, 239, 230, 0.16);
    color: var(--cream);
}

.bento-item.gold .bento-icon {
    background: rgba(15, 61, 46, 0.12);
    color: var(--forest-deep);
}

.bento-item:hover .bento-icon {
    transform: scale(1.08);
}

.bento-title {
    font-family: 'Fraunces', serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 0.65rem;
}

.bento-item.large .bento-title {
    font-size: 2.5rem;
}

.bento-desc {
    font-size: 0.9rem;
    opacity: 0.75;
    line-height: 1.6;
}

.bento-item.large .bento-desc {
    font-size: 1rem;
    max-width: 420px;
    opacity: 0.8;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    margin-top: 1rem;
    transition: all 0.3s;
}

.bento-link::after {
    content: '→';
    transition: transform 0.35s;
}

.bento-item:hover .bento-link::after {
    transform: translateX(5px);
}

.bento-deco {
    position: absolute;
    bottom: -35px;
    right: -35px;
    font-family: 'Fraunces', serif;
    font-size: 10rem;
    font-style: italic;
    opacity: 0.07;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.4s;
}

.bento-item:hover .bento-deco {
    opacity: 0.12;
}

/* EDU SPOTLIGHT */
.edu-spotlight {
    background: var(--cream-warm);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.edu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.edu-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 5/6;
    box-shadow: 0 30px 70px rgba(15, 61, 46, 0.22);
}

.edu-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.edu-image-wrap:hover img {
    transform: scale(1.05);
}

.edu-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(245, 239, 230, 0.95);
    color: var(--forest-deep);
    padding: 0.8rem 1.4rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
}

.edu-image-badge i {
    color: var(--terracotta);
}

.edu-content h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.edu-content h2 .italic {
    font-style: italic;
    color: var(--terracotta);
}

.edu-content p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.edu-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.edu-feat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--cream);
    border-radius: 14px;
    transition: all 0.3s;
}

.edu-feat:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(15, 61, 46, 0.08);
    transform: translateX(4px);
}

.edu-feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--forest);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    font-size: 1rem;
    flex-shrink: 0;
}

.edu-feat span {
    font-weight: 500;
    color: var(--forest-deep);
    font-size: 0.95rem;
}

/* IMPACT */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.impact-cell {
    padding: 4rem 2rem;
    border-right: 1px solid var(--line);
    position: relative;
    transition: all 0.35s;
}

.impact-cell:last-child {
    border-right: none;
}

.impact-cell:hover {
    background: var(--cream);
}

.impact-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    font-weight: 400;
    color: var(--forest-deep);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.impact-num .plus {
    color: var(--terracotta);
    font-style: italic;
}

.impact-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.impact-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* STORY */
.story {
    background: var(--forest);
    color: var(--cream);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.story-image:hover img {
    transform: scale(1.04);
}

.story-location {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(245, 239, 230, 0.95);
    color: var(--forest-deep);
    padding: 0.9rem 1.4rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.84rem;
    font-weight: 500;
    z-index: 2;
}

.story-location i {
    color: var(--terracotta);
}

.story-content .section-label {
    color: var(--gold);
}

.story-content .section-label::before {
    background: var(--gold);
}

.story-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin: 2rem 0;
    position: relative;
}

.story-quote .italic {
    font-style: italic;
    color: var(--gold);
}

.story-quote::before {
    content: '"';
    font-family: 'Fraunces', serif;
    font-size: 6rem;
    color: var(--gold);
    position: absolute;
    top: -2.5rem;
    left: -0.5rem;
    opacity: 0.4;
    line-height: 1;
}

.story-attribution {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 239, 230, 0.15);
}

.story-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    color: var(--cream);
    flex-shrink: 0;
}

.story-attribution strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
}

.story-attribution span {
    font-size: 0.85rem;
    opacity: 0.7;
}

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

.involved-card {
    background: var(--cream-warm);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.involved-card:hover {
    background: var(--forest);
    color: var(--cream);
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(15, 61, 46, 0.22);
}

.involved-card:hover .involved-num {
    color: var(--gold);
}

.involved-card:hover .involved-desc {
    color: rgba(245, 239, 230, 0.7);
}

.involved-card:hover .involved-link {
    color: var(--gold);
}

.involved-num {
    font-family: 'Fraunces', serif;
    font-size: 5rem;
    font-weight: 300;
    color: var(--line);
    line-height: 1;
    font-style: italic;
    margin-bottom: 1rem;
    transition: color 0.35s;
}

.involved-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.involved-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: color 0.35s;
}

.involved-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.35s;
}

.involved-link::after {
    content: '→';
    transition: transform 0.35s;
}

.involved-card:hover .involved-link::after {
    transform: translateX(7px);
}

/* NEWS */
.news {
    background: var(--cream-warm);
}

.news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
}

.news-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 56px rgba(15, 61, 46, 0.12);
}

.news-card.featured {
    grid-row: span 2;
}

.news-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.news-card.featured .news-img {
    aspect-ratio: 4/3;
    flex: 1;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.news-card:hover .news-img img {
    transform: scale(1.06);
}

.news-cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--cream);
    color: var(--forest-deep);
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.64rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}

.news-body {
    padding: 1.75rem;
}

.news-card.featured .news-body {
    padding: 2.5rem;
}

.news-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
}

.news-title {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--forest-deep);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.news-card.featured .news-title {
    font-size: 1.8rem;
}

.news-excerpt {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* NEWSLETTER */
.newsletter {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.newsletter h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.newsletter h2 .italic {
    font-style: italic;
    color: var(--gold);
}

.newsletter p {
    color: rgba(245, 239, 230, 0.7);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 520px;
    margin: 0 auto;
    background: rgba(245, 239, 230, 0.07);
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid rgba(245, 239, 230, 0.14);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1.5rem;
    color: var(--cream);
    font-size: 0.95rem;
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: rgba(245, 239, 230, 0.45);
}

.newsletter-form button {
    background: var(--gold);
    color: var(--forest-deep);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.35s;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.newsletter-form button:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.3);
}

/* CTA SECTION */
.cta-section {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 6rem 0;
    text-align: center;
}

.cta-inner h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-inner h2 .italic {
    font-style: italic;
    color: var(--gold);
}

.cta-inner p {
    color: rgba(245, 239, 230, 0.75);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 5rem 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(245, 239, 230, 0.1);
}

.footer-brand .logo-text strong {
    color: var(--cream);
}

.footer-brand p {
    color: rgba(245, 239, 230, 0.6);
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(245, 239, 230, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: all 0.35s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--forest-deep);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.25);
}

.footer-col h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(245, 239, 230, 0.7);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
}

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

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(245, 239, 230, 0.7);
    font-size: 0.9rem;
    align-items: start;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(245, 239, 230, 0.4);
    font-size: 0.84rem;
}

.footer-bottom a {
    color: rgba(245, 239, 230, 0.4);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

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

/* ABOUT PAGE STYLES */
.about-story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-story-text p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-story-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 61, 46, 0.18);
}

.about-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.35s;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15, 61, 46, 0.1);
}

.vm-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--forest);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--forest-deep);
}

.vm-card p {
    color: var(--muted);
    line-height: 1.7;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: var(--cream-warm);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s;
}

.value-card:hover {
    background: var(--cream);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 61, 46, 0.08);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--forest);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--forest-deep);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.objectives-list {
    display: grid;
    gap: 1rem;
}

.objective-item {
    display: flex;
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 14px;
    transition: all 0.3s;
}

.objective-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(15, 61, 46, 0.06);
}

.obj-num {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: var(--terracotta);
    flex-shrink: 0;
    line-height: 1;
}

.objective-item p {
    color: var(--charcoal);
    font-size: 1rem;
    line-height: 1.6;
}

.approach-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.approach-step {
    text-align: center;
    padding: 1.5rem;
    min-width: 120px;
}

.approach-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
}

.approach-step h4 {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    color: var(--forest-deep);
    margin-bottom: 0.3rem;
}

.approach-step p {
    font-size: 0.8rem;
    color: var(--muted);
}

.approach-arrow {
    font-size: 1.8rem;
    color: var(--gold);
    font-family: 'Fraunces', serif;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.leader-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(15, 61, 46, 0.1);
}

.leader-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    background: var(--cream-warm);
}

.leader-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--muted);
    background: var(--cream-warm);
}

.leader-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--forest-deep);
}

.leader-title {
    display: block;
    font-size: 0.85rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
    font-weight: 500;
}

.leader-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.reg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.reg-card {
    background: var(--cream-warm);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.reg-card:hover {
    background: var(--cream);
    transform: translateY(-3px);
}

.reg-card i {
    font-size: 1.8rem;
    color: var(--forest);
    margin-bottom: 0.75rem;
    display: block;
}

.reg-card strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    color: var(--forest-deep);
    margin-bottom: 0.3rem;
}

.reg-card span {
    font-size: 0.9rem;
    color: var(--muted);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 61, 46, 0.08);
}

.partner-card i {
    font-size: 2rem;
    color: var(--forest);
    margin-bottom: 0.75rem;
    display: block;
}

.partner-card span {
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 500;
}

/* PROGRAMS PAGE */
.program-cards-detailed {
    display: grid;
    gap: 1.5rem;
}

.prog-detail {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s;
}

.prog-detail:hover {
    box-shadow: 0 16px 40px rgba(15, 61, 46, 0.1);
    transform: translateY(-3px);
}

.prog-detail-header {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 2rem;
}

.prog-detail-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.prog-detail-header h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--forest-deep);
}

.prog-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
}

.prog-detail-body {
    padding: 0 2rem 2rem;
}

.prog-detail-body p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.prog-stat strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--forest-deep);
}

.prog-stat span {
    font-size: 0.8rem;
    color: var(--muted);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: var(--cream-warm);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.35s;
}

.highlight-card:hover {
    background: var(--cream);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 61, 46, 0.08);
}

.highlight-card i {
    font-size: 2rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

.highlight-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 0.75rem;
}

.highlight-card p {
    color: var(--muted);
    line-height: 1.6;
}

/* EDUCATION PAGE */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.goal-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s;
}

.goal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 61, 46, 0.08);
}

.goal-num {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-style: italic;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.goal-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.goal-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.activity-card {
    background: var(--cream-warm);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s;
}

.activity-card:hover {
    background: var(--cream);
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 61, 46, 0.06);
}

.activity-card i {
    font-size: 1.8rem;
    color: var(--forest);
    margin-bottom: 1rem;
}

.activity-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.activity-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15, 61, 46, 0.12);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.proj-location {
    font-size: 0.8rem;
    color: var(--terracotta);
    margin-bottom: 0.5rem;
    display: block;
}

.project-info h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* IMPACT PAGE */
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.state-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 2rem;
    transition: all 0.35s;
}

.state-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 61, 46, 0.08);
}

.state-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 0.75rem;
}

.state-card h4 i {
    color: var(--terracotta);
    margin-right: 0.5rem;
}

.state-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.result-card {
    background: var(--cream-warm);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.35s;
}

.result-card:hover {
    background: var(--cream);
    transform: translateY(-4px);
}

.result-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.result-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.result-card ul {
    list-style: none;
}

.result-card li {
    padding: 0.4rem 0;
    color: var(--muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--line);
}

.result-card li:last-child {
    border-bottom: none;
}

.timeline {
    display: grid;
    gap: 2rem;
    padding-left: 2rem;
    border-left: 2px solid rgba(212, 165, 116, 0.4);
}

.tl-item {
    position: relative;
}

.tl-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.tl-year {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.tl-content h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tl-content p {
    color: rgba(245, 239, 230, 0.7);
    line-height: 1.6;
}

/* STORIES PAGE */
.story-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: var(--cream-warm);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15, 61, 46, 0.1);
}

.story-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.story-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.story-card:hover .story-card-img img {
    transform: scale(1.05);
}

.story-cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--cream);
    color: var(--forest-deep);
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
}

.story-card-body {
    padding: 1.5rem;
}

.story-loc {
    font-size: 0.8rem;
    color: var(--terracotta);
    display: block;
    margin-bottom: 0.5rem;
}

.story-card-body h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.story-card-body p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.story-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.35s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 61, 46, 0.06);
}

.testimonial-quote {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--forest-deep);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--terracotta);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--forest-deep);
}

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

/* NEWS PAGE */
.news-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.news-filters .filter {
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    background: var(--cream-warm);
    color: var(--charcoal);
    transition: all 0.3s;
}

.news-filters .filter.active,
.news-filters .filter:hover {
    background: var(--forest);
    color: var(--cream);
}

.news-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.news-card-full {
    background: var(--cream-warm);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s;
}

.news-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15, 61, 46, 0.1);
}

.news-card-full-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-card-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.news-card-full:hover .news-card-full-img img {
    transform: scale(1.05);
}

.news-card-full-body {
    padding: 1.5rem;
}

.news-read-more {
    display: inline-block;
    margin-top: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--forest);
    text-decoration: none;
    transition: color 0.3s;
}

.news-read-more:hover {
    color: var(--terracotta);
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-col h3,
.contact-form-col h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: var(--forest-deep);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-info-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--cream-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--forest-deep);
    margin-bottom: 0.2rem;
}

.contact-info-item span {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

.contact-form {
    display: grid;
    gap: 1.25rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--forest-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--cream);
    color: var(--charcoal);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    box-shadow: 0 0 0 3px rgba(15, 61, 46, 0.08);
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.dept-card {
    background: var(--cream);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: all 0.35s;
}

.dept-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 61, 46, 0.08);
}

.dept-card i {
    font-size: 1.8rem;
    color: var(--forest);
    margin-bottom: 0.75rem;
}

.dept-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.dept-card span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* SUPPORT PAGE */
.support-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.support-way-card {
    background: var(--cream);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s;
}

.support-way-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15, 61, 46, 0.12);
}

.sw-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.support-way-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--forest-deep);
    margin-bottom: 1rem;
}

.support-way-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.sponsor-card {
    background: var(--cream-warm);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.35s;
}

.sponsor-card:hover {
    background: var(--forest);
    color: var(--cream);
    transform: translateY(-5px);
}

.sponsor-card:hover h4 {
    color: var(--cream);
}

.sponsor-card:hover p {
    color: rgba(245, 239, 230, 0.7);
}

.sponsor-card:hover strong {
    color: var(--gold);
}

.sponsor-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--forest);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1.25rem;
}

.sponsor-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 0.75rem;
    transition: color 0.35s;
}

.sponsor-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    transition: color 0.35s;
}

.sponsor-card strong {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    color: var(--terracotta);
    transition: color 0.35s;
}

.impact-giving-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.giving-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.35s;
}

.giving-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 61, 46, 0.08);
}

.giving-amount {
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--forest);
    margin-bottom: 1rem;
}

.giving-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 3rem;
    }
    .hero-right {
        height: 450px;
        margin-top: 2rem;
    }
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .section-head {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .bento {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .bento-item.large,
    .bento-item.wide {
        grid-column: span 2;
        grid-row: auto;
    }
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .impact-cell:nth-child(2) {
        border-right: none;
    }
    .impact-cell:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }
    .story-grid,
    .edu-grid,
    .about-story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .involved-grid {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card.featured {
        grid-row: auto;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .approach-flow {
        flex-direction: column;
        gap: 0;
    }
    .approach-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }
    .hero h1,
    .page-hero-content h1 {
        font-size: 2.6rem;
    }
    .hero-meta {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero-right {
        height: 380px;
    }
    .hero-badge {
        display: none;
    }
    .section {
        padding: 5rem 0;
    }
    .bento {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }
    .bento-item.large,
    .bento-item.wide {
        grid-column: span 1;
    }
    .impact-grid {
        grid-template-columns: 1fr;
    }
    .impact-cell {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom a {
        margin: 0 0.75rem;
    }
    .newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        background: transparent;
        border: none;
        padding: 0;
        gap: 1rem;
    }
    .newsletter-form input {
        background: rgba(245, 239, 230, 0.07);
        border: 1px solid rgba(245, 239, 230, 0.14);
        border-radius: 100px;
    }
    .vm-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .news-grid-full {
        grid-template-columns: 1fr;
    }
    .story-cards-grid {
        grid-template-columns: 1fr;
    }
    .page-hero {
        min-height: 40vh;
    }
    .approach-flow {
        flex-direction: column;
        gap: 0.5rem;
    }
    .approach-arrow {
        transform: rotate(90deg);
    }
}
