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

:root {
    --gold: #C8900A;
    --gold-light: #F2C84B;
    --gold-pale: #FDF6DC;
    --orange: #D4621A;
    --orange-soft: #E8935A;
    --green: #1E5C32;
    --green-mid: #2E7D47;
    --green-light: #4A9B5F;
    --green-pale: #E8F5ED;
    --cream: #FAF6EE;
    --white: #FFFFFF;
    --dark: #120D04;
    --text: #241A0C;
    --text-soft: #6B5230;
    --text-muted: #A08860;
    --border: rgba(200, 144, 10, 0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

.page {
    display: none;
    min-height: 100vh;
    animation: pageIn 0.5s ease;
}

.page.active {
    display: block;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 246, 238, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

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

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--green);
    cursor: pointer;
    line-height: 1.15;
    text-decoration: none;
}

.nav-logo span {
    display: block;
    font-size: 0.62rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
}

.nav-links li a {
    display: block;
    padding: 0 1.1rem;
    height: 68px;
    line-height: 68px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}

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

.nav-donate {
    background: var(--gold);
    color: var(--dark);
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.nav-donate:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-1px);
}

.section-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    flex-shrink: 0;
}

.eyebrow-gold {
    color: var(--gold);
}

.eyebrow-gold::before {
    background: var(--gold);
}

.eyebrow-orange {
    color: var(--orange);
}

.eyebrow-orange::before {
    background: var(--orange);
}

.eyebrow-green {
    color: var(--green-mid);
}

.eyebrow-green::before {
    background: var(--green-mid);
}

.eyebrow-white {
    color: rgba(255, 255, 255, 0.65);
}

.eyebrow-white::before {
    background: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.08;
    color: var(--dark);
}

.section-title em {
    font-style: italic;
    color: var(--green);
}

.section-title.light {
    color: #fff;
}

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

.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    font-style: italic;
    line-height: 1.5;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.22s;
    font-family: 'Lato', sans-serif;
}

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

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 144, 10, 0.35);
}

.btn-green {
    background: var(--green);
    color: #fff;
}

.btn-green:hover {
    background: var(--green-mid);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    border-color: #fff;
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: #fff;
}

.page-content {
    padding-top: 68px;
}

.ticker-wrap {
    background: var(--gold);
    overflow: hidden;
    padding: 0.7rem 0;
}

.ticker {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: tick 30s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0 2rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dark);
    flex-shrink: 0;
}

.ticker-item::after {
    content: '✦';
    opacity: 0.4;
    font-size: 0.55rem;
}

@keyframes tick {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    overflow: hidden;
}

.hero-left {
    background: var(--green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 8% 5rem 5rem;
    position: relative;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(74, 155, 95, 0.25) 0%, transparent 70%);
}

.hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.hero-kicker::before {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--gold);
}

.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    line-height: 1.06;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

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

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.hero-sub2 {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 2.6rem;
    max-width: 420px;
}

.hero-btns {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-proof {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.proof-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
}

.proof-item .lbl {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
}

.hero-right {
    background: var(--cream);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 3rem 5rem 5%;
    z-index: 1;
}

.hero-img-main {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #9B7035, #4A2C0A);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    z-index: 5;
}

.hero-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--gold);
    border-radius: 4px;
    padding: 1.1rem 1.4rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(200, 144, 10, 0.35);
}

.hero-badge .b-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.hero-badge .b-lbl {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(26, 18, 8, 0.65);
    font-weight: 700;
    margin-top: 0.2rem;
    line-height: 1.3;
}

.hero-tag {
    position: absolute;
    top: 32px;
    left: -24px;
    background: var(--dark);
    padding: 0.9rem 1.2rem;
    border-radius: 4px;
    max-width: 170px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.hero-tag p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-style: italic;
}

.hero-tag .t-name {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-top: 0.5rem;
    font-weight: 700;
}

/* HOME SECTIONS */
.home-why {
    padding: 7rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.home-why::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 35rem;
    line-height: 0.8;
    color: var(--green-pale);
    position: absolute;
    top: 0;
    left: -2rem;
    pointer-events: none;
    z-index: 0;
}

.home-why-text {
    position: relative;
    z-index: 1;
}

.home-why-title {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 1.6rem;
}

