/* ═══════════════════════════════════════════════════════════════
   Sonja Bertram's Children Foundation - Global Stylesheet
   Single file responsible for the entire project's styling.
   ═══════════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
    --primary:          #21333A;
    --primary-dark:     #16222A;
    --primary-deep:     #0F1920;
    --primary-soft:     #E7ECEE;
    --primary-tint:     #F4F6F7;
    --accent:           #F39200;
    --accent-dark:      #C97600;
    --accent-soft:      #FEF1DD;
    --coral:            #E6831F;
    --coral-soft:       #FBECE0;
    --ink:              #21333A;
    --ink-soft:         #33474F;
    --muted:            #5E7077;
    --gray:             #7D8D92;
    --gray-light:       #EEF1F2;
    --off-white:        #F7F9FA;
    --white:            #ffffff;
    --border:           #E3E9EB;
    --shadow-sm:        0 2px 10px rgba(33,51,58,0.05);
    --shadow:           0 12px 34px rgba(33,51,58,0.10);
    --shadow-lg:        0 24px 60px rgba(33,51,58,0.14);
    --radius:           16px;
    --radius-sm:        10px;
    --radius-lg:        26px;
    --font-head:        'Plus Jakarta Sans', 'Nunito', sans-serif;
    --font-body:        'Nunito', 'Plus Jakarta Sans', sans-serif;
    --transition:       0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --navbar-h:         78px;
    --container-max:    1240px;
}

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink);
    background: var(--off-white);
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--ink);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
}

p { color: var(--muted); margin-bottom: 1rem; }
strong { color: var(--ink-soft); font-weight: 700; }

::selection { background: var(--accent-soft); color: var(--ink); }

/* Layout helpers */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
.text-center { text-align: center; }
.center-h { margin-left: auto; margin-right: auto; }

/* ══ Section label / eyebrow ══ */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.sec-label i { font-size: 0.8rem; }
.sec-label--accent { background: var(--accent-soft); color: var(--accent-dark); }
.sec-label--light { background: rgba(255,255,255,0.14); color: #fff; }

.sec-title {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 16px;
    letter-spacing: -0.6px;
}
.sec-title em {
    font-style: italic;
    color: var(--primary);
}
.sec-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.8;
    font-weight: 400;
}

/* ══ Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-family: var(--font-head);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 999px;
    border: 2px solid transparent;
    background: none;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    transition: all var(--transition);
    text-decoration: none;
}
.btn i { transition: transform var(--transition); }
.btn:hover i { transform: translateX(3px); }

.btn-primary { background: var(--primary); color: #fff !important; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20,134,107,0.32); }

.btn-accent { background: var(--accent); color: #fff !important; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(245,158,66,0.32); }

.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff !important; }

.btn-outline-light { border-color: rgba(255,255,255,0.5); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--primary) !important; }

.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: var(--primary-soft); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 11px 20px; font-size: 0.84rem; }
.btn-block { width: 100%; }

/* ══ Cards ────────────────────────────────────────────────────── */
.card-soft {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 34px;
    transition: all var(--transition);
    height: 100%;
}
.card-soft:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* ══ Bank transfer cards ══ */
.bank-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bank-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
}
.bank-card p { margin-bottom: 6px; }
.bank-card p:last-child { margin-bottom: 0; }
.bank-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
}
.bank-ccy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 0.05em;
}

/* ══ Allocation cards ══ */
.allocation-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 34px;
    height: 100%;
    text-align: center;
    transition: all var(--transition);
}
.allocation-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.allocation-pct {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 14px;
}
.allocation-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.allocation-card p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ══ Top gradient bar ══ */
.top-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--accent);
    z-index: 3000;
}

