/* ─────────────────────────────────────────────
   CLEAR VISION MINISTRY — shared.css
   Shared styles for all pages
───────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #0a0a0a;
  --teal:       #0d3d4f;
  --teal-mid:   #1a5a72;
  --teal-light: #e0eff4;
  --gold:       #c9a227;
  --gold-mid:   #e2b93b;
  --gold-light: #fdf6dc;
  --yellow:     #f6d860;
  --white:      #ffffff;
  --off-white:  #f8f6f0;
  --gray-light: #efefed;
  --gray-mid:   #d4d2cd;
  --gray-text:  #6b6b68;
  --text:       #1a1a1a;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

/* ─── UTILITIES ─── */
.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.label-gold  { color: var(--gold); }
.label-teal  { color: var(--teal-mid); }
.label-gray  { color: var(--gray-text); }
.label-white { color: rgba(255,255,255,.55); }

.serif { font-family: var(--serif); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-gold    { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #a8861e; }
.btn-teal    { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #09283a; }
.btn-black   { background: var(--black); color: #fff; }
.btn-black:hover { background: #2a2a2a; }
.btn-yellow  { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #e8c84a; }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: #fff; }
.btn-lg { padding: 16px 38px; font-size: 12px; }

/* ─── NAV ─── */
#nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(201,162,39,.18);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.5); }
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img { height: 46px; width: auto; display: block; }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.nav-logo-text span { display: block; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-family: var(--sans); font-weight: 600; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--gold-mid); }
.nav-links a.active { color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 8px; opacity: .55; }
.nav-sub {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: -16px;
  background: #0e0e0e;
  border: 1px solid rgba(201,162,39,.22);
  border-top: 2px solid var(--gold);
  min-width: 170px;
  padding: 6px 0;
  list-style: none;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.nav-sub li a {
  display: block;
  padding: 9px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-sub li a::after { content: none; }
.nav-sub li a:hover { color: var(--gold); background: rgba(201,162,39,.06); }
.nav-dropdown:hover .nav-sub { display: block; }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--black);
  z-index: 99;
  padding: 32px 40px;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201,162,39,.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 16px 0;
}
.mobile-menu a:hover { color: var(--gold-mid); }

/* ─── SECTIONS COMMON ─── */
section { padding: 80px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 14px;
}
.section-h2 em  { font-style: italic; color: var(--teal-mid); }
.section-h2 .gold { color: var(--gold); }
.accent-bar {
  width: 36px;
  height: 3px;
  margin-bottom: 16px;
}
.accent-bar-gold  { background: var(--gold); }
.accent-bar-teal  { background: var(--teal); }
.accent-bar-black { background: var(--black); }

/* ─── TICKER ─── */
.ticker {
  background: var(--teal);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid rgba(201,162,39,.25);
  border-bottom: 1px solid rgba(201,162,39,.25);
}
.ticker-inner {
  display: inline-flex;
  gap: 40px;
  animation: ticker 26s linear infinite;
}
.ticker-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.ticker-item.accent { color: var(--yellow); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── HERO ─── */
#hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,61,79,.45) 0%, rgba(10,10,10,.85) 70%);
  z-index: 1;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .035;
  z-index: 2;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(201,162,39,.6) 48px, rgba(201,162,39,.6) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(201,162,39,.6) 48px, rgba(201,162,39,.6) 49px);
}
.hero-circle-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,.07);
  z-index: 2;
}
.hero-circle-bg::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,.05);
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  position: relative;
  z-index: 3;
  animation: fadeUp .7s ease forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 7.5vw, 82px);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  max-width: 840px;
  margin-bottom: 10px;
  position: relative;
  z-index: 3;
  animation: fadeUp .8s .1s ease both;
}
.hero-h1 em { font-style: italic; color: var(--yellow); }
.hero-verse {
  font-size: 11px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  margin: 20px 0 14px;
  position: relative;
  z-index: 3;
  animation: fadeUp .8s .2s ease both;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.62);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 38px;
  position: relative;
  z-index: 3;
  animation: fadeUp .8s .3s ease both;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  animation: fadeUp .8s .4s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── PATHWAYS ─── */