.home-why p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 1rem;
}

.home-why p strong {
    color: var(--text);
}

.home-why-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.why-img {
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(145deg, #8B6020, #3A2008);
}

.why-img.green {
    background: linear-gradient(145deg, var(--green-light), var(--green));
}

.home-stats {
    background: var(--dark);
    padding: 4rem 5rem;
    display: flex;
    flex-wrap: wrap;
}

.h-stat {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 1.2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.h-stat:last-child {
    border-right: none;
}

.h-stat .sn {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
}

.h-stat .sl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.35rem;
    font-weight: 700;
}

.home-pillars {
    padding: 6rem 5rem;
    background: var(--cream);
}

.hp-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.hp-header .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.7rem;
}

.hp-header p {
    color: var(--text-soft);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

.hp-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}

.hp-card {
    background: #fff;
    border-radius: 4px;
    padding: 1.8rem 1.4rem;
    border-top: 3px solid var(--gold);
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
}

.hp-card:nth-child(2) {
    border-top-color: var(--orange);
}

.hp-card:nth-child(3) {
    border-top-color: var(--green);
}

.hp-card:nth-child(4) {
    border-top-color: var(--gold);
}

.hp-card:nth-child(5) {
    border-top-color: var(--orange);
}

.hp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.hp-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.hp-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.hp-text {
    font-size: 0.78rem;
    line-height: 1.65;
    color: var(--text-soft);
}

.home-cta {
    background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
    padding: 6rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '✦';
    font-size: 28rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.home-cta .section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
}

.home-cta p {
    font-size: 1rem;
    color: rgba(26, 18, 8, 0.65);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    position: relative;
}

.home-cta .cta-btns {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* STORY PAGE */
.story-hero {
    background: var(--green);
    padding: 7rem 5rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 1.2rem;
}

.story-hero-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.story-hero-sub {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
}

.story-hero-img {
    background: linear-gradient(145deg, #7A9E6A, #1E5C32);
    border-radius: 6px;
    aspect-ratio: 4/5;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.story-chapter {
    padding: 6rem 5rem;
    position: relative;
}

.story-chapter:nth-child(even) {
    background: #fff;
}

.story-chapter:nth-child(odd) {
    background: var(--cream);
}

.chapter-inner {
    max-width: 900px;
    margin: 0 auto;
}

.chapter-num {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: -1.5rem;
    display: block;
}

.chapter-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.8rem;
}

.chapter-body {
    font-size: 1rem;
    line-height: 1.95;
    color: var(--text-soft);
}

.chapter-body p {
    margin-bottom: 1.2rem;
}

.chapter-body p:last-child {
    margin-bottom: 0;
}

.chapter-body strong {
    color: var(--text);
    font-weight: 700;
}

.chapter-body em {
    color: var(--green);
    font-style: italic;
}

.chapter-quote {
    background: var(--green);
    border-radius: 4px;
    padding: 2.5rem 3rem;
    margin: 2.5rem 0;
    position: relative;
}

.chapter-quote::before {
    content: '"';
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: -1.5rem;
    left: 1.5rem;
    line-height: 1;
}

.chapter-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    position: relative;
}

.chapter-quote cite {
    display: block;
    margin-top: 0.8rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-light);
    font-style: normal;
    font-weight: 700;
}

.chapter-imgs {
    display: grid;
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.chapter-imgs.cols-2 {
    grid-template-columns: 1fr 1fr;
}

.ch-img {
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(145deg, #9B7035, #3A2008);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.ch-img.tall {
    aspect-ratio: 3/4;
}

.ch-img.wide {
    aspect-ratio: 4/3;
}

.ch-img.green-grad {
    background: linear-gradient(145deg, var(--green-light), var(--green));
}

.ch-img.warm-grad {
    background: linear-gradient(145deg, #C08040, #6B3510);
}

.story-pain-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.pain-item {
    background: #fff;
    border-left: 3px solid var(--orange);
    padding: 1.2rem 1.4rem;
    border-radius: 0 4px 4px 0;
}

.pain-item.green {
    border-left-color: var(--green);
}

.pain-item .pi-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.pain-item.green .pi-label {
    color: var(--green);
}

.pain-item .pi-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-soft);
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 2rem 0;
    position: relative;
}

.journey-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.j-step {
    display: flex;
    gap: 1.5rem;
    padding: 1.2rem 0;
    position: relative;
}

.j-dot {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 0 0 4px var(--cream);
    position: relative;
    z-index: 1;
}

.j-step:nth-child(even) .j-dot {
    background: var(--gold);
    color: var(--dark);
}

.j-year {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.j-title {
    font-weight: 900;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.3rem;
}

.j-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-soft);
}

