/* ===========================================================
   Power-House Ministries — Design System
   Navy + Gold · Montserrat · static multi-page site
   =========================================================== */

:root {
  --navy-900: #081527;
  --navy-800: #0B1E3F;
  --navy-700: #132a52;
  --navy-600: #1c3a6b;
  --gold: #C9A24B;
  --gold-soft: #D8BC7C;
  --gold-deep: #A9832F;
  --cream: #F6F1E7;
  --cream-2: #EFE7D6;
  --paper: #FFFFFF;
  --ink: #14243f;
  --ink-soft: #47566b;
  --line: rgba(11, 30, 63, 0.12);
  --shadow-sm: 0 4px 14px rgba(8, 21, 39, 0.08);
  --shadow-md: 0 14px 40px rgba(8, 21, 39, 0.14);
  --shadow-lg: 0 30px 70px rgba(8, 21, 39, 0.22);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; color: var(--navy-800); }
h1, h2, h3 { font-family: var(--font-head); letter-spacing: -0.005em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { color: var(--ink-soft); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tint { background: var(--cream); }
.section--navy { background: var(--navy-800); color: #dfe7f2; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(223, 231, 242, 0.78); }

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); display: inline-block; }
.section--navy .eyebrow { color: var(--gold-soft); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 62ch; }
.center .lead { margin-left: auto; margin-right: auto; }
.divider { width: 62px; height: 3px; background: var(--gold); border-radius: 3px; margin: 22px 0; }
.center .divider { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  letter-spacing: .02em; cursor: pointer; border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
}
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: var(--gold); color: var(--navy-900); box-shadow: 0 12px 26px rgba(201,162,75,.35); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(201,162,75,.5); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: #fff; color: var(--navy-800); transform: translateY(-3px); }
.btn--navy { background: var(--navy-800); color: #fff; }
.btn--navy:hover { background: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--outline { border-color: var(--navy-800); color: var(--navy-800); }
.btn--outline:hover { background: var(--navy-800); color: #fff; }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 16px 0;
}
.header.solid { background: rgba(8,21,39,.92); backdrop-filter: blur(12px); box-shadow: 0 8px 30px rgba(0,0,0,.28); padding: 10px 0; }
.header .container { max-width: 1360px; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; flex: 0 0 auto; }
.brand__mark {
  width: 50px; height: 50px; flex: 0 0 50px; border-radius: 14px;
  background: #000; overflow: hidden; display: block; padding: 0;
  box-shadow: 0 8px 20px rgba(8,21,39,.28);
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand__name { font-weight: 800; font-size: 1.02rem; letter-spacing: .02em; line-height: 1.1; white-space: nowrap; }
.brand__name span { display: block; font-weight: 500; font-size: .66rem; letter-spacing: .26em; color: var(--gold-soft); }
/* Header brand: bigger logo, name + tagline stacked below */
.header .brand { flex-direction: column; align-items: center; gap: 8px; }
.header .brand__mark { width: 120px; height: 120px; flex-basis: 120px; border-radius: 20px; }
.header .brand__name { text-align: center; }
.header .brand__name span { display: none; }
.nav__links { display: flex; align-items: center; gap: 2px; flex: 0 1 auto; }
.nav__links a {
  color: rgba(255,255,255,.86); font-weight: 600; font-size: .88rem; padding: 10px 13px; border-radius: 999px;
  white-space: nowrap; position: relative; transition: color .25s, background .25s;
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a.active { background: rgba(201,162,75,.16); color: var(--gold-soft); }
.nav__cta { margin-left: 8px; flex: 0 0 auto; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; isolation: isolate; }
.hero--page { min-height: 730px; }
.hero--page .hero__bg img { object-position: center top; }

/* Events header: wide group photo — balance the crop and lift the overlay so faces stay bright */
.hero--events .hero__bg img { object-position: center center; }
.hero--events .hero__bg::after {
  background: linear-gradient(120deg, rgba(8, 21, 39, .94) 0%, rgba(8, 21, 39, .78) 30%, rgba(11, 30, 63, .55) 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(8,21,39,.94) 0%, rgba(8,21,39,.78) 45%, rgba(11,30,63,.55) 100%);
}
.hero__inner { padding: 140px 0 90px; max-width: 760px; }
.hero--page .hero__inner { padding: 150px 0 70px; }

/* Home hero — two-column with staggered photo pair */
.hero--home {
  background:
    radial-gradient(1100px 560px at 82% 24%, rgba(28,58,107,.55), transparent 62%),
    linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
}
.hero--home .hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px);
  align-items: center; width: 100%;
}
.hero--home .hero__inner { padding: 150px 0 110px; max-width: 620px; }
.hero__gallery { position: relative; display: flex; justify-content: center; align-items: center; gap: 24px; }
.hero__gallery::before {
  content: ""; position: absolute; width: 320px; height: 320px; z-index: 0;
  background: radial-gradient(circle, rgba(201,162,75,.30), transparent 68%);
}
.hero__photo {
  position: relative; z-index: 1; width: 47%; border-radius: 18px; overflow: hidden;
  border: 3px solid rgba(201,162,75,.45); box-shadow: var(--shadow-lg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3 / 4.1; }
.hero__photo--a { transform: translateY(-26px) rotate(-3deg); }
.hero__photo--b { transform: translateY(26px) rotate(3deg); }
.hero__photo figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 30px 12px 12px; text-align: center; line-height: 1.25;
  font-size: .78rem; font-weight: 700; letter-spacing: .01em; color: #fff;
  background: linear-gradient(to top, rgba(8,21,39,.92), rgba(8,21,39,.55) 55%, transparent);
}
.hero__photo figcaption span { display: block; margin-top: 4px; font-weight: 600; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 18px; border-radius: 999px;
  background: rgba(201,162,75,.15); border: 1px solid rgba(201,162,75,.4); color: var(--gold-soft);
  font-weight: 700; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold); }
.hero__lead { color: rgba(255,255,255,.85); font-size: clamp(1.05rem, 1.8vw, 1.3rem); margin: 22px 0 34px; max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero--home .hero__inner h1 { margin-bottom: 8px; }
.hero--home .hero__actions { margin-top: 56px; }
.hero__scripture {
  margin-top: 40px; padding-left: 20px; border-left: 3px solid var(--gold);
  font-style: italic; color: rgba(255,255,255,.8); font-size: .98rem; max-width: 52ch;
}
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.6); letter-spacing: .04em; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold-soft); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 32px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.pillar::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); }
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pillar__icon {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: var(--gold);
}
.pillar__icon svg { width: 30px; height: 30px; }
.pillar h3 { margin-bottom: 6px; }
.pillar__label { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; display: block; }

