/* ============================================================
   LOWER THE BARRIER COLORADO — Editorial Redesign
   Fonts: Playfair Display (display) + Source Serif 4 (body)
   Palette: White / Ink / Forest Green / Warm Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,400&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* ── CSS Variables ── */
:root {
    --white:   #ffffff;
    --off:     #f7f5f2;
    --ink:     #111111;
    --muted:   #555555;
    --rule:    #e0dbd4;
    --green:   #2A402E;
    --green-l: #3d5c42;
    --gold:    #C9973A;
    --gold-l:  #e0b050;
    --radius:  4px;
    --max:     1120px;
    --serif:   'Playfair Display', Georgia, serif;
    --body:    'Source Serif 4', Georgia, serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--body);
    font-weight: 400;
    line-height: 1.75;
    background: var(--white);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 1;
    transform: none;
}

/* ── Container ── */
.container { width: 92%; max-width: var(--max); margin: 0 auto; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    width: 92%;
    max-width: var(--max);
    margin: 0 auto;
}
.branding {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.header-logo { height: 38px; width: auto; }
.branding-text {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.branding-text span { color: var(--green); }

nav ul { list-style: none; display: flex; align-items: center; gap: 2px; }
nav ul li a {
    font-family: var(--body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 6px 12px;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
    display: block;
}
nav ul li a:hover, nav ul li.current a {
    color: var(--green);
    background: #f0f5f1;
}
nav ul li.nav-cta a {
    background: var(--green);
    color: var(--white);
    padding: 7px 16px;
}
nav ul li.nav-cta a:hover {
    background: var(--green-l);
    color: var(--white);
}
/* Hide Advocacy nav item (header + footer) */
nav ul li a[href*="advocacy"],
nav ul li:has(a[href*="advocacy"]),
.footer-nav-col li a[href*="advocacy"],
.footer-nav-col li:has(a[href*="advocacy"]) { display: none; }

/* ============================================================
   HERO — Full-screen centered
   ============================================================ */
.hero {
    position: relative;
    height: 100svh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 192px; /* 72px header + 120px breathing room */
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        url('https://images.unsplash.com/photo-1579802952315-9033c467c699?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&w=1600') center/cover no-repeat;
}
/* Multi-layer overlay: dark vignette + green tint at bottom */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0,0,0,0.30) 0%,
            rgba(0,0,0,0.50) 50%,
            rgba(20,36,22,0.72) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
    max-width: 860px;
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: none; }
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    opacity: 0.9;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--white);
    opacity: 0.5;
}
.hero h1 {
    font-family: var(--serif);
    font-size: clamp(52px, 8.5vw, 108px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold-l);
    display: block;
}
.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.65;
    opacity: 0.88;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bobble 2s ease-in-out infinite;
}
.hero-scroll-cue svg {
    width: 18px; height: 18px;
    stroke: rgba(255,255,255,0.45);
    fill: none;
    stroke-width: 2;
}
@keyframes bobble {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: all 0.22s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1;
}
.btn-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-primary:hover {
    background: var(--gold-l); border-color: var(--gold-l);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,151,58,0.35);
}
.btn-outline-white {
    background: transparent; color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}
.btn-green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-green:hover {
    background: var(--green-l); border-color: var(--green-l);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42,64,46,0.25);
}
.btn-outline-green {
    background: transparent; color: var(--green); border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: var(--white); }

/* ============================================================
   PAGE SECTIONS
   ============================================================ */
section.page-section { padding: 96px 0; }
section.page-section.bg-off { background: var(--off); }
section.page-section.bg-green { background: var(--green); color: var(--white); }

.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.section-label::before {
    content: ''; display: block;
    width: 28px; height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}
.bg-green .section-label { color: var(--gold-l); }
.bg-green .section-label::before { background: var(--gold-l); }

.section-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4.5vw, 54px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
    color: var(--ink);
}
.bg-green .section-title { color: var(--white); }

.section-lead {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--muted);
    max-width: 600px;
    margin-bottom: 52px;
}
.bg-green .section-lead { color: rgba(255,255,255,0.72); }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 64px;
}
.stat-item { background: var(--white); padding: 40px 28px; text-align: center; }
.stat-number {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: var(--green);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    display: block;
}
.stat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ============================================================
   COLORADO GIVES DAY CARD — Full-width split layout
   ============================================================ */