.story-closing {
    background: var(--dark);
    padding: 7rem 5rem;
    text-align: center;
}

.story-closing .closing-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: #fff;
    margin-bottom: 1.5rem;
}

.story-closing .closing-title em {
    color: var(--gold-light);
}

.story-closing p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.6);
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* ABOUT PAGE */
.about-hero {
    background: var(--dark);
    padding: 7rem 5rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 1.2rem;
}

.about-taglines {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tagline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
}

.tagline-item::before {
    content: '—';
    color: var(--gold);
    font-style: normal;
    font-size: 1rem;
}

.about-hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 1.8rem;
}

.about-card-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.about-card-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
}

.about-founder {
    padding: 7rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    background: #fff;
}

.founder-img-wrap {
    position: relative;
}

.founder-img-box {
    background: linear-gradient(145deg, var(--green-light), var(--green));
    border-radius: 6px;
    aspect-ratio: 3/4;
    width: 100%;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}

.founder-pull {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    border-radius: 4px;
    padding: 1.6rem;
    max-width: 195px;
    box-shadow: 0 12px 32px rgba(200, 144, 10, 0.3);
}

.founder-pull p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.98rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
}

.founder-pull cite {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: rgba(26, 18, 8, 0.6);
    font-style: normal;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
}

.founder-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    font-weight: 700;
    margin: 0.3rem 0 1.8rem;
}

.founder-bio {
    font-size: 0.97rem;
    line-height: 1.88;
    color: var(--text-soft);
    margin-bottom: 1rem;
}

.founder-bio strong {
    color: var(--text);
}

.founder-creds {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cred {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.84rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.cred-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    margin-top: 0.35rem;
}

.about-edge {
    padding: 6rem 5rem;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
}

.edge-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.edge-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.edge-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 3.5rem;
}

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

.edge-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
}

.edge-icon {
    font-size: 2.2rem;
    margin-bottom: 0.9rem;
}

.edge-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
}

