/* vision.css — page-specific stylesheet for /vision/ */

/* ─────────────────────────────────────────────────────────
   1. Layout primitives
   ───────────────────────────────────────────────────────── */
.v-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.v-wrap--narrow { max-width: 760px; }
.v-wrap--mid    { max-width: 960px; }

main.vision-main {
  background: var(--bg);
  color: var(--text-900);
  overflow-x: clip;
}

/* Vertical rhythm */
.v-section {
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
}
.v-section--tight { padding: clamp(48px, 7vw, 96px) 0; }
.v-section--alt   { background: var(--bg-alt); }
.v-section--cream { background: var(--gold-lt); }
.v-section--navy  { background: var(--blue-900); color: rgba(255,255,255,.92); }
.v-section--navy h1, .v-section--navy h2, .v-section--navy h3 { color: #fff; }

/* ─────────────────────────────────────────────────────────
   2. Type primitives
   ───────────────────────────────────────────────────────── */
.v-eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.v-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.v-h1 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--blue-900);
  margin: 0 0 24px;
  text-wrap: balance;
}
.v-h2 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.8vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.005em;
  color: var(--blue-900);
  margin: 0 0 18px;
  text-wrap: balance;
}
.v-h3 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.2;
  color: var(--blue-900);
  margin: 0 0 14px;
}
.v-dek {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.45;
  color: var(--text-700);
  max-width: 38em;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.v-prose p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-700);
  margin: 0 0 1.1em;
  text-wrap: pretty;
}
.v-prose p strong { color: var(--text-900); font-weight: 600; }
.v-prose p:last-child { margin-bottom: 0; }

/* Drop cap — first paragraph of major sections */
.v-prose--lede > p:first-child::first-letter {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  float: left;
  font-size: 4.4em;
  line-height: .85;
  padding: .08em .12em 0 0;
  color: var(--blue-900);
  font-feature-settings: "lnum";
}

/* ─────────────────────────────────────────────────────────
   3. Ornaments
   ───────────────────────────────────────────────────────── */
.v-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold);
  margin: 0 auto;
}
.v-ornament::before,
.v-ornament::after {
  content: "";
  height: 1px;
  width: 64px;
  background: currentColor;
  opacity: .55;
}
.v-ornament svg { width: 18px; height: 18px; opacity: .9; }

.v-rule {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}
.v-rule--gold {
  background: var(--gold);
  height: 2px;
  width: 56px;
  margin: 0 0 24px;
  border: 0;
}

/* ─────────────────────────────────────────────────────────
   4. Section 1 — Hero
   ───────────────────────────────────────────────────────── */
.v-hero {
  background: var(--blue-900);
}
.v-hero__picture {
  display: block;
  width: 100%;
}
.v-hero__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
}
.v-hero__intro {
  background: var(--bg);
  padding: clamp(56px, 8vw, 112px) 0 clamp(40px, 6vw, 72px);
  text-align: center;
}
.v-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 auto 28px;
}
.v-hero__eyebrow::before,
.v-hero__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.v-hero__title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: var(--blue-900);
  margin: 0 auto 28px;
  max-width: 14ch;
  text-wrap: balance;
}
.v-hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.v-hero__dek {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.5;
  color: var(--text-700);
  max-width: 36em;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ─────────────────────────────────────────────────────────
   5. Section 2 — The Problem
   ───────────────────────────────────────────────────────── */
.v-problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.v-problem__media {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v-problem__media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.v-problem__caption {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-500);
  text-align: center;
}
.v-problem__caption span { color: var(--gold); font-weight: 600; }

.v-scripture-anchor {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 0 0 32px;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--blue-900);
}
.v-scripture-anchor cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Result callout — high contrast moment */
.v-result {
  margin: 56px 0;
  padding: 44px clamp(24px, 4vw, 56px);
  background: var(--blue-900);
  color: rgba(255,255,255,.95);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.v-result::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 6px;
  background: var(--gold);
}
.v-result__label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.v-result__body {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  margin: 0;
  text-wrap: pretty;
}
.v-result__body strong { font-weight: 600; color: #fff; }
.v-result__body em { font-style: italic; color: var(--gold-lt); }

.v-transition {
  text-align: center;
  margin: 64px auto 0;
  max-width: 720px;
}
.v-transition__line {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--blue-900);
  margin: 24px 0 0;
}

/* ─────────────────────────────────────────────────────────
   6. Section 3 — Alliance
   ───────────────────────────────────────────────────────── */
.v-alliance__hero {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(56px, 7vw, 88px);
}
.v-alliance__hero .v-prose p { font-size: 1.2rem; }
.v-alliance__hero .v-prose p strong {
  display: block;
  margin-top: 24px;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--gold);
}

