/* =============================================================================
   Pride Destroy — CBA Ministry Family Design System ("Divine Light")
   Door hue: Deep Red (#8b0000). See BRAND-FAMILY.md §2-§3.
   ============================================================================= */

:root {
  /* Neutrals — BRAND-FAMILY.md §2 (shared base, all sites) */
  --bg: #FFFFFF;
  --bg-tint: #F6F7FB;
  --ink: #16213A;
  --muted: #5A6478;
  --line: #E7E9F2;
  --line-strong: #D9DCEA;

  /* Pride Destroy door hue — Deep Red */
  --site-hue: #8b0000;
  --call-deep: #5c0000;
  --call-soft: #f5e6e6;

  /* Gold tokens folded into the single door hue */
  --gold: var(--call-deep);
  --gold-line: rgba(139,0,0,.30);

  /* Skylight radials */
  --glow-warm: rgba(255,255,255,.96);
  --glow-gold: rgba(139,0,0,.10);

  /* Shadows */
  --shadow: 0 24px 60px -28px rgba(22,33,58,.18);
  --shadow-soft: 0 14px 40px -24px rgba(22,33,58,.14);

  /* Typography */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-accent: 'Fraunces', Georgia, serif;
  --wrap: 1160px;
  --narrow: 760px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: .002em;
  overflow-x: hidden;
}

/* ── Skylight glow ──────────────────────────────────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 88vh;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(62% 60% at 50% -8%, var(--glow-warm), transparent 68%),
    radial-gradient(42% 46% at 68% -4%, var(--glow-gold), transparent 60%);
  animation: breathe 12s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: .82; }
}

@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: .6rem; font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: .75rem; font-weight: 500; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; font-weight: 500; }
h4 { font-size: 1rem; margin-bottom: .4rem; font-weight: 600; }

p { margin-bottom: 1rem; }

a { color: var(--call-deep); text-decoration: none; transition: color .2s; }
a:hover { color: var(--site-hue); }

strong { color: var(--ink); font-weight: 600; }

.lead { font-size: 1.12rem; color: var(--ink); line-height: 1.7; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ── Eyebrow ────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── Layout ─────────────────────────────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 40px);
  position: relative;
  z-index: 1;
}
.container { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.4rem, 5vw, 40px); }
.container.narrow { max-width: var(--narrow); }

.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--bg-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-cta {
  background: var(--site-hue);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.section-cta h2, .section-cta p { color: #fff; }
.section-cta .btn.primary {
  background: #fff;
  color: var(--call-deep);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.3);
}
.section-cta .btn.primary:hover {
  background: #fff;
  filter: brightness(.95);
  box-shadow: 0 20px 38px -14px rgba(0,0,0,.35);
}
.section-cta .btn.secondary {
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.section-cta .btn.secondary:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,.1);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: .92rem 1.7rem;
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: .005em;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .16s, box-shadow .16s, background .2s, color .2s, border-color .2s;
}
.btn svg { width: 18px; height: 18px; }

.btn.primary {
  background: var(--call-deep);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(139,0,0,.45);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -14px rgba(139,0,0,.55);
  filter: brightness(.98);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn.secondary:hover {
  border-color: var(--site-hue);
  color: var(--call-deep);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.1rem; min-height: 56px; }
.btn-sm { padding: .5rem 1.1rem; font-size: .88rem; min-height: 38px; }
.btn-outline {
  background: transparent;
  color: var(--call-deep);
  border: 1px solid var(--call-deep);
}
.btn-outline:hover {
  background: var(--call-deep);
  color: #fff;
}

/* ── Header (.topbar) ───────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 22px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 40px);
}

/* Brand lockup */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -.01em;
  text-decoration: none;
  color: var(--ink);
}
.brand .mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}
.brand b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: -.01em;
  white-space: nowrap;
  color: var(--ink);
}

/* Nav links */
.links {
  display: flex;
  gap: 1.65rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 auto;
}
.links a {
  position: relative;
  padding: .2rem 0;
  color: var(--muted);
  transition: color .2s;
}
.links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1.5px;
  background: var(--gold);
  transition: right .3s ease;
}
.links a:hover { color: var(--ink); }
.links a:hover::after { right: 0; }

/* Right side: flag switcher + hamburger */
.right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