/* ══ Navbar ───────────────────────────────────────────────────── */
.pub-nav {
    position: sticky;
    top: 4px;
    z-index: 2000;
    height: var(--navbar-h);
    background: rgba(247,251,249,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.pub-nav.scrolled { box-shadow: 0 6px 24px rgba(16,42,42,0.08); }
.pub-nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pub-logo { flex-shrink: 0; margin-right: 18px; display: flex; align-items: center; gap: 10px; text-decoration: none; }
.pub-logo img { height: 42px; width: auto; }
.pub-logo-name { font-family: var(--font-head); font-weight: 800; color: var(--ink); line-height: 1.1; font-size: 0.98rem; }
.pub-logo-name small { display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; color: var(--primary); text-transform: uppercase; }

.pub-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}
.pub-nav-links > li a {
    display: block;
    padding: 9px 15px;
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink-soft);
    border-radius: 999px;
    transition: all var(--transition);
}
.pub-nav-links > li a:hover { color: var(--primary); background: var(--primary-soft); }
.pub-nav-links > li a.active { color: var(--primary); background: var(--primary-soft); }

.pub-nav-links > li { position: relative; }
.pub-nav-links > li.has-dropdown > a::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.6rem;
    margin-left: 7px;
    opacity: 0.6;
    transition: transform var(--transition);
}
.pub-nav-links > li.has-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 270px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 8px;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s ease;
    z-index: 1000;
}
.pub-nav-links > li.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}
.nav-dropdown li a i { color: var(--primary); font-size: 0.7rem; flex-shrink: 0; width: 16px; }
.nav-dropdown li a:hover { color: var(--primary); background: var(--primary-tint); }

.pub-nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.pub-hamburger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--ink);
    font-size: 1.05rem;
    transition: all var(--transition);
    margin-left: auto;
    flex-shrink: 0;
}
.pub-hamburger:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.pub-mobile-nav {
    display: none;
    position: fixed;
    top: calc(var(--navbar-h) + 4px);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--primary);
    padding: 14px 20px 24px;
    z-index: 1900;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 4px;
    max-height: calc(100vh - var(--navbar-h) - 4px);
    overflow-y: auto;
}
.pub-mobile-nav.open { display: flex; }
.pub-mobile-nav a {
    padding: 13px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    transition: all var(--transition);
}
.pub-mobile-nav a:hover, .pub-mobile-nav a.active { background: var(--primary-soft); color: var(--primary); }
.pub-mobile-nav .nav-mobile-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gray);
    padding: 14px 18px 6px;
}
.pub-mobile-nav .btn { margin-top: 12px; justify-content: center; width: 100%; }

/* ══ Page banner (inner pages) ────────────────────────────────── */
.page-banner {
    background: var(--primary);
    padding: calc(var(--navbar-h) + 60px) 0 72px;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: -120px; right: -60px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: rgba(243,146,0,0.12);
    pointer-events: none;
}
.page-banner::after {
    content: '';
    position: absolute;
    bottom: -140px; left: -60px;
    width: 460px; height: 460px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    letter-spacing: -0.8px;
}
.breadcrumb { display: flex; align-items: center; gap: 10px; list-style: none; margin: 0; flex-wrap: wrap; }
.breadcrumb-item { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: #fff; }
.breadcrumb-item.active { color: #fff; font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; margin-right: 10px; color: rgba(255,255,255,0.4); }

/* ══ Hero ─────────────────────────────────────────────────────── */
.hero {
    position: relative;
    background: var(--tint, #F4F6F7);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0 64px;
    min-height: calc(100vh - 88px);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 18px;
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.hero-badge i { color: var(--accent); }
.hero h1 {
    font-size: clamp(2.2rem, 4.4vw, 3.7rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.12;
    letter-spacing: -1.2px;
    margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--primary); }
.hero p.lead {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 20px 8px;
    max-width: 560px;
}
.hero-stat { flex: 1; text-align: center; padding: 0 10px; }
.hero-stat + .hero-stat { border-left: 1px solid var(--border); }
.hero-stat-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-stat-label { font-size: 0.76rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; aspect-ratio: 4/3.6; object-fit: cover; }
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,0.96);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(4px);
}
.hero-float-card--topleft { top: 26px; left: -18px; }
.hero-float-card--bottomright { bottom: 26px; right: -18px; }
.hero-float-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.hero-float-icon--accent { background: var(--accent-soft); color: var(--accent-dark); }
.hero-float-card b { display: block; font-family: var(--font-head); font-size: 0.95rem; color: var(--ink); line-height: 1.2; }
.hero-float-card span { font-size: 0.72rem; color: var(--gray); font-weight: 600; }

.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}
.hero-blob--1 { top: -40px; right: -30px; width: 240px; height: 240px; background: var(--accent-soft); }
.hero-blob--2 { bottom: -60px; left: -40px; width: 280px; height: 280px; background: var(--primary-soft); }

/* ══ Sections spacing ══ */
.section { padding: 96px 0; }
.section--white { background: var(--white); }
.section--tint { background: var(--primary-tint); }
.section--dark {
    background: var(--primary-deep);
    position: relative;
    overflow: hidden;
}
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center .sec-sub { margin-left: auto; margin-right: auto; }

/* ══ Split (image + text) ══ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img { position: relative; }
.split-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; }
.split-img--accent::after {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 60%; height: 60%;
    border: 3px solid var(--accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.35;
}

/* ══ Feature / program cards ══ */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 62px; height: 62px;
    border-radius: 18px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: all var(--transition);
}
.feature-icon--accent { background: var(--accent-soft); color: var(--accent-dark); }
.feature-icon--coral { background: var(--coral-soft); color: var(--coral); }
.feature-card:hover .feature-icon { transform: scale(1.08) rotate(-6deg); }
.feature-card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.feature-card p { margin-bottom: 16px; }
.feature-link { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--primary); display: inline-flex; align-items: center; gap: 7px; }
.feature-link:hover { gap: 12px; }

