/*!
Theme Name: Out of the Ashes Kenya
Theme URI: https://outoftheasheskenya.org
Author: Out of the Ashes Kenya
Author URI: https://outoftheasheskenya.org
Description: A faith-based nonprofit WordPress theme for Out of the Ashes – Kenya. A Christian charity serving vulnerable children through education, healthcare, and mentorship in Kitale, Kenya.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ooa-kenya
Tags: charity, nonprofit, faith, responsive, clean, red, beige
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --color-primary:       #8B1E2D;
    --color-primary-dark:  #6B1522;
    --color-primary-light: rgba(139, 30, 45, 0.08);
    --color-secondary:     #D4A017;
    --color-secondary-dark:#B8890F;
    --color-bg:            #F7F3EC;
    --color-white:         #FFFFFF;
    --color-dark:          #2C2C2C;
    --color-gray:          #666666;
    --color-light-gray:    #E5E0D8;
    --color-border:        #DDD8D0;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body:    'Open Sans', Arial, sans-serif;

    --container-width:  1200px;
    --section-padding:  80px 0;
    --border-radius:    8px;
    --border-radius-lg: 16px;
    --box-shadow:       0 4px 20px rgba(0,0,0,0.08);
    --box-shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --transition:       all 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-secondary); }

ul, ol { list-style: none; }

button, input, textarea, select {
    font-family: var(--font-body);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem,   5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem,4vw, 2.75rem); }
h3 { font-size: clamp(1.375rem,3vw, 2rem); }
h4 { font-size: clamp(1.125rem,2.5vw, 1.375rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; line-height: 1.8; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section           { padding: var(--section-padding); }
.section-bg        { background-color: var(--color-bg); }
.section-dark      { background-color: var(--color-dark); color: var(--color-white); }
.section-primary   { background-color: var(--color-primary); color: var(--color-white); }

.grid   { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex        { display: flex; align-items: center; }
.flex-center { justify-content: center; }
.flex-wrap   { flex-wrap: wrap; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header .subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 12px;
}
.section-header h2    { margin-bottom: 18px; }
.section-header p     { font-size: 1.0625rem; color: var(--color-gray); max-width: 600px; margin: 0 auto; }
.section-divider      { width: 56px; height: 3px; background: var(--color-secondary); margin: 18px auto 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.3px;
    line-height: 1.4;
}
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139,30,45,0.3);
}
.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}
.btn-secondary:hover {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,160,23,0.3);
}
.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-2px);
}
.btn-outline-dark {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-outline-dark:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}
.btn-gold {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}
.btn-gold:hover {
    background-color: var(--color-secondary-dark);
    color: var(--color-white);
    transform: translateY(-2px);
}
.btn-lg   { padding: 18px 44px; font-size: 1.0625rem; }
.btn-sm   { padding: 9px 20px;  font-size: 0.8125rem; }
.btn-full { width: 100%; display: block; }

.btn-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

/* ============================================================
   SITE HEADER & NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 20px 0;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
}
.site-header.scrolled .site-logo-text    { color: var(--color-primary); }
.site-header.scrolled .nav-menu a        { color: var(--color-dark); }
.site-header.scrolled .nav-menu a:hover  { color: var(--color-primary); }
.site-header.scrolled .hamburger span    { background: var(--color-dark); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}
.site-logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.site-logo-icon svg { width: 22px; height: 22px; fill: white; }

.site-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    transition: var(--transition);
}
.site-logo-text span {
    display: block;
    font-size: 0.6875rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    padding: 8px 14px;
    border-radius: 4px;
    display: block;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
    color: var(--color-secondary);
}
.nav-menu > li.nav-donate > a {
    background: var(--color-secondary);
    color: var(--color-white) !important;
    border-radius: 4px;
    padding: 9px 20px;
}
.nav-menu > li.nav-donate > a:hover {
    background: var(--color-secondary-dark);
}

/* Dropdowns */
.nav-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 210px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    border-top: 3px solid var(--color-primary);
    z-index: 100;
    padding: 8px 0;
}
.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-menu .sub-menu a {
    color: var(--color-dark) !important;
    padding: 9px 20px;
    font-size: 0.875rem;
    border-radius: 0;
    display: block;
}
.nav-menu .sub-menu a:hover {
    color: var(--color-primary) !important;
    background: var(--color-bg);
    padding-left: 26px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 1002;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-color: var(--color-primary-dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-image,
        linear-gradient(135deg, #8B1E2D 0%, #5A1220 40%, #1A0508 100%));
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26,5,8,0.70) 0%,
        rgba(0,0,0,0.20) 60%,
        rgba(0,0,0,0.10) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: 0 0 120px;
    width: 100%;
    text-align: center;
    align-self: flex-end;
}
.hero .btn-group { justify-content: center; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,160,23,0.18);
    border: 1px solid rgba(212,160,23,0.45);
    color: var(--color-secondary);
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.hero h1 {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero h1 em {
    color: var(--color-secondary);
    font-style: normal;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 42px;
    max-width: 580px;
    line-height: 1.8;
}
.hero-scroll {
    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: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
    animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    49%  { transform: scaleY(1); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   IMPACT STATISTICS
   ============================================================ */
.impact-section { padding: 70px 0; background: var(--color-white); }
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.impact-item {
    text-align: center;
    padding: 48px 24px;
    position: relative;
    transition: var(--transition);
}
.impact-item::after {
    content: '';
    position: absolute;
    right: 0; top: 20%;
    height: 60%; width: 1px;
    background: var(--color-border);
}
.impact-item:last-child::after { display: none; }
.impact-item:hover { background: var(--color-bg); }

.impact-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 14px;
    color: var(--color-secondary);
}
.impact-number {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}
.impact-label {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* ============================================================
   OUR STORY SECTION
   ============================================================ */
.story-section    { padding: var(--section-padding); background: var(--color-bg); }
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.story-image-wrap { position: relative; }
.story-image-wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}
.story-image-placeholder {
    width: 100%;
    height: 460px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #3A0910 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255,255,255,0.15);
}
.story-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    width: 120px;
    height: 120px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: var(--box-shadow-hover);
}
.story-badge .year  { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; line-height: 1; }
.story-badge .label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.9; }

.story-content .subtitle {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-secondary);
    margin-bottom: 14px;
    display: block;
}
.story-content h2 { margin-bottom: 22px; }
.story-content p  { color: var(--color-gray); font-size: 1.0625rem; margin-bottom: 18px; }
.story-quote {
    border-left: 4px solid var(--color-secondary);
    padding: 18px 24px;
    background: rgba(212,160,23,0.07);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 28px 0;
    font-style: italic;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* ============================================================
   VIDEO SECTIONS
   ============================================================ */
.video-section {
    padding: var(--section-padding);
    background: var(--color-dark);
    color: var(--color-white);
    text-align: center;
}
.video-section h2     { color: var(--color-white); margin-bottom: 14px; }
.video-section .lead  { color: rgba(255,255,255,0.7); margin-bottom: 48px; font-size: 1.0625rem; max-width: 600px; margin-left: auto; margin-right: auto; }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    max-width: 900px;
    margin: 0 auto;
    background: #000;
}
.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}
.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}
.video-placeholder:hover { background: linear-gradient(135deg, #221010, #3a2020); }
.video-play-btn {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
    border: 3px solid rgba(255,255,255,0.2);
}
.video-play-btn:hover { background: var(--color-secondary); transform: scale(1.1); }
.video-play-btn svg   { width: 28px; height: 28px; fill: white; margin-left: 5px; }
.video-placeholder p  { font-size: 0.875rem; letter-spacing: 1px; }

/* ============================================================
   MINISTRY CARDS
   ============================================================ */
.ministries-section { padding: var(--section-padding); background: var(--color-white); }
.ministries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.ministry-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}
.ministry-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
}
.ministry-card-img {
    height: 215px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    position: relative;
}
.ministry-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ministry-card:hover .ministry-card-img img { transform: scale(1.07); }
.ministry-icon-badge {
    position: absolute;
    top: 14px; left: 14px;
    width: 44px; height: 44px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.ministry-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.ministry-card-body h3 {
    font-size: 1.1875rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}
.ministry-card-body p {
    font-size: 0.9375rem;
    color: var(--color-gray);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.7;
}
.ministry-card-body .btn { margin-top: auto; }
.ministry-card-bg-placeholder {
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), #3A0910);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.ministry-bg-icon {
    color: rgba(255,255,255,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}
.ministry-bg-icon svg {
    width: 110px;
    height: 110px;
    display: block;
    flex-shrink: 0;
}
.ministry-icon-badge svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

/* ============================================================
   FACES OF HOPE GALLERY
   ============================================================ */
.faces-section { padding: var(--section-padding); background: var(--color-bg); }
.faces-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.face-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
    cursor: pointer;
    transition: var(--transition);
}
.face-card:hover { transform: translateY(-5px); box-shadow: var(--box-shadow-hover); }
.face-card-img {
    height: 290px;
    background: linear-gradient(135deg, var(--color-primary), #3A0910);
    overflow: hidden;
    position: relative;
}
.face-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.face-card:hover .face-card-img img { transform: scale(1.08); }
.face-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 18px 16px;
}
.face-card:hover .face-card-overlay {
    background: linear-gradient(to top, rgba(139,30,45,0.9) 0%, rgba(0,0,0,0.2) 100%);
}
.face-card-caption h4 {
    color: var(--color-white);
    font-size: 0.9375rem;
    margin-bottom: 4px;
}
.face-card-caption p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    margin: 0;
}

