/* ============================================================
   Go Tell: Big Day Out — WOL Brand variant
   Overrides styles.css with Word of Life Australia palette + type
   ============================================================ */
:root {
  /* --- Palette --- */
  --ink:        #1a1a1a;
  --ink-soft:   #2e2e2e;
  --midnight:   #1c4f5e;   /* WOL signature dark teal */
  --midnight-2: #143842;
  --paper:      #ffffff;
  --paper-2:    #f6f3ec;   /* very subtle warm cream */
  --cream:      #ece6d4;
  --rule:       #e3ddcd;
  --gold:       #2c8aa3;   /* bright teal accent (W mark family) */
  --gold-soft:  #66c2d6;
  --burgundy:   #1c4f5e;   /* italic accents stay in brand teal */
  --muted:      #6b6b6b;
  --shadow:     0 24px 60px -20px rgba(28, 79, 94, 0.28);

  /* --- Type --- */
  --serif:      "Zilla Slab", "Roboto Slab", Georgia, serif;
  --sans:       "Manrope", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --script:     "Sacramento", "Brush Script MT", cursive;
  --mono:       "JetBrains Mono", ui-monospace, Menlo, monospace;
}

/* ============================================================
   Type system — slab display, sans body, script accent
   ============================================================ */
body { color: var(--ink); background: var(--paper); }

.display {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
}

/* Lead + prose switch from serif to sans for WOL feel */
.lead {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.prose {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* Eyebrow: kept as small caps sans but in brand teal */
.eyebrow { color: var(--gold); }

/* Script eyebrow — the WOL signature "a few words about" handwritten flourish */
.script-eyebrow {
  font-family: var(--script);
  font-size: 38px;
  line-height: 1;
  color: var(--midnight);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.script-eyebrow.on-dark { color: var(--gold-soft); }

/* Hero "Big Day Out" script flourish layered over the slab GO TELL */
.hero-script {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  color: var(--midnight);
  text-transform: none;
  letter-spacing: -0.005em;
  margin-top: 0.05em;
}

/* Sidedeck — small slab subhead under section eyebrow */
.sidedeck {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 14px;
}

/* Section title sizing in slab — slightly tighter than serif version */
h1.hero-title { font-size: clamp(48px, 6.4vw, 88px); letter-spacing: 0.005em; line-height: 1.0; }
h2.section-title { font-size: clamp(34px, 4.6vw, 52px); letter-spacing: 0.005em; }
h3.subsection {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 24px;
}

/* Vision side h2 + Ask side h2 — slab uppercase */
.vision .side h2 {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  letter-spacing: 0.005em;
  margin: 0 0 8px;
}
.vision .side p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--muted);
  margin: 18px 0 0;
}

/* Progress band heading — slab uppercase */
.progress-band h2 {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 3.8vw, 44px);
  letter-spacing: 0.005em;
  line-height: 1.1;
  margin: 8px 0 18px;
}
.progress-band .lead { color: rgba(255,255,255,0.78); }

/* CTA band heading */
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(38px, 4.8vw, 60px);
  letter-spacing: 0.005em;
  line-height: 1.05;
  margin: 12px auto 22px;
}
.cta-band .lead { color: rgba(255,255,255,0.78); }

/* Modal h2 — slab */
.modal-head h2 {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.005em;
}

/* ============================================================
   Top bar
   ============================================================ */
.topbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--rule);
}
.wordmark .top {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--midnight);
}

/* ============================================================
   Buttons — primary teal, ghost teal, "gold" repurposed as bright teal
   ============================================================ */