/* Program image cards */
.program-card { border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: all var(--transition); height: 100%; display: flex; flex-direction: column; }
.program-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.program-card-img { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.program-card:hover .program-card-img img { transform: scale(1.08); }
.program-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.program-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; }
.program-card-body p { font-size: 0.95rem; flex: 1; }

/* ══ Help cards (ways to help) ══ */
.help-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 38px 34px;
    height: 100%;
    text-align: center;
    transition: all var(--transition);
}
.help-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.help-icon {
    width: 78px; height: 78px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.help-icon--accent { background: var(--accent); }
.help-icon--coral { background: var(--coral); }
.help-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.help-card p { font-size: 0.95rem; }

/* ══ Numbers / stats band ══ */
.stat-item { text-align: center; }
.stat-item .num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-item .num span { color: var(--accent); }
.stat-item .lbl { color: rgba(255,255,255,0.75); font-weight: 600; font-size: 0.95rem; margin-top: 8px; display: block; }

/* ══ Timeline (history) ══ */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
    content: '';
    position: absolute;
    left: 8px; top: 6px; bottom: 6px;
    width: 3px;
    background: var(--accent);
    border-radius: 3px;
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px; top: 6px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid var(--primary);
    z-index: 1;
}
.timeline-item .tl-year { font-family: var(--font-head); font-weight: 800; color: var(--primary); font-size: 1rem; margin-bottom: 6px; }

/* ══ Team / leadership cards ══ */
.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 22px 24px 24px; text-align: center; }
.team-info h3 { font-size: 1.18rem; margin-bottom: 4px; }
.team-role { font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.team-bio { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.team-read-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
}
.team-read-more i { transition: transform var(--transition); }
.team-card:hover .team-read-more i { transform: translateX(5px); }

/* ══ Objectives list ══ */
.objective-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.objective-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all var(--transition);
}
.objective-item:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.objective-num {
    width: 40px; height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
.objective-item h4 { font-size: 1.02rem; margin-bottom: 6px; }
.objective-item p { font-size: 0.88rem; margin: 0; }

/* ══ Article / blog cards ══ */
.pub-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pub-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.pub-card-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--gray-light); }
.pub-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pub-card:hover .pub-card-img-wrap img { transform: scale(1.07); }
.pub-card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--gray); font-weight: 600; margin-bottom: 12px; flex-wrap: wrap; }
.blog-card-title { display: block; font-family: var(--font-head); font-size: 1.18rem; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 10px; }
.blog-card-title:hover { color: var(--primary); }
.pub-badge {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--primary-soft);
    color: var(--primary);
}
.pub-badge--accent { background: var(--accent-soft); color: var(--accent-dark); }

/* Hero blog card */
/* (removed - /news now lists all posts uniformly, no featured hero) */