#pathways { background: var(--white); padding: 0; }
.pathways-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
  border-top: 1px solid var(--gray-light);
}
.pathway-card {
  padding: 44px 32px;
  border-right: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background .2s, box-shadow .2s;
  display: block;
  background: var(--white);
}
.pathway-card:last-child { border-right: none; }
.pathway-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.p-gold::before  { background: var(--gold); }
.p-teal::before  { background: var(--teal); }
.p-yellow::before { background: var(--yellow); }
.p-black::before { background: var(--black); }
.pathway-card:hover { background: var(--off-white); box-shadow: inset 0 -4px 0 var(--gray-mid); }
.pathway-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.p-gold  .pathway-num  { color: var(--gold); }
.p-teal  .pathway-num  { color: var(--teal-mid); }
.p-yellow .pathway-num { color: #b89a00; }
.p-black .pathway-num  { color: var(--gray-text); }
.pathway-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
}
.pathway-body {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 22px;
}
.pathway-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.p-gold  .pathway-link  { color: var(--gold); }
.p-teal  .pathway-link  { color: var(--teal-mid); }
.p-yellow .pathway-link { color: #b89a00; }
.p-black .pathway-link  { color: var(--black); }

/* ─── VISION / DARK QUOTE ─── */
#vision {
  background: var(--teal);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}
#vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(-45deg, rgba(201,162,39,.03) 0, rgba(201,162,39,.03) 1px, transparent 0, transparent 50%);
  background-size: 18px 18px;
}
#vision .section-inner { position: relative; }
.vision-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 3.8vw, 44px);
  font-weight: 700;
  color: #fff;
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.2;
}
.vision-quote em { font-style: italic; color: var(--yellow); }
.vision-attrib {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ─── MISSION ─── */
#mission { background: var(--off-white); }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s;
}
.mission-card:hover { box-shadow: 0 6px 28px rgba(13,61,79,.1); }
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.mission-card-1::before { background: var(--gold); }
.mission-card-2::before { background: var(--teal); }
.mission-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}
.icon-gold { background: var(--gold-light); }
.icon-teal { background: var(--teal-light); }
.mission-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}
.mission-card-body {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.8;
}

/* ─── DARK GIVE CTA ─── */
#give-cta {
  background: var(--black);
  text-align: center;
  padding: 88px 40px;
  position: relative;
  overflow: hidden;
}
.give-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(
    -45deg, rgba(201,162,39,.8) 0, rgba(201,162,39,.8) 1px,
    transparent 0, transparent 50%);
  background-size: 14px 14px;
}
.give-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  position: relative;
}
.give-h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  max-width: 700px;
  margin: 0 auto 16px;
  position: relative;
}
.give-h2 em { font-style: italic; color: var(--yellow); }
.give-sub {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.75;
  position: relative;
}
.give-btn-wrap { position: relative; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.give-platforms {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
  position: relative;
}
.give-platform-pill {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(201,162,39,.3);
  padding: 8px 18px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: all .15s;
}
.give-platform-pill:hover { border-color: var(--gold); color: var(--gold-mid); }

/* ─── GET INVOLVED ─── */
#involve { background: var(--white); }
.involve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.inv-card {
  border: 1px solid var(--gray-light);
  padding: 30px 26px;
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.inv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.inv-1::before { background: var(--gold); }
.inv-2::before { background: var(--teal); }
.inv-3::before { background: var(--yellow); }
.inv-card:hover { border-color: var(--gray-mid); box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.inv-number {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 12px;
  transition: color .2s;
}
.inv-1:hover .inv-number { color: var(--gold-light); }
.inv-2:hover .inv-number { color: var(--teal-light); }
.inv-3:hover .inv-number { color: #fffbe0; }
.inv-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.inv-body {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 18px;
}
.inv-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s;
}
.inv-1 .inv-link { color: var(--gold); }
.inv-2 .inv-link { color: var(--teal-mid); }
.inv-3 .inv-link { color: #a88b00; }
.inv-link:hover { opacity: .7; }

/* ─── WATCH ─── */
#watch { background: var(--off-white); }
.watch-featured {
  background: var(--teal);
  padding: 48px;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.watch-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.5) 0, rgba(255,255,255,.5) 1px, transparent 0, transparent 50%);
  background-size: 14px 14px;
}
.watch-featured-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
  position: relative;
}
.watch-featured-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
  position: relative;
}
.watch-featured-body {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 440px;
  position: relative;
  margin-bottom: 22px;
}
.watch-featured-btn { position: relative; }
.watch-yt-icon {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background .2s, transform .2s;
}
.watch-yt-icon:hover { background: rgba(255,255,255,.18); transform: scale(1.05); }

