/* ============================================================
   KHASAKH — Horizon template
   Navy #071d36 · Gold #c89b3c
   Fraunces + Manrope · floating glass nav · rounded cards
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --navy:        #071d36;
    --navy-deep:   #04101f;
    --navy-mid:    #0c2d52;
    --navy-soft:   #164e8c;
    --gold:        #c89b3c;
    --gold-lt:     #e8c46a;
    --gold-pale:   #f6ead0;
    --canvas:      #f4f1eb;
    --white:       #ffffff;
    --ink:         #122033;
    --slate:       #5a6a7a;
    --line:        rgba(7, 29, 54, .10);
    --radius:      22px;
    --radius-sm:   14px;
    --pill:        999px;
    --header-h:    92px;
    --font-serif:  'Fraunces', Georgia, serif;
    --font-sans:   'Manrope', system-ui, sans-serif;
    --shadow:      0 22px 50px rgba(7, 29, 54, .08);
    --shadow-lg:   0 30px 70px rgba(7, 29, 54, .14);
    --transition:  .28s cubic-bezier(.22, 1, .36, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--canvas);
    line-height: 1.65;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 8px; }

.skip-link {
    position: absolute; left: -999px; top: 8px;
    background: var(--gold); color: var(--navy);
    padding: .55rem 1rem; z-index: 2000; font-weight: 700;
    border-radius: var(--pill);
}
.skip-link:focus { left: 12px; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.gold { color: var(--gold); }

.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: var(--gold); z-index: 1300; pointer-events: none;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .trust-track { animation: none !important; }
    .slide.active { animation: none; transform: scale(1.04); }
}

/* ===== TYPE ===== */
.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .7rem;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.12;
    letter-spacing: -.02em;
}
.section-title span { color: var(--gold); font-style: italic; font-weight: 500; }
.section-subtitle { color: var(--slate); max-width: 520px; font-size: 1.02rem; }
.section-header {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 380px);
    gap: 1.4rem 3rem;
    align-items: end;
    margin-bottom: 2.8rem;
}
.section-header.center {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
}
.divider { display: none; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: .8rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; text-decoration: none;
    padding: .85rem 1.55rem; border: 1px solid transparent;
    border-radius: var(--pill); cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn-sm { padding: .55rem 1.1rem; font-size: .72rem; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(200,155,60,.28); }
.btn-outline {
    background: transparent; color: #fff;
    border-color: rgba(255,255,255,.45);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-lt); background: rgba(200,155,60,.1); }
.btn-navy { background: var(--navy); color: var(--gold-lt); }
.btn-navy:hover { background: var(--navy-mid); }

/* ===== FLOATING HEADER ===== */
.site-header {
    position: fixed; top: 14px; left: 0; right: 0;
    z-index: 900;
    height: auto;
    background: transparent;
    border: none;
}
.header-shell { max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.header-inner {
    height: 68px;
    display: flex; align-items: center; gap: 1rem;
    padding: 0 10px 0 10px;
    background: rgba(7, 29, 54, .38);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--pill);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: background .25s, box-shadow .25s;
}
.is-inner .header-inner,
.site-header.scrolled .header-inner {
    background: rgba(7, 29, 54, .94);
    box-shadow: 0 18px 40px rgba(7, 29, 54, .28);
}
.logo-area {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; margin-right: auto;
}
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}
.logo-mark {
    display: none; width: 38px; height: 38px;
    background: var(--gold); color: var(--navy);
    font-family: var(--font-serif); font-weight: 700; font-size: 1.25rem;
    align-items: center; justify-content: center; border-radius: 50%;
}
.logo-text { display: none; flex-direction: column; line-height: 1.15; }
.logo-text strong {
    color: var(--gold-lt); font-size: .92rem; letter-spacing: .18em; font-weight: 700;
}
.logo-text em {
    color: rgba(255,255,255,.55); font-style: normal; font-size: .68rem;
    letter-spacing: .08em; text-transform: uppercase; font-weight: 400;
}