.btn { border-radius: 3px; letter-spacing: 0.1em; }
.btn-primary { background: var(--midnight); color: #fff; }
.btn-primary:hover { background: #143842; color: #fff; }
.btn-ghost { color: var(--midnight); border-color: var(--midnight); }
.btn-ghost:hover { background: var(--midnight); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #1f6e85; color: #fff; }
.btn-link { color: var(--midnight); border-bottom: 1px solid var(--midnight); }
.btn-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   Hero — white background, photo at right
   ============================================================ */
.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.hero-meta .label { color: var(--gold); }
.hero-meta .val {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.005em;
  color: var(--midnight);
}

.hero-photo {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: stretch;
  background: var(--paper-2);
  border-radius: 2px;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  display: block;
}
.hero-photo-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(28, 79, 94, 0.78);
  padding: 6px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* Wave divider beneath hero (WOL signature) */
.hero::after {
  content: "";
  display: block;
  height: 36px;
  margin-top: -2px;
  background:
    radial-gradient(circle at 20px 0, var(--paper) 18px, transparent 19px) repeat-x,
    var(--paper-2);
  background-size: 40px 36px;
  opacity: 0;  /* opt-in if wanted; keeping flat for now */
}

/* ============================================================
   Progress band — WOL dark teal
   ============================================================ */
.progress-band {
  background: var(--midnight);
  color: #fff;
}
.progress-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
}
.progress-counter .big { color: #fff; }
.progress-counter .of { color: var(--gold-soft); font-family: var(--serif); font-weight: 700; text-transform: uppercase; font-size: 22px; }
.progress-label { color: rgba(255,255,255,0.6); }
.progress-bar { background: rgba(255,255,255,0.12); }
.progress-bar .fill { background: linear-gradient(90deg, var(--gold-soft) 0%, #fff 100%); }
.progress-pct { color: rgba(255,255,255,0.6); }
.progress-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.progress-actions .btn-ghost:hover { background: #fff; color: var(--midnight); }

/* ============================================================
   Vision, partnership, leaders — light sections
   ============================================================ */
.vision { background: var(--paper); }
.partnership { background: var(--paper-2); }
.leaders { background: var(--paper); }

.gold-rule { background: var(--midnight); width: 56px; height: 2px; }

/* Pullquote — switch from italic Cormorant to a slab statement */
.pullquote {
  background: var(--paper-2);
  border-left: 4px solid var(--midnight);
  padding: 56px 56px 56px 64px;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink);
}
.pullquote cite {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--midnight);
  margin-top: 28px;
}

/* Partner mark cards */
.partner-mark {
  background: #fff;
  border: 1px solid var(--rule);
}
.partner-mark .pm-name {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--midnight);
}
.partner-mark .pm-tag { color: var(--gold); }

/* Imagery placeholders take on the WOL teal tones */
.imgph {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #246575 0%, #1c4f5e 60%, #143842 100%);
  border: 1px solid var(--midnight-2);
  color: rgba(255,255,255,0.6);
}
.imgph.warm {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #2c8aa3 0%, #1c4f5e 100%);
  border-color: var(--midnight-2);
}

/* Leader rows */
.leader { border-top: 1px solid var(--midnight); }
.leader .name {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--midnight);
  letter-spacing: 0.005em;
}
.leader .role { color: var(--muted); }

/* ============================================================
   CTA band — dark, full-width, no warm gradient
   ============================================================ */
.cta-band {
  background:
    linear-gradient(180deg, rgba(20, 56, 66, 0.92) 0%, rgba(20, 56, 66, 0.98) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 18px),
    var(--midnight);
  color: #fff;
}
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-band .btn-ghost:hover { background: #fff; color: var(--midnight); }

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  color: var(--muted);
}
footer div[style*="var(--serif)"],
.foot-inner > div > div:first-child {
  font-family: var(--serif) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: var(--midnight) !important;
  letter-spacing: 0.005em;
}

/* ============================================================
   Modal
   ============================================================ */
.modal { background: var(--paper); max-width: 640px; }
.modal-backdrop { background: rgba(20, 56, 66, 0.55); align-items: flex-start; padding: 3vh 24px; }
.modal {
  max-height: calc(100vh - 32px);
}
.modal-head { padding: 14px 26px 10px; }
.modal-head h2 { font-size: 18px; margin: 2px 0 0; letter-spacing: 0; }
.modal-head .eyebrow { font-size: 10px; }
.modal-head p { font-size: 12px; }
.modal-close { width: 28px; height: 28px; font-size: 16px; }
.modal-body { padding: 14px 26px 14px; }
.modal-foot { padding: 10px 26px 14px; }
.modal-foot .meta { font-size: 11px; }
.field-grid { gap: 8px 14px; }
.field label { font-size: 9.5px; margin-bottom: 3px; letter-spacing: 0.14em; }
.field input, .field select, .field textarea { font-size: 13px; padding: 7px 10px; }
.field .err { font-size: 10.5px; min-height: 0; margin-top: 2px; }
.field .err:empty { display: none; }
.signature-wrap { margin-top: 0; }
.signature-wrap .label-row { margin-bottom: 3px; }
.signature-wrap label { font-size: 9.5px; letter-spacing: 0.14em; }
.signature-canvas { height: 80px; background: #f6f9fa; }
.signature-canvas.empty { background-position: 20px calc(100% - 18px); }
/* Compress intro paragraph inside endorsement modal */
.modal-body > p:first-child { margin: 0 0 10px !important; font-size: 12px !important; line-height: 1.45 !important; }
/* Tighten button padding inside modal */
.modal-foot .btn { padding: 8px 14px; font-size: 11.5px; }

.field label { color: var(--midnight); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--midnight);
  background: #f6f9fa;
}
.success { padding: 20px 16px; }
.success .check { border-color: var(--midnight); color: var(--midnight); width: 44px; height: 44px; font-size: 20px; margin-bottom: 12px; }
.success h3 {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--midnight);
  letter-spacing: 0.005em;
  font-size: 20px;
  margin-bottom: 6px;
}
.success p { font-size: 13px; margin-bottom: 16px; }

/* Admin */
.admin-stat .num {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--midnight);
}
.endorsements-table th { background: var(--paper-2); color: var(--muted); }