/* Sub: What an Alliance Actually Is */
.v-alliance__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  margin-bottom: clamp(64px, 8vw, 112px);
}
.v-alliance__split-intro h3 { margin-bottom: 20px; }
.v-alliance__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: alliance;
}
.v-alliance__list li {
  counter-increment: alliance;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.v-alliance__list li:last-child { border-bottom: 1px solid var(--border); }
.v-alliance__list li::before {
  content: counter(alliance, decimal-leading-zero);
  font-family: 'Lora', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.v-alliance__list li strong {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.25rem;
  color: var(--blue-900);
  margin-bottom: 6px;
}
.v-alliance__list li span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-700);
}

/* Sub: What Becomes Possible — 2x2 tiles */
.v-possible__head {
  text-align: center;
  margin: 0 auto clamp(40px, 5vw, 64px);
  max-width: 640px;
}
.v-possible__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.v-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
}
.v-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.v-tile__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-lt);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.v-tile__icon--navy {
  background: var(--blue-50);
  color: var(--blue-700);
}
.v-tile h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--blue-900);
  margin: 0;
}
.v-tile p {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-700);
}

/* Closing pull-quote */
.v-pullquote {
  margin: clamp(72px, 9vw, 128px) auto 0;
  max-width: 880px;
  text-align: center;
  padding: 0 24px;
}
.v-pullquote__mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 4rem;
  line-height: .6;
  color: var(--gold);
  margin: 0 0 12px;
}
.v-pullquote__body {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--blue-900);
  margin: 0 0 28px;
  text-wrap: balance;
}
.v-pullquote__cite {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-500);
  margin: 0;
}
.v-pullquote__cite::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
}

/* ─────────────────────────────────────────────────────────
   7. Section 4 — Biblical Mandate
   ───────────────────────────────────────────────────────── */
.v-mandate {
  background: var(--blue-900);
  color: rgba(255,255,255,.9);
  position: relative;
}
.v-mandate .v-h2,
.v-mandate .v-h3,
.v-mandate .v-eyebrow { color: #fff; }
.v-mandate .v-eyebrow { color: var(--gold); }

.v-mandate__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.v-mandate__media {
  position: sticky;
  top: 32px;
}
.v-mandate__media img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.v-mandate__lede {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: var(--gold-lt);
  margin: 0 0 48px;
  text-wrap: pretty;
}

.v-scripture {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 0 0 24px;
}
.v-scripture__verse {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.55;
  color: #fff;
  margin: 0 0 14px;
  text-wrap: pretty;
}
.v-scripture__cite {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.v-mandate__commentary {
  margin: 0 0 56px;
}
.v-mandate__commentary p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
  margin: 0 0 1em;
}
.v-mandate__commentary p strong { color: #fff; font-weight: 600; }
.v-mandate__commentary p:last-child { margin-bottom: 0; }

.v-mandate__warning {
  margin-top: 64px;
  padding: 36px clamp(24px, 4vw, 44px);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(184,146,74,.45);
  border-radius: var(--radius-lg);
  position: relative;
}
.v-mandate__warning-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.v-mandate__warning-body {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  margin: 0;
}
.v-mandate__warning-body strong { color: #fff; font-weight: 600; }

/* ─────────────────────────────────────────────────────────
   8. Section 5 — How OPN Serves
   ───────────────────────────────────────────────────────── */
.v-serves__head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.v-serves__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.v-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.v-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.v-feature__num {
  font-family: 'Lora', Georgia, serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--gold);
  margin: 0;
}
.v-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin: 0;
}
.v-feature h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--blue-900);
  margin: 4px 0 0;
}
.v-feature p {
  margin: 0;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .98rem;
  line-height: 1.55;
  color: var(--text-700);
}

.v-serves__callout {
  margin-top: clamp(48px, 6vw, 72px);
  padding: 36px clamp(24px, 4vw, 48px);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.v-serves__callout-label {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--blue-900);
  margin: 0 0 10px;
}
.v-serves__callout-body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-700);
  margin: 0;
  max-width: 56em;
  margin-inline: auto;
}
.v-serves__callout-body strong { color: var(--blue-900); font-weight: 600; }

/* ─────────────────────────────────────────────────────────
   9. Section 6 — Statement of Faith
   ───────────────────────────────────────────────────────── */
.v-faith__head {
  text-align: center;
  margin: 0 auto clamp(48px, 6vw, 72px);
  max-width: 720px;
}
.v-faith__head p {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
  color: var(--text-700);
  margin: 0;
  line-height: 1.5;
}

.v-faith__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 880px;
  counter-reset: faith;
}
.v-faith__list li {
  counter-increment: faith;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.v-faith__list li:last-child { border-bottom: 1px solid var(--border); }
.v-faith__list li::before {
  content: counter(faith, upper-roman) ".";
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.2;
  text-align: right;
  padding-right: 4px;
}
.v-faith__list h4 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--blue-900);
  margin: 0 0 8px;
}
.v-faith__list p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-700);
  margin: 0;
  max-width: 56em;
}

.v-faith__close {
  margin: clamp(56px, 7vw, 80px) auto 0;
  max-width: 720px;
  text-align: center;
  padding: 32px;
  background: var(--gold-lt);
  border-radius: var(--radius-lg);
  color: var(--blue-900);
}
.v-faith__close strong {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.v-faith__close span {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-700);
}

