/* =================================================================
   THE FIREPIT CHARITY CLUB — Master Stylesheet
   Palette: warm pink + ember red on cream
   ================================================================= */

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* Brand colors */
    --pink-50:  #fff1f4;
    --pink-100: #ffe0e8;
    --pink-200: #ffc4d2;
    --pink-300: #ff9eb4;
    --pink-400: #ff6b8f;
    --pink-500: #ec4076;   /* primary pink */
    --pink-600: #d12d65;
    --pink-700: #af1f53;

    --red-400: #f04444;
    --red-500: #dc2626;    /* ember red */
    --red-600: #b91c1c;
    --red-700: #8a1414;
    --red-900: #4a0808;

    --rose:    #f43f5e;
    --coral:   #ff7a59;
    --gold:    #f6b352;

    /* Neutrals */
    --cream-50:  #fffafa;
    --cream-100: #fff5f5;
    --cream-200: #fbe9e6;
    --warm-100:  #f9f1ee;
    --warm-200:  #efe2dd;

    --ink-900: #1a0e10;
    --ink-800: #2a1a1d;
    --ink-700: #3d2a2e;
    --ink-500: #5a484c;
    --ink-400: #7c6a6e;
    --ink-300: #a89a9d;
    --ink-200: #d8cccf;
    --ink-100: #ece3e5;

    /* Semantic */
    --bg:        var(--cream-100);
    --bg-alt:    var(--cream-50);
    --surface:   #ffffff;
    --text:      var(--ink-800);
    --text-soft: var(--ink-500);
    --border:    var(--ink-100);
    --primary:   var(--pink-500);
    --primary-d: var(--pink-600);
    --accent:    var(--red-500);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--pink-500) 0%, var(--red-500) 100%);
    --grad-soft:    linear-gradient(135deg, var(--pink-50) 0%, var(--cream-100) 100%);
    --grad-ember:   linear-gradient(160deg, var(--red-700) 0%, var(--red-500) 45%, var(--pink-500) 100%);
    --grad-dark:    linear-gradient(160deg, #2a0a12 0%, #4d0e1d 50%, #7a1530 100%);

    /* Shadows */
    --sh-sm: 0 2px 8px rgba(70, 8, 22, 0.06);
    --sh-md: 0 8px 24px rgba(70, 8, 22, 0.08);
    --sh-lg: 0 20px 50px rgba(70, 8, 22, 0.12);
    --sh-xl: 0 30px 80px rgba(70, 8, 22, 0.18);
    --sh-glow: 0 10px 40px rgba(236, 64, 118, 0.30);

    /* Type */
    --font-serif: "Playfair Display", "Georgia", serif;
    --font-sans:  "Inter", -apple-system, "Segoe UI", sans-serif;
    --font-script:"Caveat", "Brush Script MT", cursive;

    /* Layout */
    --container: 1240px;
    --radius-sm: 10px;
    --radius:    16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Motion */
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, picture, video { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--primary-d); }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 .5em; }
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

::selection { background: var(--pink-300); color: var(--red-900); }
:focus-visible { outline: 3px solid var(--pink-400); outline-offset: 3px; border-radius: 4px; }