/* ============================================================
   SUPPORT / CTA SECTION
   ============================================================ */
.support-section {
    padding: 100px 0;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}
.support-section::before {
    content: '';
    position: absolute;
    top: -40%; right: -8%;
    width: 560px; height: 560px;
    background: rgba(212,160,23,0.1);
    border-radius: 50%;
}
.support-section::after {
    content: '';
    position: absolute;
    bottom: -35%; left: -5%;
    width: 380px; height: 380px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}
.support-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.support-content .subtitle {
    display: block;
    color: var(--color-secondary);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 18px;
}
.support-content h2 {
    color: var(--color-white);
    font-size: clamp(1.875rem, 4vw, 3rem);
    margin-bottom: 18px;
}
.support-content p {
    color: rgba(255,255,255,0.82);
    font-size: 1.125rem;
    max-width: 580px;
    margin: 0 auto 42px;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    text-align: left;
}
.support-way {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius);
    padding: 28px 22px;
    transition: var(--transition);
}
.support-way:hover { background: rgba(255,255,255,0.18); transform: translateY(-4px); }
.support-way-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}
.support-way h4 { color: var(--color-white); margin-bottom: 8px; font-size: 1.0625rem; }
.support-way p  { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 18px; }
.support-way .btn-outline { font-size: 0.875rem; padding: 9px 18px; }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.page-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3A0910 100%);
    padding: 130px 0 65px;
    text-align: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-banner h1 {
    color: var(--color-white);
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
}
.page-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
    max-width: 580px;
    margin: 0 auto 16px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    position: relative;
    z-index: 2;
}
.breadcrumb a    { color: var(--color-secondary); }
.breadcrumb sep  { opacity: 0.5; }

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.page-content   { padding: var(--section-padding); }
.entry-content h2, .entry-content h3 { margin-top: 38px; margin-bottom: 16px; }
.entry-content p  { margin-bottom: 18px; }
.entry-content ul,
.entry-content ol { list-style: initial; padding-left: 28px; margin-bottom: 20px; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 6px; }
.entry-content blockquote {
    border-left: 4px solid var(--color-secondary);
    padding: 18px 24px;
    background: var(--color-bg);
    margin: 30px 0;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* ============================================================
   FEATURE BOX
   ============================================================ */
.feature-box {
    background: var(--color-bg);
    border-radius: var(--border-radius);
    padding: 36px;
    text-align: center;
    transition: var(--transition);
}
.feature-box:hover { box-shadow: var(--box-shadow); }
.feature-icon {
    width: 70px; height: 70px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    transition: var(--transition);
}
.feature-box:hover .feature-icon {
    background: var(--color-primary);
    color: white;
}
.feature-box h4  { margin-bottom: 10px; color: var(--color-primary); }
.feature-box p   { color: var(--color-gray); font-size: 0.9375rem; }

/* ============================================================
   FOUNDER PROFILES
   ============================================================ */
.founder-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 48px 40px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--color-border);
}
.founder-card:hover { box-shadow: var(--box-shadow-hover); }
.founder-photo {
    width: 160px; height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 5px solid var(--color-secondary);
    display: block;
}
.founder-photo-placeholder {
    width: 160px; height: 160px;
    border-radius: 50%;
    margin: 0 auto 24px;
    border: 5px solid var(--color-secondary);
    background: linear-gradient(135deg, var(--color-primary), #3A0910);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.3);
}
.founder-name  { font-size: 1.5rem; margin-bottom: 6px; }
.founder-title { color: var(--color-secondary); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.founder-bio   { color: var(--color-gray); font-size: 0.9375rem; line-height: 1.8; }

/* ============================================================
   SUCCESS STORIES (CPT)
   ============================================================ */
.story-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 28px;
    box-shadow: var(--box-shadow);
    border-left: 5px solid var(--color-secondary);
    transition: var(--transition);
    align-items: start;
}
.story-card:hover { box-shadow: var(--box-shadow-hover); }
.story-card-photo {
    width: 180px; height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--color-primary), #3A0910);
}
.story-card-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.story-card-meta .tag {
    background: var(--color-bg);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-gray);
    font-weight: 600;
}
.story-card-meta .tag-primary {
    background: var(--color-primary);
    color: white;
}
.story-card-title { font-size: 1.25rem; margin-bottom: 8px; color: var(--color-primary); }
.story-card-excerpt { font-size: 0.9375rem; color: var(--color-gray); margin-bottom: 18px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
}
.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.contact-icon {
    width: 50px; height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.125rem;
}
.contact-info-item h4    { margin-bottom: 4px; font-size: 1rem; }
.contact-info-item p,
.contact-info-item a     { color: var(--color-gray); font-size: 0.9375rem; }