/* Toast */
.toast { background: var(--midnight); }

/* ============================================================
   Hero poster — replaces .hero-photo for this concept
   ============================================================ */
.hero-poster {
  position: relative;
  width: 100%;
  align-self: flex-start;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: transparent;
}
.hero-poster img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  display: block;
}
.hero-image-frame {
  min-height: 0;
  align-items: flex-start;
  align-self: start;
  padding-top: 0;
}
.hero-grid { align-items: start; }

/* ============================================================
   "No money required" hero callout
   ============================================================ */
.no-money {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 32px 0 4px;
  padding: 20px 22px;
  background: #f0f6f7;
  border: 1px solid #cfe1e5;
  border-left: 4px solid var(--midnight);
  border-radius: 2px;
  max-width: 56ch;
}
.no-money-mark {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--midnight);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.no-money-body { display: flex; flex-direction: column; gap: 4px; }
.no-money-kicker {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 15px;
  color: var(--midnight);
}
.no-money-text {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.no-money-text strong { color: var(--midnight); }

/* ============================================================
   Imagine / narrative section
   ============================================================ */
.imagine {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 110px 32px;
}
.imagine-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}
.imagine-eyebrow .script-eyebrow {
  font-size: 56px;
  line-height: 0.95;
  color: var(--midnight);
}
.imagine-body { max-width: 62ch; }
.imagine-line {
  font-family: var(--serif);
  font-weight: 500;
  text-transform: none;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 22px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--rule);
  text-wrap: pretty;
}
.imagine-line:last-of-type { border-bottom: 0; }
.imagine-line strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 0.78em;
  color: var(--midnight);
  margin-right: 8px;
  display: inline-block;
  transform: translateY(-2px);
}
.imagine-close {
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 56ch;
}

/* ============================================================
   Ask callout — what we're asking / not asking
   ============================================================ */
