/* ============================================================
   KMG MINISTRIES — Master Stylesheet v2.0
   Elevated Edition — Premium Ministry Design
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --navy:        #0A1628;
    --navy-mid:    #0F2240;
    --blue:        #1B3A6B;
    --blue-light:  #2A5298;
    --blue-pale:   #E8EEF6;
    --gold:        #C5932A;
    --gold-light:  #E8C547;
    --gold-pale:   #FBF4E0;
    --white:       #FFFFFF;
    --off-white:   #F7F8FC;
    --gray-100:    #F0F1F5;
    --gray-200:    #E2E4EA;
    --gray-300:    #C8CCD6;
    --gray-500:    #6B7280;
    --gray-700:    #374151;
    --gray-900:    #111827;
    --red:         #DC2626;
    --green:       #16A34A;

    --gold-glow:   rgba(197,147,42,0.3);
    --glass-bg:    rgba(255,255,255,0.06);
    --glass-border:rgba(255,255,255,0.1);

    --font-body:   'Inter', system-ui, -apple-system, sans-serif;
    --font-heading:'Playfair Display', Georgia, serif;

    --fs-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
    --fs-sm:   clamp(0.8125rem, 0.76rem + 0.27vw, 0.9375rem);
    --fs-base: clamp(0.9375rem, 0.88rem + 0.3vw, 1.0625rem);
    --fs-md:   clamp(1.0625rem, 0.96rem + 0.5vw, 1.25rem);
    --fs-lg:   clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
    --fs-xl:   clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    --fs-2xl:  clamp(1.875rem, 1.4rem + 2.4vw, 3rem);
    --fs-3xl:  clamp(2.25rem, 1.5rem + 3.75vw, 4rem);
    --fs-hero: clamp(2.5rem, 1.5rem + 5vw, 5rem);

    --space-xs:  0.5rem;
    --space-sm:  0.75rem;
    --space-md:  1rem;
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    --radius-sm:  0.375rem;
    --radius-md:  0.625rem;
    --radius-lg:  1rem;
    --radius-xl:  1.5rem;
    --radius-full:9999px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:  0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg:  0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl:  0 16px 50px rgba(0,0,0,0.15);
    --shadow-gold:0 4px 20px rgba(197,147,42,0.3);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    --header-h:   80px;
    --top-bar-h:  36px;
    --container:   1200px;
    --container-lg:1400px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0;
    transition: opacity 0.5s ease;
}
body.loaded { opacity: 1; }

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

/* --- Utility --- */
.container     { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-lg); }
.container-lg  { max-width: var(--container-lg); }
.text-center   { text-align: center; }
.text-gold     { color: var(--gold); }
.text-blue     { color: var(--blue); }
.text-white    { color: var(--white); }
.bg-navy       { background: var(--navy); }
.bg-off-white  { background: var(--off-white); }
.bg-blue-pale  { background: var(--blue-pale); }