.nav-links { display: flex; list-style: none; gap: .1rem; }
.nav-links a {
    color: rgba(255,255,255,.78); text-decoration: none;
    font-size: .74rem; font-weight: 700; letter-spacing: .06em;
    text-transform: uppercase; padding: .45rem .7rem;
    border-radius: var(--pill);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--navy); background: var(--gold); }

.header-actions { display: flex; align-items: center; gap: .6rem; }

.hamburger {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    width: 42px; height: 42px; gap: 5px; cursor: pointer;
    background: rgba(255,255,255,.08); border: 1px solid rgba(200,155,60,.35);
    border-radius: 50%;
}
.hamburger span { display: block; width: 16px; height: 1.5px; background: var(--gold-lt); transition: .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
    display: none; margin-top: 8px;
    background: rgba(7, 29, 54, .96);
    padding: 1rem 1.4rem 1.4rem;
    border: 1px solid rgba(200,155,60,.2);
    border-radius: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav a {
    display: block; color: rgba(255,255,255,.85); text-decoration: none;
    padding: .85rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    letter-spacing: .06em; text-transform: uppercase; font-size: .82rem; font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--gold-lt); }
.mobile-nav .btn { margin-top: 1rem; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 116vh;
    height: 116vh;
    max-height: 1200px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: var(--navy);
    padding-bottom: 96px;
}
.hero-bg { position: absolute; inset: 0; }
.slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s ease;
    transform: scale(1.08);
}
.slide.active { opacity: 1; animation: ken 9s ease-out forwards; }
@keyframes ken {
    from { transform: scale(1); }
    to { transform: scale(1.12); }
}
.slide::after {
    content: ''; position: absolute; inset: 0;
    background:
        linear-gradient(90deg, rgba(7,29,54,.72) 0%, rgba(7,29,54,.28) 48%, rgba(7,29,54,.12) 100%),
        linear-gradient(180deg, rgba(7,29,54,.2) 0%, rgba(7,29,54,.55) 100%);
}
.hero-panel {
    position: relative;
    z-index: 4;
    width: min(560px, calc(100% - 48px));
    margin: 5.6rem 0 0 max(28px, calc((100vw - 1180px) / 2 + 28px));
    padding: 1.8rem 2rem 1.7rem;
    color: #fff;
    text-align: left;
    background: rgba(7, 29, 54, .42);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 32px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
}
.hero-kicker {
    font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold); font-weight: 800; margin-bottom: 1.1rem;
}
.hero-panel h1 {
    font-family: var(--font-serif); font-weight: 600;
    font-size: clamp(2.2rem, 4.4vw, 3.5rem);
    line-height: 1.08; margin-bottom: 1rem;
}
.hero-panel h1 em { font-style: italic; color: var(--gold-lt); font-weight: 500; }
.hero-tagline {
    font-size: 1.05rem; color: rgba(255,255,255,.82);
    margin-bottom: 1.3rem;
}
.hero-meta {
    display: flex; flex-wrap: wrap; gap: .5rem;
    margin-bottom: 1.3rem;
}
.hero-meta-item {
    font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 700;
    color: rgba(255,255,255,.88); border: 1px solid rgba(200,155,60,.4);
    padding: .38rem .75rem; display: inline-flex; align-items: center; gap: 6px;
    border-radius: var(--pill); background: rgba(255,255,255,.06);
}
.hero-meta-item svg { color: var(--gold); }
.hero-motto {
    font-family: var(--font-serif); font-style: italic; font-size: 1.12rem;
    color: var(--gold-lt); border-top: 1px solid rgba(200,155,60,.3);
    padding-top: 1rem; margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
    width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.3);
    background: rgba(7,29,54,.4); color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; backdrop-filter: blur(8px);
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(7,29,54,.7); }
.slider-btn.prev { left: 18px; }
.slider-btn.next { right: 18px; }
.slider-dots {
    position: absolute; left: 50%; bottom: 108px; z-index: 5;
    transform: translateX(-50%);
    display: flex; gap: 8px;
}
.slider-dot {
    width: 10px; height: 10px; border: none; border-radius: 50%;
    background: rgba(255,255,255,.35); cursor: pointer;
}
.slider-dot.active { background: var(--gold); transform: scale(1.15); }