.edge-desc {
    font-size: 0.84rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* PROGRAMS PAGE */
.programs-hero {
    background: var(--cream);
    padding: 6rem 5rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.programs-hero .section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 1rem;
}

.programs-hero p {
    font-size: 1rem;
    color: var(--text-soft);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.program-block {
    padding: 6rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.program-block:nth-child(even) {
    background: #fff;
}

.program-block:nth-child(odd) {
    background: var(--cream);
}

.program-block.reverse {
    direction: rtl;
}

.program-block.reverse>* {
    direction: ltr;
}

.program-icon-big {
    font-size: 4rem;
    margin-bottom: 1.2rem;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 1.2rem;
}

.program-body {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--text-soft);
    margin-bottom: 1.5rem;
}

.program-body strong {
    color: var(--text);
}

.program-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.program-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.program-items li::before {
    content: '✓';
    color: var(--green);
    font-weight: 900;
    flex-shrink: 0;
}

.program-img {
    background: linear-gradient(145deg, #9B7035, #3A2008);
    border-radius: 6px;
    aspect-ratio: 4/3;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.program-img.green {
    background: linear-gradient(145deg, var(--green-light), var(--green));
}

.program-img.warm {
    background: linear-gradient(145deg, #D4921A, #6B3510);
}

.program-img.dark {
    background: linear-gradient(145deg, #506070, #1A2530);
}

.program-img.gold {
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
}

/* INVOLVE PAGE */
.involve-hero {
    background: var(--green);
    padding: 7rem 5rem 5rem;
    text-align: center;
}

.involve-hero .section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 1rem;
}

.involve-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

.involve-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.involve-card {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2.5rem;
    transition: all 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.involve-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transition: height 0.2s;
}

.involve-card:nth-child(2)::before {
    background: var(--orange);
}

.involve-card:nth-child(3)::before {
    background: var(--green);
}

.involve-card:nth-child(4)::before {
    background: var(--gold);
}

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

.ic-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.ic-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.8rem;
}

.ic-body {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 1.5rem;
}

.ic-note {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: 1rem;
}

.sponsor-strip {
    background: var(--gold-pale);
    padding: 5rem;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.sponsor-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.sponsor-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
}

.sponsor-text {
    font-size: 0.97rem;
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 2rem;
}

.sponsor-tiers {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tier {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 0.6rem 1.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-soft);
}

/* CONTACT PAGE */
.contact-hero {
    background: var(--dark);
    padding: 7rem 5rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: 1.2rem;
}

.contact-intro {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ci-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.ci-value {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 2.5rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.8rem;
}

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

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

.form-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select option {
    background: var(--dark);
}

.form-group.full {
    grid-column: span 2;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.2s;
}

.form-submit:hover {
    background: var(--gold-light);
}

/* VISION PAGE */
.vision-hero {
    background: linear-gradient(135deg, var(--green) 0%, var(--dark) 100%);
    padding: 7rem 5rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-hero::before {
    content: '∞';
    font-size: 30rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.vision-hero .section-title {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin-bottom: 1.2rem;
    position: relative;
}

.vision-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
}

.vision-phases {
    padding: 6rem 5rem;
    background: #fff;
}

.vp-header {
    text-align: center;
    margin-bottom: 4rem;
}

.vp-header .section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 0.8rem;
}

.vp-header p {
    color: var(--text-soft);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.75;
}

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

.phase-card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.phase-head {
    padding: 2rem;
}

.phase-card:nth-child(1) .phase-head {
    background: var(--gold);
}

.phase-card:nth-child(2) .phase-head {
    background: var(--green);
}

.phase-card:nth-child(3) .phase-head {
    background: var(--dark);
}

.phase-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.phase-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 700;
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

.phase-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.phase-body {
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border);
    border-top: none;
}

.phase-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.phase-items li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.phase-items li::before {
    content: '→';
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
}

.vision-dream {
    background: var(--dark);
    padding: 7rem 5rem;
    text-align: center;
}

.dream-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    color: #fff;
    margin-bottom: 1.5rem;
}

.dream-title em {
    color: var(--gold-light);
}

.dream-body {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.65;
}

.dream-signed {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    font-weight: 700;
}

/* FOOTER */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3.5rem;
    padding: 4rem 5rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.f-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
}

.f-brand-name span {
    color: var(--gold);
}

.f-tagline {
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.35);
    margin: 0.3rem 0 1rem;
}

.f-mission {
    font-size: 0.82rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.4);
    max-width: 270px;
}

.f-col-title {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.f-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.f-links li a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.82rem;
    cursor: pointer;
    transition: color 0.2s;
}

.f-links li a:hover {
    color: var(--gold-light);
}

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

.f-copy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
}

.f-memorial {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.25);
}

.f-memorial span {
    color: var(--gold-light);
}

@media(max-width:960px) {
    .nav-inner {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero,
    .story-hero,
    .about-hero,
    .contact-hero,
    .about-founder,
    .program-block {
        grid-template-columns: 1fr;
    }

    .hero-left {
        clip-path: none;
        padding: 6rem 2rem 3rem;
    }

    .hero-right,
    .story-hero-img,
    .about-hero-right,
    .contact-form-wrap {
        display: none;
    }

    .home-why {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
    }

    .home-why-imgs {
        display: none;
    }

    .home-stats,
    .home-pillars,
    .home-cta,
    .story-chapter,
    .programs-hero,
    .involve-hero,
    .sponsor-strip,
    .vision-hero,
    .vision-phases,
    .vision-dream,
    .about-founder,
    .about-edge,
    .contact-hero,
    .footer-main,
    .footer-bottom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

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

    .edge-grid,
    .phases-grid {
        grid-template-columns: 1fr;
    }

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

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

    .story-pain-list {
        grid-template-columns: 1fr;
    }

    .chapter-imgs.cols-2 {
        grid-template-columns: 1fr;
    }

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

    .form-group.full {
        grid-column: span 1;
    }

    .program-block.reverse {
        direction: ltr;
    }

    .about-founder {
        padding: 4rem 1.5rem;
    }

    .founder-pull {
        display: none;
    }
}