/* ══ Article detail ══ */
.article-body { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.article-content { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; box-shadow: var(--shadow-sm); }
.article-content h2 { font-size: 1.6rem; margin-top: 36px; margin-bottom: 16px; }
.article-content h3 { font-size: 1.25rem; margin-top: 28px; margin-bottom: 12px; }
.article-content p { font-size: 1.02rem; line-height: 1.85; }
.article-content img { border-radius: var(--radius); }
.article-hero-img { border-radius: var(--radius-lg); margin-bottom: 0; width: 100%; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; font-size: 0.85rem; color: var(--gray); font-weight: 600; margin: 20px 0 30px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.article-meta i { color: var(--primary); margin-right: 6px; }

.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.sidebar-card h4 { font-size: 1.05rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 2px solid var(--primary); }
.sidebar-links { display: flex; flex-direction: column; gap: 6px; }
.sidebar-links a { padding: 10px 12px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); }
.sidebar-links a:hover { background: var(--primary-tint); color: var(--primary); }
.sidebar-links .active { background: var(--primary-soft); color: var(--primary); }

/* ══ Forms ══ */
.form-control, .form-select {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    transition: all var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
    outline: none;
}
.form-control::placeholder { color: var(--gray); }
.form-label {
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
    display: block;
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
.alert { border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.92rem; margin-bottom: 22px; display: flex; gap: 10px; align-items: center; }
.alert-error { background: #fdeceb; border: 1px solid #f5c6c2; color: #b3261e; }
.alert-success { background: var(--primary-soft); border: 1px solid var(--primary); color: var(--primary-dark); }

/* ══ Contact info cards ══ */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.contact-info-icon {
    width: 50px; height: 50px;
    flex-shrink: 0;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
}
.contact-info-icon--accent { background: var(--accent-soft); color: var(--accent-dark); }
.contact-info-title { font-family: var(--font-head); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray); margin-bottom: 5px; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--ink); line-height: 1.6; }
.contact-info-value a { color: var(--ink); }
.contact-info-value a:hover { color: var(--primary); }

/* ══ Donation cards ══ */
.donate-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); height: 100%; }
.donate-box h4 { font-size: 1.1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.donate-box ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.donate-box li { font-size: 0.9rem; color: var(--muted); display: flex; gap: 12px; align-items: flex-start; }
.donate-box li i { color: var(--primary); margin-top: 3px; }
.donate-box li span.acc { font-weight: 700; color: var(--ink); }

.allocation-bar { margin: 14px 0; }
.allocation-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.allocation-lbl { width: 260px; flex-shrink: 0; font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.allocation-track { flex: 1; height: 14px; background: var(--gray-light); border-radius: 999px; overflow: hidden; }
.allocation-fill { height: 100%; border-radius: 999px; background: var(--accent); }
.allocation-pct { width: 60px; text-align: right; font-weight: 800; color: var(--primary); }

/* ══ General content / prose ══ */
.content-block { max-width: 820px; margin: 0 auto; }
.content-block p { font-size: 1.05rem; line-height: 1.85; }
.content-block h2 { font-size: 1.7rem; margin: 40px 0 16px; }
.content-block h3 { font-size: 1.3rem; margin: 30px 0 12px; }
.content-block ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 22px 0; }
.content-block ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); line-height: 1.75; }
.content-block ul li i { color: var(--primary); margin-top: 6px; flex-shrink: 0; }

/* ══ CTA band ══ */
.cta-band { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; line-height: 1.8; }
.cta-band .btn { margin: 0 6px; }

/* ══ Back to top ══ */
#backTop {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(20,134,107,0.4);
    z-index: 900;
    font-size: 0.9rem;
    transition: all var(--transition);
}
#backTop:hover { background: var(--accent); transform: translateY(-3px); }

