* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcfaf7;
    color: #1e2a3a;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* header / nav */
.navbar {
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0,20,30,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(4px);
    background: rgba(255,255,255,0.95);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c4b3c;
    text-decoration: none;
    letter-spacing: -0.02em;
}
.logo span {
    color: #b58b5b;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    font-weight: 500;
    color: #1e3a2f;
    transition: 0.2s;
    font-size: 1rem;
}
.nav-menu a:hover {
    color: #b58b5b;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #2c4b3c;
}

/* mobile menu */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 76px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1.5rem;
        transition: 0.3s;
        border-top: 1px solid #eee;
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger {
        display: block;
    }
}

/* buttons */
.btn {
    display: inline-block;
    background: #2c4b3c;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 10px rgba(44,75,60,0.2);
}
.btn:hover {
    background: #b58b5b;
    color: white;
    transform: scale(1.02);
}
.btn-outline {
    background: transparent;
    border: 2px solid #2c4b3c;
    color: #2c4b3c;
    box-shadow: none;
}
.btn-outline:hover {
    background: #2c4b3c;
    color: white;
}

/* sections */
.section {
    padding: 80px 0;
}
.section-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c4b3c;
    position: relative;
}
.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #b58b5b;
    margin-top: 8px;
}
.bg-light {
    background: #f5f2ed;
}
.bg-white {
    background: #ffffff;
}

/* hero */
.hero {
    background: linear-gradient(135deg, #1e3a2f 0%, #2c5a48 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.hero .sub {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #f0e0c4;
}
.hero .verse {
    font-size: 1.6rem;
    font-style: italic;
    margin: 1.5rem 0;
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 60px;
    backdrop-filter: blur(4px);
}
.hero-tagline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0 2rem;
    font-size: 1.4rem;
    font-weight: 300;
}
.hero-tagline span {
    font-weight: 600;
    border-bottom: 2px solid #b58b5b;
}
.btn-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* pillars grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin: 40px 0;
}
.pillar-card {
    background: white;
    padding: 24px 16px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    text-align: center;
    font-weight: 600;
    color: #1e3a2f;
    border: 1px solid #e9e1d6;
}
.pillar-card i {
    font-size: 2.4rem;
    color: #b58b5b;
    margin-bottom: 12px;
}

/* fellowships map style */
.loc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 30px 0;
}
.loc-badge {
    background: #e9e1d6;
    padding: 0.6rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    color: #1e3a2f;
}

/* leadership card */
.leader-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    max-width: 500px;
    border: 1px solid #ede5d9;
}
.leader-name {
    font-size: 2rem;
    color: #2c4b3c;
    margin-bottom: 0.25rem;
}
.leader-title {
    color: #b58b5b;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* contact / cta */
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}
.contact-info i {
    color: #b58b5b;
    margin-right: 12px;
    width: 24px;
}
.whatsapp-card {
    background: #25D36610;
    border: 1px solid #25D36630;
    border-radius: 32px;
    padding: 30px;
    text-align: center;
}

footer {
    background: #1e2a1e;
    color: #ddd;
    padding: 30px 0;
    text-align: center;
}

/* helper */
.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }

/* ticker (infinite scrolling marquee) */
.ticker{display:flex;align-items:center;gap:12px;overflow:hidden;padding:8px 14px;border-radius:12px;margin-bottom:18px;background:linear-gradient(90deg,rgba(255,255,255,0.05),rgba(255,255,255,0.02));}
.ticker-track{display:flex;gap:48px;align-items:center;white-space:nowrap;animation:ticker-scroll 18s linear infinite}
.ticker-item{color:#fff;font-weight:600;font-size:1rem}
.ticker button{margin-left:auto;padding:6px 12px;border-radius:999px;font-size:.9rem}

@keyframes ticker-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

@media (prefers-reduced-motion: reduce){
    .ticker-track{animation:none}
}
