/* ==========================================================================
   Support Daily Prayer — shared styles
   Palette: linen ground, nave ink-blue, candle gold, stained-glass light
   Type: Cormorant Garamond (display) + Albert Sans (body/UI)
   ========================================================================== */

:root {
  --linen: #fbf9f5;
  --card: #ffffff;
  --ink: #202a44;
  --ink-soft: #4a5470;
  --ink-faint: #7b829a;
  --line: #e8e3d8;
  --gold: #e3a82b;
  --gold-deep: #a87b14;
  --gold-wash: #faf3e3;
  --glass-rose: #e8b4b8;
  --glass-blue: #9db8d9;
  --glass-amber: #f2c879;
  --success: #2e7d4f;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Albert Sans", -apple-system, "Segoe UI", sans-serif;

  --radius: 12px;
  --radius-arch: 999px 999px 12px 12px;
  --shadow-soft: 0 2px 24px rgba(32, 42, 68, 0.08);
  --shadow-lift: 0 12px 40px rgba(32, 42, 68, 0.14);
  --container: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1.display { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2.display { font-size: clamp(2rem, 3.6vw, 2.9rem); }

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.lede {
  font-size: 1.1875rem;
  color: var(--ink-soft);
  max-width: 34em;
}

.scripture {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

/* Visible placeholder marker — replace before launch */
.placeholder {
  border-bottom: 2px dashed var(--gold-deep);
  cursor: help;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active { transform: translateY(1px); }

.btn--gold {
  background: linear-gradient(180deg, #efb945, #dfa322);
  color: var(--ink);
  box-shadow: 0 4px 16px rgba(227, 168, 43, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--gold:hover {
  background: linear-gradient(180deg, #f4c256, #e8ad2c);
  box-shadow: 0 6px 22px rgba(227, 168, 43, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: rgba(32, 42, 68, 0.06); }

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); }

.btn--block { width: 100%; }

.btn--lg { font-size: 1.1875rem; padding: 19px 40px; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 245, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.wordmark__arch { flex-shrink: 0; }

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav a:not(.btn) {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.site-nav a:not(.btn):hover { color: var(--ink); }

.site-nav .btn { padding: 10px 24px; font-size: 0.9375rem; }

/* Slim header for the donate page — fewer exits, fewer distractions */
.site-header--slim .site-nav { gap: 16px; }

/* --------------------------------------------------------------------------
   Hero (landing)
   -------------------------------------------------------------------------- */

.hero-dove {
  position: absolute;
  top: 9%;
  left: 4%;
  width: 120px;
  color: var(--gold-deep);
  opacity: 0.13;
  transform: rotate(-8deg);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero-dove { display: none; }
}

.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 45% 55% at 80% 28%, rgba(242, 200, 121, 0.28), transparent),
    radial-gradient(ellipse 38% 48% at 68% 78%, rgba(232, 180, 184, 0.2), transparent),
    radial-gradient(ellipse 42% 52% at 10% 12%, rgba(157, 184, 217, 0.2), transparent);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__assurance {
  margin-top: 22px;
  font-size: 0.9375rem;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero h1 { margin: 0 0 20px; }

/* The arched window — the page's signature */
.arch-window {
  position: relative;
  margin: 0 auto;
  max-width: 420px;
}

.arch-window svg { width: 100%; height: auto; }

@keyframes light-bloom {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}

.arch-window { animation: light-bloom 1.4s ease-out both; }

/* --------------------------------------------------------------------------
   Scroll reveals
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .arch-window { animation: none; }
  .theme-nave .give-card { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  .amount-grid label,
  .amount-grid label:hover,
  .amount-grid label:has(input:checked) { transition: none; transform: none; }
}

/* --------------------------------------------------------------------------
   Impact cards
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.impact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-arch);
  padding: 48px 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.impact-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: var(--gold-wash);
  border-radius: 50%;
  color: var(--gold-deep);
}

/* Stained-glass tints, one hue per card */
.impact-card:nth-child(1) { border-top: 4px solid var(--glass-amber); }
.impact-card:nth-child(2) { border-top: 4px solid var(--glass-rose); }
.impact-card:nth-child(3) { border-top: 4px solid var(--glass-blue); }

.impact-card:nth-child(2) .impact-card__icon { background: #f9e9ea; color: #ab5f67; }
.impact-card:nth-child(3) .impact-card__icon { background: #e9eff7; color: #48699b; }

.impact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.impact-card p { color: var(--ink-soft); font-size: 0.9375rem; }

/* --------------------------------------------------------------------------
   Steps (how it works — a real sequence)
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  counter-reset: step;
}

.step { position: relative; padding-top: 8px; }

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 18px;
}

.step h3 { font-size: 1.1875rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.9375rem; }

/* --------------------------------------------------------------------------
   Scripture band
   -------------------------------------------------------------------------- */

.scripture-band {
  background: var(--ink);
  color: #f4f1e8;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.scripture-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 0%, rgba(157, 184, 217, 0.18), transparent),
    radial-gradient(ellipse 50% 60% at 80% 100%, rgba(232, 180, 184, 0.14), transparent),
    radial-gradient(ellipse 40% 50% at 60% 20%, rgba(242, 200, 121, 0.12), transparent);
  pointer-events: none;
}

.scripture-band blockquote {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  max-width: 22em;
  margin: 0 auto;
}

.scripture-band cite {
  position: relative;
  display: block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--glass-amber);
}

/* --------------------------------------------------------------------------
   Transparency
   -------------------------------------------------------------------------- */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.trust-item {
  border-top: 3px solid var(--gold);
  padding-top: 20px;
}

.trust-item h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.trust-item p { color: var(--ink-soft); font-size: 0.9375rem; }

/* --------------------------------------------------------------------------
   Stories (example testimonials — replace before launch)
   -------------------------------------------------------------------------- */

.story-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 32px 32px;
  box-shadow: var(--shadow-soft);
}

.story-card::before {
  content: "\201C";
  position: absolute;
  top: 4px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
  pointer-events: none;
}

.story-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.story-card figcaption {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-faint);
}

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */

.faq { max-width: 760px; margin: 48px auto 0; }

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  font-weight: 700;
  font-size: 1.0625rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold-deep);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details > div {
  padding: 0 4px 24px;
  color: var(--ink-soft);
  font-size: 0.9875rem;
  max-width: 60ch;
}

/* --------------------------------------------------------------------------
   Final CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  text-align: center;
  background:
    radial-gradient(ellipse 55% 90% at 50% 115%, rgba(242, 200, 121, 0.5), transparent),
    var(--gold-wash);
}

.cta-band .btn { margin-top: 32px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(244, 241, 232, 0.85);
  padding: 56px 0 40px;
  font-size: 0.9063rem;
}

.site-footer a { color: inherit; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.site-footer h4 {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glass-amber);
  margin-bottom: 14px;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }

.site-footer__legal {
  border-top: 1px solid rgba(244, 241, 232, 0.2);
  padding-top: 24px;
  font-size: 0.8125rem;
  color: rgba(244, 241, 232, 0.6);
  max-width: 70ch;
}

/* --------------------------------------------------------------------------
   Sticky mobile give bar (landing only)
   -------------------------------------------------------------------------- */

.mobile-give-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 249, 245, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   Donate page
   -------------------------------------------------------------------------- */

/* Single centered column — nothing competes with the ask.
   Compressed vertically so the give button sits above the fold. */
.donate-layout {
  max-width: 620px;
  margin: 0 auto;
  padding: 30px 24px 72px;
}

.donate-intro { text-align: center; }

.glass-crest {
  display: flex;
  justify-content: center;
  padding-bottom: 16px;
}

.donate-points {
  margin-top: 20px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.55);
}

.donate-thanks {
  margin-top: 24px;
  text-align: center;
  font-size: 0.9375rem;
  color: rgba(244, 241, 232, 0.72);
}

.donate-more {
  margin-top: 14px;
  text-align: center;
  font-size: 0.875rem;
}

.donate-more a { color: rgba(244, 241, 232, 0.6); }
.donate-more a:hover { color: #f4f1e8; }

.theme-nave .site-nav a:not(.btn) { color: rgba(244, 241, 232, 0.75); }
.theme-nave .site-nav a:not(.btn):hover { color: #fff; }

.donate-verse {
  text-align: center;
  margin-top: 36px;
  color: var(--ink-soft);
}

.donate-verse .scripture { font-size: 1.25rem; line-height: 1.5; }

.donate-verse cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.donate-intro { margin-bottom: 22px; }

/* Small liturgical cross ornament — used at scripture moments */
.ornament {
  display: flex;
  justify-content: center;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.theme-nave .ornament,
.scripture-band .ornament { color: var(--glass-amber); }

.scripture-band .ornament { position: relative; margin-bottom: 22px; }

/* Full scripture quote above the headline — real verse, styled as scripture */
.intro-verse {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1875rem;
  line-height: 1.45;
  color: var(--gold-deep);
  margin-bottom: 10px;
}

.intro-verse cite {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.theme-nave .intro-verse { color: var(--glass-amber); }
.donate-intro h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  line-height: 1.08;
  margin-bottom: 10px;
}
.donate-intro p { color: var(--ink-soft); font-size: 1.0625rem; }

.give-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px 34px 30px;
  box-shadow: var(--shadow-lift);
}

.fieldset { border: 0; margin-bottom: 22px; }

/* Legends stay for screen readers; the UI is self-evident without them */
.fieldset > legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Frequency toggle */
.freq-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--linen);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
}

.freq-toggle label {
  position: relative;
  text-align: center;
  padding: 12px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9875rem;
  cursor: pointer;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}

.freq-toggle input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.freq-toggle label:has(input:checked) {
  background: var(--ink);
  color: #fff;
}

.freq-toggle label:has(input:focus-visible) {
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
}

.freq-note {
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--ink-faint);
}

/* Amount grid — one row of presets on desktop, 2-col on mobile */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* The suggested gift — visually the "default choice" */
.amount-grid label.is-suggested { border-color: var(--gold); }

.amount-grid label.is-suggested::before {
  content: "Suggested";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.amount-grid label {
  position: relative;
  text-align: center;
  padding: 12px 6px 10px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  background: var(--card);
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

/* Sowing-and-harvest names under each amount (2 Cor. 9:6) */
.amount-grid label small {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1px;
}

.amount-grid label:has(input:checked) small { color: var(--gold-deep); }

.amount-grid label:hover { transform: translateY(-2px); }

.amount-grid label:has(input:checked) { transform: translateY(-2px); }

/* Radios hidden inside preset labels only — scoping matters: the custom
   amount input is a sibling cell and must stay a normal visible input */
.amount-grid label input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.amount-grid label:hover { border-color: var(--gold); }

.amount-grid label:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-wash);
  box-shadow: 0 0 0 1px var(--gold) inset;
}

.amount-grid label:has(input:focus-visible) {
  outline: 3px solid var(--gold-deep);
  outline-offset: 2px;
}

.amount-custom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}

.amount-custom:focus-within { border-color: var(--gold); }

.amount-custom span {
  padding: 0 4px 0 16px;
  font-weight: 700;
  color: var(--ink-faint);
}

.amount-custom input {
  border: 0;
  outline: none;
  width: 100%;
  padding: 16px 16px 16px 4px;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  background: transparent;
}

.impact-hint {
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 0.9063rem;
  color: var(--success);
  font-weight: 600;
  min-height: 1.5em;
  text-align: center;
}

/* Text inputs */
.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 0.9063rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--card);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Checkboxes */
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: 12px;
  cursor: pointer;
}

.check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--gold-deep);
  flex-shrink: 0;
  cursor: pointer;
}