/* ---------- CONTAINER ---------- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .01em;
    transition: all .35s var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.btn-lg { padding: 18px 34px; font-size: 16px; }
.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: var(--sh-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 50px rgba(220, 38, 38, .45);
    color: #fff;
}
.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-500), var(--pink-600));
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-ghost {
    color: #fff;
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.18);
    border-color: #fff;
    color: #fff;
}

.btn-pulse { animation: pulse-ring 2.5s var(--ease) infinite; }
@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 0 0 0 rgba(236, 64, 118, .55), var(--sh-glow); }
    50%      { box-shadow: 0 0 0 12px rgba(236, 64, 118, 0),   var(--sh-glow); }
}

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
    background: var(--grad-ember);
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}
.announcement-bar::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.15), transparent 40%);
}
.announcement-bar p {
    margin: 0;
    text-align: center;
    position: relative;
}
.announcement-bar i { margin-right: 8px; animation: flicker 2s infinite alternate; }
.announcement-bar a {
    color: #fff;
    margin-left: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.5);
    padding-bottom: 1px;
}
.announcement-bar a:hover { color: var(--pink-100); }

@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .8; transform: scale(1.1); }
}

/* ---------- HEADER ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 250, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: all .3s var(--ease);
}
.site-header.scrolled {
    background: rgba(255, 250, 250, 0.96);
    border-bottom-color: var(--ink-100);
    box-shadow: 0 4px 30px rgba(70, 8, 22, .06);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-900);
    text-decoration: none;
}
.brand-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(70, 8, 22, .12);
    transition: transform .4s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(-6deg) scale(1.08); }
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-text strong {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--ink-900);
}
.brand-text small {
    font-size: 11px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
}

.primary-nav ul {
    display: flex;
    gap: 6px;
}
.primary-nav a {
    display: block;
    padding: 10px 16px;
    color: var(--ink-700);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    position: relative;
    transition: all .3s var(--ease);
}
.primary-nav a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 2px;
    transition: width .35s var(--ease);
}
.primary-nav a:hover, .primary-nav a.active { color: var(--primary); }
.primary-nav a:hover::after, .primary-nav a.active::after { width: 20px; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--cream-200);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all .3s var(--ease);
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink-900);
    border-radius: 2px;
    transition: all .3s var(--ease);
}
.nav-toggle:hover { background: var(--pink-100); }

.nav-close { display: none; }
.nav-footer { display: none; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: kenburns 22s var(--ease) infinite alternate;
}
@keyframes kenburns {
    from { transform: scale(1) translate(0, 0); }
    to   { transform: scale(1.12) translate(-2%, -2%); }
}
.hero-gradient {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(26, 8, 14, .55) 0%, rgba(26, 8, 14, .35) 35%, rgba(122, 21, 48, .75) 100%),
        linear-gradient(110deg, rgba(220, 38, 38, .55) 0%, rgba(236, 64, 118, .25) 50%, transparent 100%);
}
.hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 12% 88%, rgba(246, 179, 82, .25), transparent 38%),
                      radial-gradient(circle at 92% 18%, rgba(236, 64, 118, .35), transparent 42%);
    mix-blend-mode: screen;
}

.hero-content {
    padding: 100px 24px 120px;
    max-width: 920px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, .9);
}
.eyebrow .dot {
    width: 8px; height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(246, 179, 82, .25);
    animation: dot-pulse 1.8s var(--ease) infinite;
}
@keyframes dot-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(246, 179, 82, .25); }
    50%      { box-shadow: 0 0 0 10px rgba(246, 179, 82, 0); }
}

.hero h1 {
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    font-weight: 800;
    margin: 24px 0 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}
.hero h1 .accent {
    background: linear-gradient(135deg, #ffd6e1 0%, var(--gold) 60%, #ffb7c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.hero-lead {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.65;
    max-width: 640px;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 38px;
    text-shadow: 0 2px 16px rgba(0,0,0,.3);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
}

.hero-trust {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .88);
}
.trust-item i {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 18px;
}
.trust-item strong { color: #fff; font-size: 14px; }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-indicator span {
    width: 4px; height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scroll-dot 1.6s var(--ease) infinite;
}
@keyframes scroll-dot {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

/* ---------- SECTION HEADS ---------- */
.section-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    padding-left: 38px;
}
.section-eyebrow::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 28px; height: 2px;
    background: var(--grad-primary);
    transform: translateY(-50%);
}
.section-eyebrow.light { color: var(--pink-200); }
.section-eyebrow.light::before { background: var(--pink-200); }

.section-title {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    margin-bottom: 18px;
}
.section-title.light { color: #fff; }
.section-title .script-accent {
    font-family: var(--font-script);
    color: var(--primary);
    font-weight: 600;
    font-size: 1.15em;
    font-style: normal;
    letter-spacing: 0;
}

.section-lead {
    font-size: 18px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 720px;
}
.section-lead.light { color: rgba(255,255,255,.85); }

.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-eyebrow { padding-left: 0; }
.section-head.center .section-eyebrow::before { display: none; }

/* ---------- IMPACT ---------- */
.impact {
    margin-top: -90px;
    position: relative;
    z-index: 5;
    padding: 0 0 80px;
}
.impact-grid {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--sh-xl);
    padding: 50px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    overflow: hidden;
}
.impact-grid::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: var(--grad-primary);
}
.impact-card {
    text-align: center;
    padding: 14px 10px;
    border-right: 1px solid var(--border);
}
.impact-card:last-child { border-right: 0; }
.impact-card i {
    font-size: 32px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px;
    display: inline-block;
}
.impact-number {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    font-weight: 800;
    color: var(--ink-900);
    line-height: 1;
    margin-bottom: 6px;
}
.impact-number::after { content: "+"; color: var(--primary); }
.impact-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 600;
}

