/* ==========================================================================
   Cameroon Baptist Convention — Design System
   ========================================================================== */

:root {
    --green-950: #032806;
    --green-900: #064d0a;
    --green-800: #075a0c;
    --green-700: #096710;
    --green-600: #0b7d13;
    --green-500: #0d9a18;
    --gold-400: #ffe500;
    --gold-500: #fdc700;
    --gold-600: #e7a103;
    --cream: #fcf6f2;
    --cream-dark: #f0e6dc;
    --white: #ffffff;
    --text: #1a2e1a;
    --text-muted: #5c6d5c;
    --border: #e2d8ce;
    --shadow-sm: 0 2px 8px rgba(9, 103, 16, 0.06);
    --shadow-md: 0 8px 30px rgba(9, 103, 16, 0.1);
    --shadow-lg: 0 20px 50px rgba(9, 103, 16, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --font-sans: 'Outfit', system-ui, sans-serif;
    --font-serif: 'Fraunces', Georgia, serif;
    --container: 1180px;
    --header-h: 96px;
    --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-900); }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; margin: 0 0 0.75em; color: var(--green-900); }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
    width: min(100% - 2.5rem, var(--container));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.25rem;
    background: var(--gold-500);
    color: var(--green-900);
    font-weight: 600;
    border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn--green { background: var(--green-700); color: var(--white); }
.btn--green:hover { background: var(--green-900); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold-500); color: var(--green-900); }
.btn--gold:hover { background: var(--gold-600); color: var(--green-900); transform: translateY(-1px); }
.btn--outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--green-700); }
.btn--outline-dark { border-color: var(--green-700); color: var(--green-700); }
.btn--outline-dark:hover { background: var(--green-700); color: var(--white); }

/* Top bar */
.top-bar {
    background: var(--green-900);
    color: var(--white);
    font-size: 0.8125rem;
    border-bottom: 2px solid var(--gold-500);
}
.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 40px;
}
.top-bar__social { display: flex; gap: 0.75rem; flex-shrink: 0; }
.top-bar__social a { color: var(--white); opacity: 0.85; display: flex; }
.top-bar__social a:hover { opacity: 1; color: var(--gold-400); }
.top-bar__social svg { width: 16px; height: 16px; fill: currentColor; }

.news-ticker { display: flex; align-items: center; gap: 0.75rem; overflow: hidden; flex: 1; min-width: 0; }
.news-ticker__label {
    flex-shrink: 0;
    background: var(--gold-500);
    color: var(--green-900);
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}
.news-ticker__track { overflow: hidden; flex: 1; }
.news-ticker__content {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}
.news-ticker__content a { color: rgba(255,255,255,0.9); font-weight: 500; }
.news-ticker__content a:hover { color: var(--gold-400); }
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-h);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
}
.site-brand:hover { color: var(--text); }
.site-brand img { border-radius: 0; object-fit: contain; background: transparent; }
.site-brand--logo-only img {
    width: 88px;
    height: 88px;
    max-height: 72px;
    object-fit: contain;
}
@media (max-width: 768px) {
    .site-brand--logo-only img {
        width: 72px;
        height: 72px;
        max-height: 56px;
    }
}
.site-brand__text { display: flex; flex-direction: column; line-height: 1.3; }
.site-brand__text strong { font-size: 1.125rem; color: var(--green-700); }
.site-brand__text span { font-size: 0.6875rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--green-700);
}
.nav-toggle svg { width: 28px; height: 28px; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav__list { display: flex; align-items: center; gap: 0.125rem; }
.site-nav__link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    border-radius: 8px;
    transition: all var(--transition);
}
.site-nav__link:hover,
.site-nav__item.is-active > .site-nav__link { color: var(--green-700); background: rgba(9,103,16,0.06); }
.site-nav__link svg { width: 14px; height: 14px; stroke: currentColor; transition: transform var(--transition); }
.site-nav__dropdown-btn[aria-expanded="true"] svg { transform: rotate(90deg); }

.site-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    border: 1px solid var(--border);
}
.site-nav__item.has-dropdown { position: relative; }
.site-nav__item.has-dropdown:hover .site-nav__dropdown,
.site-nav__dropdown-btn[aria-expanded="true"] + .site-nav__dropdown { display: block; }
.site-nav__dropdown a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--text);
    border-radius: 8px;
}
.site-nav__dropdown a:hover { background: var(--cream); color: var(--green-700); }
.site-nav__cta { margin-left: 0.75rem; }