/* ─── ABOUT ─── */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}
.about-photo-wrap { position: relative; }
.about-photo {
  background: var(--teal-light);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-light);
  position: relative;
  overflow: hidden;
}
.about-photo::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  z-index: -1;
}
.about-photo-label {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-name {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 6px;
}
.about-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 22px;
}
.about-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.65;
}
.about-body {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-body p + p { margin-top: 12px; }
.about-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── SALVATION ─── */
#salvation {
  background: var(--black);
  text-align: center;
  padding: 88px 40px;
  position: relative;
  overflow: hidden;
}
#salvation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,61,79,.4) 0%, transparent 70%);
}
.salvation-inner { max-width: 660px; margin: 0 auto; position: relative; }
.salvation-h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.1;
}
.salvation-h2 em { font-style: italic; color: var(--yellow); }
.salvation-body {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  margin-bottom: 36px;
}
.salvation-body p + p { margin-top: 10px; }
.salvation-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.salvation-steps {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.salvation-steps-label {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.salvation-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  text-align: left;
}
.sal-step { border-left: 3px solid; padding-left: 14px; }
.sal-step-1 { border-color: var(--gold); }
.sal-step-2 { border-color: var(--teal-mid); }
.sal-step-3 { border-color: var(--yellow); }
.sal-step-4 { border-color: rgba(255,255,255,.2); }
.sal-step-num {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
}
.sal-step-body {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
}

/* ─── CONTACT ─── */
#contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}
.contact-info-stack { display: flex; flex-direction: column; gap: 0; }
.ci-block {
  border-top: 1px solid var(--gray-light);
  padding: 16px 0;
}
.ci-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gray-text);
  margin-bottom: 4px;
}
.ci-val { font-size: 14px; color: var(--text); }
.ci-val a { color: var(--teal-mid); text-decoration: none; }
.ci-val a:hover { color: var(--teal); }

/* ─── FORMS ─── */
.form-group { margin-bottom: 12px; }
.form-field, .form-select, .form-area {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  color: var(--text);
  font-size: 13px;
  font-family: var(--sans);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.form-field:focus, .form-select:focus, .form-area:focus {
  border-color: var(--gold);
}
.form-area { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; padding: 15px; font-size: 12px; margin-top: 4px; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: #fff;
  padding: 40px;
  border-top: 1px solid rgba(201,162,39,.12);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.footer-logo-sub {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 600;
}
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pill {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 14px;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.footer-pill:hover { border-color: var(--gold); color: var(--gold-mid); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 20px;
}
.footer-nav a {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .15s;
}
.footer-nav a:hover { color: rgba(255,255,255,.65); }
.footer-copy {
  font-size: 10px;
  color: rgba(255,255,255,.18);
  letter-spacing: .06em;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.04);
}

/* ─── FOOTER CTA SECTION ─── */
.footer-cta-section {
  background: var(--teal);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(-45deg,rgba(201,162,39,.8) 0,rgba(201,162,39,.8) 1px,transparent 0,transparent 50%);
  background-size: 14px 14px;
}
.footer-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

/* ─── HERO VIDEO BACKGROUND ─── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--black);
  padding: 72px 40px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(13,61,79,.5) 0%, rgba(10,10,10,.9) 70%);
  z-index: 1;
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .025;
  z-index: 2;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(201,162,39,.6) 48px, rgba(201,162,39,.6) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(201,162,39,.6) 48px, rgba(201,162,39,.6) 49px);
}
.page-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.page-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  max-width: 700px;
  margin-bottom: 14px;
}
.page-hero-h1 em { font-style: italic; color: var(--yellow); }
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  max-width: 500px;
  line-height: 1.8;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  section { padding: 60px 24px; }
  #nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta .btn-outline-white { display: none; }
  .mission-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .involve-grid { grid-template-columns: 1fr; }
  .watch-featured { grid-template-columns: 1fr; }
  .watch-yt-icon { display: none; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 32px 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .pathways-grid { grid-template-columns: 1fr 1fr; }
  .pathway-card:nth-child(even) { border-right: none; }
  .pathway-card { padding: 32px 24px; }
  #hero { padding: 60px 24px; min-height: 80vh; }
  .page-hero { padding: 52px 24px 40px; }
  .footer-cta-section { padding: 56px 24px; }
}
@media (max-width: 600px) {
  .pathways-grid { grid-template-columns: 1fr; }
  .pathway-card { border-right: none; }
  .salvation-steps-grid { grid-template-columns: 1fr 1fr; }
}