/* ══ Footer ───────────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); }
.footer-container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1.1fr 1.3fr 1.6fr;
    gap: 48px;
    padding: 76px 0 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 46px; }
.footer-brand-name { font-family: var(--font-head); font-weight: 800; color: #fff; font-size: 1.05rem; line-height: 1.15; }
.footer-brand-name small { display: block; font-size: 0.6rem; letter-spacing: 0.16em; color: var(--accent); text-transform: uppercase; }
.footer-tagline { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 24px; max-width: 360px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
    width: 40px; height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.16);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: all var(--transition);
}
.footer-social:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer-heading {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.92rem; font-weight: 500; display: inline-flex; gap: 8px; align-items: center; }
.footer-links a i { font-size: 0.6rem; color: var(--accent); }
.footer-links a:hover { color: var(--accent); }

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-item { display: flex; gap: 13px; align-items: flex-start; font-size: 0.92rem; }
.footer-contact-item i { color: var(--accent); margin-top: 5px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-cta { margin-top: 22px; }

.footer-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.4);
}
.footer-bottom-rule { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.footer-policy-link { color: rgba(255,255,255,0.4); }
.footer-policy-link:hover { color: var(--accent); }
.footer-credit { color: rgba(255,255,255,0.4); white-space: nowrap; }
.footer-credit a { color: inherit; font-weight: 700; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }

/* ══ Animations ══ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.anim-fadeUp { animation: fadeUp 0.7s ease both; }
.anim-float { animation: floaty 4s ease-in-out infinite; }

/* ══ Reveal on scroll ══ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ══ 404 ══ */
.error-wrap { text-align: center; padding: 120px 20px 140px; }
.error-code { font-family: var(--font-head); font-size: clamp(6rem, 16vw, 11rem); font-weight: 800; color: var(--primary); line-height: 1; }

/* ══ Our Story page ══ */
.our-story-quote {
    background: var(--primary-soft);
    border-left: 5px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 20px 26px;
    margin: 24px 0;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--primary);
}
.our-story-quote--center {
    border-left: none;
    border-top: 4px solid var(--accent);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.our-story-list { list-style: none; padding: 0; }
.our-story-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    border-bottom: 1px dashed var(--border);
}
.our-story-list li:last-child { border-bottom: none; }
.our-story-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 4px;
    flex-shrink: 0;
}
.our-story-list--center { max-width: 560px; margin: 0 auto; }

.inform-box {
    display: flex;
    gap: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.inform-box .inform-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-dark);
    background: var(--accent-soft);
}
.inform-box .inform-icon--accent { color: var(--primary); background: var(--primary-soft); }
.inform-box h3 { font-size: 1.1rem; margin-bottom: 8px; }
.inform-box p { margin-bottom: 0; font-size: 0.96rem; }

.value-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-card i {
    font-size: 1.7rem;
    color: var(--accent);
    background: var(--accent-soft);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.94rem; margin-bottom: 0; }

.pill-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 14px 22px;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pill-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pill-card i { color: var(--accent); font-size: 1.1rem; }
.pill-card--dark { background: var(--primary-deep); border-color: rgba(255,255,255,0.12); color: #fff; }
.pill-card--dark i { color: var(--accent); }

/* ══ Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 48px; }
    .hero-float-card--topleft { left: 8px; }
    .hero-float-card--bottomright { right: 8px; }
}
@media (max-width: 991px) {
    .pub-nav-links, .pub-nav-right { display: none; }
    .pub-hamburger { display: flex; }
    .pub-nav-inner { padding: 0 20px; }

    .hero-inner { grid-template-columns: 1fr; padding: 40px 0 48px; gap: 36px; min-height: 0; }
    .hero-badge { margin-top: 36px; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .article-body { grid-template-columns: 1fr; }
    .allocation-lbl { width: 180px; }
    .section { padding: 72px 0; }
}
@media (max-width: 767px) {
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .footer-bottom-rule { display: none; }
    .hero-stats { flex-wrap: wrap; }
    .hero-stat { flex: 1 1 40%; border-left: none !important; }
}
@media (max-width: 575px) {
    .container { padding: 0 18px; }
    .bank-grid { grid-template-columns: 1fr; }
    .hero-visual { margin-top: 0; }
    .hero-float-card--topleft { top: 14px; left: 10px; }
    .hero-float-card--bottomright { bottom: 14px; right: 10px; }
    .article-content { padding: 28px; }
    .form-card { padding: 26px; }
}