.contact-form {
    background: var(--color-bg);
    padding: 44px;
    border-radius: var(--border-radius-lg);
}
.contact-form h3 { margin-bottom: 28px; }

.form-group          { margin-bottom: 20px; }
.form-group label    { display: block; margin-bottom: 7px; font-weight: 600; font-size: 0.875rem; }
.form-row            { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.9375rem;
    color: var(--color-dark);
    background: var(--color-white);
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139,30,45,0.1);
}
.form-group textarea { height: 140px; resize: vertical; }

/* ============================================================
   DONATION AMOUNTS
   ============================================================ */
.donation-card {
    background: var(--color-bg);
    border-radius: var(--border-radius-lg);
    padding: 44px;
}
.donation-amounts { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.amount-btn {
    padding: 12px 24px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    background: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
}
.amount-btn:hover,
.amount-btn.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: white;
}

/* ============================================================
   NEWSLETTER / CALLOUT STRIP
   ============================================================ */
.callout-strip {
    background: var(--color-secondary);
    padding: 40px 0;
}
.callout-strip .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.callout-strip h3 { color: var(--color-white); margin: 0; font-size: 1.5rem; }
.callout-strip p  { color: rgba(255,255,255,0.85); margin: 5px 0 0; }
.callout-text     { flex: 1; }
.callout-form {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.callout-form input {
    padding: 12px 18px;
    border: none;
    border-radius: 4px;
    font-size: 0.9375rem;
    min-width: 260px;
}
.callout-form input:focus { outline: 2px solid white; }

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
    background: #1A0508;
    color: rgba(255,255,255,0.72);
    padding: 80px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}