/* ===== STATS ===== */
.stats-bar {
    background: transparent;
    margin-top: -108px;
    position: relative;
    z-index: 6;
    padding: 0 28px;
}
.stats-inner {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.stat-item {
    padding: 1.6rem 1.2rem;
    border-right: 1px solid var(--line);
    text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-icon { display: none; }
.stat-num {
    font-family: var(--font-serif); font-size: 2.05rem; font-weight: 650;
    color: var(--navy); line-height: 1; margin-bottom: .4rem;
}
.stat-label {
    font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--gold); font-weight: 800;
}

/* ===== TRUST ===== */
.trust-bar {
    background: transparent; overflow: hidden;
    padding: 1.1rem 0 .2rem;
}
.trust-track { display: flex; gap: 2.6rem; width: max-content; animation: marquee 32s linear infinite; }
.trust-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.trust-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--slate); white-space: nowrap; font-weight: 700;
}
.trust-item svg { color: var(--gold); }
.trust-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; align-self: center; opacity: .45; }

/* ===== SECTIONS ===== */
section { padding: 96px 0; }
.section-alt { background: #ebe6dc; }
.page-main { padding: 40px 0 96px; }

.mission-intro {
    background: var(--navy); color: rgba(255,255,255,.8);
    padding: 2rem 2.2rem; margin-bottom: 2rem;
    border-radius: var(--radius); font-size: 1.05rem; line-height: 1.8;
    box-shadow: var(--shadow);
}
.mission-intro strong { color: var(--gold-lt); }

.values-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.value-card {
    background: var(--white); padding: 2rem 1.8rem;
    border-radius: var(--radius); box-shadow: var(--shadow);
    border: 1px solid transparent;
    transition: transform .25s, border-color .25s;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(200,155,60,.45); }
.value-num {
    font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold);
    line-height: 1; margin-bottom: .75rem; font-weight: 650;
}
.value-icon { display: none; }
.value-card h3 {
    font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy);
    font-weight: 600; margin-bottom: .4rem;
}
.value-card p { color: var(--slate); font-size: .95rem; }

/* ===== SERVICES ===== */
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.service-card {
    background: var(--white); padding: 2.1rem 1.8rem;
    border-radius: var(--radius); box-shadow: var(--shadow);
    transition: transform .3s;
}
.service-card:first-child {
    background: var(--navy); color: #fff;
}
.service-card:first-child h3 { color: var(--gold-lt); }
.service-card:first-child p { color: rgba(255,255,255,.7); }
.service-card:hover { transform: translateY(-6px); }
.service-icon-wrap {
    width: 52px; height: 52px; border-radius: 16px;
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    color: var(--navy); margin-bottom: 1.2rem;
}
.service-card:first-child .service-icon-wrap { background: rgba(200,155,60,.18); color: var(--gold-lt); }
.service-card h3 {
    font-family: var(--font-serif); font-size: 1.75rem; color: var(--navy);
    font-weight: 600; margin-bottom: .55rem;
}
.service-card p { color: var(--slate); }
.service-tag {
    display: inline-block; margin-top: 1.15rem;
    font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--gold); font-weight: 800;
    background: var(--gold-pale); padding: .35rem .7rem; border-radius: var(--pill);
}
.service-card:first-child .service-tag { color: var(--navy); background: var(--gold); }