/* Summary + submit */
.gift-summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  font-weight: 700;
}

.gift-summary strong { font-size: 1.375rem; }

/* Recurring-billing disclosure — must stay adjacent to the button */
.recurrence-note {
  margin-top: 10px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
  min-height: 1.4em;
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--ink-faint);
}

/* Dev notice — remove once payments are connected */
.dev-notice {
  margin-top: 20px;
  padding: 16px 18px;
  border: 2px dashed var(--gold-deep);
  border-radius: var(--radius);
  background: var(--gold-wash);
  font-size: 0.9063rem;
}

.dev-notice[hidden] { display: none; }

/* Reassurance column */
.reassure { display: grid; gap: 24px; }

.reassure-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.reassure-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 10px;
}

.reassure-card p, .reassure-card li {
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.reassure-card ul { list-style: none; }

.reassure-card li {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

.reassure-card li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

.reassure-scripture {
  background: var(--ink);
  color: #f4f1e8;
  border: 0;
  text-align: center;
  padding: 36px 28px;
}

.reassure-scripture .scripture { font-size: 1.3rem; line-height: 1.45; }

.reassure-scripture cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--glass-amber);
}

/* --------------------------------------------------------------------------
   Hero give widget (landing) — the ask lives in the hero itself
   -------------------------------------------------------------------------- */

