/* =====================================================================
   VAs with a Mission - Landing page stylesheet
   Palette + type sampled from the brand flyer:
   warm blush cream, deep raspberry, magenta script, hot-pink hearts,
   soft watercolour washes, gold cross accents.
   Built dependency-free. Every motion effect respects reduced-motion.
   ===================================================================== */

:root {
  /* ---- Brand palette (sampled from the flyer) ---- */
  --cream:        #FBEFEC;
  --cream-2:      #FCF5F2;
  --blush:        #F8D9E0;
  --blush-2:      #F6CAD7;
  --blush-3:      #FBE4EA;
  --rose:         #B83263;   /* deep raspberry - the "VAs"  */
  --rose-deep:    #9E2B57;
  --magenta:      #E14C8B;   /* bright script + brush       */
  --magenta-2:    #D94D8A;
  --pink:         #EC5E8A;   /* hearts                      */
  --pink-soft:    #F49CB6;
  --pink-soft-2:  #F7C5D4;
  --gold:         #C9A24B;
  --ink:          #5A2233;   /* warm dark text              */
  --ink-2:        #7A4356;
  --white:        #ffffff;

  /* ---- Gradients ---- */
  --grad-rose:   linear-gradient(120deg, #E14C8B 0%, #B83263 60%, #9E2B57 100%);
  --grad-soft:   linear-gradient(180deg, #FBEFEC 0%, #F8D9E0 100%);
  --grad-band:   linear-gradient(180deg, #F7C5D4 0%, #F19FB8 100%);
  --grad-screen: linear-gradient(135deg, #B83263 0%, #8E2750 100%);

  /* ---- Type ---- */
  --font-display: "Playfair Display", Georgia, serif;
  --font-script:  "Dancing Script", "Brush Script MT", cursive;
  --font-body:    "Poppins", "Segoe UI", system-ui, sans-serif;

  /* ---- Shape ---- */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-pill: 999px;

  --shadow-sm: 0 6px 18px rgba(152, 38, 79, .10);
  --shadow-md: 0 16px 40px rgba(152, 38, 79, .16);
  --shadow-lg: 0 34px 80px rgba(152, 38, 79, .24);

  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.68;
  overflow-x: hidden;
  position: relative;
  font-size: 17px;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 3px solid var(--magenta); outline-offset: 3px; border-radius: 4px; }

/* =====================================================================
   Heart cursor - pure-CSS primary (data-URI), JS follower is enhancement
   ===================================================================== */
@media (hover: hover) and (pointer: fine) {
  body.heart-cursor,
  body.heart-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 32 32'%3E%3Cpath fill='%23EC5E8A' stroke='%23ffffff' stroke-width='1.6' d='M16 28S3 19.5 3 10.6C3 6 6.6 2.7 10.7 2.7c2.6 0 4.6 1.3 5.3 3.2.7-1.9 2.7-3.2 5.3-3.2C25.4 2.7 29 6 29 10.6 29 19.5 16 28 16 28z'/%3E%3C/svg%3E") 15 15, auto;
  }
  body.heart-cursor a,
  body.heart-cursor button,
  body.heart-cursor .clickable,
  body.heart-cursor summary,
  body.heart-cursor [role="button"] {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' viewBox='0 0 32 32'%3E%3Cpath fill='%23E14C8B' stroke='%23ffffff' stroke-width='1.6' d='M16 28S3 19.5 3 10.6C3 6 6.6 2.7 10.7 2.7c2.6 0 4.6 1.3 5.3 3.2.7-1.9 2.7-3.2 5.3-3.2C25.4 2.7 29 6 29 10.6 29 19.5 16 28 16 28z'/%3E%3C/svg%3E") 18 18, pointer;
  }
  /* soft glowing follower that lerps behind the pointer */
  .heart-follower {
    position: fixed; top: 0; left: 0; width: 46px; height: 46px;
    margin: -23px 0 0 -23px; pointer-events: none; z-index: 9990;
    border-radius: 50%; opacity: 0;
    background: radial-gradient(circle, rgba(236,94,138,.30), rgba(236,94,138,0) 68%);
    transition: opacity .3s ease;
    will-change: transform;
  }
}
/* heart that bursts up on click */
.float-heart {
  position: fixed; pointer-events: none; z-index: 9991;
  font-size: 18px; line-height: 1;
  animation: heart-rise 1s var(--ease) forwards;
}
@keyframes heart-rise {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(.5) rotate(0); }
  100% { opacity: 0; transform: translate(-50%, -190%) scale(1.15) rotate(16deg); }
}

/* =====================================================================
   Layout helpers / typography
   ===================================================================== */
.container { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }
.section { position: relative; padding: clamp(3.5rem, 7vw, 6.5rem) 0; z-index: 1; }
.section.tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }
/* center a width-limited lead even when 'center' is on the same element */
.lead.center { margin-inline: auto; }
/* any width-limited block placed directly in a centered container stays centered */
.center > p, .center > .lead, .subhero .lead, .final-cta .lead { margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body); font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  font-size: .74rem; color: var(--magenta);
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: 1rem;
}
.eyebrow .ico { width: 18px; height: 18px; }
.script { font-family: var(--font-script); font-weight: 700; color: var(--magenta); line-height: .9; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; color: var(--rose); }
.section-title { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: .9rem; }
.section-title .script { font-size: 1.18em; }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--ink-2); max-width: 62ch; }

/* brush stroke behind a word */
.brush {
  position: relative; display: inline-block; z-index: 0;
  color: var(--white); padding: .02em .45em;
}
.brush::before {
  content: ""; position: absolute; inset: .1em -.1em;
  background: var(--grad-rose);
  border-radius: 44% 56% 58% 42% / 62% 48% 52% 38%;
  z-index: -1; transform: rotate(-1.4deg); box-shadow: var(--shadow-sm);
}

/* gold hairline flourish */
.flourish { display: flex; align-items: center; justify-content: center; gap: .8rem; color: var(--gold); margin: 1rem 0; }
.flourish::before, .flourish::after { content: ""; height: 1px; width: 64px; background: linear-gradient(90deg, transparent, var(--gold)); }
.flourish::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 600; font-size: 1rem; padding: .95rem 1.9rem;
  border-radius: var(--r-pill); background: var(--grad-rose); color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .3s;
  position: relative; overflow: hidden; will-change: transform; text-align: center;
}
.btn .ico { width: 20px; height: 20px; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.45) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .75s var(--ease);
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: var(--shadow-lg); }
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn-ghost { background: transparent; color: var(--rose-deep); border: 2px solid var(--magenta); box-shadow: none; }
.btn-ghost:hover { background: var(--white); border-color: var(--rose); color: var(--rose); box-shadow: var(--shadow-sm); }
.btn-white { background: var(--white); color: var(--rose); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.08rem; }

/* =====================================================================
   Decorative floating elements + parallax
   ===================================================================== */
.deco { position: absolute; pointer-events: none; z-index: 0; will-change: transform; }
.deco.front { z-index: 2; }
.deco svg, .deco img { width: 100%; height: auto; }
.float { animation: floaty 7s ease-in-out infinite; }
.float.slow { animation-duration: 11s; }
.float.fast { animation-duration: 5s; }
.float.d1 { animation-delay: -2s; } .float.d2 { animation-delay: -4s; } .float.d3 { animation-delay: -6s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(4deg); } }
.spin-slow { animation: spin 30s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.pulse { animation: pulse 3.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.09); } }
/* dashed flight path draw */
.flight-path { stroke-dasharray: 4 6; animation: dashdraw 24s linear infinite; }
@keyframes dashdraw { to { stroke-dashoffset: -200; } }

