:root {
    --navy: #07142c;
    --navy-mid: #0c1f48;
    --royal: #15357f;
    --blue: #1d4fb8;
    --gold: #c9a227;
    --gold-soft: #e8c547;
    --cream: #f4efe3;
    --paper: #fbf8f2;
    --ink: #17191e;
    --muted: #5c6572;
    --line: #e4dccb;
    --white: #ffffff;
    --danger: #8f2433;
    --success: #1d6a4b;
    --shadow: 0 18px 50px rgba(7, 20, 44, 0.12);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Cormorant Garamond", serif; font-weight: 600; line-height: 1.15; margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }
.container { width: min(1160px, calc(100% - 2.4rem)); margin: 0 auto; }

.eyebrow {
    display: inline-block;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .74rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: .7rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); color: var(--navy); }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 42rem; }
.gold-rule {
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
    margin: 1rem 0 1.4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: .85rem 1.4rem;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .02em;
    transition: .22s ease;
    cursor: pointer;
    background: none;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--royal); }
.btn-ghost { border-color: var(--line); color: var(--navy); background: #fff; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.topbar {
    background: var(--navy);
    color: #d7deea;
    font-size: .82rem;
    border-bottom: 1px solid rgba(201,162,39,.25);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; }
.topbar a { color: var(--gold-soft); }
.topbar span { opacity: .85; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(251,248,242,.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 1rem;
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand-copy small { display: block; color: var(--gold); letter-spacing: .16em; text-transform: uppercase; font-size: .64rem; font-weight: 700; }
.brand-copy strong { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.18rem; color: var(--navy); line-height: 1.1; }

.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav a { font-size: .92rem; font-weight: 500; color: var(--navy-mid); }
.nav a:hover, .nav a.active { color: var(--royal); }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--navy); }

.hero {
    position: relative;
    background:
        radial-gradient(circle at 80% 18%, rgba(201,162,39,.16), transparent 28%),
        radial-gradient(circle at 88% 50%, rgba(29, 79, 184, .28), transparent 36%),
        linear-gradient(135deg, #061024 0%, #10275f 55%, #07142c 100%);
    color: #fff;
    overflow: hidden;
    padding: 5.2rem 0 4.6rem;
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 70px;
    background: linear-gradient(to top, var(--paper), transparent);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-copy { max-width: 640px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: #fff; }
.hero p { color: #d7deea; font-size: 1.12rem; max-width: 34rem; }
.hero-crest {
    display: grid;
    place-items: center;
}
.hero-apostle {
    width: min(360px, 86%);
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(201, 162, 39, .7);
    box-shadow:
        0 0 0 14px rgba(21, 61, 150, .22),
        0 22px 50px rgba(0, 0, 0, .35);
    background: #07142c;
}
.hero-apostle::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 61, 150, .22), rgba(7, 20, 44, .18));
    pointer-events: none;
}
.hero-apostle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transform: scaleX(-1);
}
.motto {
    display: inline-block;
    margin-top: .4rem;
    padding: .35rem .8rem;
    border: 1px solid rgba(201,162,39,.4);
    color: var(--gold-soft);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .72rem;
}