/* Language switcher — flag SVGs */
.langs {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
}
.langs a, .langs .on {
  display: inline-flex;
  width: 25px;
  height: 18px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
  opacity: .5;
  transition: opacity .15s, transform .15s;
}
.langs a:hover { opacity: 1; transform: translateY(-1px); }
.langs .on {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--site-hue);
}
.langs .flag { width: 100%; height: 100%; display: block; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav { display: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a0a0a 0%, #2d1515 40%, #1a1a2e 100%);
  color: #fff;
  padding: clamp(3.5rem, 9vh, 7rem) 0 clamp(3rem, 6vh, 5rem);
  text-align: center;
}
.hero .container { position: relative; z-index: 1; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 16ch;
  margin: 0 auto;
}
.hero-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: rgba(255,255,255,.75);
  margin: 1rem auto 1.5rem;
  max-width: 20ch;
}
.hero-body {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,.65);
  font-size: 1.06rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero .btn.primary {
  background: var(--site-hue);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.4);
}
.hero .btn.primary:hover {
  background: var(--call-deep);
  box-shadow: 0 20px 38px -14px rgba(0,0,0,.5);
}
.hero .btn.secondary {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.3);
}
.hero .btn.secondary:hover {
  color: #fff;
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}

/* ── Verse Block (Fraunces italic) ──────────────────────────── */
.verse-block {
  border: none;
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  background: none;
  border-radius: 0;
}
.verse-block p {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-optical-sizing: auto;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 28ch;
}
.verse-block cite {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  font-weight: 700;
}
.verse-large p { font-size: clamp(1.4rem, 3vw, 2rem); }

/* ── Fruit Categories ───────────────────────────────────────── */
.fruit-cats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.fruit-cat-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
  text-align: center;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.fruit-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-strong);
}
.cat-range {
  display: inline-block;
  background: var(--call-soft);
  color: var(--call-deep);
  padding: .3rem .8rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.fruit-cat-card h3 { font-size: 1rem; margin: 0; }

/* ── Fruit Grid ─────────────────────────────────────────────── */
.cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cat-range-badge {
  background: var(--call-soft);
  color: var(--call-deep);
  padding: .3rem .8rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  white-space: nowrap;
}
.fruit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
}
.fruit-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  border-left: 4px solid var(--site-hue);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.fruit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-strong);
}
.fruit-num {
  display: inline-block;
  background: var(--call-soft);
  color: var(--call-deep);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: .5rem;
}
.fruit-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.fruit-card p { font-size: .92rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── Root Block ─────────────────────────────────────────────── */
.root-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem;
  margin: 1.5rem 0;
}
.root-text { font-size: 1.1rem; margin-bottom: 1rem; }
.root-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.root-list li {
  background: var(--call-soft);
  color: var(--call-deep);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
}

/* ── Test Form ──────────────────────────────────────────────── */
.test-form { margin-top: 2rem; }
.test-question {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color .2s;
}
.test-question:hover { border-color: var(--line-strong); }
.test-q-num {
  font-weight: 800;
  color: var(--call-deep);
  font-size: .9rem;
  margin-bottom: .25rem;
}
.test-q-text { font-weight: 600; margin-bottom: .75rem; color: var(--ink); }
.test-options { display: flex; gap: .5rem; flex-wrap: wrap; }
.test-opt {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: .85rem;
  transition: all .15s;
  color: var(--muted);
}
.test-opt:hover { border-color: var(--site-hue); color: var(--ink); }
.test-opt input[type="radio"] { accent-color: var(--site-hue); }
.test-opt:has(input:checked) {
  background: var(--call-soft);
  color: var(--call-deep);
  border-color: var(--site-hue);
  font-weight: 600;
}

.test-result {
  background: var(--bg);
  border: 2px solid var(--gold-line);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
}
.test-result h2 { color: var(--call-deep); }

/* ── Steps ──────────────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 1.5rem; }
.step-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  border-left: 4px solid var(--site-hue);
  transition: transform .22s, box-shadow .22s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.step-card h2 { font-size: 1.2rem; color: var(--call-deep); }
.step-card p { margin: 0; color: var(--muted); }

/* ── Reflection ─────────────────────────────────────────────── */
.reflection-list { padding-left: 1.5rem; }
.reflection-list li {
  margin-bottom: .75rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
}

/* ── Verse List ──────────────────────────────────────────────── */
.verse-list { display: flex; flex-direction: column; gap: 1rem; }

