/* ============================================
   FINEST GIRL NORTH CENTRAL
   MAIN STYLESHEET
   File: css/style.css
   ============================================ */

/* ============================================
   DESIGN TOKENS — DARK MODE (DEFAULT)
   ============================================ */
:root,
[data-theme="dark"] {
    /* Brand — Dark */
    --bg-0: #140904;
    --bg-1: #1A0F0A;
    --bg-2: #24140D;
    --bg-3: #321C12;
    --bg-4: #4A2A19;

    /* Gold */
    --gold: #C9A227;
    --gold-bright: #D4AF37;
    --gold-light: #E5C76B;
    --gold-soft: rgba(201, 162, 39, 0.15);

    /* Neutrals */
    --ivory: #F7F0E5;
    --ivory-dim: #E8DFCE;
    --neutral: #B9AA9B;
    --neutral-dim: #8A7B6C;

    /* Semantic */
    --text: var(--ivory);
    --text-muted: var(--neutral);
    --text-dim: var(--neutral-dim);
    --surface: var(--bg-1);
    --surface-alt: var(--bg-2);
    --surface-raised: var(--bg-3);
    --border: rgba(201, 162, 39, 0.18);
    --border-strong: rgba(201, 162, 39, 0.4);
    --overlay: rgba(20, 9, 4, 0.72);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55);
    --shadow-gold: 0 20px 60px rgba(201, 162, 39, 0.18);

    /* Type */
    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing scale */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 3rem;
    --space-6: 4rem;
    --space-7: 6rem;
    --space-8: 8rem;

    /* Radius */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --dur-fast: 250ms;
    --dur: 500ms;
    --dur-slow: 900ms;
}

/* LIGHT MODE OVERRIDES */
[data-theme="light"] {
    --bg-0: #F7F0E5;
    --bg-1: #FBF6ED;
    --bg-2: #F1E9DA;
    --bg-3: #E8DFCE;
    --bg-4: #D9CDB8;

    --gold: #A8871C;
    --gold-bright: #C9A227;
    --gold-light: #D4AF37;
    --gold-soft: rgba(168, 135, 28, 0.12);

    --ivory: #1A0F0A;
    --ivory-dim: #24140D;
    --neutral: #4A2A19;
    --neutral-dim: #6B4A31;

    --text: #1A0F0A;
    --text-muted: #4A2A19;
    --text-dim: #6B4A31;
    --surface: #FBF6ED;
    --surface-alt: #F1E9DA;
    --surface-raised: #FFFFFF;
    --border: rgba(168, 135, 28, 0.22);
    --border-strong: rgba(168, 135, 28, 0.45);
    --overlay: rgba(247, 240, 229, 0.82);

    --shadow-sm: 0 2px 8px rgba(74, 42, 25, 0.08);
    --shadow-md: 0 12px 40px rgba(74, 42, 25, 0.12);
    --shadow-lg: 0 30px 80px rgba(74, 42, 25, 0.15);
    --shadow-gold: 0 20px 60px rgba(168, 135, 28, 0.18);
}


/* ============================================
   BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg-1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--dur-fast) var(--ease);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
}

::selection {
    background: var(--gold);
    color: var(--bg-1);
}

/* Focus */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Grain */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1000;
    opacity: 0.035;
    mix-blend-mode: overlay;
    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='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ============================================
   UTILITIES
   ============================================ */
.section__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.eyebrow--gold { color: var(--gold); }
.eyebrow--center { display: block; text-align: center; }
.eyebrow--small { font-size: 10px; }

.section__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(2.25rem, 5.2vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: var(--space-4);
}
.section__title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}
.section__title--center { text-align: center; margin-left: auto; margin-right: auto; }


/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 1.05rem 2.1rem;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn--gold {
    background: var(--gold);
    color: var(--bg-1);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn--ghost:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}