.give-widget {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-arch);
  padding: 24px 28px 28px;
  box-shadow: var(--shadow-lift);
  max-width: 440px;
  margin-left: auto;
}

.give-widget__glass {
  display: flex;
  justify-content: center;
  padding: 4px 0 16px;
}

.give-widget .fieldset { margin-bottom: 18px; }

.give-widget .amount-grid a {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px 6px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-soft);
  text-decoration: none;
  transition: border-color 0.15s ease;
}
.give-widget .amount-grid a:hover { border-color: var(--gold); }

.give-widget .secure-note { margin-top: 12px; }

/* Goal meter — populate ONLY with real numbers (see assets/js/main.js) */
.goal-bar { margin-bottom: 18px; }
.goal-bar[hidden] { display: none; }

.goal-bar__track {
  height: 10px;
  border-radius: 999px;
  background: var(--linen);
  border: 1px solid var(--line);
  overflow: hidden;
}

.goal-bar__fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}

.goal-bar__label {
  margin-top: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Monthly upgrade nudge (donate) */
.monthly-nudge {
  margin-top: 14px;
  padding: 16px 18px;
  background: var(--gold-wash);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.9375rem;
}

.monthly-nudge[hidden] { display: none; }

.monthly-nudge p { margin-bottom: 10px; color: var(--ink); }

.monthly-nudge button {
  font-family: var(--font-body);
  font-size: 0.9063rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--card);
  border: 2px solid var(--gold-deep);
  border-radius: 999px;
  padding: 8px 18px;
  cursor: pointer;
}
.monthly-nudge button:hover { background: var(--gold); }