/* ---------- Scripture band ---------- */
.scripture-band { background: var(--navy-800); color: #fff; text-align: center; position: relative; overflow: hidden; }
.scripture-band::before, .scripture-band::after {
  content: "\201C"; position: absolute; font-size: 22rem; line-height: 1; color: rgba(201,162,75,.08);
  font-family: Georgia, serif; top: -4rem; left: 2rem;
}
.scripture-band::after { content: "\201D"; left: auto; right: 2rem; top: auto; bottom: -10rem; }
.scripture-band .container { position: relative; z-index: 1; }
.scripture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 20px; }
.scripture-card { padding: 30px; border: 1px solid rgba(201,162,75,.3); border-radius: var(--radius); background: rgba(255,255,255,.03); }
.scripture-card .ref { color: var(--gold); font-weight: 800; letter-spacing: .04em; margin-bottom: 10px; }
.scripture-card p { color: rgba(255,255,255,.82); font-style: italic; font-size: 1.02rem; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.split__media .badge {
  position: absolute; bottom: -22px; left: -22px; background: var(--gold); color: var(--navy-900);
  padding: 18px 24px; border-radius: 14px; font-weight: 800; box-shadow: var(--shadow-md); max-width: 220px; line-height: 1.25;
}
.split__media .badge span { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--navy-700); font-weight: 700; }
.check-list { margin-top: 22px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-soft); }
.check-list .ic { flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; background: rgba(201,162,75,.18); color: var(--gold-deep); display: grid; place-items: center; margin-top: 2px; }
.check-list .ic svg { width: 15px; height: 15px; }
.section--navy .check-list li { color: rgba(255,255,255,.82); }
.section--navy .check-list .ic { background: rgba(201,162,75,.2); color: var(--gold-soft); }