.footer-brand .site-logo-text { color: white; font-size: 1.4rem; display: block; }
.footer-brand > p { margin-top: 16px; font-size: 0.9375rem; line-height: 1.8; }
.footer-brand .verse {
    margin-top: 18px;
    font-style: italic;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    border-left: 3px solid var(--color-secondary);
    padding-left: 14px;
}
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.footer-social a {
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
    font-size: 0.875rem;
}
.footer-social a:hover { background: var(--color-secondary); color: white; }

.footer-widget h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-secondary);
    display: inline-block;
}
.footer-widget li { margin-bottom: 9px; }
.footer-widget li a {
    color: rgba(255,255,255,0.68);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.footer-widget li a::before { content: '›'; color: var(--color-secondary); font-size: 1.125rem; }
.footer-widget li a:hover   { color: var(--color-secondary); padding-left: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p   { font-size: 0.875rem; margin: 0; }
.footer-bottom a   { color: var(--color-secondary); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.55); font-size: 0.8125rem; }
.footer-bottom-links a:hover { color: var(--color-secondary); }

/* ============================================================
   WORDPRESS BLOCK EDITOR COMPATIBILITY
   ============================================================ */
.aligncenter     { text-align: center; margin: 0 auto; }
.alignleft       { float: left; margin: 0 24px 20px 0; }
.alignright      { float: right; margin: 0 0 20px 24px; }
.wp-block-image  { margin-bottom: 20px; }
.wp-block-quote  { border-left: 4px solid var(--color-secondary); padding: 18px 24px; background: var(--color-bg); margin: 28px 0; font-style: italic; font-family: var(--font-heading); font-size: 1.125rem; border-radius: 0 var(--border-radius) var(--border-radius) 0; }
.wp-caption      { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--color-gray); text-align: center; margin-top: 8px; }
.gallery         { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px 0; }
.gallery-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 4px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-0  { margin-top: 0; }    .mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; } .mb-0  { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; } .mb-40 { margin-bottom: 40px; }
.text-primary   { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-white     { color: var(--color-white); }
.text-muted     { color: var(--color-gray); }
.hidden-mobile  { display: block; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.animate { opacity: 0; }
.animate.animated { animation: fadeInUp 0.65s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============================================================
   PEPE VIDEO SECTION
   ============================================================ */
.pepe-section { padding: var(--section-padding); background: var(--color-bg); }
.pepe-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.pepe-text .subtitle { display: block; margin-bottom: 12px; }
.pepe-text h2 { margin-bottom: 20px; }
.pepe-text p  { color: var(--color-gray); font-size: 1rem; }
.pepe-text p:last-of-type {
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.0625rem;
    border-left: 3px solid var(--color-secondary);
    padding-left: 14px;
}
.pepe-video .video-wrapper { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--box-shadow-hover); }

/* ============================================================
   FOUNDERS SECTION (homepage)
   ============================================================ */
.founders-section { padding: var(--section-padding); }
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 48px;
}
/* Override .founder-card for homepage two-column layout */
.founders-section .founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 44px 36px;
}
.founders-section .founder-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 5px solid var(--color-secondary);
    overflow: hidden;
    margin-bottom: 22px;
    flex-shrink: 0;
}
.founders-section .founder-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.founders-section .founder-photo-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--color-primary), #3A0910);
    display: flex;
    align-items: center;
    justify-content: center;
}
.founders-section .founder-info { text-align: center; }
.founders-section .founder-info h3 { margin-bottom: 6px; color: var(--color-primary); }
.founders-section .founder-title  {
    display: block;
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}
.founders-section .founder-quote  {
    font-style: italic;
    font-family: var(--font-heading);
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 22px;
    border-left: 3px solid var(--color-secondary);
    padding: 12px 16px;
    background: var(--color-bg);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    text-align: left;
}