.btn--lg { padding: 1.25rem 2.6rem; font-size: 13px; }
.btn--sm { padding: 0.75rem 1.4rem; font-size: 11px; }
.btn--full { width: 100%; }


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: background var(--dur-fast) var(--ease),
                backdrop-filter var(--dur-fast) var(--ease),
                padding var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    background: color-mix(in srgb, var(--bg-1) 82%, transparent);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    padding: 0.85rem 0;
    border-bottom-color: var(--border);
}
.nav__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    line-height: 1;
}
.nav__logo-mark {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--gold);
}
.nav__logo-sub {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.4;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}
.nav__link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 0.35rem 0;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--dur-fast) var(--ease);
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav__cta { padding: 0.85rem 1.6rem; font-size: 11px; }

.theme-toggle {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--dur-fast) var(--ease);
    position: relative;
    background: transparent;
}
.theme-toggle:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.theme-toggle__icon {
    width: 18px; height: 18px;
    position: absolute;
    transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
[data-theme="dark"] .theme-toggle__icon--sun { opacity: 1; transform: rotate(0); }
[data-theme="dark"] .theme-toggle__icon--moon { opacity: 0; transform: rotate(-90deg); }
[data-theme="light"] .theme-toggle__icon--sun { opacity: 0; transform: rotate(90deg); }
[data-theme="light"] .theme-toggle__icon--moon { opacity: 1; transform: rotate(0); }

.nav__burger {
    display: none;
    width: 36px; height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 4px;
}
.nav__burger span {
    width: 18px; height: 1.5px;
    background: var(--text);
    transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
    position: fixed;
    top: 0; right: 0;
    width: min(85vw, 380px);
    height: 100vh;
    background: var(--bg-2);
    border-left: 1px solid var(--border);
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    z-index: 99;
}
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile-link {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    padding: 0.6rem 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.nav__mobile-link:hover { color: var(--gold); }
.nav__mobile-cta { margin-top: 1.5rem; }


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-0) 0%, var(--bg-1) 45%, var(--bg-2) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 900px; height: 900px;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 60%);
    transform: translate(-30%, -50%);
    pointer-events: none;
}
.hero__particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, var(--gold) 50%, transparent),
        radial-gradient(1px 1px at 60% 70%, var(--gold-light) 50%, transparent),
        radial-gradient(1px 1px at 80% 20%, var(--gold) 50%, transparent),
        radial-gradient(1px 1px at 40% 80%, var(--gold-light) 50%, transparent),
        radial-gradient(1px 1px at 10% 60%, var(--gold) 50%, transparent);
    background-size: 800px 800px;
    opacity: 0.5;
    animation: driftParticles 40s linear infinite;
    pointer-events: none;
}
@keyframes driftParticles {
    from { background-position: 0 0, 100px 200px, 300px 500px, 500px 100px, 700px 400px; }
    to   { background-position: 200px 400px, 400px 500px, 500px 800px, 800px 300px, 900px 700px; }
}
.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.hero__content { position: relative; z-index: 3; }
.hero__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0.5rem 0 1.75rem;
    color: var(--text);
}
.hero__title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}
.hero__lede {
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2.25rem;
}
.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 3rem;
}
.hero__meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.hero__meta-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
}
.hero__meta-lbl {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.hero__meta-divider {
    width: 1px; height: 40px;
    background: var(--border-strong);
}

.hero__visual {
    position: relative;
    aspect-ratio: 4/5;
    max-height: 80vh;
}
.hero__halo {
    position: absolute;
    top: 50%; left: 50%;
    width: 90%; aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50%     { transform: translate(-50%, -50%) scale(1.08); opacity: 0.8; }
}
.hero__portrait {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-1) 100%);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.hero__portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.hero__portrait-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero__portrait-placeholder svg { width: 100%; height: 100%; }
.hero__portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, var(--bg-1) 100%);
    pointer-events: none;
    opacity: 0.7;
}
.hero__float-label {
    position: absolute;
    bottom: 1.5rem; left: -1rem;
    z-index: 3;
    background: var(--bg-2);
    border: 1px solid var(--border-strong);
    padding: 0.9rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-md);
}
.hero__float-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 500;
}
.hero__float-text {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.5;
}
.hero__scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 3;
}
.hero__scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================
   STORY
   ============================================ */