.ask-callout {
  margin: 0 0 28px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 4px;
}
.ask-callout-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ask-callout-col {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ask-callout-col.yes { background: #f3f8f9; }
.ask-callout-col.no  { background: var(--midnight); color: #fff; }
.ask-callout-col.no .ack-tag { color: var(--gold-soft); }
.ack-tag {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 13px;
  color: var(--midnight);
}
.ask-callout-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ask-callout-col li {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.ask-callout-col.yes li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 7px;
  border-left: 2px solid var(--midnight);
  border-bottom: 2px solid var(--midnight);
  transform: rotate(-45deg);
}
.ask-callout-col.no li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--gold-soft);
}
.ask-callout-col.no li strong { color: #fff; }
.ask-callout-foot {
  margin: 0;
  padding: 18px 28px 20px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--rule);
}

/* ============================================================
   Imagine — Numbered layout (variant)
   ============================================================ */
.imagine--numbered { background: var(--paper); }
.img-numbered { max-width: 920px; margin: 0 auto; }
.img-num-head { text-align: center; margin-bottom: 56px; }
.img-num-head .script-eyebrow { font-size: 52px; }
.img-num-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.img-num-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.img-num-item:last-child { border-bottom: 1px solid var(--rule); }
.img-num-index {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: var(--midnight);
  letter-spacing: -0.02em;
}
.img-num-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
.img-num-text em {
  font-style: italic;
  color: var(--midnight);
  font-weight: 700;
  text-transform: lowercase;
}
.img-num-close {
  margin-top: 48px;
  text-align: center;
  font-family: var(--sans);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Imagine — Cards layout (variant)
   ============================================================ */
.imagine--cards { background: var(--paper-2); }
.img-cards-wrap { max-width: 1100px; margin: 0 auto; }
.img-cards-head { text-align: left; margin-bottom: 40px; }
.img-cards-head .script-eyebrow { font-size: 48px; }
.img-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.img-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  padding: 36px 32px 32px;
  border-radius: 2px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.img-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 4px; height: 100%;
  background: var(--midnight);
}
.img-card-corner {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
}
.img-card-kicker {
  font-family: var(--script);
  font-size: 34px;
  line-height: 1;
  color: var(--midnight);
  margin-bottom: 18px;
}
.img-card-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
.img-cards-foot {
  margin-top: 40px;
  max-width: 60ch;
}
.img-cards-foot p {
  font-family: var(--sans);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   Imagine — Letterpress (editorial) layout (variant)
   ============================================================ */
.imagine--letterpress { background: var(--paper); }
.img-press { max-width: 760px; margin: 0 auto; }
.img-press-head { text-align: center; margin-bottom: 36px; }
.img-press-head .script-eyebrow { font-size: 64px; }
.img-press-body {
  font-family: var(--serif);
  color: var(--ink);
}
.img-press-line {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.55;
  margin: 0 0 28px;
  text-indent: 0;
  text-wrap: pretty;
}
.img-press-cap {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.85;
  float: left;
  margin: 6px 8px -4px 0;
  color: var(--midnight);
}
.img-press-word {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: lowercase;
  color: var(--midnight);
  letter-spacing: 0;
}
.img-press-close {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 2px solid var(--midnight);
  font-family: var(--sans);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-soft);
}

/* ============================================================
   Imagine — Ticker layout (variant)
   ============================================================ */
.imagine--ticker { background: var(--midnight); color: #fff; }
.img-ticker { max-width: 1040px; margin: 0 auto; }
.img-ticker-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.img-ticker-head .script-eyebrow { color: var(--gold-soft); font-size: 48px; }
.img-ticker-counter {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}
.img-ticker-rows {
  display: flex;
  flex-direction: column;
}
.img-ticker-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  align-items: baseline;
}
.img-ticker-row:last-child { border-bottom: 0; }
.img-ticker-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.img-ticker-text {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  margin: 0;
  color: #fff;
  text-wrap: pretty;
}
.img-ticker-imagine {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 13px;
  color: var(--gold-soft);
  display: inline-block;
  margin-right: 6px;
  transform: translateY(-2px);
}
.img-ticker-foot {
  margin-top: 36px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.img-ticker-dot {
  flex-shrink: 0;
  width: 10px; height: 10px;
  background: var(--gold-soft);
  border-radius: 50%;
  margin-top: 8px;
}
.img-ticker-foot p {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 900px) {
  .img-num-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .img-num-index { font-size: 56px; }
  .img-num-text { font-size: 19px; }
  .img-cards-grid { grid-template-columns: 1fr; }
  .img-ticker-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .img-ticker-row { grid-template-columns: 1fr; gap: 8px; }
  .img-press-head .script-eyebrow { font-size: 48px; }
}

/* ============================================================
   Responsive tweaks
   ============================================================ */
@media (max-width: 900px) {
  .hero-poster img { min-height: 420px; }
  .hero-image-frame { min-height: 420px; }
  .script-eyebrow { font-size: 32px; }
  .hero-script { font-size: clamp(40px, 10vw, 64px); }
  .imagine { padding: 80px 24px; }
  .imagine-grid { grid-template-columns: 1fr; gap: 32px; }
  .imagine-eyebrow .script-eyebrow { font-size: 44px; }
  .ask-callout-row { grid-template-columns: 1fr; }
  .no-money { padding: 16px 18px; }
  /* Ask section grid (was an inline 280px 1fr style) */
  .ask-grid { display: grid; grid-template-columns: 1fr !important; gap: 40px !important; }
  /* Partner marks stack */
  .partner-marks { grid-template-columns: 1fr; gap: 18px; }
  .partner-mark { aspect-ratio: auto; padding: 28px 22px; }
  /* Progress counter scales down */
  .progress-counter .big { font-size: 64px; }
  .progress-counter .of { font-size: 24px; }
  .progress-card { padding: 26px; }
  /* CTA */
  .cta-band { padding: 80px 24px; }
  /* Pullquote */
  .pullquote { padding: 32px 24px 32px 28px; font-size: 18px; line-height: 1.55; }
  .pullquote cite { font-size: 11px; }
  /* Modal density on tablets/phones */
  .modal-backdrop { padding: 12px; }
  .modal-head { padding: 16px 22px 10px; gap: 12px; }
  .modal-head h2 { font-size: 22px; }
  .modal-body { padding: 16px 22px 18px; }
  .modal-foot { padding: 14px 22px 18px; gap: 10px; }
  .modal-foot .actions { width: 100%; justify-content: flex-end; }
  .modal-foot .meta { font-size: 10.5px; }
  /* Admin */
  .admin-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .admin-stat { padding: 14px; }
  .admin-stat .num { font-size: 28px; }
  .endorsements-table { font-size: 12px; }
  .endorsements-table th, .endorsements-table td { padding: 10px 8px; }
}

@media (max-width: 560px) {
  /* Topbar */
  .topbar-inner { padding: 12px 16px; gap: 12px; }
  .brand-pair { gap: 10px; }
  .brand-pair img { max-height: 26px !important; }
  .brand-pair .divider { height: 22px; }
  .topbar-count { display: none; }
  .btn { padding: 11px 16px; font-size: 12px; letter-spacing: 0.1em; }
  .topbar .btn-arrow::after { display: none; }
  /* Section base */
  section { padding: 64px 20px; }
  /* Hero */
  .hero { padding-top: 36px; }
  .hero-copy { padding: 20px 0 60px; }
  h1.hero-title { font-size: clamp(40px, 11vw, 64px); }
  .hero-script { font-size: clamp(32px, 9vw, 52px); }
  .lead { font-size: 16.5px; line-height: 1.55; }
  .no-money { margin-top: 24px; padding: 14px 16px; gap: 12px; }
  .no-money-mark { width: 32px; height: 32px; }
  .no-money-kicker { font-size: 13.5px; }
  .no-money-text { font-size: 13.5px; }
  .hero-meta { gap: 16px 28px; margin: 26px 0 28px; }
  .hero-meta .val { font-size: 16px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-image-frame { min-height: 280px; padding-top: 0; }
  .hero-poster img { min-height: 0; max-height: 460px; }
  /* Imagine */
  .imagine { padding: 56px 20px; }
  .script-eyebrow { font-size: 28px; }
  .imagine-eyebrow .script-eyebrow { font-size: 36px; }
  .imagine-line { font-size: clamp(18px, 5vw, 22px); padding-bottom: 16px; margin-bottom: 16px; }
  .imagine-close { font-size: 15px; }
  /* Imagine variants */
  .img-press-head .script-eyebrow { font-size: 40px; }
  .img-press-line { font-size: 18px; line-height: 1.55; }
  .img-press-cap { font-size: 48px; }
  .img-press-close { font-size: 14.5px; }
  .img-num-head .script-eyebrow,
  .img-cards-head .script-eyebrow,
  .img-ticker-head .script-eyebrow { font-size: 36px; }
  .img-num-item { grid-template-columns: 64px 1fr; gap: 14px; padding: 20px 0; }
  .img-num-index { font-size: 44px; }
  .img-num-text { font-size: 17px; line-height: 1.45; }
  /* Progress band */
  .progress-band { padding: 56px 20px; }
  .progress-band h2 { font-size: clamp(26px, 7vw, 34px); }
  .progress-counter .big { font-size: 56px; }
  .progress-counter .of { font-size: 20px; }
  .progress-card { padding: 22px; }
  .progress-actions { gap: 10px; }
  .progress-actions .btn { width: 100%; justify-content: center; }
  /* Vision */
  .vision .side h2 { font-size: 28px; }
  .sidedeck { font-size: 18px; }
  /* Pullquote */
  .pullquote { padding: 24px 18px 24px 22px; font-size: 16.5px; line-height: 1.55; }
  .pullquote cite { font-size: 10.5px; margin-top: 18px; }
  /* Partnership */
  .partner-grid { gap: 32px; }
  .partner-marks { grid-template-columns: 1fr; gap: 14px; }
  .partner-mark { padding: 24px 18px; }
  .partner-mark img { max-height: 60px !important; }
  /* Ask */
  .ask-callout-col { padding: 20px 18px; gap: 10px; }
  .ask-callout-col li { font-size: 14px; padding-left: 20px; }
  .ack-tag { font-size: 11.5px; }
  .ask-callout-foot { padding: 14px 18px 16px; font-size: 13px; }
  /* Leaders */
  .leaders { padding: 56px 20px; }
  .leader-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
  .leader { padding-top: 18px; }
  .leader .name { font-size: 17px; }
  .leader .role { font-size: 12.5px; }
  /* CTA band */
  .cta-band { padding: 64px 20px; }
  .cta-band h2 { font-size: clamp(30px, 8vw, 42px); }
  .cta-band .lead { font-size: 15.5px; }
  .cta-actions { width: 100%; gap: 10px; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  /* Footer */
  footer { padding: 32px 20px 24px; }
  .foot-inner { gap: 14px; }
  /* Modal full-width on phones */
  .modal-backdrop { padding: 8px; align-items: flex-start; }
  .modal { max-height: calc(100vh - 16px); border-radius: 4px; }
  .modal.small { max-width: 100%; }
  .modal-head { padding: 14px 18px 8px; }
  .modal-head h2 { font-size: 18px; }
  .modal-head p { font-size: 12px; }
  .modal-body { padding: 14px 18px 16px; }
  .modal-foot { padding: 12px 18px 16px; flex-direction: column; align-items: stretch; }
  .modal-foot .meta { text-align: center; }
  .modal-foot .actions { justify-content: stretch; }
  .modal-foot .actions .btn { flex: 1; justify-content: center; }
  .field-grid { gap: 10px; }
  .field input, .field select, .field textarea { font-size: 16px; padding: 10px 12px; } /* 16px = no iOS zoom on focus */
  .signature-canvas { height: 120px; }
  /* Admin */
  .table-scroll { max-height: 60vh; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-stat .num { font-size: 24px; }
}

/* ============================================================
   Endorsement carousel — "joining the prayer" social-proof tape
   ============================================================ */
.endorse-tape {
  background: var(--paper);
  padding: 36px 0 44px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.endorse-tape::before { display: none; } /* drop diagonal hatch — too busy at small size */
.endorse-head {
  max-width: 1240px;
  margin: 0 auto 18px;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  position: relative;
}
.endorse-head-l { max-width: 520px; }
.endorse-head-l .script-eyebrow {
  display: inline-block;
  font-size: 24px;
  margin-right: 14px;
  vertical-align: middle;
}
.endorse-title {
  display: inline-block;
  vertical-align: middle;
  font-size: clamp(14px, 1.3vw, 17px);
  margin: 0;
  letter-spacing: 0.14em;
  line-height: 1.1;
  color: var(--midnight);
}
.endorse-head-r {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Live counter pill */
.endorse-livebox {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 2px solid var(--midnight);
  border-radius: 2px;
}
.endorse-dot {
  width: 6px; height: 6px;
  background: #d33;
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-1px);
  position: relative;
  animation: endorse-live-pulse 1.8s infinite ease-out;
}
@keyframes endorse-live-pulse {
  0%   { box-shadow: 0 0 0 0  rgba(211, 51, 51, 0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(211, 51, 51, 0); }
  100% { box-shadow: 0 0 0 0  rgba(211, 51, 51, 0); }
}
.endorse-livecount {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--midnight);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.endorse-livelabel {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Arrow buttons */
.endorse-nav { display: inline-flex; gap: 6px; }
.endorse-arrow {
  width: 32px; height: 32px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--midnight);
  transition: background 200ms ease, color 200ms ease, transform 200ms ease, border-color 200ms ease;
}
.endorse-arrow:hover {
  background: var(--midnight);
  color: #fff;
  border-color: var(--midnight);
  transform: translateY(-1px);
}
.endorse-arrow svg { width: 12px; height: 12px; }

/* Marquee viewport with edge fades */
.endorse-viewport {
  position: relative;
  overflow: hidden;
}
.endorse-viewport::before,
.endorse-viewport::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.endorse-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(255,255,255,0) 100%);
}
.endorse-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, var(--paper) 0%, rgba(255,255,255,0) 100%);
}
.endorse-track {
  display: flex;
  gap: 12px;
  padding: 6px 48px 18px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  cursor: grab;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}
.endorse-track.is-dragging { cursor: grabbing; }
.endorse-track img,
.endorse-track .endorse-card { user-select: none; -webkit-user-drag: none; }

/* ----- Endorsement card ----- */
.endorse-card {
  flex: 0 0 232px;
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 2px solid var(--midnight);
  border-radius: 2px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 138px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  text-align: left;
  user-select: none;
  font: inherit;
}
.endorse-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(28, 79, 94, 0.32);
  border-color: var(--gold);
}
.endorse-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.endorse-card-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.endorse-card-kicker {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
}
.endorse-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 7px;
  background: rgba(102, 194, 214, 0.18);
  color: var(--midnight);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}
.endorse-card-badge-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: endorse-card-pulse 1.6s infinite ease-out;
}
@keyframes endorse-card-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.55; }
}
.endorse-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.endorse-card-church {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14.5px;
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: var(--midnight);
  margin: 0;
  text-wrap: balance;
}
.endorse-card-meta {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.endorse-card-name { font-weight: 600; color: var(--ink); }
.endorse-card-sep  { color: var(--gold); }
.endorse-card-role { color: var(--muted); }
.endorse-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px dashed var(--rule);
}
.endorse-card-time {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Letterpress "Endorsed · Go Tell · Oct 2027" stamp */
.endorse-stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 3px 6px;
  border: 1px solid var(--midnight);
  border-radius: 2px;
  transform: rotate(-3deg);
  background:
    repeating-linear-gradient(135deg, rgba(28,79,94,0.04) 0 1px, transparent 1px 4px),
    rgba(28, 79, 94, 0.02);
  line-height: 1;
}
.endorse-stamp-top, .endorse-stamp-mid, .endorse-stamp-bot {
  font-family: var(--mono);
  color: var(--midnight);
  letter-spacing: 0.16em;
}
.endorse-stamp-top { font-size: 6.5px; }
.endorse-stamp-mid { font-size: 8px; font-weight: 500; margin: 1px 0; letter-spacing: 0.18em; }
.endorse-stamp-bot { font-size: 6.5px; }