/* watercolour blobs softly glowing behind sections */
.blob { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .5; z-index: 0; pointer-events: none; }
.blob.pink  { background: radial-gradient(circle at 30% 30%, #FBC7D8, #F49CB6); }
.blob.rose  { background: radial-gradient(circle at 30% 30%, #F2A6C2, #E14C8B); opacity: .35; }
.blob.cream { background: radial-gradient(circle at 30% 30%, #FFF, #F8D9E0); opacity: .7; }

/* =====================================================================
   Scroll reveal (IntersectionObserver -> .is-visible)
   ===================================================================== */
[data-reveal] {
  opacity: 0; will-change: transform, opacity;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal="fade-up"]    { transform: translateY(40px); }
[data-reveal="fade-down"]  { transform: translateY(-40px); }
[data-reveal="fade-left"]  { transform: translateX(46px); }
[data-reveal="fade-right"] { transform: translateX(-46px); }
[data-reveal="scale-in"]   { transform: scale(.9); }
[data-reveal].is-visible   { opacity: 1; transform: none; }

/* =====================================================================
   Wavy section dividers
   ===================================================================== */
.divider { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 1; pointer-events: none; }
.divider.top { top: -1px; }
.divider.bottom { bottom: -1px; }
.divider svg { width: 100%; height: 70px; display: block; }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: .85rem 0; transition: background .4s, box-shadow .4s, padding .4s;
}
.nav.scrolled { background: rgba(251,239,236,.86); backdrop-filter: blur(12px); box-shadow: 0 6px 24px rgba(152,38,79,.10); padding: .55rem 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; font-weight: 700; }
.brand .mark { width: 50px; height: 50px; flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-family: var(--font-display); font-size: 1.34rem; color: var(--rose); letter-spacing: .01em; }
.brand-name span { font-family: var(--font-script); font-size: 1.46rem; color: var(--magenta); margin-top: -2px; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-weight: 500; font-size: .96rem; color: var(--ink); position: relative; padding: .2rem 0; }
/* a lone nav link (e.g. just "Home" on the form page) gets real presence */
.nav-links a:only-child { font-size: 1.2rem; font-weight: 600; color: var(--rose); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--grad-rose); transition: width .35s var(--ease); border-radius: 2px; }
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.nav-social { display: flex; gap: .55rem; }
.nav-social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--white); color: var(--rose); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), background .3s, color .3s; }
.nav-social a:hover { transform: translateY(-3px) scale(1.05); background: var(--grad-rose); color: #fff; }
.nav-social .ico { width: 18px; height: 18px; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--white); box-shadow: var(--shadow-sm); place-items: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 22px; height: 2px; background: var(--rose); border-radius: 2px; position: relative; transition: .3s; }
.nav-toggle span::before { position: absolute; top: -7px; } .nav-toggle span::after { position: absolute; top: 7px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* =====================================================================
   HERO  (the flyer look on load)
   ===================================================================== */
.hero { position: relative; padding: clamp(7rem, 13vw, 9.5rem) 0 clamp(5rem, 9vw, 7rem); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.world-map { position: absolute; opacity: .5; }
.world-map.r { top: 7%; right: -4%; width: 46%; }
.world-map.l { top: 30%; left: -7%; width: 26%; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.5rem; align-items: center; }
.hero-badge {
  width: 148px; height: 148px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 50% 38%, #fff 0%, #FBE4EA 100%);
  border: 2px dashed var(--pink-soft); color: var(--rose); box-shadow: var(--shadow-md);
  font-weight: 700; font-size: .72rem; letter-spacing: .14em; line-height: 1.4; text-transform: uppercase;
  /* now sits in normal flow ABOVE the title (no overlap) + is draggable */
  position: relative; left: 0; top: 0; margin: 0 0 1.1rem -4px;
  transform: rotate(-6deg); padding: 1rem; z-index: 5;
  cursor: grab; touch-action: none; user-select: none; -webkit-user-select: none;
  transition: box-shadow .3s var(--ease);
}
.hero-badge:hover { box-shadow: var(--shadow-md); }
.hero-badge.dragging { cursor: grabbing; box-shadow: var(--shadow-lg); transition: none; }
.hero-badge .ico { width: 24px; height: 24px; margin: .3rem auto 0; color: var(--pink); pointer-events: none; }
.hero-badge .drag-hint {
  position: absolute; bottom: -24px; left: 50%;
  font-size: .62rem; letter-spacing: .08em; color: var(--magenta); white-space: nowrap;
  opacity: .95; pointer-events: none; text-transform: none; font-weight: 700;
  background: #fff; padding: .12rem .55rem; border-radius: 999px; box-shadow: var(--shadow-sm);
  animation: dragNudge 1.8s var(--ease) infinite;
}
.hero-badge:hover .drag-hint { opacity: 1; }
@keyframes dragNudge {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 4px); }
}
/* puzzle SLOT: a matching circle the "Here I am, send me" badge drops into.
   Carries the flyer's "For Christian Women" dashed-circle look. */
.send-slot {
  position: relative; width: 156px; height: 156px; border-radius: 50%;
  display: grid; place-items: center; text-align: center; flex: none;
  background: radial-gradient(circle at 50% 36%, #fff 0%, var(--blush-3) 100%);
  border: 2px dashed var(--pink-soft); color: var(--rose); text-decoration: none;
  font-weight: 700; font-size: .72rem; letter-spacing: .13em; line-height: 1.45; text-transform: uppercase;
  box-shadow: var(--shadow-md);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.send-slot .slot-ring {
  position: absolute; inset: 9px; border-radius: 50%;
  border: 1.5px dashed var(--pink-soft-2); opacity: .7; pointer-events: none;
}
.send-slot .slot-label { position: relative; z-index: 1; }
.send-slot .ico { display: block; width: 22px; height: 22px; margin: .35rem auto 0; color: var(--pink); }
.send-slot .slot-hint {
  position: absolute; bottom: -26px; left: 50%; transform: translateX(-50%);
  font-size: .62rem; letter-spacing: .03em; color: var(--magenta); white-space: nowrap;
  text-transform: none; font-weight: 700; background: #fff; padding: .12rem .6rem;
  border-radius: 999px; box-shadow: var(--shadow-sm);
}
.send-slot:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); border-color: var(--magenta); }
.send-slot.drop-ready {
  border-style: solid; border-color: var(--magenta); transform: scale(1.07);
  box-shadow: 0 0 0 4px #fff, 0 0 0 9px var(--magenta), var(--shadow-lg);
}
.send-slot.drop-ready .slot-ring { opacity: 1; border-color: var(--magenta); }
/* the badge clicks into the slot, then we navigate */
.hero-badge.snapped {
  animation: badgeSnap .5s var(--ease) forwards;
  pointer-events: none; border-style: solid; border-color: var(--magenta); z-index: 30;
}
@keyframes badgeSnap {
  0%   { transform: rotate(-6deg) scale(1);   opacity: 1; }
  55%  { transform: rotate(0deg)  scale(1.12); opacity: 1; }
  100% { transform: rotate(0deg)  scale(.22);  opacity: 0; }
}
@media (max-width: 600px) { .send-slot { width: 134px; height: 134px; } }
.hero-copy { position: relative; padding-top: 1rem; }
.hero-title { font-size: clamp(3.2rem, 8.5vw, 6rem); line-height: .92; color: var(--rose); margin-bottom: .2rem; }
.hero-title .vas { display: block; font-weight: 900; letter-spacing: -.01em; }
.hero-title .witha { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: .3em; color: var(--rose-deep); display: inline-block; transform: translateY(-.4em); margin-left: .15em; }
.hero-title .mission { font-family: var(--font-script); font-weight: 700; font-size: .92em; color: var(--magenta); display: block; margin-top: -.18em; }
.hero-sub { margin: 1.4rem 0; font-size: clamp(1.1rem, 1.9vw, 1.4rem); font-family: var(--font-display); color: var(--rose); max-width: 26ch; }
.hero-sub .brush { font-style: italic; }
.hero-lead { color: var(--ink-2); max-width: 46ch; margin-bottom: 1.7rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem 1rem; align-items: center; }
.hero-trust { margin-top: 1.5rem; display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--ink-2); }
.hero-trust .heart-row { display: inline-flex; }
.hero-trust .ico { width: 16px; height: 16px; color: var(--pink); }