/* ---------- ABOUT ---------- */
.about-section {
    padding: 90px 0 110px;
    background: var(--bg);
    position: relative;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.about-visual { position: relative; }
.visual-stack { position: relative; padding: 0 60px 60px 0; }
.visual-main {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--sh-lg);
}
.visual-accent {
    position: absolute;
    right: 0; bottom: 0;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 8px solid var(--cream-100);
    box-shadow: var(--sh-md);
}
.visual-badge {
    position: absolute;
    top: 30px; left: -30px;
    background: #fff;
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--sh-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
}
.visual-badge i {
    font-size: 28px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.visual-badge strong { display: block; font-family: var(--font-serif); font-size: 20px; color: var(--ink-900); line-height: 1; }
.visual-badge span { font-size: 12px; color: var(--text-soft); text-transform: uppercase; letter-spacing: .12em; }

.values-list {
    margin: 32px 0 36px;
    display: grid;
    gap: 14px;
}
.values-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    line-height: 1.55;
    color: var(--ink-700);
}
.values-list i {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    margin-top: 4px;
}

.about-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- PROGRAMS ---------- */
.programs-section {
    padding: 100px 0;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}
.programs-section::before {
    content: "";
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(236, 64, 118, .12), transparent 70%);
    border-radius: 50%;
}
.programs-section::after {
    content: "";
    position: absolute;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, .10), transparent 70%);
    border-radius: 50%;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
    z-index: 1;
}
.program-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: all .45s var(--ease);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.program-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sh-lg);
    border-color: transparent;
}
.program-card:hover::before { transform: scaleX(1); }

.program-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: var(--grad-primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    box-shadow: 0 8px 22px rgba(236, 64, 118, .35);
    transition: transform .5s var(--ease);
}
.program-card:hover .program-icon {
    transform: scale(1.08) rotate(-5deg);
}
.program-card h3 { font-size: 22px; margin-bottom: 10px; color: var(--ink-900); }
.program-card p { color: var(--text-soft); line-height: 1.65; margin-bottom: 20px; }
.program-meta {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: .04em;
}
.program-meta i { margin-right: 6px; }

/* ---------- STORY FEATURE ---------- */
.story-feature {
    padding: 110px 0;
    background: var(--grad-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.story-feature::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 30%, rgba(236, 64, 118, .25), transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(246, 179, 82, .18), transparent 55%);
}
.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.story-content h2 { color: #fff; font-style: italic; }
.story-quote {
    margin-top: 28px;
    font-family: var(--font-script);
    font-size: 28px;
    color: var(--pink-200);
}
.story-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--sh-xl);
}
.story-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.story-stat {
    position: absolute;
    bottom: 30px; left: 30px; right: 30px;
    background: rgba(255,255,255,.95);
    padding: 22px 28px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 18px;
}
.story-stat strong {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--primary);
    line-height: 1;
}
.story-stat span { color: var(--ink-700); font-weight: 500; line-height: 1.4; }

/* ---------- GET INVOLVED ---------- */
.involve-section {
    padding: 100px 0;
    background: var(--bg);
}
.involve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.involve-card {
    background: #fff;
    padding: 38px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all .45s var(--ease);
    position: relative;
    overflow: hidden;
}
.involve-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--sh-lg);
    border-color: var(--pink-200);
}
.involve-icon {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: var(--cream-200);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin: 0 auto 22px;
    transition: all .45s var(--ease);
}
.involve-card:hover .involve-icon {
    background: var(--grad-primary);
    color: #fff;
    transform: scale(1.08);
}
.involve-card h3 { font-size: 22px; margin-bottom: 10px; }
.involve-card p { color: var(--text-soft); font-size: 15px; min-height: 80px; margin-bottom: 22px; }
.involve-card .btn { width: 100%; justify-content: center; }