/* ── Quote Grid ──────────────────────────────────────────────── */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.2rem;
}
.quote-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.quote-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-strong);
}
.quote-card img { width: 100%; height: auto; display: block; }
.quote-card-info { padding: 1.25rem; }
.quote-card-info h3 { font-size: 1rem; margin-bottom: .25rem; }
.quote-card-info p { font-size: .85rem; margin-bottom: .75rem; }
.quote-card-actions { display: flex; gap: .5rem; }

/* ── Share Page ─────────────────────────────────────────────── */
.hero-share {
  background: linear-gradient(160deg, #1a0a0a 0%, #2d1515 40%, #1a1a2e 100%);
}
.share-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.share-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  display: flex;
  flex-direction: column;
}
.share-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--line-strong);
}
.share-card-inner {
  padding: 1.5rem 1.5rem 1rem;
  flex: 1;
  border-left: 4px solid var(--site-hue);
}
.share-card-num {
  display: inline-block;
  background: var(--call-soft);
  color: var(--call-deep);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: .75rem;
}
.share-card-quote {
  border: none;
  padding: 0;
  margin: 0 0 .5rem;
  background: none;
}
.share-card-quote p {
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.6;
}
.share-card-ref {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
}
.share-card-actions {
  display: flex;
  gap: .25rem;
  padding: .75rem 1.5rem;
  border-top: 1px solid var(--line);
  background: var(--bg-tint);
}
.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  cursor: pointer;
  transition: all .15s;
  color: var(--muted);
}
.share-btn:hover { transform: scale(1.1); }
.share-tw:hover { background: #1d9bf0; color: #fff; border-color: #1d9bf0; }
.share-fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.share-copy:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Big share buttons */
.share-big-btns {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.btn-share {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s;
  color: #fff;
}
.btn-share-tw { background: #1d9bf0; }
.btn-share-tw:hover { background: #0c7abf; color: #fff; }
.btn-share-fb { background: #1877f2; }
.btn-share-fb:hover { background: #0d5fc5; color: #fff; }
.btn-share-wa { background: #25d366; }
.btn-share-wa:hover { background: #1da851; color: #fff; }

/* Embed code block */
.embed-code-block {
  background: var(--ink);
  color: #e0e0e0;
  border-radius: 20px;
  padding: 1.5rem;
  margin-top: 1rem;
  overflow-x: auto;
}
.embed-code-block pre {
  margin: 0;
  font-size: .85rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
}
.embed-code-block code {
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
}

/* Email signup */
.email-signup {
  background: var(--bg);
  border: 2px solid var(--gold-line);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}
.email-signup h2 { color: var(--call-deep); margin-bottom: .5rem; }
.email-signup p { color: var(--muted); max-width: 480px; margin: 0 auto 1.5rem; }
.email-form {
  display: flex;
  gap: .75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.email-input {
  flex: 1;
  min-width: 220px;
  padding: .75rem 1rem;
  border: 2px solid var(--line);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: border-color .2s;
  background: var(--bg);
  color: var(--ink);
}
.email-input:focus {
  outline: none;
  border-color: var(--site-hue);
  box-shadow: 0 0 0 3px rgba(139,0,0,.12);
}
.email-privacy { font-size: .8rem; color: var(--muted); margin-top: .75rem; }
.email-success {
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
}
.email-success p { color: #2e7d32; font-weight: 600; margin: 0; }

/* ── Breadcrumbs ─────────────────────────────────────────────── */
.breadcrumb {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding: .5rem 0;
}
.breadcrumb a { color: var(--call-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--line-strong); margin: 0 .4rem; }
.breadcrumb-current { color: var(--muted); }

/* ── Blog Article ───────────────────────────────────────────── */
.blog-article { padding-top: clamp(2rem, 4vw, 3rem); }
.blog-header { padding: clamp(2rem, 4vw, 3.5rem) 0 2rem; text-align: center; }
.blog-header h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: .8rem auto 0;
  max-width: 18ch;
}
.blog-meta { font-size: .9rem; color: var(--muted); margin-top: .5rem; }
.blog-excerpt { font-size: 1.06rem; color: var(--muted); max-width: 560px; margin: 1rem auto 0; line-height: 1.7; }
.blog-breadcrumb { font-size: .85rem; color: var(--muted); margin-bottom: .5rem; }
.blog-breadcrumb a { color: var(--call-deep); }
.blog-fruit {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--site-hue);
}
.blog-fruit h3 { font-size: 1.1rem; color: var(--call-deep); margin-bottom: .4rem; }
.blog-fruit p { color: var(--muted); line-height: 1.7; margin: 0; }

/* ── Sitemap ─────────────────────────────────────────────────── */
.sitemap-list { list-style: none; padding: 0; }
.sitemap-item {
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem;
}
.sitemap-item:last-child { border-bottom: none; }
.sitemap-link { font-weight: 600; font-size: 1.05rem; color: var(--call-deep); text-decoration: none; }
.sitemap-link:hover { text-decoration: underline; }
.sitemap-url { font-size: .8rem; color: var(--muted); font-family: monospace; }

/* ── Share Copy Blocks (Resources page) ──────────────────────── */
.share-copy-blocks { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.share-copy-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
}
.share-copy-block h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.share-pre {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  overflow-x: auto;
  margin: .75rem 0;
  font-size: .85rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}
.share-pre code { font-family: var(--font-sans); color: var(--ink); }

/* ── CBA Family Bar ─────────────────────────────────────────── */
.cba-family-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem 1.1rem;
  padding: 1.4rem 0 .25rem;
  border-top: 1px solid var(--line);
  font: 500 14px/1.5 var(--font-sans);
}
.cba-family-bar .cba-family-eyebrow {
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--muted);
  margin-right: .4rem;
}
.cba-family-bar a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.cba-family-bar a:hover { color: var(--ink); }
.cba-family-bar .dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--c, #1FA15B);
  flex: 0 0 auto;
}

/* ── CBA Colophon ────────────────────────────────────────────── */
.cba-colophon {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 20px;
  font: 600 13px/1 var(--font-sans);
  color: var(--muted);
  text-decoration: none;
}
.cba-colophon .cba-mark { flex: 0 0 auto; border-radius: 6px; }
.cba-colophon strong { color: var(--ink); font-weight: 700; }
.cba-colophon:hover strong { text-decoration: underline; }

/* ── CBA Legal ───────────────────────────────────────────────── */
.cba-legal {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.cba-legal p {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 5px;
}
.cba-legal p:last-child { margin-bottom: 0; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  color: var(--ink);
  padding: clamp(3rem, 5vw, 4.2rem) 0 1.6rem;
  border-top: 1px solid var(--line);
}
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--call-deep);
  margin-bottom: .5rem;
}
.footer-verse {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-credit { font-size: .85rem; color: var(--muted); }

/* ── Footer Related Ministries ───────────────────────────────── */
.footer-related { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.footer-related h4 {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .75rem;
}
.footer-related-link {
  display: flex;
  flex-direction: column;
  padding: .6rem .75rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}
.footer-related-link:hover {
  border-color: var(--site-hue);
  box-shadow: var(--shadow-soft);
}
.footer-related-link strong {
  font-size: .85rem;
  color: var(--ink);
  margin-bottom: .15rem;
}
.footer-related-link span {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Focus visible ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--call-deep);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .wrap, .container { padding: 0 22px; }
  .links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav {
    display: block;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    z-index: 35;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(14px) saturate(1.2);
    border-bottom: 1px solid var(--line);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, opacity .3s ease;
    opacity: 0;
    pointer-events: none;
  }
  .mobile-nav.open {
    max-height: 500px;
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav-inner {
    display: flex;
    flex-direction: column;
    padding: 16px 22px;
    gap: 4px;
  }
  .mobile-nav-inner a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav-inner a:last-child { border-bottom: none; }
  body.nav-open { overflow: hidden; }

  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1.15rem; }
  .fruit-grid { grid-template-columns: 1fr; }
  .fruit-cats { grid-template-columns: repeat(2, 1fr); }
  .test-options { flex-direction: column; }
  .section { padding: 2.5rem 0; }
  .share-grid { grid-template-columns: 1fr; }
  .share-big-btns { flex-direction: column; align-items: center; }
  .email-signup { padding: 1.5rem; }
  .email-form { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 560px) {
  .nav { height: auto; min-height: 70px; padding-top: 12px; padding-bottom: 12px; }
  .brand b { font-size: 1.05rem; }
  .hero-ctas { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .fruit-cats { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-related-grid { grid-template-columns: 1fr; }
}