.stats {
    margin-top: -2.2rem;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.stat { padding: 1.4rem 1.2rem; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: "Cormorant Garamond", serif; font-size: 1.7rem; color: var(--navy); }
.stat span { color: var(--muted); font-size: .88rem; }

.section { padding: 5rem 0; }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy .section-title, .section-navy p { color: #fff; }
.section-navy .lead { color: #c9d2e3; }

.letters { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.letter-card, .card, .program-card, .pillar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: 0 8px 24px rgba(7,20,44,.04);
}
.letter-card h3 { font-size: 1.7rem; }
.letter-card .role { color: var(--gold); font-weight: 600; font-size: .88rem; letter-spacing: .04em; }
.quote { font-family: "Cormorant Garamond", serif; font-size: 1.18rem; font-style: italic; color: #2a3140; }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem; align-items: center; }
.about-panel {
    background: var(--navy);
    color: #fff;
    border-radius: 24px;
    padding: 2.2rem;
    min-height: 360px;
}
.about-panel h3 { color: #fff; font-size: 2rem; }
.about-panel p { color: #d3dbeb; }
.about-list { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.about-list li { padding: .55rem 0 .55rem 1.2rem; position: relative; }
.about-list li::before { content: ""; position: absolute; left: 0; top: 1rem; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.pillar-icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(201,162,39,.14); color: var(--royal); font-weight: 700; margin-bottom: 1rem;
}

.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.program-card { display: flex; flex-direction: column; min-height: 100%; }
.program-card .meta { color: var(--royal); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.program-card h3 { font-size: 1.55rem; }
.program-card p { color: var(--muted); flex: 1; }

.cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #10275f, #07142c);
    color: #fff;
    border-radius: 24px;
    padding: 2.2rem;
}
.cta-band h2 { color: #fff; font-size: 2.3rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; }
.info-list { display: grid; gap: 1rem; }
.info-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; }
.info-item small { color: var(--gold); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.info-item p { margin: .25rem 0 0; }

.form, .form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: .35rem; color: var(--navy); }
input, select, textarea {
    width: 100%;
    border: 1px solid #d8d1c2;
    background: #fff;
    border-radius: 12px;
    padding: .85rem 1rem;
    font: inherit;
    color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(201,162,39,.35); border-color: var(--gold); }
textarea { min-height: 140px; resize: vertical; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 1.6rem; box-shadow: var(--shadow); }
.error { color: var(--danger); font-size: .82rem; margin-top: .3rem; }
.alert {
    border-radius: 12px;
    padding: .9rem 1rem;
    margin-bottom: 1rem;
    font-size: .92rem;
}
.alert-success { background: #e7f6ee; color: var(--success); }
.alert-error { background: #fdecee; color: var(--danger); }

.page-hero { padding: 3.4rem 0 2.4rem; background: linear-gradient(180deg, #efe8d6, var(--paper)); }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--navy); }

.leader-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.leader-card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 2rem; overflow: hidden; }
.leader-card header { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.2rem; }
.leader-card.has-portrait { padding-top: 0; }
.leader-portrait {
    margin: 0 -2rem 1.4rem;
    background: #05070c;
    display: grid;
    place-items: center;
    min-height: 320px;
}
.leader-portrait img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    object-position: center top;
}
.leader-portrait.light { background: #ece8e2; }
.avatar {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--navy); color: var(--gold); display: grid; place-items: center;
    font-family: "Cormorant Garamond", serif; font-size: 1.6rem; font-weight: 700;
    overflow: hidden; flex-shrink: 0;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.letter-head { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.letter-head .avatar { width: 86px; height: 86px; border: 3px solid var(--gold); }

.award-block + .award-block { margin-top: 2.4rem; }
.site-footer { background: #050d1d; color: #c5cddd; padding: 3.2rem 0 1.4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; }
.site-footer a { color: #c5cddd; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-brand { display: flex; gap: .9rem; align-items: flex-start; }
.footer-brand img { width: 72px; }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; }

@media (max-width: 900px) {
    .hero-grid, .letters, .split, .pillars, .program-grid, .stats-grid, .contact-grid, .leader-grid, .footer-grid, .form-grid.two { grid-template-columns: 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .menu-toggle { display: block; }
    .nav {
        display: none;
        position: absolute;
        left: 0; right: 0; top: 100%;
        background: #fff;
        flex-direction: column;
        padding: 1rem 1.2rem 1.3rem;
        border-bottom: 1px solid var(--line);
        align-items: flex-start;
    }
    .nav.open { display: flex; }
    .cta-band, .topbar .container, .footer-bottom { flex-direction: column; align-items: flex-start; }
    .profile-hero { grid-template-columns: 1fr; }
}

.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(7,20,44,.08); }
.site-header.is-scrolled .container { min-height: 68px; }

.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1);
}
.reveal-left { opacity: 0; transform: translateX(-48px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal-right { opacity: 0; transform: translateX(48px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal-scale { opacity: 0; transform: scale(.94); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p,
.hero-copy .motto,
.hero-copy .actions {
    opacity: 0;
    transform: translateY(28px);
    animation: fadeUp .9s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-copy .eyebrow { animation-delay: .12s; }
.hero-copy h1 { animation-delay: .22s; }
.hero-copy p { animation-delay: .36s; }
.hero-copy .motto { animation-delay: .48s; }
.hero-copy .actions { animation-delay: .6s; }
.hero-crest { animation: fadeScale 1.1s .35s cubic-bezier(.22,1,.36,1) both; }

.profile-hero {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    min-height: 78vh;
    background: #05070c;
}
.profile-hero.light { background: #ece8e2; }
.profile-photo { min-height: 520px; }
.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}
.profile-copy {
    color: #fff;
    padding: clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.profile-hero.light .profile-copy { color: var(--navy); }
.profile-copy h1 { color: inherit; font-size: clamp(2.4rem, 5vw, 4rem); }
.profile-copy .lead { color: inherit; opacity: .82; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.2rem; }
.step b { display: block; color: var(--gold); letter-spacing: .12em; text-transform: uppercase; font-size: .74rem; }

@keyframes fadeUp {
    to { opacity: 1; transform: none; }
}
@keyframes fadeScale {
    from { opacity: 0; transform: scale(.88); }
    to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale,
    .hero-copy .eyebrow, .hero-copy h1, .hero-copy p, .hero-copy .motto, .hero-copy .actions, .hero-crest {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 900px) {
    .why-grid, .journey { grid-template-columns: 1fr; }
}