.involve-donate {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
}
.involve-donate h3, .involve-donate p { color: #fff; }
.involve-donate p { color: rgba(255,255,255,.92); }
.involve-donate .involve-icon { background: rgba(255,255,255,.22); color: #fff; }
.involve-donate .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.involve-donate .btn-primary::before { display: none; }
.involve-donate .btn-primary:hover { color: var(--primary-d); transform: translateY(-2px); }

/* ---------- EVENTS ---------- */
.events-section {
    padding: 100px 0;
    background: var(--bg-alt);
}
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.event-card {
    display: flex;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}
.event-date {
    flex-shrink: 0;
    width: 110px;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
}
.event-date .month {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
}
.event-date .day {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
}
.event-body {
    padding: 22px 24px;
    flex: 1;
}
.event-tag {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    padding: 3px 10px;
    background: var(--pink-50);
    border-radius: 999px;
}
.event-body h3 { font-size: 20px; margin-bottom: 12px; }
.event-body p {
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 4px;
}
.event-body p i {
    color: var(--primary);
    width: 14px;
    margin-right: 6px;
}
.event-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
}
.event-link i { transition: transform .3s var(--ease); }
.event-link:hover i { transform: translateX(4px); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
    padding: 100px 0;
    background:
        linear-gradient(180deg, var(--cream-100) 0%, var(--pink-50) 100%);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.testimonial {
    background: #fff;
    padding: 36px 32px;
    border-radius: var(--radius);
    box-shadow: var(--sh-sm);
    margin: 0;
    position: relative;
    transition: all .4s var(--ease);
}
.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh-lg);
}
.testimonial.featured {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: var(--sh-glow);
}
.testimonial.featured .quote-mark { color: rgba(255,255,255,.4); }
.testimonial.featured footer strong { color: #fff; }
.testimonial.featured footer span { color: rgba(255,255,255,.82); }
.quote-mark {
    font-size: 36px;
    color: var(--pink-200);
    margin-bottom: 14px;
    display: inline-block;
}
.testimonial p {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.55;
    color: inherit;
    font-style: italic;
    margin-bottom: 22px;
}
.testimonial footer { font-size: 14px; }
.testimonial footer strong { display: block; color: var(--ink-900); font-family: var(--font-sans); font-style: normal; }
.testimonial footer span { color: var(--text-soft); }

/* ---------- DONATE BANNER ---------- */
.donate-banner {
    position: relative;
    padding: 120px 0;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}
.donate-bg { position: absolute; inset: 0; z-index: -1; }
.donate-bg img { width: 100%; height: 100%; object-fit: cover; }
.donate-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(74, 8, 8, .92), rgba(175, 31, 83, .78));
}
.donate-content {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
}
.donate-content h2 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin: 18px 0 22px;
}
.donate-content h2 .accent {
    background: linear-gradient(135deg, var(--gold), #ffd6e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}
.donate-content p {
    font-size: 17px;
    color: rgba(255,255,255,.92);
    max-width: 640px;
    margin: 0 auto 36px;
}
.donate-amounts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}
.donate-amount {
    padding: 14px 26px;
    background: rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    transition: all .3s var(--ease);
    backdrop-filter: blur(10px);
}
.donate-amount:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-2px);
}
.donate-amount.featured {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--red-700);
}
.donate-amount.featured:hover { background: #fff; }
.donate-amount.custom { font-size: 14px; }

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
    padding: 90px 0;
    background: var(--bg);
}
.newsletter-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: var(--sh-md);
    position: relative;
    overflow: hidden;
}
.newsletter-wrap::before {
    content: "";
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(236, 64, 118, .15), transparent 70%);
    border-radius: 50%;
}
.newsletter-text p { color: var(--text-soft); margin: 0; }
.form-row {
    display: flex;
    gap: 10px;
    background: var(--cream-100);
    padding: 8px;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px var(--border);
}
.form-row input {
    flex: 1;
    padding: 16px 22px;
    border: 0;
    background: transparent;
    font-size: 15px;
    font-family: inherit;
    color: var(--ink-900);
}
.form-row input:focus { outline: none; }
.form-row .btn { padding: 12px 22px; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--text-soft); }
.form-note i { color: var(--primary); margin-right: 4px; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--grad-dark);
    color: rgba(255,255,255,.78);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-primary);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo {
    width: 70px; height: 70px;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0,0,0,.3);
    margin-bottom: 20px;
    object-fit: contain;
}
.footer-tagline {
    font-family: var(--font-serif);
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}
.footer-mission { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    transition: all .3s var(--ease);
}
.footer-socials a:hover {
    background: var(--grad-primary);
    transform: translateY(-3px);
    color: #fff;
    border-color: transparent;
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    transition: all .3s var(--ease);
    display: inline-block;
}
.footer-col a:hover { color: #fff; transform: translateX(4px); }

.contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}
.contact-list i {
    color: var(--pink-300);
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
}
.contact-list a { color: rgba(255,255,255,.85); }
.contact-list a:hover { color: var(--pink-200); }
.contact-list strong { color: #fff; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 30px;
    font-size: 13px;
    color: rgba(255,255,255,.56);
}
.footer-bottom p { margin: 0; }