.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;
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.preloader-inner { text-align: center; }
.preloader-logo {
    height: 80px;
    width: auto;
    margin: 0 auto var(--space-xl);
    animation: preloader-pulse 1.8s ease-in-out infinite;
}
.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}
.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-full);
    animation: preloader-fill 1.5s ease-out forwards;
}
@keyframes preloader-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50%      { transform: scale(1.05); opacity: 1; }
}
@keyframes preloader-fill {
    0%   { width: 0%; }
    50%  { width: 60%; }
    100% { width: 100%; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    height: var(--top-bar-h);
    background: rgba(10,22,40,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    transition: transform var(--transition), opacity var(--transition);
}
.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar-left {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.top-bar-item svg { width: 13px; height: 13px; opacity: 0.6; }
.top-bar-item a { color: rgba(255,255,255,0.7); }
.top-bar-item a:hover { color: var(--gold-light); }
.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}
.top-bar-social {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all var(--transition);
}
.top-bar-social:hover { color: var(--gold-light); }
.top-bar-social svg { width: 13px; height: 13px; }

@media (max-width: 768px) {
    .top-bar { display: none; }
}

/* --- Section Spacing --- */
.section {
    padding: var(--space-5xl) 0;
}
.section-sm {
    padding: var(--space-4xl) 0;
}
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}
.section-label::before,
.section-label::after {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.reveal.visible .section-label::before,
.reveal.visible .section-label::after,
.section-header.reveal.visible .section-label::before,
.section-header.reveal.visible .section-label::after,
.visible > .section-label::before,
.visible > .section-label::after,
.page-hero .section-label::before,
.page-hero .section-label::after {
    width: 2rem;
}
.section-title {
    font-size: var(--fs-2xl);
    margin-bottom: var(--space-md);
}
.section-subtitle {
    font-size: var(--fs-md);
    color: var(--gray-500);
    max-width: 640px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-weight: 400;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.025em;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197,147,42,0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue);
}
.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-nav-cta {
    padding: 0.625rem 1.5rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
    animation: pulse-glow 3s ease-in-out infinite;
}
.btn-nav-cta:hover {
    box-shadow: 0 4px 25px rgba(197,147,42,0.5);
    transform: translateY(-1px);
    animation: none;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 2px 10px rgba(197,147,42,0.2); }
    50%      { box-shadow: 0 4px 25px rgba(197,147,42,0.5); }
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* ============================================================
   HEADER / NAV — Premium Glassmorphism
   ============================================================ */
.site-header {
    position: fixed;
    top: var(--top-bar-h);
    left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: transparent;
    transition: all var(--transition);
}
.site-header.scrolled {
    top: 0;
    background: rgba(10,22,40,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    height: 68px;
}
/* Gold accent line on scrolled header */
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,147,42,0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.site-header.scrolled::after { opacity: 1; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
    height: 52px;
    width: auto;
    transition: all var(--transition);
    filter: drop-shadow(0 0 0 transparent);
}
.scrolled .logo-img { height: 42px; }
.logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(197,147,42,0.35));
}

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-link {
    padding: 0.5rem 0.875rem;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
    position: relative;
    transition: color var(--transition), text-shadow var(--transition);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 8px rgba(197,147,42,0.4);
    border-radius: 1px;
    transition: transform var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--white);
    text-shadow: 0 0 20px rgba(197,147,42,0.2);
}
.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hamburger */
.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; z-index: 1002; }
.hamburger { width: 22px; height: 16px; position: relative; display: flex; flex-direction: column; justify-content: space-between; }
.hamburger span {
    display: block; width: 100%; height: 2px; background: var(--white);
    border-radius: 2px; transition: all var(--transition); transform-origin: center;
}
.nav-toggle.open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav — Cinematic Panel */
@media (max-width: 1024px) {
    .site-header { top: 0; }
    .nav-toggle { display: flex; }
    .btn-nav-cta { display: none; }
    .main-nav {
        position: fixed;
        top: 0; right: 0;
        width: min(380px, 88vw);
        height: 100vh;
        background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-3xl);
        transform: translateX(100%);
        transition: transform var(--transition-slow);
        box-shadow: -10px 0 50px rgba(0,0,0,0.5);
        border-left: 1px solid rgba(197,147,42,0.1);
        z-index: 1001;
    }
    .main-nav.open { transform: translateX(0); }

    /* Staggered link animation */
    .main-nav.open .nav-item {
        animation: nav-stagger 0.4s ease forwards;
        opacity: 0;
        transform: translateX(30px);
    }
    .main-nav.open .nav-item:nth-child(1) { animation-delay: 0.05s; }
    .main-nav.open .nav-item:nth-child(2) { animation-delay: 0.1s; }
    .main-nav.open .nav-item:nth-child(3) { animation-delay: 0.15s; }
    .main-nav.open .nav-item:nth-child(4) { animation-delay: 0.2s; }
    .main-nav.open .nav-item:nth-child(5) { animation-delay: 0.25s; }
    .main-nav.open .nav-item:nth-child(6) { animation-delay: 0.3s; }
    .main-nav.open .nav-item:nth-child(7) { animation-delay: 0.35s; }
    .main-nav.open .nav-item:nth-child(8) { animation-delay: 0.4s; }
    .main-nav.open .nav-item:nth-child(9) { animation-delay: 0.45s; }
    @keyframes nav-stagger {
        to { opacity: 1; transform: translateX(0); }
    }

    .nav-list { flex-direction: column; align-items: flex-start; gap: var(--space-xs); width: 100%; }
    .nav-link {
        font-size: var(--fs-md);
        padding: var(--space-sm) 0;
        width: 100%;
    }
    .nav-link::after { left: 0; transform: scaleX(0); transform-origin: left; }
    .nav-link:hover::after,
    .nav-link.active::after { transform: scaleX(1); }

    /* Mobile nav footer */
    .mobile-nav-footer {
        margin-top: var(--space-2xl);
        padding-top: var(--space-xl);
        border-top: 1px solid rgba(255,255,255,0.08);
        display: flex;
        flex-direction: column;
        gap: var(--space-lg);
    }
    .mobile-nav-footer .btn { width: 100%; justify-content: center; }
    .mobile-nav-social {
        display: flex;
        gap: var(--space-sm);
    }
    .mobile-nav-social a {
        width: 36px; height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.08);
        display: flex; align-items: center; justify-content: center;
        color: rgba(255,255,255,0.6);
        transition: all var(--transition);
    }
    .mobile-nav-social a:hover { background: var(--gold); color: var(--navy); }
    .mobile-nav-social svg { width: 16px; height: 16px; }
}
@media (min-width: 1025px) {
    .mobile-nav-footer { display: none; }
}