/* ============================================================
   ELIMLIM CLINIC SECTION (homepage)
   ============================================================ */
.clinic-section { padding: var(--section-padding); }
.clinic-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}
.clinic-text .subtitle { display: block; margin-bottom: 12px; }
.clinic-text h2 { margin-bottom: 20px; }
.clinic-text p  { color: var(--color-gray); font-size: 1rem; }
.clinic-video .video-wrapper { border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--box-shadow-hover); }

/* ============================================================
   EDUCATION PREVIEW SECTION (homepage)
   ============================================================ */
.education-preview { padding: var(--section-padding); background: var(--color-white); }
.edu-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.edu-card {
    display: block;
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    text-decoration: none;
    color: var(--color-dark);
}
.edu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-hover);
    color: var(--color-dark);
}
.edu-card-img {
    height: 290px;
    background: linear-gradient(135deg, var(--color-primary), #3A0910);
    overflow: hidden;
    position: relative;
}
.edu-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.edu-card:hover .edu-card-img img { transform: scale(1.06); }
.edu-card-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.2);
}
.edu-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 18px 16px;
    transition: background 0.3s ease;
}
.edu-card:hover .edu-card-overlay {
    background: linear-gradient(to top, rgba(139,30,45,0.9) 0%, rgba(0,0,0,0.2) 100%);
}
.edu-card-caption h4 {
    color: var(--color-white);
    font-size: 0.9375rem;
    margin-bottom: 4px;
}
.edu-card-caption p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    margin: 0;
}

/* ============================================================
   CLINIC STAFF GRID (Elimlim Clinic page)
   ============================================================ */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.staff-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}