/* ---------- TOAST ---------- */
.toast {
    position: fixed;
    bottom: 30px; right: 30px;
    padding: 16px 24px;
    background: var(--grad-primary);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--sh-lg);
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all .35s var(--ease);
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ---------- AOS Animations ---------- */
[data-aos] {
    opacity: 0;
    transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
    transition-delay: var(--aos-delay, 0ms);
}
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"]    { transform: scale(.92); }
[data-aos].aos-in {
    opacity: 1;
    transform: none;
}

/* ---------- INNER PAGE BANNERS ---------- */
.page-banner {
    position: relative;
    padding: 110px 0 90px;
    color: #fff;
    text-align: center;
    isolation: isolate;
}
.page-banner-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.page-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-banner-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(74, 8, 8, .88), rgba(175, 31, 83, .72));
}
.page-banner h1 {
    color: #fff;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    margin-bottom: 14px;
}
.page-banner p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: rgba(255,255,255,.9);
}
.crumbs {
    display: inline-flex;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    font-size: 13px;
    color: rgba(255,255,255,.85);
    margin-bottom: 22px;
}
.crumbs a { color: rgba(255,255,255,.85); }
.crumbs a:hover { color: #fff; }

/* ---------- PAGE GRID HELPERS ---------- */
.page-section { padding: 100px 0; }
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.team-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    transition: all .4s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.team-card img { width: 100%; height: 320px; object-fit: cover; }
.team-card-body { padding: 22px 24px; }
.team-card h3 { font-size: 20px; margin-bottom: 4px; }
.team-card .role {
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}
.team-card p { color: var(--text-soft); font-size: 14px; line-height: 1.6; }

.timeline { position: relative; padding-left: 40px; }
.timeline::before {
    content: "";
    position: absolute;
    left: 12px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--pink-300), var(--red-500));
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before {
    content: "";
    position: absolute;
    left: -34px; top: 8px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--grad-primary);
    box-shadow: 0 0 0 4px var(--cream-100);
}
.timeline-item .year {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    display: block;
}
.timeline-item h4 { font-size: 19px; margin-bottom: 6px; }
.timeline-item p { color: var(--text-soft); margin: 0; }