/* ===== ABOUT ===== */
.about-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.4rem; align-items: start; }
.about-text p { color: var(--slate); margin-bottom: 1rem; font-size: 1.02rem; line-height: 1.8; }
.about-text p strong { color: var(--navy); }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 1.5rem; }
.highlight-pill {
    border: 1px solid var(--line); padding: .75rem .9rem; font-size: .86rem;
    color: var(--navy); display: flex; gap: 8px; align-items: flex-start;
    background: var(--white); border-radius: 16px; font-weight: 600;
}
.highlight-pill svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-visual {
    background: var(--navy); color: #fff;
    padding: 0 0 1.8rem;
    border-radius: 28px; overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-visual::before { display: none; }
.about-photo {
    height: 200px; margin: 0 0 1.4rem;
    background-size: cover; background-position: center;
}
.about-visual h3 {
    font-family: var(--font-serif); font-size: 1.7rem; color: var(--gold-lt);
    margin: 0 1.6rem 1rem; font-weight: 600;
}
.about-list { list-style: none; padding: 0 1.6rem; }
.about-list li {
    display: flex; gap: 10px; padding: .7rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .92rem; color: rgba(255,255,255,.78);
}
.about-list li:last-child { border-bottom: none; }
.about-list svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.about-list strong { color: #fff; }

/* ===== LEADERSHIP ===== */
.committee-tabs {
    display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.8rem;
}
.committee-tab {
    background: var(--white); border: 1px solid var(--line);
    color: var(--slate); padding: .55rem 1rem; cursor: pointer;
    font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 800;
    border-radius: var(--pill);
}
.committee-tab:hover { color: var(--navy); border-color: var(--gold); }
.committee-tab.active { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.committee-panel { display: none; }
.committee-panel.active { display: block; animation: fadeUp .4s ease; }
.committee-panel.active .reveal { opacity: 1; transform: none; }
.committee-label {
    display: inline-block; font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); font-weight: 800; margin-bottom: 1.3rem;
}
.team-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.2rem;
}
.member-card {
    background: var(--white); padding: 1.2rem 1rem 1.3rem;
    border-radius: 24px; box-shadow: var(--shadow); text-align: center;
    transition: transform .25s;
}
.member-card:hover { transform: translateY(-6px); }
.member-img, .avatar-placeholder {
    width: 118px; height: 118px; object-fit: cover;
    border-radius: 50%; border: 3px solid var(--gold-pale);
    margin: 0 auto 1rem;
}
.avatar-placeholder {
    background: var(--navy); color: var(--gold-lt);
    font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600;
    display: flex; align-items: center; justify-content: center;
}
.member-name {
    font-family: var(--font-serif); font-size: 1.12rem; color: var(--navy);
    font-weight: 600; margin-bottom: .2rem;
}
.member-title {
    font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
    color: var(--gold); font-weight: 800;
}

/* ===== FAQ ===== */
.faq-wrap {
    display: grid; grid-template-columns: .85fr 1.15fr; gap: 2.4rem; align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: .7rem; }
.faq-item {
    background: var(--white); border-radius: 18px; padding: 0 1.2rem;
    box-shadow: var(--shadow); border: 1px solid transparent;
}
.faq-item.open { border-color: rgba(200,155,60,.4); }
.faq-q {
    width: 100%; background: none; border: none; text-align: left;
    padding: 1.1rem 0; font-size: 1.02rem; font-weight: 700; color: var(--navy);
    cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-q svg { color: var(--gold); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 1.1rem; color: var(--slate); font-size: .95rem; }
.faq-item.open .faq-a { display: block; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    margin-bottom: 1.4rem;
}
.contact-card {
    background: var(--white); padding: 1.6rem 1.4rem;
    display: flex; gap: 1rem; align-items: flex-start;
    border-radius: 20px; box-shadow: var(--shadow);
}
.contact-icon-wrap {
    width: 44px; height: 44px; border-radius: 14px;
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center; color: var(--navy); flex-shrink: 0;
}
.contact-card h4 {
    font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: .35rem; font-weight: 800;
}
.contact-card a, .contact-card p { color: var(--slate); text-decoration: none; font-size: .95rem; display: block; }
.contact-card a:hover { color: var(--navy); }

.contact-form-wrap {
    display: grid; grid-template-columns: 1fr 1fr; background: var(--white);
    box-shadow: var(--shadow); border-radius: 28px; overflow: hidden;
}
.contact-form-inner { padding: 2.2rem 2rem; }
.contact-map-placeholder { min-height: 360px; background: #dce3ec; }
.contact-map-placeholder iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-label {
    font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--slate); margin-bottom: .4rem; font-weight: 800;
}
.form-input {
    border: 1px solid var(--line); border-radius: 12px;
    padding: .75rem .9rem; background: var(--canvas); font-size: .95rem; outline: none;
    color: var(--ink);
}
.form-input:focus { border-color: var(--gold); background: #fff; }
.form-input.error { border-color: #b83232; }
.form-textarea { min-height: 110px; resize: vertical; }
.form-hint { font-size: .75rem; color: #b83232; display: none; margin-top: .25rem; }
.form-hint.show { display: block; }
.form-success {
    display: none; background: #e8f7ef; border: 1px solid rgba(26,122,74,.25);
    color: #155038; padding: .9rem 1rem; margin-bottom: 1rem; font-size: .9rem;
    border-radius: 12px;
}
.form-success.show { display: block; }
.contact-christian {
    display: inline-flex; gap: 8px; align-items: center;
    font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
    color: var(--navy); border: 1px solid var(--gold); padding: .55rem 1.2rem;
    border-radius: var(--pill);
}
.contact-center { text-align: center; }

/* ===== PAGE HERO ===== */
.page-hero {
    margin-top: 0;
    background:
        radial-gradient(ellipse at 80% 0%, rgba(200,155,60,.22), transparent 50%),
        var(--navy);
    padding: 8.4rem 0 3.6rem;
    color: #fff;
    position: relative;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}
.page-hero::after { display: none; }
.page-hero .container {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: end;
}
.breadcrumb {
    font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
    color: rgba(255,255,255,.4); margin-bottom: 1rem; font-weight: 700;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero h1 {
    font-family: var(--font-serif); font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 600; line-height: 1.08;
}
.page-hero h1 span { color: var(--gold-lt); font-style: italic; }
.page-hero p { color: rgba(255,255,255,.66); font-size: 1.05rem; }

/* ===== DOCS ===== */
.doc-toolbar {
    display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
    align-items: center; margin-bottom: 2rem;
    background: var(--white); padding: 1rem 1.1rem; border-radius: 20px;
    box-shadow: var(--shadow);
}
.doc-search { position: relative; flex: 1 1 260px; max-width: 380px; }
.doc-search svg { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--slate); }
.doc-search input {
    width: 100%; border: 1px solid var(--line); border-radius: var(--pill);
    background: var(--canvas); padding: .7rem 1rem .7rem 2.3rem; outline: none; font-size: .95rem;
}
.doc-search input:focus { border-color: var(--gold); background: #fff; }
.doc-filters { display: flex; flex-wrap: wrap; gap: .35rem; }
.doc-filter {
    background: transparent; border: 1px solid var(--line); border-radius: var(--pill);
    padding: .45rem .85rem; font-size: .72rem; letter-spacing: .08em;
    text-transform: uppercase; font-weight: 800; cursor: pointer; color: var(--slate);
}
.doc-filter.active { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.category-section { margin-bottom: 2.4rem; }
.category-title {
    font-family: var(--font-serif); font-size: 1.65rem; color: var(--navy);
    margin-bottom: 1rem; font-weight: 600;
}
.documents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.doc-card {
    background: var(--white); padding: 1.15rem 1.2rem;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    border-radius: 18px; box-shadow: var(--shadow);
}
.doc-card:hover { transform: translateY(-2px); }
.doc-info { display: flex; align-items: center; gap: 12px; min-width: 0; }
.doc-icon {
    width: 42px; height: 42px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.doc-icon.pdf { background: var(--navy); }
.doc-icon.pptx { background: #8a4b12; }
.doc-icon.docx { background: #1e4d8c; }
.doc-icon svg { width: 18px; height: 18px; stroke: var(--gold-lt); fill: none; stroke-width: 1.8; }
.doc-name { font-weight: 700; color: var(--navy); font-size: .92rem; }
.doc-name small { display: block; font-weight: 500; font-size: .72rem; color: var(--slate); margin-top: 2px; }
.download-btn {
    background: var(--navy); color: var(--gold-lt); border: 0;
    padding: 8px 14px; text-decoration: none; font-size: .68rem; letter-spacing: .08em;
    text-transform: uppercase; font-weight: 800; display: inline-flex; align-items: center; gap: 6px;
    flex-shrink: 0; border-radius: var(--pill);
}
.download-btn:hover { background: var(--navy-mid); }
.download-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.4; }
.help-banner {
    background: var(--white); border: 1px solid rgba(200,155,60,.4);
    padding: 2rem; text-align: center; margin-top: 1rem; border-radius: 24px;
}
.help-banner p { margin-top: 8px; color: var(--navy); }
.help-banner a { display: inline-block; margin-top: 10px; color: var(--gold); font-weight: 800; text-decoration: none; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.doc-empty { display: none; text-align: center; padding: 2rem; color: var(--slate); }

/* ===== NEWS ===== */
.section-tab { display: flex; gap: .45rem; margin-bottom: 2rem; }
.tab-btn {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--pill);
    padding: .6rem 1.1rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    font-size: .72rem; cursor: pointer; color: var(--slate);
}
.tab-btn.active { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeUp .35s ease; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.news-card {
    background: var(--white); padding: 1.6rem 1.5rem 1.3rem;
    border-radius: 22px; box-shadow: var(--shadow);
}
.news-date {
    font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold); font-weight: 800;
}
.news-card h3 {
    font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy);
    margin: .5rem 0 .45rem; font-weight: 600;
}
.news-card p { color: var(--slate); }
.news-toggle {
    background: none; border: 0; color: var(--navy); font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase; font-size: .72rem;
    margin-top: .9rem; cursor: pointer; padding: 0;
}
.news-extra { display: none; margin-top: .8rem; padding-top: .8rem; border-top: 1px solid var(--line); color: var(--slate); font-size: .9rem; }
.news-card.open .news-extra { display: block; }
.posters-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 1rem; }
.poster-card { background: var(--white); cursor: pointer; box-shadow: var(--shadow); border-radius: 18px; overflow: hidden; }
.poster-img { width: 100%; height: 270px; object-fit: cover; }
.poster-title { padding: 10px; text-align: center; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; color: var(--navy); font-weight: 700; }
.empty-state {
    text-align: center; padding: 3.2rem 1.5rem;
    background: var(--white); border-radius: 22px;
    border: 1px dashed rgba(200,155,60,.5);
}
.empty-state p { margin-top: 1rem; color: var(--navy); }
.empty-state code { background: var(--canvas); padding: 2px 7px; font-size: .85em; border-radius: 6px; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; background: var(--navy); border-radius: 18px; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(7,29,54,.75), transparent 50%);
    display: flex; align-items: flex-end; padding: 1rem; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.gallery-item--more { display: none; }
.gallery-grid.is-expanded .gallery-item--more { display: block; }
.gallery-more-wrap { text-align: center; margin-top: 2rem; }

.newsletter-banner {
    display: flex; justify-content: space-between; align-items: center; gap: 1.4rem;
    background: var(--navy); color: #fff; padding: 1.6rem 1.8rem; margin-bottom: 2rem;
    text-decoration: none; border-radius: 24px;
}
.newsletter-banner strong {
    display: block; font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; color: var(--gold-lt);
}
.newsletter-banner p { color: rgba(255,255,255,.65); margin-top: .35rem; }
.newsletter-banner .btn { flex-shrink: 0; }

.resource-band {
    background: transparent;
    padding: 28px 0 12px;
}
.resource-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.resource-card {
    padding: 1.8rem 1.6rem; color: #fff; text-decoration: none;
    min-height: 210px; display: flex; flex-direction: column;
    background: var(--navy); border-radius: 24px;
    box-shadow: var(--shadow);
    transition: transform .25s;
}
.resource-card:hover { transform: translateY(-5px); }
.resource-card h3 {
    font-family: var(--font-serif); font-size: 1.55rem; font-weight: 600;
    color: var(--gold-lt); margin: .3rem 0 .6rem;
}
.resource-card p { color: rgba(255,255,255,.68); flex: 1; }
.resource-card > span:last-child {
    margin-top: 1.1rem; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold); font-weight: 800;
}
.resource-card--photo {
    background-size: cover; background-position: center;
}

.lightbox {
    display: none; position: fixed; inset: 0; background: rgba(4,16,31,.95);
    z-index: 1400; justify-content: center; align-items: center; cursor: pointer;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85%; object-fit: contain; border-radius: 12px; }
.lightbox-close {
    position: absolute; top: 18px; right: 24px; font-size: 36px; color: #fff;
    background: none; border: none; cursor: pointer; line-height: 1;
}
.lightbox-caption { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.6); font-size: .82rem; }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25);
    background: transparent; color: #fff; font-size: 22px; cursor: pointer;
    border-radius: 50%;
}
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold); }

/* ===== FOOTER ===== */
footer {
    background: var(--navy-deep); color: rgba(255,255,255,.55); font-size: .88rem;
    border-top: 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 12px;
}
.footer-intro {
    display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem;
    padding: 3.2rem 0 2.2rem; border-bottom: 1px solid rgba(255,255,255,.08);
    align-items: end;
}
.footer-brand-logo {
    height: 72px; width: auto; object-fit: contain; margin-bottom: .85rem;
    display: block;
}
.footer-logo-text {
    font-family: var(--font-serif); font-size: 2rem; color: var(--gold-lt);
    display: block; font-weight: 600; line-height: 1;
}
.footer-reg {
    font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
    color: rgba(255,255,255,.35); font-weight: 700;
}
.footer-intro p { line-height: 1.75; max-width: 460px; }
.footer-top {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    padding: 2.4rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-col h5 {
    font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem; font-weight: 800;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .45rem; font-size: .88rem; }
.footer-col a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-social { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-social a {
    width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12);
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45);
    border-radius: 50%;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
    gap: .8rem; padding: 1.15rem 0 1.5rem; font-size: .78rem; color: rgba(255,255,255,.32);
}
.footer-christian-badge {
    letter-spacing: .08em; text-transform: uppercase; font-size: .68rem; color: rgba(255,255,255,.4); font-weight: 700;
}
.footer-credit { margin-left: auto; opacity: .85; }
.footer-credit img { height: 34px; width: auto; }
.footer-credit:hover { opacity: 1; }

/* ===== FLOAT ===== */
#back-top, .wa-float {
    position: fixed; width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    z-index: 800; border: none; text-decoration: none; cursor: pointer;
    border-radius: 50%;
}
#back-top {
    bottom: 24px; right: 24px; background: var(--gold); color: var(--navy);
    opacity: 0; pointer-events: none; transform: translateY(8px); transition: .3s;
}
#back-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.wa-float { bottom: 24px; right: 82px; background: #1a7a4a; color: #fff; }
.wa-float:hover { background: #15663d; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .hero-panel { margin-left: 24px; width: min(560px, calc(100% - 48px)); }
    .hero { padding-bottom: 88px; height: 109vh; max-height: 1050px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-layout, .faq-wrap, .contact-form-wrap, .page-hero .container, .footer-intro { grid-template-columns: 1fr; }
    .section-header { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .header-actions .btn { display: none; }
    .header-inner { border-radius: 22px; }
    .stats-bar { padding: 0 16px; }
    .stats-inner { grid-template-columns: 1fr 1fr; border-radius: 22px; }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item { border-bottom: 1px solid var(--line); }
    .values-grid, .documents-grid, .news-grid, .contact-grid, .resource-grid { grid-template-columns: 1fr; }
    .newsletter-banner { flex-direction: column; align-items: flex-start; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .container { padding: 0 18px; }
}
@media (max-width: 560px) {
    section { padding: 68px 0; }
    .hero { padding-bottom: 80px; height: 101vh; min-height: 650px; max-height: 975px; }
    .hero-panel { margin: 5.2rem 14px 0; width: calc(100% - 28px); padding: 1.4rem 1.3rem; }
    .stats-bar { margin-top: -80px; }
    .slider-dots { bottom: 92px; }
    .hero-panel h1 { font-size: 2rem; }
    .slider-btn { width: 38px; height: 38px; }
    .slider-btn.prev { left: 10px; }
    .slider-btn.next { right: 10px; }
    .stats-inner { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-top, .about-highlights { grid-template-columns: 1fr; }
    .footer-credit { margin-left: 0; }
    .wa-float { right: 22px; bottom: 78px; }
    .doc-card { flex-direction: column; align-items: flex-start; }
    .page-hero { padding-top: 7.4rem; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; }
}