/* floated scripture quote card top-right of hero */
.verse-float {
  position: absolute; top: 3%; right: 0; max-width: 300px; z-index: 3;
  background: rgba(255,255,255,.74); backdrop-filter: blur(6px);
  border-radius: var(--r-md); padding: 1.3rem 1.5rem 1.2rem; box-shadow: var(--shadow-md);
  border-left: 4px solid var(--magenta); font-family: var(--font-display); font-style: italic;
  color: var(--rose-deep); font-size: 1.18rem; line-height: 1.4;
}
.verse-float .ref { display: block; margin-top: .5rem; font-style: normal; font-family: var(--font-body); font-weight: 700; font-size: .8rem; letter-spacing: .1em; color: var(--magenta); text-transform: uppercase; }
.verse-float .qmark { font-family: var(--font-display); font-size: 2.4rem; line-height: 0; color: var(--pink-soft); position: absolute; top: 1.4rem; left: .6rem; }

/* ---- Hero desk illustration ---- */
.hero-art { position: relative; }
.desk { position: relative; width: 100%; max-width: 520px; margin-inline: auto; }
.desk-card { background: linear-gradient(180deg,#fff,#FCF5F2); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 1.6rem; position: relative; }
.laptop { position: relative; border-radius: 14px 14px 0 0; overflow: hidden; box-shadow: 0 -2px 0 #e9c7cf inset; }
.laptop-screen { background: var(--grad-screen); aspect-ratio: 16/10.2; border-radius: 12px 12px 0 0; position: relative; overflow: hidden; display: grid; place-items: center; padding: 1.2rem; }
.laptop-screen .screen-map { position: absolute; inset: 0; opacity: .28; }
.laptop-screen .screen-text { position: relative; text-align: center; color: #fff; }
.laptop-screen .go { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.6rem,5vw,2.4rem); letter-spacing: .02em; }
.laptop-screen .go-sub { font-weight: 600; letter-spacing: .12em; font-size: .64rem; line-height: 1.5; text-transform: uppercase; margin-top: .35rem; }
.laptop-screen .go-ref { font-size: .56rem; letter-spacing: .14em; margin-top: .5rem; opacity: .85; }
.laptop-base { height: 12px; background: linear-gradient(180deg,#e9c7cf,#dcb4be); border-radius: 0 0 10px 10px; position: relative; }
.laptop-base::after { content:""; position:absolute; top:0; left:50%; transform:translateX(-50%); width:60px; height:5px; background:#cf9faa; border-radius:0 0 6px 6px; }

.desk-extras { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 1rem; padding: 0 .4rem; }
.mug { width: 54px; height: 46px; }
.bible { width: 86px; height: auto; }
.notepad { background: #FFFDF8; border-radius: 8px; box-shadow: var(--shadow-sm); padding: .7rem .9rem; transform: rotate(-3deg); font-family: var(--font-script); color: var(--rose-deep); font-size: 1.15rem; line-height: 1.1; border-left: 2px solid var(--pink-soft); }
.notepad small { display:block; font-family: var(--font-body); font-weight:600; font-size:.6rem; letter-spacing:.1em; color: var(--magenta); margin-top:.2rem; text-transform:uppercase; }

/* =====================================================================
   "You'll be equipped to" quick strip (under hero)
   ===================================================================== */
.equip { background: var(--cream-2); }
.equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.equip-card { background: #fff; border-radius: var(--r-md); padding: 1.5rem 1.3rem; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); position: relative; overflow: hidden; }
.equip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.equip-card .ico-wrap { width: 52px; height: 52px; border-radius: 16px; background: var(--blush-3); display: grid; place-items: center; color: var(--magenta); margin-bottom: 1rem; transition: background .35s, color .35s; }
.equip-card:hover .ico-wrap { background: var(--grad-rose); color: #fff; }
.equip-card .ico { width: 26px; height: 26px; }
.equip-card h3 { font-size: 1.06rem; color: var(--rose); margin-bottom: .35rem; }
.equip-card p { font-size: .92rem; color: var(--ink-2); line-height: 1.55; }

/* =====================================================================
   Empathy strip
   ===================================================================== */
.empathy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.2rem; }
.empathy-card { background: #fff; border-radius: var(--r-md); padding: 1.8rem; box-shadow: var(--shadow-sm); border-top: 4px solid var(--pink-soft); }
.empathy-card .q { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: var(--rose); margin-bottom: .5rem; }
.empathy-card p { font-size: .96rem; color: var(--ink-2); }

/* =====================================================================
   Scripture / quote card
   ===================================================================== */
.scripture {
  background: var(--blush-3); border-radius: var(--r-lg); padding: clamp(2rem,4vw,3rem);
  position: relative; box-shadow: var(--shadow-sm); overflow: hidden;
}
.scripture .qmark { font-family: var(--font-display); font-size: 6rem; line-height: .6; color: var(--pink-soft); opacity: .6; position: absolute; top: 1.2rem; left: 1.4rem; }
.scripture blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem,2.6vw,1.9rem); color: var(--rose); position: relative; z-index: 1; max-width: 30ch; }
.scripture cite { display: block; margin-top: 1rem; font-style: normal; font-family: var(--font-body); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; color: var(--magenta); }

/* mission split layout */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.split.reverse > :first-child { order: 2; }
.mission-points { margin-top: 1.6rem; display: grid; gap: 1rem; }
.mission-points li { display: flex; gap: .9rem; align-items: flex-start; }
.mission-points .tick { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--blush-3); color: var(--magenta); display: grid; place-items: center; }
.mission-points .tick .ico { width: 16px; height: 16px; }
.mission-points b { color: var(--rose); }

/* arched / framed image */
.framed { border-radius: 50% 50% var(--r-lg) var(--r-lg) / 30% 30% var(--r-lg) var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; background: #fff; }
.framed img { width: 100%; height: 100%; object-fit: cover; }
.framed.arch { border-radius: 220px 220px var(--r-md) var(--r-md); }

/* =====================================================================
   Curriculum / what you'll learn cards
   ===================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; margin-top: 2.4rem; }
.skill-card { background: #fff; border-radius: var(--r-md); padding: 1.8rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); position: relative; }
.skill-card::before { content:""; position:absolute; inset:0; border-radius:inherit; padding:1.6px; background:linear-gradient(140deg, var(--pink-soft), transparent 55%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity:0; transition:opacity .4s; }
.skill-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.skill-card:hover::before { opacity: 1; }
.skill-card .ico-wrap { width: 56px; height: 56px; border-radius: 18px; background: var(--blush-3); color: var(--magenta); display: grid; place-items: center; margin-bottom: 1.1rem; }
.skill-card .ico { width: 28px; height: 28px; }
.skill-card h3 { font-size: 1.18rem; color: var(--rose); margin-bottom: .5rem; }
.skill-card p { font-size: .95rem; color: var(--ink-2); }

/* =====================================================================
   How it works - Learn / Serve / Support / Send
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; margin-top: 2.6rem; position: relative; }
.step { background: #fff; border-radius: var(--r-md); padding: 2rem 1.4rem 1.6rem; box-shadow: var(--shadow-sm); text-align: center; position: relative; transition: transform .4s var(--ease); }
.step:hover { transform: translateY(-6px); }
.step .num { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--grad-rose); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; box-shadow: var(--shadow-sm); }
.step .ico-wrap { width: 64px; height: 64px; margin: .8rem auto 1rem; border-radius: 50%; background: var(--blush-3); color: var(--magenta); display: grid; place-items: center; }
.step .ico { width: 30px; height: 30px; }
.step h3 { font-family: var(--font-script); font-weight: 700; font-size: 1.7rem; color: var(--magenta); margin-bottom: .3rem; }
.step p { font-size: .9rem; color: var(--ink-2); }

/* =====================================================================
   Who it's for
   ===================================================================== */
.who-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.who-list li { display: flex; gap: .85rem; align-items: flex-start; background:#fff; padding:1rem 1.2rem; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.who-list .ico { width: 22px; height: 22px; color: var(--pink); flex: none; margin-top: .15rem; }

/* =====================================================================
   Impact band + stat counters
   ===================================================================== */
.impact { background: var(--grad-rose); color: #fff; position: relative; overflow: hidden; }
.impact h2, .impact h3 { color: #fff; }
.impact .lead { color: rgba(255,255,255,.9); }
.impact .eyebrow { color: #FCD9E6; }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.4rem; margin-top: 2.6rem; }
.stat { text-align: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-md); padding: 1.6rem 1rem; backdrop-filter: blur(4px); }
.stat .num { font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem,4.5vw,2.8rem); line-height: 1; }
.stat .label { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-top: .5rem; color: rgba(255,255,255,.88); }
.impact-note { margin-top: 2rem; display: inline-flex; align-items: center; gap: .6rem; background: rgba(255,255,255,.14); padding: .7rem 1.2rem; border-radius: var(--r-pill); font-weight: 600; }
.impact-note .ico { width: 20px; height: 20px; }

/* =====================================================================
   Testimonials
   ===================================================================== */
.quote-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.6rem; margin-top: 2.4rem; }
.quote-card { background: #fff; border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-sm); position: relative; }
.quote-card .stars { color: var(--gold); letter-spacing: .15em; margin-bottom: .8rem; font-size: .95rem; }
.quote-card blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: var(--rose); line-height: 1.5; }
.quote-card .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.quote-card .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--grad-rose); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; flex: none; }
.quote-card .who b { display: block; color: var(--rose); }
.quote-card .who span { font-size: .85rem; color: var(--ink-2); }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.faq-list { max-width: 820px; margin: 2.2rem auto 0; display: grid; gap: .9rem; }
.faq-item { background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: 1.06rem; color: var(--rose); }
.faq-q .chev { width: 30px; height: 30px; border-radius: 50%; background: var(--blush-3); color: var(--magenta); display: grid; place-items: center; flex: none; transition: transform .35s var(--ease), background .3s; }
.faq-q .chev .ico { width: 16px; height: 16px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--grad-rose); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--ink-2); font-size: .98rem; }

/* =====================================================================
   Final CTA band
   ===================================================================== */
.final-cta { background: var(--grad-band); position: relative; overflow: hidden; text-align: center; }
.final-cta .container { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(2.2rem,5vw,3.4rem); }
.final-cta .verse { font-family: var(--font-display); font-style: italic; color: var(--rose-deep); font-size: 1.2rem; margin: 1rem auto 1.6rem; max-width: 34ch; }
.final-cta .verse .ref { display:block; font-style: normal; font-family: var(--font-body); font-weight: 700; letter-spacing: .12em; font-size: .78rem; color: var(--magenta); text-transform: uppercase; margin-top: .4rem; }

/* =====================================================================
   Footer
   ===================================================================== */
.footer { background: #41121F; color: #F6D8E0; padding: 3.5rem 0 0; position: relative; }
.footer a { color: #F6D8E0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer .brand-name b { color: #fff; } .footer .brand-name span { color: var(--pink-soft); }
.footer-about p { color: #E7B9C6; font-size: .94rem; margin-top: 1rem; max-width: 34ch; }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 1rem; }
.footer-col a { display: block; padding: .3rem 0; font-size: .94rem; color: #E7B9C6; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer .social { display: flex; gap: .6rem; margin-top: 1rem; }
.footer .social a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .3s, transform .3s; }
.footer .social a:hover { background: var(--grad-rose); transform: translateY(-3px); }
.footer .social .ico { width: 19px; height: 19px; }
.newsletter { display: flex; gap: .5rem; margin-top: 1rem; max-width: 320px; }
.newsletter input { flex: 1; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; border-radius: var(--r-pill); padding: .7rem 1.1rem; font-family: inherit; font-size: .92rem; }
.newsletter input::placeholder { color: #C99AA9; }
.newsletter button { flex: none; width: 46px; border-radius: 50%; background: var(--grad-rose); color: #fff; display: grid; place-items: center; }
.footer-ribbon { background: var(--grad-rose); text-align: center; padding: 1rem; margin-top: 1rem; font-weight: 700; letter-spacing: .14em; font-size: .8rem; color: #fff; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: .8rem; flex-wrap: wrap; }
.footer-ribbon .ico { width: 18px; height: 18px; }
.footer-base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.2rem 0; font-size: .84rem; color: #C99AA9; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .hero-inner, .split, .footer-top { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .hero-art { margin-top: 2rem; }
  .verse-float { position: static; max-width: none; margin-top: 1.5rem; }
  .equip-grid, .steps, .stats { grid-template-columns: repeat(2,1fr); }
  .card-grid, .empathy-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-social { display: none; }
  .nav-toggle { display: grid; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: .4rem;
    position: absolute; top: 100%; left: 0; right: 0; margin: .6rem 1.2rem 0;
    background: #fff; border-radius: var(--r-md); padding: 1rem 1.4rem; box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a { width: 100%; padding: .6rem 0; border-bottom: 1px solid var(--blush-3); }
  .hero-title { font-size: clamp(3rem, 16vw, 4.6rem); }
  .hero-badge { width: 122px; height: 122px; font-size: .62rem; }
}
@media (max-width: 540px) {
  .equip-grid, .steps, .stats, .footer-top { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* =====================================================================
   MISSION HUB TEASER  (lives near the end of the landing page)
   ===================================================================== */
.hub-teaser { background: radial-gradient(120% 120% at 50% 0%, #ffffff 0%, var(--blush-3) 100%); position: relative; overflow: hidden; }
.hub-teaser .mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 2.2rem 0; }
.hub-mini { background: #fff; border-radius: var(--r-md); padding: 1.5rem 1.3rem; box-shadow: var(--shadow-sm); text-align: left; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.hub-mini:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hub-mini .ico-wrap { width: 48px; height: 48px; border-radius: 14px; background: var(--blush-3); color: var(--magenta); display: grid; place-items: center; margin-bottom: .9rem; }
.hub-mini .ico { width: 24px; height: 24px; }
.hub-mini .step-no { font-family: var(--font-body); font-weight: 700; font-size: .7rem; letter-spacing: .18em; color: var(--pink); text-transform: uppercase; }
.hub-mini h3 { font-size: 1.1rem; color: var(--rose); margin: .2rem 0 .35rem; }
.hub-mini p { font-size: .9rem; color: var(--ink-2); }

/* =====================================================================
   MISSION HUB PAGE  (resources.html - "version two")
   ===================================================================== */
.subhero { position: relative; padding: clamp(7rem, 12vw, 9rem) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; text-align: center; }
.subhero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.subhero h1 .script { font-size: 1.1em; }
.breadcrumb { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .9rem; color: var(--magenta); margin-bottom: 1.1rem; }
.breadcrumb .ico { width: 16px; height: 16px; transform: rotate(180deg); }
.breadcrumb:hover { color: var(--rose); }

.chip-nav { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.8rem; }
.chip { display: inline-flex; align-items: center; gap: .5rem; padding: .6rem 1.15rem; border-radius: var(--r-pill); background: #fff; box-shadow: var(--shadow-sm); font-weight: 600; font-size: .92rem; color: var(--rose); transition: transform .3s var(--ease), background .3s, color .3s; }
.chip:hover { transform: translateY(-3px); background: var(--grad-rose); color: #fff; }
.chip:hover .ico { color: #fff; }
.chip .ico { width: 18px; height: 18px; color: var(--magenta); }

/* the three big journey pillars */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.4rem; }
.pillar-card { position: relative; background: #fff; border-radius: var(--r-lg); padding: 2.2rem 1.8rem; box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); display: flex; flex-direction: column; }
.pillar-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--grad-rose); }
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pillar-card .pnum { font-family: var(--font-display); font-weight: 900; font-size: 2.6rem; color: var(--blush-2); line-height: 1; }
.pillar-card .ico-wrap { width: 60px; height: 60px; border-radius: 18px; background: var(--blush-3); color: var(--magenta); display: grid; place-items: center; margin: .3rem 0 1rem; }
.pillar-card .ico { width: 30px; height: 30px; }
.pillar-card h3 { font-size: 1.4rem; color: var(--rose); margin-bottom: .5rem; }
.pillar-card p { color: var(--ink-2); font-size: .96rem; flex: 1; }
.pillar-card .more { margin-top: 1.3rem; font-weight: 600; color: var(--magenta); display: inline-flex; align-items: center; gap: .4rem; }
.pillar-card .more .ico { width: 18px; height: 18px; transition: transform .3s; }
.pillar-card:hover .more .ico { transform: translateX(4px); }

/* numbered "start here" checklist */
.steplist { display: grid; gap: 1rem; margin-top: 1.8rem; counter-reset: s; }
.steplist li { display: flex; gap: 1rem; align-items: flex-start; background: #fff; border-radius: var(--r-md); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-sm); }
.steplist li::before { counter-increment: s; content: counter(s); flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--grad-rose); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.steplist b { color: var(--rose); }
.steplist span { color: var(--ink-2); font-size: .96rem; }

/* tags on resource cards */
.tag { display: inline-block; font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .6rem; border-radius: var(--r-pill); background: var(--blush-3); color: var(--magenta); margin-bottom: .8rem; }
.tag.soon { background: #F5E7D6; color: #B07B2E; }
.tag.free { background: #E5F3E9; color: #3C8B57; }
.tag.new  { background: #E7ECFb; color: #5566c9; }
.skill-card .more { margin-top: 1rem; font-weight: 600; color: var(--magenta); display: inline-flex; align-items: center; gap: .4rem; font-size: .92rem; }
.skill-card .more .ico { width: 16px; height: 16px; transition: transform .3s; }
.skill-card:hover .more .ico { transform: translateX(4px); }

/* tool reference chips */
.tool-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .85rem; }
.tool-chip { font-size: .78rem; font-weight: 500; padding: .32rem .7rem; border-radius: var(--r-pill); background: var(--blush-3); color: var(--rose); }
.skill-card .tools-label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pink); margin-top: 1rem; display: block; }

/* honest rates table */
.rate-table { width: 100%; border-collapse: collapse; margin-top: 1.8rem; background: #fff; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.rate-table caption { caption-side: bottom; font-size: .82rem; color: var(--ink-2); font-style: italic; padding-top: .9rem; text-align: left; }
.rate-table th, .rate-table td { text-align: left; padding: .85rem 1.1rem; border-bottom: 1px solid var(--blush-3); font-size: .95rem; vertical-align: top; }
.rate-table th { background: var(--blush-3); color: var(--rose); font-weight: 700; }
.rate-table td b { color: var(--magenta); white-space: nowrap; }
.rate-table tr:last-child td { border-bottom: none; }

/* find-work clickable cards + modal */
.find-card { width: 100%; text-align: left; font: inherit; cursor: pointer; }
.find-card .more { margin-top: 1rem; font-weight: 600; color: var(--magenta); display: inline-flex; align-items: center; gap: .4rem; font-size: .92rem; }
.find-card .more .ico { width: 16px; height: 16px; transition: transform .3s; }
.find-card:hover .more .ico { transform: translateX(4px); }

.modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(90,34,51,.45); backdrop-filter: blur(3px); animation: fadeIn .3s; }
.modal-box { position: relative; z-index: 1; width: min(92%, 560px); margin: 7vh auto 2rem; max-height: 84vh; overflow-y: auto; background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: 2rem 1.8rem; animation: popIn .35s var(--ease); }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(.98) } to { opacity: 1; transform: none } }
.modal-close { position: absolute; top: .8rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%; background: var(--blush-3); color: var(--rose); font-size: 1.5rem; line-height: 1; display: grid; place-items: center; transition: background .25s, color .25s; z-index: 2; }
.modal-close:hover { background: var(--grad-rose); color: #fff; }
.panel-title { font-size: 1.4rem; color: var(--rose); margin-bottom: .3rem; padding-right: 2.4rem; }
.panel-intro { color: var(--ink-2); font-size: .94rem; margin-bottom: 1.1rem; }
.link-list { display: grid; gap: .55rem; }
.link-list a { display: block; padding: .8rem 1rem; border-radius: var(--r-md); background: var(--cream-2); border: 1px solid transparent; transition: background .25s, transform .25s, border-color .25s, box-shadow .25s; }
.link-list a:hover { background: #fff; border-color: var(--blush-2); transform: translateX(3px); box-shadow: var(--shadow-sm); }
.link-list b { display: flex; align-items: center; gap: .4rem; color: var(--rose); font-size: 1rem; }
.link-list b .ico { width: 15px; height: 15px; color: var(--magenta); flex: none; }
.link-list span { display: block; font-size: .85rem; color: var(--ink-2); margin-top: .2rem; }

/* fully-clickable cards (links) */
.card-link { display: flex; flex-direction: column; color: inherit; text-decoration: none; }
.card-link .more { margin-top: auto; }
.card-link h3 { margin-top: 0; }

/* skill squares (tap to open a logo panel) */
.skill-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 1rem; margin-top: 2.3rem; }
.skill-tile { aspect-ratio: 1 / 1; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 1rem .9rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .55rem; cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; border: 2px solid transparent; font: inherit; }
.skill-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blush-2); }
.skill-tile .ico-wrap { width: 52px; height: 52px; border-radius: 16px; background: var(--blush-3); color: var(--magenta); display: grid; place-items: center; transition: background .3s, color .3s; }
.skill-tile:hover .ico-wrap { background: var(--grad-rose); color: #fff; }
.skill-tile .ico { width: 27px; height: 27px; }
.skill-tile h3 { font-size: .94rem; color: var(--rose); line-height: 1.2; margin: 0; }
.skill-tile .tap { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--pink); font-weight: 700; }

/* real tool logos inside the modal */
.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); gap: .6rem; margin-top: 1.2rem; }
.logo-chip { display: flex; align-items: center; gap: .6rem; padding: .6rem .8rem; background: var(--cream-2); border-radius: var(--r-md); }
.logo-chip img { width: 26px; height: 26px; object-fit: contain; flex: none; }
.logo-chip b { font-size: .87rem; color: var(--rose); font-weight: 600; }
.logo-chip .mono { width: 26px; height: 26px; flex: none; border-radius: 7px; background: var(--blush-3); color: var(--magenta); display: grid; place-items: center; font-weight: 800; font-size: .82rem; font-family: var(--font-display); }

/* 90-day calendar block */
.cal { background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 1.3rem 1.5rem 1.6rem; margin-top: 1.2rem; border: 1px solid var(--blush-3); }
.cal-head { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; padding-bottom: .9rem; border-bottom: 2px solid var(--blush-3); }
.cal-title { font-family: var(--font-display); font-weight: 800; color: var(--rose); font-size: 1.1rem; display: inline-flex; align-items: center; gap: .5rem; }
.cal-title .ico { width: 18px; height: 18px; color: var(--magenta); }
.cal-hint { font-size: .76rem; color: var(--magenta); font-weight: 600; letter-spacing: .04em; }
.cal-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: .55rem; }
.cal-cell { aspect-ratio: 1 / 1; border-radius: var(--r-md); background: var(--cream-2); color: var(--rose); font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; display: grid; place-items: center; cursor: pointer; transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s; border: 2px solid transparent; }
.cal-cell:hover { transform: translateY(-3px); background: #fff; box-shadow: var(--shadow-sm); border-color: var(--blush-2); }
.cal-cell.active { background: var(--grad-rose); color: #fff; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cal-detail { margin-top: 1.1rem; background: var(--blush-3); border-radius: var(--r-md); padding: 1.2rem 1.4rem; border-left: 4px solid var(--magenta); animation: calOpen .4s var(--ease); }
@keyframes calOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.cal-step-no { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--magenta); }
.cal-detail h4 { font-size: 1.2rem; color: var(--rose); margin: .15rem 0 .4rem; }
.cal-detail p { color: #5d3343; margin: 0; }
@media (max-width: 720px) { .cal-grid { grid-template-columns: repeat(5, 1fr); } }

/* safety / red-flag callout list */
.safe-list { display: grid; gap: .8rem; margin-top: 1.6rem; }
.safe-list li { display: flex; gap: .8rem; align-items: flex-start; background: #fff; border-radius: var(--r-md); padding: .9rem 1.2rem; box-shadow: var(--shadow-sm); }
.safe-list .ico { width: 20px; height: 20px; color: var(--magenta); flex: none; margin-top: .15rem; }
.safe-list b { color: var(--rose); }

@media (max-width: 700px) {
  .rate-table thead { display: none; }
  .rate-table, .rate-table tbody, .rate-table tr, .rate-table td { display: block; width: 100%; }
  .rate-table tr { border-bottom: 2px solid var(--blush-3); padding: .4rem 0; }
  .rate-table td { border: none; padding: .35rem 1.1rem; }
  .rate-table td::before { content: attr(data-label); display: block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pink); }
}

/* =====================================================================
   LONG-READ GUIDE  (guide-what-is-a-va.html)
   ===================================================================== */
.reading-meta { display: inline-flex; align-items: center; gap: .8rem; margin-top: 1rem; flex-wrap: wrap; }
.reading-meta .pill { display: inline-flex; align-items: center; gap: .4rem; background: #fff; box-shadow: var(--shadow-sm); border-radius: var(--r-pill); padding: .4rem .9rem; font-size: .82rem; font-weight: 600; color: var(--rose); }
.reading-meta .pill .ico { width: 15px; height: 15px; color: var(--magenta); }

.guide-grid { display: grid; grid-template-columns: 240px 1fr; gap: 2.6rem; align-items: start; }
.toc { position: sticky; top: 92px; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 1.3rem 1.2rem; max-height: calc(100vh - 110px); overflow-y: auto; }
.toc h4 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--magenta); margin-bottom: .8rem; }
.toc ol { list-style: none; counter-reset: toc; display: grid; gap: .1rem; }
.toc a { display: block; padding: .4rem .5rem; border-radius: 8px; font-size: .88rem; color: var(--ink-2); line-height: 1.35; transition: background .2s, color .2s; }
.toc a:hover { background: var(--blush-3); color: var(--rose); }
.toc a.active { background: var(--grad-rose); color: #fff; }

.prose { max-width: 70ch; }
.prose .chapter { padding-top: .5rem; margin-bottom: 2.6rem; scroll-margin-top: 92px; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--rose); margin-bottom: .5rem; }
.prose h2 .num { font-family: var(--font-script); color: var(--pink); font-size: 1.1em; margin-right: .3rem; }
.prose h3 { font-size: 1.2rem; color: var(--rose); margin: 1.6rem 0 .5rem; }
.prose p { margin-bottom: 1rem; color: #5d3343; }
.prose ul, .prose ol.list { margin: 0 0 1.1rem 0; display: grid; gap: .5rem; }
.prose ul li { position: relative; padding-left: 1.4rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); }
.prose ol.list { counter-reset: n; }
.prose ol.list li { position: relative; padding-left: 2.4rem; min-height: 26px; }
.prose ol.list li::before { counter-increment: n; content: counter(n); position: absolute; left: 0; top: .05em; width: 26px; height: 26px; border-radius: 50%; background: var(--blush-3); color: var(--magenta); font-weight: 700; font-size: .82rem; display: grid; place-items: center; }
.prose a:not(.btn) { color: var(--magenta); font-weight: 600; text-decoration: underline; text-decoration-color: var(--blush-2); text-underline-offset: 3px; }
.prose a:not(.btn):hover { text-decoration-color: var(--magenta); }
.prose b, .prose strong { color: var(--rose); }

.callout { border-radius: var(--r-md); padding: 1.2rem 1.4rem; margin: 1.2rem 0 1.4rem; background: var(--blush-3); border-left: 4px solid var(--magenta); }
.callout p { margin-bottom: .4rem; }
.callout p:last-child { margin-bottom: 0; }
.callout .ctitle { font-weight: 700; color: var(--rose); display: flex; align-items: center; gap: .5rem; margin-bottom: .4rem; }
.callout .ctitle .ico { width: 18px; height: 18px; color: var(--magenta); }
.callout.gold { background: #FBF3E2; border-left-color: var(--gold); }
.callout.gold .ctitle, .callout.gold .ctitle .ico { color: #9c7a23; }
.callout.rose { background: linear-gradient(120deg, #FBE4EA, #F8D9E0); border-left-color: var(--rose); }
.callout.scripture { background: var(--cream-2); border-left-color: var(--pink-soft); font-family: var(--font-display); font-style: italic; color: var(--rose); }

.stat-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1rem 0 1.4rem; }
.stat-pills .sp { background: #fff; box-shadow: var(--shadow-sm); border-radius: var(--r-md); padding: .7rem 1rem; }
.stat-pills .sp b { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--magenta); }
.stat-pills .sp span { font-size: .76rem; color: var(--ink-2); }

@media (max-width: 900px) {
  .guide-grid { grid-template-columns: 1fr; }
  .toc { position: static; max-height: none; margin-bottom: 1.5rem; }
  .toc ol { grid-template-columns: 1fr 1fr; gap: .2rem .8rem; }
}

@media (max-width: 980px) {
  .hub-teaser .mini-grid, .pillar-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   Reduced motion
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .heart-follower, .float-heart { display: none !important; }
}

/* =====================================================================
   SECTION PANELS  — break the long, continuous scroll into distinct
   rounded "areas" so the eye gets clear chapters instead of one endless
   wall. Full-bleed bands (hero, sub-hero, final CTA, impact, hub-teaser)
   and already-card'd ".tight" sections stay as rhythm breaks.
   ===================================================================== */
.section:not(.final-cta):not(.impact):not(.hub-teaser):not(.tight) {
  background: var(--cream) !important;
  padding-top: clamp(1.3rem, 3.2vw, 2.4rem);
  padding-bottom: clamp(1.3rem, 3.2vw, 2.4rem);
}
.section:not(.final-cta):not(.impact):not(.hub-teaser):not(.tight) > .container {
  background: #ffffff;
  border: 1px solid #F4CDDB;
  border-radius: 30px;
  box-shadow: 0 16px 46px rgba(152, 38, 79, .09);
  padding: clamp(2rem, 5vw, 3.4rem) clamp(1.3rem, 4vw, 2.8rem);
}
/* keep inner cards distinct now that the panel behind them is white */
.skill-card, .equip-card, .step, .quote-card, .empathy-card,
.pillar-card, .hub-mini, .faq-item, .toc, .rate-table {
  border: 1px solid var(--blush-3);
}
@media (max-width: 600px) {
  .section:not(.final-cta):not(.impact):not(.hub-teaser):not(.tight) > .container { border-radius: 20px; }
}

/* =====================================================================
   CHAPTER BANDS v2  —  WAVE-DIVIDER CHAPTERS (+ torn-paper signature edge)
   Replaces the flat #equip/#empathy/#learn/#how/#who/#faq band rules.
   Each mid section becomes a designed "chapter":
     1) a soft multi-stop WATERCOLOUR wash (alternating cream <-> blush),
     2) its OWN top WAVE (::before) that bleeds the PREVIOUS band's colour
        down into it — the page's existing .divider language, extended to
        every chapter (so hero->mids->impact->CTA read as ONE piece),
     3) a faint flyer MOTIF (orbit+plane / heart / gold-laurel / globe) in
        the gutter behind the white card — never under live text.
   Pure CSS + inline-SVG data-URIs. No JS, no images, no fonts.
   ===================================================================== */

/* ---- 1. Shared chapter engine -------------------------------------- */
.chapter{ position: relative; overflow: visible; isolation: isolate; }
/* wash: bumped to .section.chapter:not()x4 = (0,6,0) so it OUTRANKS the
   section-panel base background (.section:not()x4 = (0,5,0) !important).  */
.section.chapter:not(.final-cta):not(.impact):not(.hub-teaser):not(.tight){
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--band) 55%, #fff) 0%,
      var(--band) 46%,
      color-mix(in srgb, var(--band) 86%, var(--pink-soft-2)) 100%) !important;
}
/* TOP WAVE — paints the previous band's colour as a wave bleeding down,
   in the gutter above the white card so text stays clear.                */
.chapter::before{
  content:""; position:absolute; left:0; top:-1px;
  width:100%; height:64px; z-index:0; pointer-events:none;
  background: var(--band-prev);
  -webkit-mask: var(--wave) top center / 100% 64px no-repeat;
          mask: var(--wave) top center / 100% 64px no-repeat;
}
/* first chapter follows the hero's own bottom wave — suppress to avoid a
   double-wave at that seam.                                              */
.chapter.chapter--first::before{ display:none; }
/* MOTIF WATERMARK — ultra-faint flyer icon in the gutter behind the card */
.chapter::after{
  content:""; position:absolute; z-index:0; pointer-events:none;
  width:150px; height:150px; top:1.6rem; right:2.5%;
  opacity:.12;
  background: var(--wm) no-repeat center / contain;
}
.chapter:nth-of-type(even)::after{ right:auto; left:2.5%; }
/* keep the white card crisply above wave + motif */
.chapter > .container{ position:relative; z-index:3; }

/* ---- 2. Per-chapter band / prev / wave-shape / motif --------------- */
/* CHAPTER 1 · #equip — orbit+airplane motif. Top wave suppressed (.first) */
#equip{
  --band: var(--blush-3); --band-prev: var(--cream-2);
  --wave: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2064'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%200c180%2028%20360%2028%20540%208s360-44%20540-30%20240%2034%20360%2030V64H0z'/%3E%3C/svg%3E");
  --wm:   url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2080%2080'%20fill='none'%20stroke='%23B83263'%20stroke-width='1.6'%3E%3Ccircle%20cx='40'%20cy='40'%20r='20'/%3E%3Cpath%20d='M20%2040h40M40%2020v40M26%2028c8%208%2020%208%2028%200M26%2052c8-8%2020-8%2028%200'/%3E%3Cellipse%20cx='40'%20cy='40'%20rx='30'%20ry='14'%20stroke-dasharray='4%205'%20transform='rotate(-22%2040%2040)'/%3E%3Cpath%20d='M58%2027l5-3-3%205z'%20fill='%23E14C8B'%20stroke='none'/%3E%3C/svg%3E");
}
/* CHAPTER 2 · #empathy — soft heart motif (phase-shifted double-swell)    */
#empathy{
  --band: var(--cream); --band-prev: var(--blush-3);
  --wave: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2064'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%2026C200%202%20380%2054%20620%2050s440-58%20700-26%20160%2024%20120%2026V64H0z'/%3E%3C/svg%3E");
  --wm:   url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2032%2032'%20fill='%23EC5E8A'%3E%3Cpath%20d='M16%2028C7%2021%202%2016%202%2010.5%202%206.4%205.4%203%209.5%203%2012%203%2014.3%204.3%2016%206.5%2017.7%204.3%2020%203%2022.5%203%2026.6%203%2030%206.4%2030%2010.5%2030%2016%2025%2021%2016%2028z'/%3E%3C/svg%3E");
}
/* CHAPTER 3 · #learn — GOLD laurel sprig w/ heart crown (long lazy roll)  */
#learn{
  --band: var(--blush-3); --band-prev: var(--cream);
  --wave: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2064'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%2010c120%2040%20300%2044%20480%2030s320-46%20540-40%20300%2040%20420%2036V64H0z'/%3E%3C/svg%3E");
  --wm:   url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2064%2064'%20fill='none'%20stroke='%23C9A24B'%20stroke-width='2'%20stroke-linecap='round'%3E%3Cpath%20d='M32%206v52'/%3E%3Cpath%20d='M32%2016c-7-1-12%203-13%209%206%201%2011-2%2013-9z'/%3E%3Cpath%20d='M32%2028c-8-1-13%203-14%2010%207%201%2012-2%2014-10z'/%3E%3Cpath%20d='M32%2040c-7-1-12%203-13%209%206%201%2011-2%2013-9z'/%3E%3Cpath%20d='M32%2016c7-1%2012%203%2013%209-6%201-11-2-13-9z'/%3E%3Cpath%20d='M32%2028c8-1%2013%203%2014%2010-7%201-12-2-14-10z'/%3E%3Cpath%20d='M32%2040c7-1%2012%203%2013%209-6%201-11-2-13-9z'/%3E%3Cpath%20d='M32%208c-4-5-12-3-12%203%205%201%209-1%2012-3z'%20fill='%23EC5E8A'%20stroke='none'/%3E%3Cpath%20d='M32%208c4-5%2012-3%2012%203-5%201-9-1-12-3z'%20fill='%23EC5E8A'%20stroke='none'/%3E%3C/svg%3E");
}
/* CHAPTER 4 · #how — dashed-orbit globe (tight deckled-feel ripple)       */
#how{
  --band: var(--cream); --band-prev: var(--blush-3);
  --wave: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2064'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%2018c90%2022%20200-10%20320-4s230%2030%20360%2024%20250-26%20380-18%20220%2022%20380%2012V64H0z'/%3E%3C/svg%3E");
  --wm:   url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2080%2080'%20fill='none'%20stroke='%23B83263'%20stroke-width='1.6'%3E%3Ccircle%20cx='40'%20cy='40'%20r='20'/%3E%3Cpath%20d='M20%2040h40M40%2020v40M26%2028c8%208%2020%208%2028%200M26%2052c8-8%2020-8%2028%200'/%3E%3Cellipse%20cx='40'%20cy='40'%20rx='30'%20ry='14'%20stroke-dasharray='4%205'%20transform='rotate(-22%2040%2040)'/%3E%3C/svg%3E");
}
/* CHAPTER 5 · #who — heart motif + torn-paper SIGNATURE rip toward Impact */
#who{
  --band: var(--blush-3); --band-prev: var(--cream);
  --wave: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2064'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%2026C200%202%20380%2054%20620%2050s440-58%20700-26%20160%2024%20120%2026V64H0z'/%3E%3C/svg%3E");
  --wm:   url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2032%2032'%20fill='%23EC5E8A'%3E%3Cpath%20d='M16%2028C7%2021%202%2016%202%2010.5%202%206.4%205.4%203%209.5%203%2012%203%2014.3%204.3%2016%206.5%2017.7%204.3%2020%203%2022.5%203%2026.6%203%2030%206.4%2030%2010.5%2030%2016%2025%2021%2016%2028z'/%3E%3C/svg%3E");
}
/* CHAPTER 6 · #faq — after the deep Impact band: top wave is deep
   --rose-deep bleeding down, echoing the impact->final-CTA break.         */
#faq{
  --band: var(--cream); --band-prev: var(--rose-deep);
  --wave: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2064'%20preserveAspectRatio='none'%3E%3Cpath%20d='M0%200c180%2028%20360%2028%20540%208s360-44%20540-30%20240%2034%20360%2030V64H0z'/%3E%3C/svg%3E");
  --wm:   url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2080%2080'%20fill='none'%20stroke='%23B83263'%20stroke-width='1.6'%3E%3Ccircle%20cx='40'%20cy='40'%20r='20'/%3E%3Cpath%20d='M20%2040h40M40%2020v40M26%2028c8%208%2020%208%2028%200M26%2052c8-8%2020-8%2028%200'/%3E%3Cellipse%20cx='40'%20cy='40'%20rx='30'%20ry='14'%20stroke-dasharray='4%205'%20transform='rotate(-22%2040%2040)'/%3E%3C/svg%3E");
}

/* ---- 3. TORN-PAPER SIGNATURE EDGE (the flyer's iconic ripped-pink band)
   Injected ONCE on the #who -> #impact hand-off: a deckled ragged bottom
   edge on #who tearing down into the deep band. #who (1,0,0) outranks the
   .section.chapter wash, so we re-state the wash here + add the rip.      */
#who{
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2032'%20preserveAspectRatio='none'%3E%3Cpath%20fill='rgba(152,38,79,.07)'%20d='M0%2018L36%2028%2072%2012%20112%2026%20150%208%20196%2029%20236%2014%20278%2024%20320%206%20360%2027%20404%2013%20446%2023%20492%207%20532%2028%20576%2015%20618%2025%20664%209%20706%2027%20748%2012%20792%2024%20838%206%20878%2028%20924%2014%20966%2023%201012%208%201052%2029%201098%2013%201140%2025%201186%207%201226%2027%201272%2015%201316%2023%201362%209%201404%2026%201440%2016V0H0z'/%3E%3Cpath%20fill='%23F6CAD7'%20d='M0%2014L36%2024%2072%208%20112%2022%20150%204%20196%2025%20236%2010%20278%2020%20320%202%20360%2023%20404%209%20446%2019%20492%203%20532%2024%20576%2011%20618%2021%20664%205%20706%2023%20748%208%20792%2020%20838%202%20878%2024%20924%2010%20966%2019%201012%204%201052%2025%201098%209%201140%2021%201186%203%201226%2023%201272%2011%201316%2019%201362%205%201404%2022%201440%2012V0H0z'/%3E%3C/svg%3E") bottom center / 100% 30px no-repeat,
    linear-gradient(180deg,
      color-mix(in srgb, var(--band) 55%, #fff) 0%,
      var(--band) 46%,
      color-mix(in srgb, var(--band) 86%, var(--pink-soft-2)) 100%) !important;
}

/* ---- 4. color-mix fallback (older engines keep today's solid bands) --- */
@supports not (background: color-mix(in srgb, red, blue)){
  #equip,#learn{ background: var(--blush-3) !important; }
  #empathy,#how,#faq{ background: var(--cream) !important; }
  #who{ background:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201440%2032'%20preserveAspectRatio='none'%3E%3Cpath%20fill='%23F6CAD7'%20d='M0%2014L36%2024%2072%208%20112%2022%20150%204%20196%2025%20236%2010%20278%2020%20320%202%20360%2023%20404%209%20446%2019%20492%203%20532%2024%20576%2011%20618%2021%20664%205%20706%2023%20748%208%20792%2020%20838%202%20878%2024%20924%2010%20966%2019%201012%204%201052%2025%201098%209%201140%2021%201186%203%201226%2023%201272%2011%201316%2019%201362%205%201404%2022%201440%2012V0H0z'/%3E%3C/svg%3E") bottom center / 100% 30px no-repeat,
    var(--blush-3) !important; }
}

/* ---- 5. MOBILE (<=600px): gentler edges; tuck motifs to the margin ---- */
@media (max-width:600px){
  .chapter::before{
    height:40px;
    -webkit-mask-size:100% 40px; mask-size:100% 40px;
  }
  .chapter::after{
    width:90px; height:90px; top:.8rem; right:-10px; opacity:.09;
  }
  .chapter:nth-of-type(even)::after{ right:auto; left:-10px; }
  #who{ background-size: 100% 20px, auto !important; }
}

/* =====================================================================
   TEMPORARILY HIDDEN  (local build, per request) — delete this whole
   block to instantly restore everything. Nothing is deleted, only hidden.
   ===================================================================== */
/* Home sections: "Our Heart for Missions", "From Our Sisters", "Mission Hub" teaser */
#mission, #stories, #hub-teaser { display: none !important; }
/* Facebook / social links everywhere */
.nav-social, .footer .social { display: none !important; }
/* Home connector links that point to the hidden areas */
.home .nav-links a[href="#mission"],
.home .footer-col a[href="#mission"],
.home .footer-col a[href="#stories"],
.home .footer-col a[href="resources.html"] { display: none !important; }
/* Mission Hub kept 100% hidden: no link/button anywhere may navigate to it.
   (Inline text references are unlinked in the HTML, so this only nukes
   nav items / buttons / breadcrumbs that still point at the Hub.) */
a[href="resources.html"],
a[href^="resources.html#"],
a[href^="resources.html?"],
a[href="guide-what-is-a-va.html"],
a[href^="guide-what-is-a-va.html#"],
a[href="quiz.html"],
a[href^="quiz.html#"],
a[href="first-7-days.html"],
a[href^="first-7-days.html#"] { display: none !important; }