/* Exit-intent save bar (donate, desktop, once per session) */
.exit-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 48px 14px 20px;
  background: var(--ink);
  color: #f4f1e8;
  font-size: 0.9375rem;
  box-shadow: 0 6px 24px rgba(32, 42, 68, 0.35);
}

.exit-bar[hidden] { display: none; }

.exit-bar .btn { padding: 9px 22px; font-size: 0.9375rem; }

.exit-bar__close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 0;
  color: inherit;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

/* --------------------------------------------------------------------------
   Donate page "nave" theme — deep blue night, stained-glass glow, the white
   arch card and gold button carry all the light
   -------------------------------------------------------------------------- */

.theme-nave {
  background:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(157, 184, 217, 0.18), transparent),
    radial-gradient(ellipse 50% 35% at 85% 8%, rgba(232, 180, 184, 0.15), transparent),
    radial-gradient(ellipse 55% 45% at 50% 100%, rgba(242, 200, 121, 0.12), transparent),
    var(--ink);
}

/* Ambient imagery layer — light rays from above, dove, wheat, stars */
.nave-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.nave-decor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 174deg at 50% -8%,
    transparent 0deg,
    rgba(247, 227, 184, 0.06) 6deg,
    transparent 13deg,
    transparent 19deg,
    rgba(247, 227, 184, 0.05) 26deg,
    transparent 33deg);
}

.theme-nave { position: relative; }
.theme-nave .donate-layout,
.theme-nave .site-footer { position: relative; z-index: 1; }

.decor { position: absolute; color: var(--glass-amber); }

.decor--dove {
  top: 130px;
  left: 5%;
  width: 170px;
  opacity: 0.17;
  transform: rotate(-6deg);
}

.decor--wheat {
  bottom: 70px;
  right: 5%;
  width: 120px;
  opacity: 0.15;
}

.decor--star { width: 16px; opacity: 0.25; }
.decor--star1 { top: 110px; right: 12%; }
.decor--star2 { top: 250px; right: 7%; width: 11px; opacity: 0.18; }
.decor--star3 { top: 420px; left: 14%; width: 12px; opacity: 0.18; }

@media (max-width: 1100px) {
  .decor { display: none; }
}

.theme-nave .site-header {
  background: rgba(32, 42, 68, 0.88);
  border-bottom-color: rgba(244, 241, 232, 0.14);
}

.theme-nave .wordmark { color: #f4f1e8; }
.theme-nave .wordmark__arch path[fill="#202a44"] { fill: #f7e3b8; }
.theme-nave .site-nav .hero__assurance { color: rgba(244, 241, 232, 0.72); }

.theme-nave .donate-intro .eyebrow { color: var(--glass-amber); }
.theme-nave .donate-intro h1 { color: #faf6ea; }
.theme-nave .donate-intro p { color: rgba(244, 241, 232, 0.78); }

.theme-nave .give-card {
  border: 0;
  box-shadow:
    0 24px 70px rgba(10, 15, 30, 0.55),
    0 0 0 1px rgba(242, 200, 121, 0.25),
    0 0 90px rgba(242, 200, 121, 0.16);
}

.theme-nave .give-card { animation: light-bloom 0.9s ease-out both; }

.theme-nave .donate-verse { color: rgba(244, 241, 232, 0.85); }
.theme-nave .donate-verse cite { color: var(--glass-amber); }

@keyframes btn-glow {
  0%, 100% { box-shadow: 0 4px 16px rgba(227, 168, 43, 0.35); }
  50% { box-shadow: 0 6px 32px rgba(227, 168, 43, 0.7); }
}

.theme-nave #give-btn { animation: btn-glow 2.6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .theme-nave #give-btn { animation: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .arch-window { max-width: 340px; }
  .give-widget { margin: 0 auto; }
  .card-grid, .steps, .trust-grid { grid-template-columns: 1fr; gap: 24px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .site-nav a:not(.btn) { display: none; }
  .mobile-give-bar { display: block; }
  body.has-give-bar { padding-bottom: 84px; }
  .give-card { padding: 26px 20px 24px; }
  .freq-toggle label { font-size: 0.875rem; padding: 12px 4px; }
  .give-widget { padding: 20px 18px 24px; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-intro h1 { font-size: 1.85rem; }
}