/* ---------- DONATE PAGE ---------- */
.donate-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--sh-lg);
    padding: 50px;
    max-width: 720px;
    margin: 0 auto;
}
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}
.amount-btn {
    padding: 24px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink-900);
    transition: all .3s var(--ease);
    cursor: pointer;
}
.amount-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.amount-btn.active {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--sh-glow);
}
.frequency-tabs {
    display: flex;
    background: var(--cream-100);
    padding: 6px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.frequency-tabs button {
    flex: 1;
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-soft);
    transition: all .3s var(--ease);
}
.frequency-tabs button.active {
    background: #fff;
    color: var(--primary);
    box-shadow: var(--sh-sm);
}
.field {
    margin-bottom: 18px;
}
.field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ink-700);
}
.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink-900);
    background: #fff;
    transition: all .25s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--pink-100);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.donate-side {
    background: var(--cream-100);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 22px;
    border-left: 4px solid var(--primary);
}
.donate-side h4 { font-size: 18px; margin-bottom: 10px; }
.donate-side ul { margin-top: 12px; }
.donate-side ul li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 8px;
    color: var(--text-soft);
    font-size: 14px;
}
.donate-side ul li i { color: var(--primary); margin-top: 4px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .programs-grid,
    .testimonials-grid,
    .events-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .involve-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-grid { gap: 48px; }
    .story-grid { gap: 48px; }
    .newsletter-wrap { padding: 40px; }
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 320px;
        max-width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 90px 30px 30px;
        box-shadow: -20px 0 60px rgba(70, 8, 22, .12);
        transition: right .4s var(--ease);
        z-index: 200;
        overflow-y: auto;
    }
    .primary-nav.open { right: 0; }
    .primary-nav ul {
        flex-direction: column;
        gap: 4px;
        margin-bottom: auto;
    }
    .primary-nav a {
        font-size: 18px;
        padding: 14px 0;
        border-radius: 0;
        border-bottom: 1px solid var(--border);
    }
    .primary-nav a::after { display: none; }
    .nav-close {
        display: block;
        position: absolute;
        top: 24px; right: 24px;
        font-size: 22px;
        color: var(--ink-900);
        width: 40px; height: 40px;
    }
    .nav-footer {
        display: block;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
        font-size: 13px;
        color: var(--text-soft);
    }
    .nav-footer p { margin-bottom: 6px; }
    .nav-footer i { color: var(--primary); margin-right: 8px; }

    .impact-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-card { border-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
    .impact-card:nth-child(3), .impact-card:nth-child(4) { border-bottom: 0; padding-bottom: 0; }

    .about-grid, .story-grid, .two-col { grid-template-columns: 1fr; gap: 50px; }
    .visual-stack { padding: 0 30px 30px 0; }
    .visual-main { height: 420px; }
    .visual-accent { width: 180px; height: 180px; }

    .newsletter-wrap { grid-template-columns: 1fr; gap: 30px; padding: 36px 28px; }

    .footer-grid { grid-template-columns: 1fr; gap: 36px; }

    .donate-form-card { padding: 30px; }
    .field-row, .amount-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .announcement-bar p { font-size: 13px; }
    .announcement-bar a { display: block; margin: 4px 0 0; }

    .hero { min-height: 80vh; }
    .hero-content { padding: 60px 24px 90px; }
    .hero h1 { font-size: 2.4rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { justify-content: center; }
    .hero-trust { gap: 18px; }
    .trust-item { font-size: 12px; }

    .impact { margin-top: -60px; padding-bottom: 50px; }
    .impact-grid { padding: 30px 16px; gap: 18px; }
    .impact-number { font-size: 1.8rem; }
    .impact-card p { font-size: 11px; }

    .section-head { margin-bottom: 36px; }

    .programs-grid, .testimonials-grid, .events-grid,
    .involve-grid, .team-grid { grid-template-columns: 1fr; }

    .program-card, .involve-card, .testimonial { padding: 26px 22px; }

    .story-visual img { height: 360px; }
    .story-stat { left: 14px; right: 14px; padding: 16px 18px; flex-direction: column; align-items: flex-start; gap: 4px; }
    .story-stat strong { font-size: 28px; }

    .donate-banner { padding: 80px 0; }
    .donate-amounts { gap: 8px; }
    .donate-amount { padding: 10px 16px; font-size: 14px; }

    .newsletter-wrap { padding: 30px 22px; }
    .form-row { flex-direction: column; padding: 12px; background: transparent; box-shadow: none; gap: 12px; }
    .form-row input { background: var(--cream-100); border-radius: 999px; }
    .form-row .btn { justify-content: center; }

    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-col a:hover { transform: none; }

    .donate-form-card { padding: 24px 20px; }
    .field-row, .amount-grid { grid-template-columns: 1fr; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    [data-aos] { opacity: 1; transform: none; }
}