/* ============================================================
   HERO — Cinematic Depth
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 40%, rgba(10,22,40,0.6) 100%),
        linear-gradient(180deg, rgba(10,22,40,0.5) 0%, rgba(10,22,40,0.3) 40%, rgba(10,22,40,0.7) 100%);
    z-index: 1;
}

/* Gradient Mesh — adds color depth */
.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(197,147,42,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(27,58,107,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(42,82,152,0.08) 0%, transparent 50%);
    animation: mesh-drift 20s ease-in-out infinite alternate;
}
@keyframes mesh-drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, 10px) scale(1.05); }
}

/* Light Rays — ethereal glow */
.hero-light-rays {
    position: absolute;
    inset: -50%;
    z-index: 1;
    background: conic-gradient(
        from 0deg at 50% 30%,
        transparent 0deg,
        rgba(232,197,71,0.03) 20deg,
        transparent 40deg,
        transparent 90deg,
        rgba(197,147,42,0.02) 110deg,
        transparent 130deg,
        transparent 200deg,
        rgba(232,197,71,0.03) 220deg,
        transparent 240deg,
        transparent 310deg,
        rgba(197,147,42,0.02) 330deg,
        transparent 350deg
    );
    animation: light-rotate 120s linear infinite;
}
@keyframes light-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-light);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 8s infinite ease-in-out;
}
.hero-particle:nth-child(1)  { left: 8%;  top: 20%; animation-delay: 0s; }
.hero-particle:nth-child(2)  { left: 22%; top: 60%; animation-delay: 1.5s; }
.hero-particle:nth-child(3)  { left: 42%; top: 28%; animation-delay: 3s; }
.hero-particle:nth-child(4)  { left: 62%; top: 72%; animation-delay: 4.5s; }
.hero-particle:nth-child(5)  { left: 78%; top: 38%; animation-delay: 6s; width: 6px; height: 6px; }
.hero-particle:nth-child(6)  { left: 88%; top: 15%; animation-delay: 2s; }
.hero-particle:nth-child(7)  { left: 33%; top: 82%; animation-delay: 5s; }
.hero-particle:nth-child(8)  { left: 68%; top: 22%; animation-delay: 7s; width: 5px; height: 5px; }
.hero-particle:nth-child(9)  { left: 15%; top: 45%; animation-delay: 1s; width: 3px; height: 3px; }
.hero-particle:nth-child(10) { left: 52%; top: 55%; animation-delay: 3.5s; }
.hero-particle:nth-child(11) { left: 92%; top: 50%; animation-delay: 6.5s; width: 3px; height: 3px; }
.hero-particle:nth-child(12) { left: 5%;  top: 75%; animation-delay: 4s; width: 5px; height: 5px; }