/* ---------- Sermon feature ---------- */
.sermon-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.sermon-media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; object-position: center top; display: block; }
.sermon-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,21,39,.6), rgba(8,21,39,.15)); }
.sermon-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(201,162,75,.96); color: var(--navy-900); box-shadow: 0 14px 34px rgba(8,21,39,.45);
  transition: transform .3s var(--ease), background .3s;
}
.sermon-play svg { width: 30px; height: 30px; margin-left: 4px; }
.sermon-play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--gold); }

/* ---------- Carousel ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth;
  padding: 10px 4px 24px; margin: 0 -4px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track .min-card { flex: 0 0 300px; scroll-snap-align: start; }
.carousel__btn {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--navy-800); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-md); transition: background .3s var(--ease), transform .3s var(--ease), opacity .3s;
}
.carousel__btn svg { width: 22px; height: 22px; }
.carousel__btn:hover { background: var(--gold); color: var(--navy-900); }
.carousel__btn--prev { left: -14px; }
.carousel__btn--next { right: -14px; }
.carousel__btn[disabled] { opacity: 0; pointer-events: none; }
.carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.carousel__dots button {
  width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(11,30,63,.22); transition: background .3s var(--ease), transform .3s var(--ease);
}
.carousel__dots button:hover { background: rgba(11,30,63,.42); }
.carousel__dots button[aria-current="true"] { background: var(--gold); transform: scale(1.35); }
@media (min-width: 1000px) {
  .carousel__track .min-card { flex-basis: calc((100% - 3 * 26px) / 4); }
}
@media (max-width: 620px) {
  .carousel__track .min-card { flex-basis: 82%; }
  .carousel__btn { top: auto; bottom: -6px; transform: none; width: 46px; height: 46px; }
  .carousel__btn--prev { left: 30%; }
  .carousel__btn--next { right: 30%; }
}

/* ---------- Ministry cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.min-card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column;
}
.min-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.min-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--navy-800); }
/* Top-anchor leader portraits so heads are never cropped at the top */
.min-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s var(--ease); }
.min-card:hover .min-card__media img { transform: scale(1.05); }
.min-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,21,39,.72), transparent 55%); }
.min-card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--gold); color: var(--navy-900); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.min-card__body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.min-card__body h3 { margin-bottom: 6px; }
.min-card__leader { font-size: .82rem; font-weight: 700; color: var(--gold-deep); letter-spacing: .04em; margin-bottom: 12px; }
.min-card__body p { font-size: .93rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; }
.stat__num { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; color: var(--gold); line-height: 1; }
.stat__label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 8px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure { position: relative; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 24px 16px 14px; color: #fff; font-weight: 700; font-size: .9rem;
  background: linear-gradient(to top, rgba(8,21,39,.85), transparent); opacity: 0; transform: translateY(10px); transition: .35s var(--ease);
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* Masonry variant — images shown at natural height, nothing cropped */
.gallery--masonry { display: block; column-count: 3; column-gap: 18px; }
.gallery--masonry figure { break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 18px; width: 100%; aspect-ratio: auto; display: block; }
.gallery--masonry img { height: auto; }
@media (max-width: 900px) { .gallery--masonry { column-count: 2; } }
@media (max-width: 560px) { .gallery--masonry { column-count: 1; } }

/* ---------- Timeline / values ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value { background: rgba(255,255,255,.04); border: 1px solid rgba(201,162,75,.22); border-radius: var(--radius); padding: 30px 26px; }
.value .ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(201,162,75,.16); color: var(--gold); display: grid; place-items: center; margin-bottom: 18px; }
.value .ic svg { width: 26px; height: 26px; }
.value h3 { color: #fff; margin-bottom: 8px; font-size: 1.15rem; }
.value p { color: rgba(255,255,255,.72); font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: #fff; border-radius: 24px;
  padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
}
.cta::before { content: ""; position: absolute; width: 340px; height: 340px; background: radial-gradient(circle, rgba(201,162,75,.28), transparent 70%); top: -120px; right: -80px; }
.cta h2 { color: #fff; position: relative; }
.cta p { color: rgba(255,255,255,.82); max-width: 54ch; margin: 16px auto 30px; position: relative; }
.cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Appeal letter ---------- */
.letter { max-width: 860px; margin: 0 auto; background: rgba(255,255,255,.04); border: 1px solid rgba(201,162,75,.28); border-radius: var(--radius); padding: clamp(28px, 4vw, 52px); box-shadow: var(--shadow-md); }
.letter p { color: rgba(255,255,255,.82); margin-bottom: 16px; }
.letter p:first-of-type { font-size: 1.05rem; color: #fff; }
.letter__gives { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0; }
.letter__gives span { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,162,75,.15); border: 1px solid rgba(201,162,75,.4); color: var(--gold-soft); border-radius: 999px; padding: 8px 16px; font-size: .82rem; font-weight: 700; letter-spacing: .02em; }
.letter__sign { margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.letter__bless { color: var(--gold-soft); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: .82rem; margin-bottom: 22px; }
.letter__sign .sig { margin-bottom: 14px; }
.letter__sign .sig strong { color: #fff; display: block; font-size: 1.02rem; font-weight: 700; }
.letter__sign .sig em { color: var(--gold-soft); font-style: normal; font-size: .84rem; font-weight: 600; }

/* ---------- Leaders showcase ---------- */
.leaders { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 36px); max-width: 940px; margin: 0 auto; }
.leader-card { text-align: center; }
.leader-card__img { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; margin-bottom: 20px; border: 3px solid rgba(201,162,75,.4); }
.leader-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .5s var(--ease); }
.leader-card:hover .leader-card__img img { transform: scale(1.04); }
.leader-card h3 { margin-bottom: 8px; }
.leader-card__role { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-deep); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.leader-card__role::before { content: ""; width: 18px; height: 2px; background: var(--gold); }
@media (max-width: 760px) { .leaders { grid-template-columns: repeat(2, 1fr); max-width: 560px; } }
@media (max-width: 460px) { .leaders { grid-template-columns: 1fr; max-width: 320px; } }

/* ---------- Apostle profile ---------- */
.profile { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.profile__img { position: relative; }
.profile__img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.profile__img .frame { position: absolute; inset: 16px -16px -16px 16px; border: 2px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.prose p { margin-bottom: 16px; }
.prose p:first-of-type::first-letter { font-size: 3.4rem; font-weight: 800; color: var(--gold-deep); float: left; line-height: .8; padding: 6px 12px 0 0; }
.creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 8px; }
.creds span { background: var(--cream); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: .82rem; font-weight: 600; color: var(--navy-700); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.contact-card { background: rgba(255,255,255,.04); border: 1px solid rgba(201,162,75,.22); border-radius: var(--radius); padding: 26px 22px; text-align: center; transition: transform .3s var(--ease); }
.contact-card:hover { transform: translateY(-6px); }
.contact-card .ic { width: 50px; height: 50px; border-radius: 50%; background: rgba(201,162,75,.16); color: var(--gold); display: grid; place-items: center; margin: 0 auto 14px; }
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card h4 { color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px; }
.contact-card a, .contact-card p { color: var(--gold-soft); font-weight: 600; font-size: .95rem; word-break: break-word; }
.contact-card a:hover { color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer .brand { margin-bottom: 18px; }
.footer p { color: rgba(255,255,255,.6); font-size: .92rem; }
.footer h5 { color: #fff; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.footer__links a { display: block; padding: 6px 0; color: rgba(255,255,255,.66); font-size: .92rem; transition: color .2s, padding .2s; }
.footer__links a:hover { color: var(--gold-soft); padding-left: 6px; }
.socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; transition: .3s var(--ease); }
.socials a:hover { background: var(--gold); color: var(--navy-900); transform: translateY(-4px); }
.socials svg { width: 19px; height: 19px; }
.footer__bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.5); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .pillars, .grid-3, .gallery, .value-grid { grid-template-columns: repeat(2, 1fr); }
  .stats, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .profile { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .hero--home .hero__grid { grid-template-columns: 1fr; }
  .hero--home .hero__gallery { display: none; }
  .hero--home .hero__inner { padding: 140px 0 90px; max-width: 760px; }
  .scripture-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: rgba(8,21,39,.98); padding: 16px; gap: 4px; box-shadow: var(--shadow-lg);
  }
  .nav.open .nav__links a { padding: 14px 16px; }
}
@media (max-width: 620px) {
  .pillars, .grid-3, .grid-2, .gallery, .value-grid, .stats, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .split__media .badge { position: static; margin-top: 16px; max-width: none; }
  .footer__top { grid-template-columns: 1fr; }
}