.story {
    padding: clamp(5rem, 12vw, 9rem) 0;
    background: var(--bg-1);
}
.story__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2.5rem, 7vw, 6rem);
    align-items: center;
}
.story__visual { position: relative; }
.story__frame {
    position: relative;
    aspect-ratio: 4/5;
    border: 1px solid var(--border-strong);
    padding: 1rem;
}
.story__image {
    width: 100%;
    height: 100%;
    background: var(--bg-3);
    overflow: hidden;
    position: relative;
}
.story__image img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.story__image-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-1) 100%);
    color: var(--text-muted);
    text-align: center;
    padding: 1rem;
}
.story__image-placeholder span {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.story__image-placeholder small {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.story__frame-accent {
    position: absolute;
    right: -18px; bottom: -18px;
    width: 65%; height: 65%;
    border: 1px solid var(--gold);
    z-index: -1;
}
.story__caption {
    display: block;
    margin-top: 1.25rem;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
}
.story__body p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    max-width: 560px;
}
.story__body strong {
    color: var(--gold);
    font-weight: 500;
}
.story__signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--gold);
}
.story__sig-line {
    width: 60px; height: 1px;
    background: var(--gold);
}


/* ============================================
   CAUSE + MAP
   ============================================ */
.cause {
    padding: clamp(5rem, 12vw, 9rem) 0;
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
}
.cause__header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4rem;
}
.cause__lede {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto;
}
.cause__map-wrap {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 4px;
}
.cause__map {
    width: 100%;
    aspect-ratio: 6/5;
    position: relative;
}
.cause__map-svg { width: 100%; height: 100%; }
.lga-dot {
    fill: var(--gold);
    cursor: pointer;
    transition: fill var(--dur-fast) var(--ease), r var(--dur-fast) var(--ease);
    filter: drop-shadow(0 0 4px var(--gold));
    animation: pulseDot 3s ease-in-out infinite;
}
.lga-dot:nth-child(3n)  { animation-delay: 0.4s; }
.lga-dot:nth-child(3n+1){ animation-delay: 0.9s; }
.lga-dot:nth-child(3n+2){ animation-delay: 1.5s; }
.lga-dot:hover {
    fill: var(--gold-light);
    r: 8;
}
@keyframes pulseDot {
    0%,100% { opacity: 0.7; }
    50%     { opacity: 1; }
}
.cause__legend-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 500;
    line-height: 1.15;
    margin: 0.5rem 0 1rem;
}
.cause__legend-title em { color: var(--gold); font-style: italic; }
.cause__legend-text {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}


/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: clamp(5rem, 12vw, 9rem) 0;
    background: var(--bg-1);
}
.gallery__header {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1rem;
}
.gallery__item {
    overflow: hidden;
    background: var(--bg-3);
    position: relative;
    border: 1px solid var(--border);
    transition: transform var(--dur) var(--ease);
}
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__img-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
    color: var(--text-dim);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
}


/* ============================================
   IMPACT
   ============================================ */
.impact {
    padding: clamp(6rem, 14vw, 11rem) 0;
    background:
        radial-gradient(circle at 50% 0%, var(--gold-soft), transparent 60%),
        var(--bg-0);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.impact__hero {
    margin: 2rem 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.impact__mega {
    display: block;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(9rem, 24vw, 20rem);
    line-height: 0.9;
    color: var(--gold);
    letter-spacing: -0.03em;
    text-shadow: 0 20px 80px var(--gold-soft);
}
.impact__mega-lbl {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text);
}
.impact__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 3vw, 3rem);
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}
.impact__pillar {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.impact__pillar-lbl {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.impact__pillar-val {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--gold);
    font-weight: 500;
    font-style: italic;
}


/* ============================================
   WHY
   ============================================ */
.why {
    padding: clamp(5rem, 12vw, 9rem) 0;
    background: var(--bg-1);
}
.why__header { margin-bottom: 3.5rem; }
.why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.why__card {
    padding: 2.25rem 1.85rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    transition: transform var(--dur) var(--ease), border-color var(--dur-fast) var(--ease);
    position: relative;
}
.why__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--dur) var(--ease);
}
.why__card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}
.why__card:hover::before { width: 100%; }
.why__icon {
    width: 48px; height: 48px;
    color: var(--gold);
    margin-bottom: 1.4rem;
}
.why__icon svg { width: 100%; height: 100%; }
.why__title {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0.6rem;
}
.why__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ============================================
   SUPPORT
   ============================================ */
