@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --sky: #0E1F2F;
    --hero-photo: url('assets/hero.jpg');
    --horizon: #1B3A52;
    --talons: #5B8A4F;
    --cream: #F0EBE1;
    --stone: #8A8279;
    --white: #FAFAF8;
    --feather: #D4C9B8;
    --alert: #8B1A1A;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--sky);
    color: var(--cream);
    min-height: 100vh;
}

/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(14,31,47,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(91,138,79,0.2);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.35rem;
    letter-spacing: 0.08em;
    color: var(--cream);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo span { color: var(--talons); }

.logo-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 0.2rem;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--feather);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 0.7rem;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--talons);
    background: rgba(91,138,79,0.08);
}

/* PAGES */
.page {
    display: none;
    padding-top: 80px;
    min-height: 100vh;
}

.page.active { display: block; }

/* HERO */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    background-color: var(--sky);
}

.hero-photo {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 42%;
    background-image: var(--hero-photo);
    background-size: cover;
    background-position: center 15%;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, var(--sky) 0%, var(--sky) 58%, rgba(14,31,47,0.85) 63%, rgba(14,31,47,0.5) 70%, rgba(14,31,47,0.2) 78%, rgba(14,31,47,0) 88%);
    z-index: 1;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(91,138,79,0.08) 0%, transparent 65%);
    pointer-events: none;
}

.hero-eyebrow, .hero h1, .hero-lead, .hero-cta {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--talons);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.16rem, 4.7vw, 4.23rem);
    line-height: 1.1;
    color: var(--white);
    max-width: 800px;
    margin-bottom: 1.8rem;
}

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

.hero-lead {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--feather);
    max-width: 620px;
    margin-bottom: 3rem;
    font-weight: 300;
}

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

.btn-primary {
    background: var(--talons);
    color: var(--sky);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: #d98f4a; transform: translateY(-1px); }

.btn-outline {
    border: 1px solid rgba(91,138,79,0.5);
    color: var(--talons);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
    background: transparent;
}

.btn-outline:hover { border-color: var(--talons); background: rgba(91,138,79,0.06); }

.hero-stat-row {
    margin-top: 5rem;
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(91,138,79,0.15);
    padding-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--talons);
    line-height: 1;
}

.hero-stat p {
    font-size: 0.78rem;
    color: var(--stone);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}

/* SECTION CONTAINERS */
.section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--talons);
    margin-bottom: 1rem;
}

.section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.section-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--feather);
    max-width: 700px;
    font-weight: 300;
}

/* DIVIDER */
.divider {
    border: none;
    border-top: 1px solid rgba(91,138,79,0.15);
    margin: 0 2rem;
}

/* CARD GRID */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--horizon);
    border: 1px solid rgba(91,138,79,0.12);
    padding: 2rem;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--feather);
    font-weight: 300;
}

/* QUOTE BLOCK */
.quote-block {
    border-left: 3px solid var(--talons);
    padding: 1.5rem 2rem;
    margin: 3rem 0;
    background: rgba(91,138,79,0.05);
}

.quote-block blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--cream);
}

.quote-block cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--stone);
    letter-spacing: 0.08em;
    font-style: normal;
}

/* TWO COLUMN */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

@media (max-width: 720px) {
    .two-col { grid-template-columns: 1fr; gap: 2rem; }
    .hero-stat-row { gap: 2rem; }
    nav { padding: 0 1rem; }
    .nav-links a { font-size: 0.68rem; padding: 0.3rem 0.4rem; }
}

.two-col-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.two-col-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--feather);
    margin-bottom: 1rem;
    font-weight: 300;
}

/* THREAT BOX */
.threat-box {
    background: rgba(139,26,26,0.12);
    border: 1px solid rgba(139,26,26,0.3);
    padding: 2rem;
    margin: 2rem 0;
}

.threat-box h4 {
    font-family: 'Playfair Display', serif;
    color: #e07070;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.threat-box p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--feather);
    font-weight: 300;
}

/* TEAM */
.mission-photo {
    width: 100%;
    max-width: 480px;
    max-height: 260px;
    object-fit: cover;
    border: 1px solid rgba(91,138,79,0.2);
    margin: 2.5rem auto 0.5rem;
    display: block;
}

.eyas-photo {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(91,138,79,0.2);
    margin: 2.5rem auto 0.5rem;
    display: block;
}

.mission-photo-caption {
    max-width: 480px;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--stone);
    margin: 0 auto 2.5rem;
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 4 / 3.5;
    object-fit: cover;
    border: 1px solid rgba(91,138,79,0.2);
}

.team-card {
    background: var(--horizon);
    border: 1px solid rgba(91,138,79,0.12);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
}

.team-card .role {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--talons);
}

.team-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--feather);
    font-weight: 300;
}

/* DONATION */
.donation-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.tier {
    border: 1px solid rgba(91,138,79,0.2);
    padding: 2rem;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

.tier:hover {
    border-color: var(--talons);
    background: rgba(91,138,79,0.06);
}

.tier.featured {
    border-color: var(--talons);
    background: rgba(91,138,79,0.06);
}

.tier h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--talons);
}

.tier p.tier-name {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin: 0.4rem 0 1rem;
}

.tier p.tier-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--feather);
    font-weight: 300;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(91,138,79,0.12);
    padding: 1.5rem 0;
}

.faq-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--feather);
    font-weight: 300;
}

/* CONTACT FORM */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--horizon);
    border: 1px solid rgba(91,138,79,0.2);
    color: var(--cream);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}

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

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

/* NEWS */
.news-item {
    border-bottom: 1px solid rgba(91,138,79,0.1);
    padding: 2.5rem 0;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 600px) {
    .news-item { grid-template-columns: 1fr; }
}

.news-date {
    font-size: 0.78rem;
    color: var(--talons);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 0.25rem;
}

.news-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.news-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--feather);
    font-weight: 300;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(91,138,79,0.12);
    padding: 3rem 2rem;
    text-align: center;
}

footer p {
    font-size: 0.82rem;
    color: var(--stone);
    line-height: 1.8;
}

footer a { color: var(--talons); text-decoration: none; }

.two-col-text a, .section-lead a, .card p a, .threat-box p a {
    color: var(--talons);
    text-decoration: underline;
    text-decoration-color: rgba(91,138,79,0.4);
    text-underline-offset: 2px;
}

.two-col-text a:hover, .section-lead a:hover, .card p a:hover, .threat-box p a:hover {
    text-decoration-color: var(--talons);
}

/* LIST STYLES */
.styled-list {
    list-style: none;
    margin: 1.5rem 0;
}

.styled-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--feather);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-weight: 300;
}

.styled-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--talons);
}

/* PAGE HEADER */
.page-header {
    padding: 4rem 2rem 2rem;
    border-bottom: 1px solid rgba(91,138,79,0.1);
    max-width: 1100px;
    margin: 0 auto;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1rem;
    color: var(--feather);
    max-width: 620px;
    line-height: 1.7;
    font-weight: 300;
}

/* ACCENT RULE */
.amber-rule {
    width: 60px;
    height: 2px;
    background: var(--talons);
    margin: 1.5rem 0;
}