.staff-card:hover { transform: translateY(-6px); box-shadow: var(--box-shadow-hover); }
.staff-card-photo {
    height: 240px;
    background: linear-gradient(135deg, #1A4A6B, #0D2C42);
    overflow: hidden;
}
.staff-card-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.staff-card-body { padding: 22px; }
.staff-card-body h4 { font-size: 1.0625rem; margin-bottom: 6px; color: var(--color-dark); }
.staff-role-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.staff-role-badge.nurse         { background: #E3F2FD; color: #1565C0; }
.staff-role-badge.lab_tech      { background: #E8F5E9; color: #2E7D32; }
.staff-role-badge.doctor        { background: #FCE4EC; color: #C62828; }
.staff-role-badge.clinical_officer { background: #FFF3E0; color: #E65100; }
.staff-role-badge.pharmacist    { background: #EDE7F6; color: #4527A0; }
.staff-role-badge.other         { background: var(--color-bg); color: var(--color-gray); }
.staff-qualifications {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
    .grid-4          { grid-template-columns: repeat(2, 1fr); }
    .grid-3          { grid-template-columns: repeat(2, 1fr); }
    .impact-grid     { grid-template-columns: repeat(2, 1fr); }
    .ministries-grid { grid-template-columns: repeat(2, 1fr); }
    .faces-grid      { grid-template-columns: repeat(2, 1fr); }
    .footer-grid     { grid-template-columns: 1fr 1fr; }
    .story-grid      { gap: 40px; }
    .contact-grid    { grid-template-columns: 1fr; }
    .support-grid    { grid-template-columns: repeat(2, 1fr); }
    .pepe-grid       { gap: 40px; }
    .clinic-grid     { gap: 40px; }
    .founders-grid   { grid-template-columns: 1fr 1fr; gap: 24px; }
    .edu-cards-grid  { grid-template-columns: repeat(2, 1fr); }
    .staff-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-padding: 60px 0; }

    .hamburger { display: flex; }

    .main-navigation {
        position: fixed;
        top: 0; right: -100%;
        width: 82%; max-width: 380px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 28px 28px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.12);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 999;
        gap: 0;
    }
    .main-navigation.open { right: 0; }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%; gap: 0;
    }
    .nav-menu > li > a {
        color: var(--color-dark) !important;
        font-size: 1rem;
        padding: 13px 0;
        border-bottom: 1px solid var(--color-border);
        width: 100%; border-radius: 0;
    }
    .nav-menu .sub-menu {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border-top: none;
        border-left: 3px solid var(--color-primary);
        margin: 4px 0 4px 14px;
        border-radius: 0;
        display: none;
        padding: 0;
    }
    .nav-menu li.open > .sub-menu { display: block; }
    .nav-menu .sub-menu a { border-radius: 0; }

    .hidden-mobile   { display: none; }
    .story-grid      { grid-template-columns: 1fr; }
    .grid-2          { grid-template-columns: 1fr; }
    .grid-3          { grid-template-columns: 1fr; }
    .grid-4          { grid-template-columns: 1fr; }
    .ministries-grid { grid-template-columns: 1fr; }
    .faces-grid      { grid-template-columns: repeat(2, 1fr); }
    .footer-grid     { grid-template-columns: 1fr; gap: 36px; }
    .story-card      { grid-template-columns: 1fr; }
    .btn-group       { flex-direction: column; align-items: flex-start; }
    .footer-bottom   { flex-direction: column; text-align: center; }
    .form-row        { grid-template-columns: 1fr; }
    .callout-strip .container { flex-direction: column; text-align: center; }
    .callout-form    { flex-direction: column; width: 100%; }
    .callout-form input { min-width: auto; width: 100%; }
    .support-grid    { grid-template-columns: 1fr; }
    .impact-grid     { grid-template-columns: repeat(2, 1fr); }
    .impact-item::after { display: none; }
    .pepe-grid       { grid-template-columns: 1fr; }
    .clinic-grid     { grid-template-columns: 1fr; }
    .founders-grid   { grid-template-columns: 1fr; }
    .edu-cards-grid  { grid-template-columns: 1fr; }
    .staff-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .impact-grid  { grid-template-columns: 1fr; }
    .faces-grid   { grid-template-columns: 1fr; }
    .hero h1      { font-size: 2rem; }
    .btn          { display: block; text-align: center; width: 100%; }
    .btn-group    { width: 100%; }
    .story-badge  { display: none; }
}

@media print {
    .site-header, .site-footer, .hamburger, .nav-overlay, .support-section { display: none; }
    body { font-size: 12pt; }
    a { color: inherit; text-decoration: underline; }
}