.support {
    padding: clamp(6rem, 14vw, 10rem) 0;
    background:
        radial-gradient(circle at 50% 100%, var(--gold-soft), transparent 55%),
        var(--bg-0);
    text-align: center;
}
.support__inner {
    max-width: 780px;
    margin: 0 auto;
}
.support__lede {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}
.support__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.support__quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.35rem;
    color: var(--gold);
    max-width: 500px;
    margin: 0 auto;
}


/* ============================================
   QUOTE SECTION
   ============================================ */
.quote-section {
    position: relative;
    padding: clamp(6rem, 14vw, 11rem) 0;
    background: var(--bg-0);
    overflow: hidden;
}
.quote-section__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-0) 60%);
    background-size: cover;
    background-position: center;
    opacity: 0.55;
}
.quote-section__bg[style*="url"] { opacity: 0.35; }
.quote-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-0) 0%, transparent 40%, transparent 60%, var(--bg-0) 100%);
}
.quote-section .section__container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    text-align: center;
}
.quote-section__quote {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.9rem, 4.5vw, 3.4rem);
    line-height: 1.3;
    color: var(--text);
    position: relative;
    margin-bottom: 1.5rem;
}
.quote-section__quote em { color: var(--gold); font-style: italic; }
.quote-section__mark {
    display: block;
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gold);
    line-height: 0.4;
    margin-bottom: 1rem;
}
.quote-section__cite {
    display: block;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}


/* ============================================
   PARTNERSHIP
   ============================================ */
.partnership {
    padding: clamp(5rem, 12vw, 9rem) 0;
    background: var(--bg-1);
}
.partnership__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}
.partnership__text {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.partnership__list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
}
.partnership__list li {
    font-size: 0.95rem;
    color: var(--text);
    padding-left: 1.25rem;
    position: relative;
}
.partnership__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.65em;
    width: 8px; height: 1px;
    background: var(--gold);
}
.partnership__form {
    background: var(--bg-2);
    padding: clamp(1.8rem, 4vw, 2.5rem);
    border: 1px solid var(--border);
}
.partnership__form-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 1.5rem;
}


/* ============================================
   FORMS
   ============================================ */