/* <24h: soft gold halo + top border swap */
.endorse-card--recent {
  background:
    radial-gradient(circle at top left, rgba(102, 194, 214, 0.10), transparent 60%),
    #fff;
  border-top-color: var(--gold);
}
.endorse-card--recent .endorse-card-num { color: var(--midnight); }

/* "Your church here" CTA card */
.endorse-card--cta {
  flex: 0 0 232px;
  background: linear-gradient(180deg, var(--midnight) 0%, var(--midnight-2) 100%);
  border-top-color: var(--gold-soft);
  border-color: var(--midnight-2);
  color: #fff;
  cursor: pointer;
}
.endorse-card--cta .endorse-card-church { color: #fff; }
.endorse-card--cta .endorse-card-name   { color: rgba(255,255,255,0.78); font-weight: 400; }
.endorse-card--cta .endorse-card-num    { color: var(--gold-soft); }
.endorse-card--cta .endorse-card-foot   { border-top-color: rgba(255,255,255,0.18); }
.endorse-card-badge--invite {
  background: rgba(102, 194, 214, 0.24);
  color: #fff;
}
.endorse-card--cta .endorse-card-cta-arrow {
  font-family: var(--serif);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
}
.endorse-card--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -18px rgba(20, 56, 66, 0.55);
  border-color: var(--gold);
}
.endorse-card--cta:hover .endorse-card-cta-arrow { color: #fff; }

/* Footnote */
.endorse-foot {
  max-width: 680px;
  margin: 16px auto 0;
  padding: 0 48px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  position: relative;
}
.endorse-foot-rule {
  flex-shrink: 0;
  width: 22px;
  height: 1.5px;
  background: var(--midnight);
  margin-top: 9px;
}
.endorse-foot p {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .endorse-dot,
  .endorse-card-badge-dot { animation: none; }
}

@media (max-width: 900px) {
  .endorse-tape { padding: 28px 0 36px; }
  .endorse-head {
    padding: 0 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .endorse-head-r { width: 100%; justify-content: space-between; }
  .endorse-track { padding: 6px 24px 16px; gap: 10px; }
  .endorse-viewport::before, .endorse-viewport::after { width: 32px; }
  .endorse-card,
  .endorse-card--cta { flex-basis: 216px; padding: 12px 12px 10px; min-height: 132px; }
  .endorse-foot { padding: 0 24px; }
}

@media (max-width: 560px) {
  .endorse-tape { padding: 22px 0 30px; }
  .endorse-head-l .script-eyebrow { font-size: 20px; margin-right: 10px; }
  .endorse-title { font-size: 12px; letter-spacing: 0.12em; }
  .endorse-card,
  .endorse-card--cta { flex-basis: 208px; }
  .endorse-livecount { font-size: 14px; }
  .endorse-arrow { width: 28px; height: 28px; }
  .endorse-livelabel { font-size: 9px; }
}