@keyframes particle-float {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    20%      { opacity: 0.7; }
    50%      { opacity: 0.4; transform: translateY(-70px) scale(1); }
    80%      { opacity: 0.2; }
}

/* Floating crosses */
.hero-particle-cross {
    position: absolute;
    width: 12px;
    height: 12px;
    opacity: 0;
    animation: cross-float 10s infinite ease-in-out;
}
.hero-particle-cross::before,
.hero-particle-cross::after {
    content: '';
    position: absolute;
    background: var(--gold-light);
    border-radius: 1px;
}
.hero-particle-cross::before {
    width: 2px; height: 12px;
    left: 5px; top: 0;
}
.hero-particle-cross::after {
    width: 8px; height: 2px;
    left: 2px; top: 3px;
}
.hero-particle-cross:nth-of-type(1) { left: 18%; top: 35%; animation-delay: 2s; }
.hero-particle-cross:nth-of-type(2) { left: 75%; top: 60%; animation-delay: 5s; }

@keyframes cross-float {
    0%, 100% { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.6); }
    20%      { opacity: 0.3; }
    50%      { opacity: 0.2; transform: translateY(-50px) rotate(45deg) scale(1); }
    80%      { opacity: 0.1; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: calc(var(--header-h) + var(--top-bar-h) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    max-width: 940px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(197,147,42,0.12);
    border: 1px solid rgba(197,147,42,0.25);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(12px);
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
    font-size: var(--fs-hero);
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.05;
}
/* Word-by-word reveal */
.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: word-reveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--i, 0) * 0.2s + 0.6s);
}
@keyframes word-reveal {
    to { opacity: 1; transform: translateY(0); }
}
.hero-title .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(197,147,42,0.25));
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-lg);
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}
.hero .btn-group {
    justify-content: center;
}

/* Scroll Indicator — Mouse Icon */
.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.hero-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
}
.hero-scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold-light);
    border-radius: 2px;
    animation: scroll-dot 2s infinite;
}
@keyframes scroll-dot {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}
/* Legacy support for line version */
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ============================================================
   PAGE HERO (Interior Pages) — With Background Images
   ============================================================ */
.page-hero {
    position: relative;
    padding: calc(var(--header-h) + var(--top-bar-h) + var(--space-4xl)) 0 var(--space-4xl);
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    overflow: hidden;
    text-align: center;
}
/* Background image layer */
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: saturate(0.7);
}
/* Overlay on top of image */
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.75) 0%, rgba(27,58,107,0.65) 100%);
    z-index: 1;
}
/* Decorative gradient orbs */
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197,147,42,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(27,58,107,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 2;
}
/* Gold accent line at bottom */
.page-hero .container { position: relative; z-index: 3; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero-title {
    font-size: var(--fs-2xl);
    color: var(--white);
    margin-bottom: var(--space-md);
}
.page-hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}
.page-hero .breadcrumb {
    margin-top: var(--space-xl);
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.5);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero .breadcrumb .sep { margin: 0 0.5rem; }

/* Gold bottom line */
.page-hero-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 4;
    opacity: 0.5;
}

/* --- Cards --- */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.card-body {
    padding: var(--space-xl);
}
.card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--blue-pale);
    color: var(--blue);
    font-size: var(--fs-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}
.card-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}
.card-text {
    color: var(--gray-500);
    font-size: var(--fs-sm);
    line-height: 1.7;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: var(--space-md);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--gold);
    transition: gap var(--transition);
}
.card-link:hover { gap: 0.625rem; }
.card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }

/* Icon card — enhanced hover */
.icon-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.icon-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(197,147,42,0.1);
    transform: translateY(-6px);
}
.icon-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(27,58,107,0.08) 0%, rgba(197,147,42,0.08) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    transition: all var(--transition);
}
.icon-card:hover .icon-card-icon {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    color: var(--white);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 4px 15px rgba(27,58,107,0.3);
}
.icon-card-title {
    font-size: var(--fs-md);
    margin-bottom: var(--space-sm);
}
.icon-card-text {
    font-size: var(--fs-sm);
    color: var(--gray-500);
}

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-2xl); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   STATS SECTION — With Background Image & Angled Edges
   ============================================================ */
.stats-section {
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 3rem, 100% 0, 100% calc(100% - 3rem), 0 100%);
    padding: calc(var(--space-4xl) + 3rem) 0 calc(var(--space-4xl) + 3rem);
}
.stats-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.stats-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: grayscale(40%);
}
.stats-section > .container {
    position: relative;
    z-index: 2;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    padding: var(--space-3xl) 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.375rem;
    text-shadow: 0 0 30px rgba(197,147,42,0.25);
}
.stat-label {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

@media (max-width: 640px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
    .stats-section { clip-path: polygon(0 1.5rem, 100% 0, 100% calc(100% - 1.5rem), 0 100%); }
}

/* --- Mission / Split Sections --- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.6s ease;
}
.split-img:hover img { transform: scale(1.03); }
.split-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(197,147,42,0.2);
}
.split-content { }
.split-content .section-label { justify-content: flex-start; }
.split-content .section-label::before { display: none; }
.split-content h2 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-lg);
}
.split-content p {
    margin-bottom: var(--space-md);
    color: var(--gray-500);
}
.split-content p:last-of-type { margin-bottom: var(--space-xl); }

@media (max-width: 768px) {
    .split, .split-reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl) var(--space-3xl);
    text-align: center;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(197,147,42,0.15) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(42,82,152,0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
    font-size: var(--fs-xl);
    color: var(--white);
    margin-bottom: var(--space-md);
}
.cta-banner p {
    font-size: var(--fs-md);
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    margin: 0 auto var(--space-xl);
    font-weight: 300;
}
.cta-banner .btn-group { justify-content: center; }

/* Text Shimmer effect for CTA headings */
.text-shimmer {
    background: linear-gradient(90deg, var(--white) 0%, var(--gold-light) 25%, var(--white) 50%, var(--gold-light) 75%, var(--white) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

/* --- Testimonial Cards --- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all var(--transition);
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(197,147,42,0.1);
    transform: translateY(-6px);
}
.testimonial-quote {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
    opacity: 0.4;
}
.testimonial-text {
    font-size: var(--fs-base);
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: var(--fs-md);
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 600;
    color: var(--navy);
    font-size: var(--fs-sm);
}
.testimonial-role {
    font-size: var(--fs-xs);
    color: var(--gray-500);
}

/* --- Event Cards --- */
.event-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: var(--space-xl);
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
    transform: translateY(-3px);
}
.event-date-box {
    text-align: center;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    border-radius: var(--radius-md);
    color: var(--white);
}
.event-date-month {
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-light);
}
.event-date-day {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    line-height: 1.2;
}
.event-info h3 {
    font-size: var(--fs-md);
    margin-bottom: 0.375rem;
}
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: var(--fs-xs);
    color: var(--gray-500);
}
.event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.event-meta svg { width: 14px; height: 14px; opacity: 0.6; }

@media (max-width: 480px) {
    .event-card { grid-template-columns: 1fr; }
}

/* --- Form --- */
.form-group {
    margin-bottom: var(--space-lg);
}
.form-label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.375rem;
}
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: var(--fs-base);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(27,58,107,0.1);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}

/* --- Beliefs List --- */
.belief-item {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--gray-200);
}
.belief-item:last-child { border-bottom: none; }
.belief-number {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    color: var(--gold);
    opacity: 0.3;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1;
}
.belief-title {
    font-size: var(--fs-lg);
    margin-bottom: var(--space-sm);
}
.belief-text {
    color: var(--gray-500);
    max-width: 800px;
    line-height: 1.8;
}