/* Hero */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 50%, var(--green-600) 100%);
    color: var(--white);
    padding: 5rem 0 6rem;
    overflow: hidden;
}
.hero--slideshow { background: var(--green-900); }
.hero__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(6,77,10,0.88) 0%, rgba(9,103,16,0.78) 45%, rgba(6,77,10,0.85) 100%);
}
.hero--slideshow::before { display: none; }
.hero::before {
    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' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%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");
    pointer-events: none;
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 0.5em;
}
.hero__tagline {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold-400);
    margin-bottom: 1.25rem;
}
.hero__lead { font-size: 1.0625rem; opacity: 0.92; max-width: 520px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero__logo-ring {
    width: min(320px, 80vw);
    height: min(320px, 80vw);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 3px solid var(--gold-500);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 0 0 12px rgba(253,199,0,0.15), var(--shadow-lg);
    flex-shrink: 0;
}
.hero__logo-ring img,
.hero__birth-logo {
    width: 78%;
    height: 78%;
    max-width: 78%;
    max-height: 78%;
    border-radius: 0;
    object-fit: contain;
}

/* Stats bar */
.stats-bar {
    background: var(--white);
    margin-top: -3rem;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}
.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.stat__value {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--green-700);
    line-height: 1;
}
.stat__label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.375rem;
}

/* Sections */
.section { padding: 5rem 0; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--green { background: var(--green-900); color: var(--white); }
.section--green h2, .section--green h3 { color: var(--white); }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section__header h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.section__header p { color: var(--text-muted); font-size: 1.0625rem; }
.section--green .section__header p { color: rgba(255,255,255,0.8); }
.section__eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-600);
    margin-bottom: 0.75rem;
}
.section--green .section__eyebrow { color: var(--gold-400); }

/* Mission cards */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--gold-500);
    position: relative;
}
.mission-card h3 { font-size: 1.375rem; margin-bottom: 1rem; }
.mission-card p { color: var(--text-muted); font-size: 1.0625rem; font-style: italic; margin: 0; }
.mission-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(9, 103, 16, 0.1), rgba(253, 199, 0, 0.15));
    color: var(--green-700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* Department cards */
.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.dept-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.dept-card__media {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--cream-dark);
}
.dept-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.dept-card:hover .dept-card__img { transform: scale(1.05); }
.dept-card__body {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.dept-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-500);
}
.dept-card__icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.dept-card__icon i,
.dept-card__icon [class^="ph-"] {
    color: var(--white);
}
.dept-card__icon .ph-duotone::before,
.dept-card__icon .ph-duotone::after {
    color: var(--white);
}
.dept-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.dept-card p { font-size: 0.875rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; }
.dept-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.dept-card__link svg { width: 16px; height: 16px; stroke: currentColor; }

/* News cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card__image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--cream-dark);
}
.news-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-800), var(--green-600));
    color: var(--gold-400);
    font-size: 2.5rem;
    text-decoration: none;
}
.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.news-card:hover .news-card__img { transform: scale(1.04); }
.news-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.news-card__date { font-size: 0.75rem; color: var(--gold-600); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.news-card h3 { font-size: 1.0625rem; margin-bottom: 0.75rem; }
.news-card h3 a { color: inherit; }
.news-card h3 a:hover { color: var(--green-700); }
.news-card p { font-size: 0.875rem; color: var(--text-muted); flex: 1; }
.news-card__more { margin-top: 1rem; font-size: 0.875rem; font-weight: 600; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
    overflow: hidden;
}
.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--green-900);
    cursor: pointer;
    text-align: left;
}
.faq-item__question svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--green-700); transition: transform var(--transition); }
.faq-item.is-open .faq-item__question svg { transform: rotate(45deg); }
.faq-item__answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
}
.faq-item.is-open .faq-item__answer { display: block; }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--green-800), var(--green-700));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.cta-band p { opacity: 0.9; max-width: 560px; margin: 0 auto 1.75rem; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* Page hero (inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--green-900), var(--green-700));
    color: var(--white);
    padding: 3.5rem 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 0.5rem; }
.page-hero__subtitle { font-size: 1.125rem; opacity: 0.9; margin: 0; }

.breadcrumbs { margin-bottom: 1.25rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.8125rem; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; opacity: 0.5; }
.breadcrumbs a { color: var(--gold-400); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs li[aria-current] { opacity: 0.75; }

/* Content prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.75rem; font-size: 1.25rem; color: var(--green-900); }
.prose p, .prose li { color: var(--text-muted); line-height: 1.75; }
.prose ul, .prose ol { margin: 1rem 0; padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--gold-500);
    background: var(--cream);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}
.prose hr { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

.dept-page__icon-lg {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    border-radius: 16px;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.dept-page__icon-lg i,
.dept-page__icon-lg [class^="ph-"] { color: var(--white); }

/* Timeline */
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 2rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold-500), var(--green-700));
    border-radius: 3px;
}
.timeline__item { position: relative; padding-bottom: 2rem; padding-left: 1.5rem; }
.timeline__item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    background: var(--gold-500);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transform: translateX(calc(-50% + 1.5px));
}
.timeline__year {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--green-700);
    margin-bottom: 0.25rem;
}
.timeline__text { color: var(--text-muted); font-size: 0.9375rem; }

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}
.value-chip {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.value-chip::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold-500);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.4rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info__item svg,
.contact-info__item i,
.contact-info__item [class^="ph-"] { flex-shrink: 0; margin-top: 0.2rem; font-size: 1.5rem; color: var(--green-700); }
.contact-info__item svg { width: 24px; height: 24px; stroke: var(--green-700); }
.contact-info__item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-info__item p { margin: 0; color: var(--text-muted); font-size: 0.9375rem; }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.375rem; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--cream);
    transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-500);
    box-shadow: 0 0 0 3px rgba(9,103,16,0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-notice {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    font-weight: 500;
    font-size: 0.9375rem;
}
.form-notice--success { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.form-notice--error { background: #ffebee; color: #b71c1c; border: 1px solid #ef9a9a; }

/* Leadership */
.leader-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    max-width: 400px;
    margin: 0 auto;
}
.leader-card__photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--gold-500);
    box-shadow: var(--shadow-md);
}
.leader-card__avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-700), var(--green-500));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    border: 4px solid var(--gold-500);
}
.leader-card h2 { font-size: 1.375rem; }
.leader-card__title { color: var(--gold-600); font-weight: 600; font-size: 0.9375rem; margin-bottom: 0.5rem; }