/* ─────────────────────────────────────────────────────────
   10. Section 7 — CTA
   ───────────────────────────────────────────────────────── */
.v-cta {
  background: var(--blue-900);
  color: rgba(255,255,255,.92);
  position: relative;
}
.v-cta__picture {
  display: block;
  width: 100%;
}
.v-cta__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
}
.v-cta__body {
  padding: clamp(64px, 8vw, 112px) 0 clamp(48px, 6vw, 96px);
  text-align: center;
}
.v-cta .v-eyebrow { color: var(--gold); }
.v-cta .v-h1 { color: #fff; }

.v-cta__scripture {
  display: inline-block;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-lt);
  margin: 0 0 32px;
  border-top: 1px solid rgba(184,146,74,.4);
  border-bottom: 1px solid rgba(184,146,74,.4);
  padding: 12px 32px;
}
.v-cta__scripture cite {
  font-style: normal;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 14px;
}

.v-cta__lead {
  max-width: 720px;
  margin: 0 auto 40px;
}
.v-cta__lead p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  margin: 0 0 1em;
}
.v-cta__lead p strong {
  font-family: 'Lora', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: 1.5rem;
  color: #fff;
  display: block;
  margin-top: 28px;
  line-height: 1.35;
  text-wrap: balance;
}

.v-cta__pull {
  max-width: 760px;
  margin: 56px auto;
  padding: 36px clamp(24px, 4vw, 48px);
  border-left: 3px solid var(--gold);
  text-align: left;
  background: rgba(255,255,255,.03);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.v-cta__pull p {
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin: 0 0 1em;
  text-wrap: pretty;
}
.v-cta__pull p:last-child { margin-bottom: 0; }
.v-cta__pull p strong {
  font-style: normal;
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-top: 18px;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.3;
}

.v-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 56px;
  max-width: 720px;
}
.v-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s, background .15s, color .15s, border-color .15s;
}
.v-btn:hover { text-decoration: none; transform: translateY(-1px); }
.v-btn--primary {
  background: var(--gold);
  color: #fff;
}
.v-btn--primary:hover { background: #cea25a; color: #fff; }
.v-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.3);
}
.v-btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); }

/* Tri-fold */
.v-trifold {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-top: 64px;
}
.v-trifold__cell {
  padding: 36px 24px;
  text-align: center;
  background: var(--blue-900);
}
.v-trifold__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(184,146,74,.15);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.v-trifold__title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 8px;
}
.v-trifold__sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .98rem;
  color: rgba(255,255,255,.72);
  margin: 0;
}
.v-cta__final {
  margin: 56px auto 0;
  max-width: 720px;
  font-family: 'Lora', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: var(--gold-lt);
  text-align: center;
}

/* ─────────────────────────────────────────────────────────
   11. Responsive
   ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .v-problem__grid,
  .v-mandate__grid,
  .v-alliance__split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .v-problem__media,
  .v-mandate__media { position: static; }
  .v-mandate__media img { aspect-ratio: 16 / 10; }
  .v-possible__grid,
  .v-serves__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .v-trifold { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .v-wrap { padding: 0 18px; }
  .v-hero__image,
  .v-cta__image { aspect-ratio: 4 / 3; }
  .v-possible__grid,
  .v-serves__grid {
    grid-template-columns: 1fr;
  }
  .v-alliance__list li,
  .v-faith__list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .v-faith__list li::before { text-align: left; }
  .v-result, .v-mandate__warning { padding: 28px 22px; }
  .v-cta__buttons { flex-direction: column; align-items: stretch; }
  .v-btn { justify-content: center; }
}

/* ─────────────────────────────────────────────────────────
   12. Stub nav/footer (Claude Code will replace) — kept light
   so the page reads correctly in the mock without integration.
   ───────────────────────────────────────────────────────── */
.stub-nav {
  background: var(--blue-900);
  color: rgba(255,255,255,.7);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem;
}
.stub-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .04em;
}
.stub-nav__brand img { height: 26px; width: auto; filter: brightness(0) invert(1); }
.stub-nav__note { font-style: italic; opacity: .55; }

.stub-foot {
  background: var(--blue-900);
  color: rgba(255,255,255,.55);
  padding: 28px 24px;
  text-align: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: .82rem;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────────
   13. Print
   ───────────────────────────────────────────────────────── */
@media print {
  .stub-nav, .stub-foot, .v-cta__buttons { display: none; }
  body { background: #fff; color: #111; }
  .v-section--navy, .v-cta { background: #fff !important; color: #222 !important; }
  .v-section--navy *, .v-cta * { color: #222 !important; }
  .v-result { background: #f5edd8 !important; color: #1a1e26 !important; }
  .v-result__body strong { color: #1a1e26 !important; }
  img { break-inside: avoid; }
  .v-section { padding: 32px 0; break-inside: avoid; }
  a { color: #1a4a7a; text-decoration: underline; }
}