/* --- Give / Impact --- */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}
.impact-card {
    text-align: center;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(27,58,107,0.03) 0%, rgba(197,147,42,0.03) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.impact-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(197,147,42,0.1);
    transform: translateY(-6px);
}
.impact-amount {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: var(--space-sm);
}
.impact-desc {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .impact-grid { grid-template-columns: 1fr; }
}

/* --- Resources Grid --- */
.resource-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}
.resource-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}
.resource-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--blue-pale);
    transition: transform 0.6s ease;
}
.resource-card:hover .resource-img { transform: scale(1.05); }
.resource-body {
    padding: var(--space-xl);
}
.resource-type {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}
.resource-type svg { width: 14px; height: 14px; }
.resource-title {
    font-size: var(--fs-md);
    margin-bottom: var(--space-sm);
}
.resource-excerpt {
    font-size: var(--fs-sm);
    color: var(--gray-500);
    line-height: 1.7;
}

/* --- Map placeholder --- */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: var(--fs-sm);
    border: 2px dashed var(--gray-300);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ============================================================
   FOOTER — Enhanced
   ============================================================ */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding-top: 0;
    position: relative;
}
/* Subtle pattern overlay */
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 85% 10%, rgba(197,147,42,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.footer-wave {
    color: var(--navy);
    margin-bottom: var(--space-3xl);
    line-height: 0;
}
.footer-wave svg {
    width: 100%;
    height: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-md);
}
.footer-about p {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}
.footer-social {
    display: flex;
    gap: var(--space-sm);
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
    position: relative;
}
.social-link::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all var(--transition);
}
.social-link:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}
.social-link:hover::after {
    border-color: rgba(197,147,42,0.3);
    inset: -7px;
}
.footer-heading {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer-links li { margin-bottom: var(--space-sm); }
.footer-links a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.6);
    transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.5;
}
.footer-bottom {
    padding: var(--space-xl) 0;
    text-align: center;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.4);
    position: relative;
}
.footer-scripture {
    margin-top: var(--space-sm);
    font-style: italic;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

/* --- Counter animation --- */
.counter { display: inline-block; }

/* --- Link arrow --- */
.arrow-icon {
    display: inline-block;
    transition: transform var(--transition);
}
a:hover .arrow-icon,
button:hover .arrow-icon { transform: translateX(4px); }

/* --- Overlay for mobile nav --- */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* --- Nationwide Reach section --- */
.reach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}
.reach-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all var(--transition);
}
.reach-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(197,147,42,0.2);
    transform: translateY(-2px);
}
.reach-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(197,147,42,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
}
.reach-label {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* --- Leadership --- */
.leader-card {
    text-align: center;
}
.leader-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-lg);
    border: 4px solid var(--gold-pale);
    box-shadow: var(--shadow-md);
}
.leader-name {
    font-size: var(--fs-md);
    margin-bottom: 0.25rem;
}
.leader-role {
    font-size: var(--fs-sm);
    color: var(--gold);
    font-weight: 500;
}

/* --- Prayer Section --- */
.prayer-section {
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--white) 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
}

/* ============================================================
   RESPONSIVE POLISH
   ============================================================ */
@media (max-width: 768px) {
    .section { padding: var(--space-4xl) 0; }
    .section-sm { padding: var(--space-3xl) 0; }
    .hero-content { padding-left: var(--space-md); padding-right: var(--space-md); }
    .cta-banner { padding: var(--space-3xl) var(--space-xl); border-radius: var(--radius-lg); }
    .page-hero { padding: calc(var(--header-h) + var(--space-3xl)) 0 var(--space-3xl); }
}

@media (max-width: 480px) {
    .hero .btn-group { flex-direction: column; align-items: center; }
    .hero .btn { width: 100%; max-width: 280px; }
}

/* --- Print --- */
@media print {
    .site-header, .nav-toggle, .back-to-top, .footer-social, .top-bar, .preloader { display: none; }
    .hero { min-height: auto; padding: 2rem 0; }
    body { font-size: 12pt; color: #000; opacity: 1; }
}