.gov-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.gov-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}
.gov-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.gov-card p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* Department page */
.dept-hero-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.highlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}
.highlight-tag {
    background: rgba(9,103,16,0.08);
    color: var(--green-700);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
}

/* Article */
.article-meta { font-size: 0.875rem; color: var(--gold-600); font-weight: 600; margin-bottom: 1.5rem; }
.article-body h2 { margin-top: 2rem; }
.article-body p { font-size: 1.0625rem; line-height: 1.75; }

/* Footer */
.site-footer { background: var(--green-950); color: rgba(255,255,255,0.85); }
.site-footer h2, .site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 1rem; }
.site-footer__main { padding: 4rem 0 3rem; }
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 2.5rem;
}
.article-featured {
    max-width: 900px;
    margin: 0 auto 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.article-featured__img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

.contact-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.contact-images__item {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}
.contact-images__item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.contact-images__item--logo img {
    object-fit: contain;
    background: var(--cream);
    padding: 0.75rem;
}
.contact-images__item figcaption {
    padding: 0.625rem 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.site-footer__brand img { margin-bottom: 1rem; border-radius: 0; object-fit: contain; background: transparent; }
.site-footer__brand p { font-size: 0.875rem; opacity: 0.8; }
.site-footer__scripture { color: var(--gold-400); font-size: 0.8125rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.75); font-size: 0.875rem; }
.footer-links a:hover { color: var(--gold-400); }
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}
.footer-contact i,
.footer-contact [class^="ph-"] {
    font-size: 1.125rem;
    color: var(--gold-400);
    flex-shrink: 0;
    margin-top: 2px;
}
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--gold-400); }
.site-footer__social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.site-footer__social a { color: var(--white); opacity: 0.7; }
.site-footer__social a:hover { opacity: 1; color: var(--gold-400); }
.site-footer__social svg { width: 20px; height: 20px; fill: currentColor; }
.site-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8125rem;
    opacity: 0.65;
}
.site-footer__bottom p { margin: 0.25rem 0; }

/* Two column layout */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.split-grid__visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
    background: var(--cream-dark);
}
.split-grid__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split-grid--leader { align-items: center; }
.leader-spotlight__photo {
    width: 100%;
    max-width: 360px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--gold-500);
}
.leader-spotlight__title {
    color: var(--gold-600);
    font-weight: 600;
    margin-bottom: 1rem;
}
.faq-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}
.faq-split__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
}
.faq-split__media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.section__header--left { text-align: left; margin-left: 0; }

/* Responsive */
@media (max-width: 1024px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__lead { margin-inline: auto; }
    .hero__actions { justify-content: center; }
    .hero__visual { order: -1; }
    .hero__logo-ring { width: 200px; }
    .split-grid { grid-template-columns: 1fr; }
    .faq-split { grid-template-columns: 1fr; }
    .faq-split__media { position: static; }
    .contact-images { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .top-bar__social { display: none; }
    .site-brand__text span { display: none; }

    .nav-toggle { display: block; }
    .site-nav {
        position: fixed;
        inset: 0;
        top: var(--header-h);
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
        z-index: 99;
    }
    .site-nav.is-open { transform: translateX(0); }
    .site-nav__list { flex-direction: column; align-items: stretch; }
    .site-nav__link { padding: 0.875rem 1rem; font-size: 1rem; }
    .site-nav__dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        background: var(--cream);
        border-radius: 8px;
        margin-top: 0.25rem;
    }
    .site-nav__cta { margin: 1rem 0 0; text-align: center; justify-content: center; }

    .mission-grid,
    .contact-grid { grid-template-columns: 1fr; }
    .stats-bar { margin-top: -2rem; padding: 1.5rem; }
    .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .site-footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero { padding: 3rem 0 4rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
}