.gives-section {
    background: var(--white);
    padding: 96px 0;
}
.gives-inner {
    width: 92%;
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--rule);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,0.08);
}
/* Left: headline + description */
.gives-left {
    background: var(--green);
    color: var(--white);
    padding: 64px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gives-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-l);
    border: 1px solid rgba(201,151,58,0.5);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 28px;
}
.gives-left h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}
.gives-left h2 em {
    font-style: italic;
    color: var(--gold-l);
}
.gives-left p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.78;
    margin-bottom: 36px;
    max-width: 380px;
}
.gives-left .gives-cta {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 15px 36px;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}
.gives-left .gives-cta:hover {
    background: var(--gold-l);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,151,58,0.4);
}
/* Right: tier cards */
.gives-right {
    background: var(--white);
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}
.gives-right-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.tier {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 8px;
    border: 1px solid;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}
.tier:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.tier-blue  { background: #EFF6FF; border-color: #BFDBFE; }
.tier-teal  { background: #F0FDFA; border-color: #A7F3D0; }
.tier-amber { background: #FFF7ED; border-color: #FED7AA; }
.tier-amount {
    flex-shrink: 0; width: 72px; height: 72px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.tier-blue  .tier-amount { background: #DBEAFE; }
.tier-teal  .tier-amount { background: #CCFBF1; }
.tier-amber .tier-amount { background: #FFEDD5; }
.tier-amount span {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 900;
}
.tier-blue  .tier-amount span { color: #1E40AF; }
.tier-teal  .tier-amount span { color: #047857; }
.tier-amber .tier-amount span { color: #9A3412; }
.tier-desc {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--ink);
}
.tier-desc span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
    margin-top: 3px;
}
.gives-note {
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    margin-top: 4px;
}
/* Responsive */
@media (max-width: 820px) {
    .gives-inner {
        grid-template-columns: 1fr;
    }
    .gives-left {
        padding: 48px 32px;
    }
    .gives-right {
        padding: 40px 32px;
    }
}

/* ============================================================
   PROSE CONTENT
   ============================================================ */
.prose h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 48px; margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
}
.prose h3:first-child { margin-top: 0; }
.prose h4 {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--green);
    margin-top: 28px; margin-bottom: 10px;
}
.prose p {
    font-size: 17px; line-height: 1.82;
    color: #2d2d2d; margin-bottom: 18px;
}
.prose a { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; font-weight: 600; }
.prose a:hover { color: var(--gold); }
.prose ul { padding-left: 22px; margin-bottom: 18px; }
.prose ul li { font-size: 16px; line-height: 1.78; color: #2d2d2d; margin-bottom: 7px; }

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    margin-top: 8px;
}
.card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 32px 28px;
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--green);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
}
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.card:hover::before { transform: scaleX(1); }
.card-icon { font-size: 30px; margin-bottom: 16px; }
.card h3 {
    font-family: var(--serif);
    font-size: 20px; font-weight: 700;
    color: var(--ink); margin-bottom: 10px; line-height: 1.25;
}
.card p { font-size: 15px; line-height: 1.7; color: var(--muted); }
.card ul { padding-left: 18px; margin-top: 10px; }
.card ul li { font-size: 14px; color: var(--muted); margin-bottom: 4px; line-height: 1.6; }

/* ============================================================
   TRAINING TABLE
   ============================================================ */
.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--rule);
    border-radius: 8px;
    margin-bottom: 40px;
}
.training-table { width: 100%; border-collapse: collapse; }
.training-table th {
    background: var(--green); color: var(--white);
    font-family: var(--body);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 16px 20px; text-align: left; white-space: nowrap;
}
.training-table td {
    padding: 16px 20px; font-size: 15px;
    line-height: 1.55; color: var(--ink);
    border-bottom: 1px solid var(--rule);
    vertical-align: top;
}
.training-table tbody tr:last-child td { border-bottom: none; }
.training-table tbody tr:hover td { background: var(--off); }

.table-state { padding: 48px 24px; text-align: center; color: var(--muted); }
.loading-spinner {
    display: inline-block; width: 32px; height: 32px;
    border: 3px solid var(--rule); border-top-color: var(--green);
    border-radius: 50%; animation: spin 0.85s linear infinite;
    margin-bottom: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 14px;
}
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3; background: var(--off);
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

/* ============================================================
   EVENTS
   ============================================================ */
.events-list {
    display: flex; flex-direction: column;
    gap: 1px; border: 1px solid var(--rule);
    border-radius: 8px; overflow: hidden;
}
.event-item { display: flex; background: var(--white); transition: background 0.2s; }
.event-item:hover { background: var(--off); }
.event-date-col {
    background: var(--green); color: var(--white);
    padding: 28px 22px; min-width: 84px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; flex-shrink: 0;
}
.event-month { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.75; }
.event-day { font-family: var(--serif); font-size: 36px; font-weight: 900; line-height: 1; }
.event-body { padding: 28px 30px; border-bottom: 1px solid var(--rule); flex: 1; }
.event-item:last-child .event-body { border-bottom: none; }
.event-body h4 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.event-location { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.event-body p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted);
}
.contact-form input,
.contact-form textarea {
    font-family: var(--body); font-size: 16px;
    color: var(--ink); background: var(--white);
    border: 1px solid var(--rule); border-radius: var(--radius);
    padding: 13px 16px; width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(42,64,46,0.1);
}
.contact-form textarea { resize: vertical; min-height: 160px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #bbb; }
.contact-sidebar h3 {
    font-family: var(--serif); font-size: 22px; font-weight: 700;
    color: var(--ink); margin-bottom: 20px;
    padding-bottom: 14px; border-bottom: 1px solid var(--rule);
}
.contact-detail { margin-bottom: 16px; font-size: 16px; color: var(--muted); line-height: 1.6; }
.contact-detail strong {
    color: var(--ink); font-weight: 700; display: block;
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 0.09em; margin-bottom: 3px;
}

/* ============================================================
   DONATE
   ============================================================ */
.donate-intro p {
    font-size: 17px; line-height: 1.85;
    color: #2d2d2d; margin-bottom: 16px;
}
.donate-options {
    list-style: none; padding: 0;
    border: 1px solid var(--rule); border-radius: 8px;
    overflow: hidden; margin-bottom: 40px;
}
.donate-options li {
    padding: 20px 26px; border-bottom: 1px solid var(--rule);
    font-size: 16px; line-height: 1.65;
    display: flex; align-items: flex-start;
    gap: 14px; color: #2d2d2d;
    transition: background 0.15s;
}
.donate-options li:last-child { border-bottom: none; }
.donate-options li:hover { background: var(--off); }
.donate-options li::before {
    content: '✦'; color: var(--gold);
    flex-shrink: 0; font-size: 13px; margin-top: 4px;
}
.donate-options a {
    color: var(--green);
    text-decoration: underline; text-decoration-thickness: 1px;
    text-underline-offset: 3px; font-weight: 600;
}
.donate-cta-block {
    text-align: center; padding: 64px 40px;
    background: var(--green); border-radius: 12px;
    color: var(--white); margin-top: 16px;
}
.donate-cta-block h3 {
    font-family: var(--serif); font-size: 38px; font-weight: 900;
    margin-bottom: 14px; letter-spacing: -0.025em;
}
.donate-cta-block p {
    font-size: 17px; opacity: 0.78; margin-bottom: 32px;
    max-width: 380px; margin-left: auto; margin-right: auto;
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex; justify-content: center; align-items: center;
    z-index: 9000; backdrop-filter: blur(3px);
}
.modal {
    background: var(--white); border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.2);
    width: 90%; max-width: 480px; overflow: hidden;
}
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 28px; border-bottom: 1px solid var(--rule);
}
.modal-header h2 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--ink); }
.close-modal {
    font-size: 26px; line-height: 1; color: var(--muted);
    cursor: pointer; transition: color 0.2s;
    background: none; border: none; font-family: inherit;
}
.close-modal:hover { color: var(--ink); }
.modal-body { padding: 28px 28px 20px; font-size: 16px; line-height: 1.72; color: #333; }
.modal-footer { padding: 16px 28px 24px; display: flex; justify-content: flex-end; gap: 10px; }
.modal-btn {
    font-family: var(--body); font-size: 13px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 11px 24px; border-radius: var(--radius);
    cursor: pointer; border: none; text-decoration: none;
    display: inline-block; transition: all 0.2s;
}
.modal-btn.cancel { background: var(--off); color: var(--muted); }
.modal-btn.cancel:hover { background: var(--rule); color: var(--ink); }
.modal-btn.continue { background: var(--gold); color: var(--ink); }
.modal-btn.continue:hover { background: var(--gold-l); transform: translateY(-1px); }

/* ============================================================
   VIDEO
   ============================================================ */
.video-placeholder {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: var(--off); border: 2px dashed var(--rule);
    border-radius: 8px; padding: 56px 24px;
    text-decoration: none; transition: background 0.2s; gap: 14px;
    margin-bottom: 40px;
}
.video-placeholder:hover { background: #eeebe6; }
.play-icon {
    width: 60px; height: 60px; background: var(--green);
    color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.video-placeholder span { font-weight: 600; font-size: 16px; color: var(--green); }

/* ============================================================
   EVENTS LIST (Advocacy Calendar - Grid View)
   ============================================================ */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.event-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 20px 24px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.event-item:hover {
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.event-date-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
    background: var(--green);
    border-radius: 6px;
    padding: 8px 4px;
    color: var(--white);
}
.event-month {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}
.event-day {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    font-family: var(--serif);
}
.event-body h4 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.event-location {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
}
.event-body p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.6;
    margin: 0;
}
/* ============================================================
   FOOTER — 4-column layout
   ============================================================ */
footer {
    background: #0f1923;
    color: rgba(255,255,255,0.5);
    padding: 64px 0 0;
}
.footer-inner {
    width: 92%;
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

/* Col 1 — Brand */
.footer-brand-col {}
.footer-logo {
    height: 40px !important;
    max-width: 40px !important;
    width: auto !important;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
}
.footer-brand-name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.45);
    max-width: 280px;
}

/* Col headers */
.footer-col-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
}