.form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
}
.form__field label {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}
.form__field input,
.form__field textarea,
.form__field select {
    background: var(--bg-1);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.85rem 1rem;
    border-radius: 2px;
    transition: border-color var(--dur-fast) var(--ease);
    font-size: 14px;
    width: 100%;
}
.form__field input:focus,
.form__field textarea:focus,
.form__field select:focus {
    outline: none;
    border-color: var(--gold);
}
.form__field textarea { resize: vertical; min-height: 100px; }
.form__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A227' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form__status {
    margin-top: 1rem;
    font-size: 13px;
    text-align: center;
    min-height: 20px;
}
.form__status.is-success { color: var(--gold-light); }
.form__status.is-error { color: #E85D5D; }


/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: clamp(5rem, 12vw, 9rem) 0;
    background: var(--bg-0);
    text-align: center;
}
.contact__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
    text-align: left;
}
.contact__card {
    display: block;
    padding: 2rem 1.75rem;
    background: var(--bg-2);
    border: 1px solid var(--border);
    transition: transform var(--dur) var(--ease), border-color var(--dur-fast) var(--ease);
    position: relative;
    overflow: hidden;
}
.contact__card::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--dur) var(--ease);
}
.contact__card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}
.contact__card:hover::before { transform: scaleY(1); }
.contact__label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.contact__number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.35rem;
}
.contact__note {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.contact__card--wa .contact__number {
    color: var(--text);
}
.contact__card--wa::before { background: #25D366; }


/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 5rem 0 2rem;
    background: var(--bg-0);
    border-top: 1px solid var(--border);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__logo {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.03em;
}
.footer__brand-text {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.7;
}
.footer__queen {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--text);
    margin-top: 0.5rem;
}
.footer__tag {
    font-family: var(--font-display);
    color: var(--gold);
    font-style: italic;
}
.footer__col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col-title {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.footer__col a {
    font-size: 14px;
    color: var(--text);
}
.footer__col a:hover { color: var(--gold); }
.footer__mission {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}
.footer__admin {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim);
    opacity: 0.5;
}
.footer__admin:hover { color: var(--gold); opacity: 1; }


/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-cta {
    display: none;
    position: fixed;
    left: 1rem; right: 1rem; bottom: 1rem;
    z-index: 90;
    padding: 1.1rem 1.5rem;
    background: var(--gold);
    color: var(--bg-1);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-align: center;
    box-shadow: var(--shadow-md);
}


/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal.is-open { display: flex; }
.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
}
.modal__panel {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--border);
    padding: 2.5rem;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.modal__close {
    position: absolute;
    top: 1rem; right: 1rem;
    width: 36px; height: 36px;
    font-size: 24px;
    color: var(--text);
    border-radius: 50%;
    transition: background var(--dur-fast) var(--ease);
}
.modal__close:hover { background: var(--bg-3); color: var(--gold); }
.modal__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--text);
    margin: 0.5rem 0 0.5rem;
}
.modal__lede {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.donate__amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.donate__amount {
    padding: 0.9rem 0.5rem;
    background: var(--bg-1);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all var(--dur-fast) var(--ease);
}
.donate__amount:hover,
.donate__amount.is-active {
    background: var(--gold);
    color: var(--bg-1);
    border-color: var(--gold);
}
.donate__gateways {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
}
.donate__note {
    margin-top: 1rem;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}


/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 120ms; }
.reveal--delay-2 { transition-delay: 240ms; }
.reveal--delay-3 { transition-delay: 360ms; }
.reveal--delay-4 { transition-delay: 480ms; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__container { grid-template-columns: 1fr; }
    .hero__visual {
        max-width: 480px;
        margin: 0 auto;
        aspect-ratio: 4/5;
    }
    .story__grid { grid-template-columns: 1fr; gap: 3rem; }
    .story__visual { max-width: 460px; margin: 0 auto; }
    .cause__map-wrap { grid-template-columns: 1fr; }
    .partnership__grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery__item--wide { grid-column: span 2; }
    .gallery__item--tall { grid-row: span 1; }
}

@media (max-width: 768px) {
    html { scroll-padding-top: 70px; }
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .hero { padding: 7rem 0 3rem; min-height: auto; }
    .hero__title { font-size: clamp(2.75rem, 12vw, 4rem); }
    .hero__meta-num { font-size: 2rem; }
    .hero__float-label { bottom: 0.5rem; left: -0.5rem; padding: 0.7rem 0.9rem; }
    .hero__scroll { display: none; }
    .impact__pillars { grid-template-columns: 1fr; gap: 2rem; }
    .form__row { grid-template-columns: 1fr; }
    .partnership__list { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .mobile-cta { display: block; }
    body { padding-bottom: 5rem; }
    .donate__amounts { grid-template-columns: repeat(2, 1fr); }
    .modal__panel { padding: 1.75rem; }
    .quote-section__quote { font-size: clamp(1.5rem, 6vw, 2rem); }
    .quote-section__mark { font-size: 4rem; }
}

@media (max-width: 480px) {
    .nav__logo-sub { display: none; }
    .btn { padding: 0.95rem 1.5rem; font-size: 11px; }
    .btn--lg { padding: 1.1rem 1.8rem; font-size: 12px; }
    .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .gallery__item--wide { grid-column: span 1; }
}


/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}