* {
    box-sizing: border-box;
}

:root {
    --ink: #17211d;
    --surface: #f8f7f2;
    --accent: #ddff5b;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

.site-header {
    padding: 20px clamp(20px, 5vw, 72px);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    min-height: 58px;
}

.brand {
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-decoration: none;
}

.brand span {
    color: #77a500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 42px);
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.nav-links a {
    position: relative;
    padding: 10px 0;
    color: var(--ink);
    font-size: .92rem;
    font-weight: 600;
    text-decoration: none;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 2px;
    background: var(--ink);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 19px;
    border-radius: 999px;
    background: var(--ink);
    color: white;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: #33443c;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 42px;
    padding: 8px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    max-width: 1280px;
    min-height: calc(100vh - 98px);
    margin: 0 auto;
    padding: clamp(44px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.hero-copy {
    max-width: 960px;
}

.eyebrow {
    margin: 0 0 22px;
    color: #6a7b0a;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 100%;
    margin: 0;
    font-family: Georgia, 'Noto Serif Malayalam', serif;
    font-size: clamp(2.45rem, 5vw, 5.4rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -.055em;
}

.hero h1 em {
    position: relative;
    color: #5e7e00;
    font-style: normal;
}

.hero h1 em::after {
    position: absolute;
    right: 0;
    bottom: -.04em;
    left: 0;
    height: .17em;
    background: var(--accent);
    content: "";
    opacity: .75;
    transform: rotate(-1deg);
    z-index: -1;
}

.hero h1 span {
    font-size: .63em;
    vertical-align: .1em;
}

.hero-description {
    max-width: 500px;
    margin: 28px 0 0;
    color: #53605a;
    font-size: 1.05rem;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 34px;
}

.primary-button,
.text-button {
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-button {
    display: inline-flex;
    gap: 10px;
    padding: 15px 21px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--ink);
    transition: transform .2s ease, box-shadow .2s ease;
}

.primary-button:hover,
.primary-button:focus-visible {
    box-shadow: 4px 5px 0 var(--ink);
    transform: translate(-2px, -2px);
}

.text-button {
    color: var(--ink);
    border-bottom: 1px solid currentColor;
    padding-bottom: 3px;
}

.about-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 38px clamp(20px, 5vw, 72px) 90px;
}

.about-intro {
    max-width: 930px;
    padding: clamp(40px, 7vw, 90px) 0 clamp(62px, 9vw, 120px);
}

.about-intro h1,
.section-heading h2,
.belief h2,
.camp h2,
.about-closing h2 {
    margin: 0;
    font-family: Georgia, 'Noto Serif Malayalam', serif;
    font-weight: 500;
    letter-spacing: -.045em;
}

.about-intro h1 {
    max-width: 850px;
    font-size: clamp(3rem, 7vw, 6.7rem);
    line-height: .98;
}

.about-intro h1 em {
    color: #5e7e00;
    font-style: normal;
}

.about-lead {
    max-width: 650px;
    margin: 34px 0 0;
    color: #53605a;
    font-size: clamp(1.08rem, 1.7vw, 1.32rem);
    line-height: 1.65;
}

.about-story {
    display: grid;
    grid-template-columns: minmax(220px, .52fr) minmax(0, 1fr);
    gap: clamp(35px, 8vw, 125px);
    align-items: start;
    padding: clamp(45px, 7vw, 86px) 0;
    border-top: 1px solid #d9dbd0;
}

.story-note {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #5e7e00;
}

.story-note span {
    font-family: Georgia, serif;
    font-size: 5.1rem;
    font-style: italic;
    line-height: 1;
}

.story-note small {
    color: var(--ink);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.5;
    text-transform: uppercase;
}

.story-copy {
    font-family: Georgia, 'Noto Serif Malayalam', serif;
    font-size: clamp(1.35rem, 2.4vw, 2.1rem);
    line-height: 1.36;
    letter-spacing: -.025em;
}

.story-copy p {
    margin: 0 0 27px;
}

.story-copy p + p {
    color: #68746e;
}

.initiatives {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px clamp(45px, 8vw, 130px);
    padding: clamp(65px, 9vw, 120px) 0;
}

.section-heading h2,
.belief h2,
.camp h2,
.about-closing h2 {
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    line-height: 1.04;
}

.initiative-intro {
    max-width: 480px;
    margin: 39px 0 0;
    color: #53605a;
    font-size: 1.05rem;
    line-height: 1.65;
}

.initiative-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.initiative-list li {
    padding: 17px 0;
    border-bottom: 1px solid #cdd1c5;
    font-size: 1.02rem;
    font-weight: 700;
}

.initiative-list li::before {
    color: #6b9500;
    content: '✦';
    margin-right: 10px;
}

.belief {
    display: grid;
    grid-template-columns: 80px minmax(0, 750px);
    gap: clamp(20px, 4vw, 52px);
    align-items: start;
    padding: clamp(55px, 8vw, 105px) clamp(25px, 7vw, 100px);
    border-radius: 28px;
    background: var(--ink);
    color: #f8f7f2;
}

.belief .eyebrow {
    color: var(--accent);
}

.belief-mark {
    margin: -20px 0 0;
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
}

.belief h2 {
    max-width: 720px;
}

.belief h2 + p {
    max-width: 590px;
    margin: 27px 0 0;
    color: #d4dbd5;
    font-size: 1.02rem;
    line-height: 1.65;
}

.camp {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
    gap: clamp(40px, 9vw, 150px);
    align-items: end;
    padding: clamp(75px, 11vw, 150px) 0;
}

.camp h2 {
    margin-top: 13px;
    color: #5e7e00;
}

.camp-copy > p:last-child {
    max-width: 590px;
    margin: 25px 0 0;
    color: #53605a;
    font-size: 1.05rem;
    line-height: 1.65;
}

.camp-details {
    display: grid;
    gap: 16px;
}

.camp-details div {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid #cdd1c5;
}

.camp-details strong {
    min-width: 54px;
    color: #5e7e00;
    font-family: Georgia, serif;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: .8;
}

.camp-details span {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.5;
    text-transform: uppercase;
}

.about-closing {
    max-width: 900px;
    padding: clamp(55px, 8vw, 110px) 0 0;
    border-top: 1px solid #d9dbd0;
}

.about-closing p {
    max-width: 580px;
    margin: 25px 0 0;
    color: #53605a;
    font-size: 1.05rem;
    line-height: 1.65;
}

.contact-page {
    max-width: 1280px;
    min-height: calc(100vh - 98px);
    margin: 0 auto;
    padding: clamp(60px, 9vw, 120px) clamp(20px, 5vw, 72px) 90px;
}

.contact-intro {
    max-width: 840px;
}

.contact-intro h1 {
    margin: 0;
    font-family: Georgia, 'Noto Serif Malayalam', serif;
    font-size: clamp(3rem, 6.5vw, 6.3rem);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .99;
}

.contact-intro h1 em {
    color: #5e7e00;
    font-style: normal;
}

.contact-intro > p:last-child {
    max-width: 570px;
    margin: 30px 0 0;
    color: #53605a;
    font-size: 1.07rem;
    line-height: 1.65;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 28px;
    margin-top: clamp(65px, 10vw, 135px);
}

.contact-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    min-height: 215px;
    padding: 29px;
    border-radius: 20px;
    background: #eceee3;
}

.contact-block:nth-child(2) {
    background: var(--accent);
}

.social-block {
    background: var(--ink);
}

.contact-label {
    margin: 0 0 12px;
    color: #65716a;
    font-size: .71rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.social-block .contact-label {
    color: var(--accent);
}

.contact-block a {
    color: var(--ink);
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    font-weight: 700;
    letter-spacing: -.02em;
    text-decoration: none;
}

.social-block a {
    color: white;
}

.contact-block a:hover,
.contact-block a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.social-block a span {
    margin-left: 3px;
    color: var(--accent);
}

.home-about,
.impact-section,
.home-initiatives,
.events-section,
.testimonials,
.join-section {
    max-width: 1280px;
    margin: 0 auto;
    padding-right: clamp(20px, 5vw, 72px);
    padding-left: clamp(20px, 5vw, 72px);
}

.home-about {
    display: grid;
    grid-template-columns: minmax(160px, .55fr) minmax(0, 1.45fr);
    gap: clamp(38px, 9vw, 145px);
    padding-top: clamp(70px, 11vw, 155px);
    padding-bottom: clamp(70px, 11vw, 155px);
    border-top: 1px solid #d9dbd0;
}

.section-kicker {
    display: flex;
    gap: 13px;
    align-items: center;
    color: #69746d;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.section-kicker span {
    color: #6b9500;
}

.home-about h2,
.impact-heading h2,
.initiatives-top h2,
.events-intro h2,
.testimonials-heading h2,
.join-section h2 {
    margin: 0;
    font-family: Georgia, 'Noto Serif Malayalam', serif;
    font-size: clamp(2.35rem, 4.8vw, 5rem);
    font-weight: 500;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.home-about h2 em,
.join-section h2 em {
    color: #5e7e00;
    font-style: normal;
}

.home-about p {
    max-width: 590px;
    margin: 28px 0 25px;
    color: #53605a;
    font-size: 1.08rem;
    line-height: 1.65;
}

.impact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .95fr);
    gap: clamp(45px, 8vw, 115px);
    padding-top: clamp(65px, 10vw, 140px);
    padding-bottom: clamp(65px, 10vw, 140px);
    background: #e4edb3;
}

.impact-heading .eyebrow {
    color: #5e7e00;
}

.impact-stats {
    display: grid;
    gap: 0;
}

.impact-stats div {
    display: flex;
    align-items: center;
    gap: 23px;
    padding: 18px 0;
    border-top: 1px solid rgb(23 33 29 / 24%);
}

.impact-stats strong {
    min-width: 107px;
    font-family: Georgia, serif;
    font-size: clamp(3.2rem, 5vw, 5.4rem);
    font-weight: 400;
    letter-spacing: -.07em;
    line-height: 1;
}

.impact-stats span {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .09em;
    line-height: 1.5;
    text-transform: uppercase;
}

.home-initiatives {
    padding-top: clamp(75px, 11vw, 155px);
    padding-bottom: clamp(75px, 11vw, 155px);
}

.initiatives-top {
    display: flex;
    justify-content: space-between;
    gap: 45px;
    align-items: end;
}

.initiatives-top h2 {
    max-width: 720px;
}

.initiatives-top > p {
    max-width: 320px;
    margin: 0 0 6px;
    color: #53605a;
    line-height: 1.6;
}

.initiative-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 55px;
}

.initiative-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 25px;
    border-radius: 18px;
    color: var(--ink);
    overflow: hidden;
    text-decoration: none;
    transition: transform .2s ease;
}

.initiative-card:hover,
.initiative-card:focus-visible { transform: translateY(-6px); }
.foundation-card { background: #dce96d; }
.camp-card { background: #ffbf94; }
.books-card { background: #bfcde4; }
.umineeru-card { background: #d5c4e8; }
.nadaka-card { background: #f2cf67; }

.initiative-card span {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .11em;
}

.initiative-card h3 {
    max-width: 190px;
    margin: auto 0 13px;
    font-family: Georgia, serif;
    font-size: clamp(1.65rem, 2.5vw, 2.3rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.initiative-card p {
    max-width: 190px;
    margin: 0;
    font-size: .88rem;
    line-height: 1.5;
}

.initiative-card b {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 1.25rem;
}

.events-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
    padding-top: clamp(75px, 10vw, 140px);
    padding-bottom: clamp(75px, 10vw, 140px);
    border-top: 1px solid #d9dbd0;
}

.event-empty {
    padding: clamp(42px, 7vw, 78px) 30px;
    border: 1px dashed #9ca59d;
    border-radius: 20px;
    text-align: center;
}

.event-empty span { color: #6b9500; font-size: 2rem; }
.event-empty p { margin: 15px 0 0; color: #53605a; line-height: 1.55; }

.testimonials {
    padding-top: clamp(75px, 10vw, 140px);
    padding-bottom: clamp(75px, 10vw, 140px);
    background: var(--ink);
    color: #f8f7f2;
}

.testimonials .eyebrow { color: var(--accent); }

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 7vw, 110px);
    margin-top: 55px;
}

.quote-grid blockquote {
    margin: 0;
    color: #e9ece6;
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 2.7vw, 2.55rem);
    line-height: 1.3;
    letter-spacing: -.035em;
}

.quote-grid cite {
    display: block;
    margin-top: 28px;
    color: var(--accent);
    font-family: Arial, Helvetica, sans-serif;
    font-size: .73rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.join-section {
    padding-top: clamp(80px, 12vw, 165px);
    padding-bottom: clamp(85px, 12vw, 170px);
    text-align: center;
}

.join-section .eyebrow { margin-bottom: 20px; }
.join-section h2 { font-size: clamp(2.8rem, 6vw, 6.1rem); }
.join-section > p:not(.eyebrow) { max-width: 550px; margin: 27px auto 33px; color: #53605a; font-size: 1.07rem; line-height: 1.65; }

.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    padding: 32px clamp(20px, 5vw, 72px);
    background: #e4edb3;
}

.site-footer p { margin: 0; color: #53605a; font-size: .85rem; }
.site-footer div { display: flex; gap: 17px; }
.site-footer div a { color: var(--ink); font-size: .81rem; font-weight: 700; text-decoration: none; }
.site-footer div a:hover { text-decoration: underline; }

.team-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(50px, 8vw, 105px) clamp(20px, 5vw, 72px) 90px;
}

.team-intro {
    max-width: 730px;
}

.team-intro h1,
.team-join h2 {
    margin: 0;
    font-family: Georgia, 'Noto Serif Malayalam', serif;
    font-size: clamp(3.2rem, 7vw, 6.7rem);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .98;
}

.team-intro h1 em {
    color: #5e7e00;
    font-style: normal;
}

.team-intro > p:last-child {
    max-width: 510px;
    margin: 29px 0 0;
    color: #53605a;
    font-size: 1.08rem;
    line-height: 1.65;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
    margin-top: clamp(65px, 9vw, 115px);
}

.member-card {
    position: relative;
}

.member-photo {
    width: min(100%, 240px);
    aspect-ratio: 1;
    margin-bottom: 24px;
    padding: 8px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: saturate(.82) contrast(1.04);
}

.photo-lime { background: #dce96d; }
.photo-peach { background: #ffbf94; }
.photo-blue { background: #bfcde4; }
.photo-lilac { background: #d5c4e8; }

.member-role {
    margin: 0 0 8px;
    color: #648500;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.member-card h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -.04em;
}

.member-card blockquote {
    min-height: 55px;
    margin: 15px 0 20px;
    color: #53605a;
    font-family: Georgia, serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.42;
}

.member-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.member-socials a {
    color: var(--ink);
    font-size: .74rem;
    font-weight: 800;
    text-decoration: none;
}

.member-socials a:hover,
.member-socials a:focus-visible { text-decoration: underline; text-underline-offset: 4px; }

.team-join {
    margin-top: clamp(75px, 11vw, 155px);
    padding: clamp(52px, 8vw, 100px);
    border-radius: 25px;
    background: #e4edb3;
    text-align: center;
}

.team-join h2 {
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: clamp(2.55rem, 5vw, 5.2rem);
}

.team-join .eyebrow { color: #5e7e00; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 720px) {
    .navbar {
        position: relative;
        justify-content: space-between;
        gap: 12px;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .nav-cta {
        display: none;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px;
        border: 1px solid #e5e5dc;
        border-radius: 14px;
        background: var(--surface);
        box-shadow: 0 14px 30px rgb(23 33 29 / 12%);
    }

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

    .nav-links a {
        display: block;
        padding: 13px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 45px;
    }

    .about-page {
        padding-top: 15px;
    }

    .about-story,
    .initiatives,
    .camp,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .belief {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .belief-mark {
        display: none;
    }

    .initiative-list {
        margin-top: 12px;
    }

    .home-about,
    .impact-section,
    .events-section {
        grid-template-columns: 1fr;
    }

    .initiatives-top {
        display: block;
    }

    .initiatives-top > p {
        margin-top: 22px;
    }

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

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

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

@media (max-width: 440px) {
    .initiative-list {
        grid-template-columns: 1fr;
    }

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

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