/* Col 2 — Navigation */
.footer-nav-col {}
.footer-nav-col ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-nav-col ul li a {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
    text-decoration: none;
}
.footer-nav-col ul li a:hover { color: var(--white); }
.footer-nav-col ul li a.footer-highlight {
    color: var(--gold);
    font-weight: 600;
}
.footer-nav-col ul li a.footer-highlight:hover { color: var(--gold-l); }

/* Col 3 — Contact */
.footer-contact-col {}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.55;
}
.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-icon {
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--gold);
}

/* Col 4 — Follow */
.footer-social-col {}
.footer-social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}
.footer-social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.footer-social-icons a:hover {
    background: var(--green);
    color: var(--white);
}
.footer-motto {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    line-height: 1.65;
    max-width: 200px;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0;
}
.footer-bottom-inner {
    width: 92%;
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.25);
}
.footer-bottom-inner a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-inner a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media (max-width: 560px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .header-inner { flex-direction: column; height: auto; padding: 14px 0; gap: 8px; }
    nav ul { flex-wrap: wrap; justify-content: center; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
    section.page-section { padding: 64px 0; }
    .hero { min-height: 72vh; }
    .hero h1 { font-size: 40px; }
    .stat-strip { grid-template-columns: repeat(2, 1fr); }
    .gives-card-body { padding: 24px 18px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .donate-cta-block { padding: 40px 20px; }
    .donate-cta-block h3 { font-size: 28px; }
    .training-table thead { display: none; }
    .training-table tbody tr {
        display: block; margin-bottom: 16px;
        border: 1px solid var(--rule); border-radius: 6px; overflow: hidden;
    }
    .training-table td {
        display: flex; justify-content: space-between;
        align-items: flex-start; gap: 12px;
        padding: 12px 16px; font-size: 14px;
        border-bottom: 1px solid var(--rule);
    }
    .training-table td:last-child { border-bottom: none; }
    .training-table td::before {
        content: attr(data-label);
        font-size: 10px; font-weight: 700;
        letter-spacing: 0.08em; text-transform: uppercase;
        color: var(--green); flex-shrink: 0; min-width: 90px;
    }
    .event-item { flex-direction: column; }
    .event-date-col { flex-direction: row; gap: 8px; padding: 14px 20px; }
    .contact-grid { grid-template-columns: 1fr; }
}
