/* ============================================================
   ACTS 29 UNLEASHED — shared styles
   Palette: midnight teal, brand teal, flame gold, ember orange,
            parchment reading surface, ink text.
   Type: Fraunces (display) + Newsreader (body)
   ============================================================ */

:root {
  --midnight: #0E2A35;     /* deep teal-indigo from the Pentecost painting */
  --midnight-2: #123743;
  --teal: #1D7070;         /* original site brand color, kept for continuity */
  --teal-deep: #155454;
  --ember: #D9572B;        /* flame orange */
  --gold: #E8A33D;         /* tongues-of-fire gold */
  --gold-soft: #f3c97f;
  --parchment: #F7F2E8;    /* reading background */
  --card: #FFFFFF;
  --card-warm: #FBF8F1;
  --ink: #21211C;          /* body text */
  --ink-soft: #4a4a42;
  --line: #e4ddcd;         /* hairline on parchment */
  --line-dark: rgba(255,255,255,.14);

  --maxw: 1140px;
  --pad: clamp(1.1rem, 4vw, 2.5rem);

  --serif-display: "Fraunces", Georgia, "Times New Roman", serif;
  --serif-body: "Newsreader", Georgia, serif;

  --radius: 4px;
  --shadow: 0 18px 50px -28px rgba(14, 42, 53, .45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--serif-body);
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--teal-deep); text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--midnight);
  margin: 0 0 .5em;
  font-optical-sizing: auto;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.65rem); }
h4 { font-size: 1.18rem; font-weight: 600; }

p { margin: 0 0 1.1em; }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.narrow { max-width: 820px; }

/* eyebrow / flame label ----------------------------------- */
.eyebrow {
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--ember));
}

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: var(--midnight);
  color: var(--gold-soft);
  text-align: center;
  font-family: var(--serif-display);
  font-size: .95rem;
  letter-spacing: .01em;
}
.announce a {
  color: inherit;
  display: block;
  padding: .6rem 1rem;
  text-decoration: none;
}
.announce a:hover { color: #fff; }
.announce strong { color: var(--gold); font-weight: 600; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 42, 53, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: .85rem;
}
.brand {
  display: inline-flex; align-items: center;
  text-decoration: none; line-height: 0;
}
.brand img { height: 60px; width: auto; display: block; }
@media (max-width: 880px) { .brand img { height: 60px; } }

.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--serif-display);
  font-size: .98rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  padding: .45rem .7rem;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after {
  content: ""; display: block; height: 2px; margin-top: 2px;
  background: linear-gradient(90deg, var(--ember), var(--gold));
}
.nav-links .btn-nav {
  background: var(--teal); color: #fff; padding: .5rem 1.1rem; margin-left: .35rem;
}
.nav-links .btn-nav:hover { background: var(--teal-deep); color: #fff; }
.nav-links .btn-nav.active { color: #fff; }
.nav-links .btn-nav.active::after { display: none; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; height: 2px; width: 24px; background: #fff;
  border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--midnight);
    border-bottom: 1px solid var(--line-dark);
    padding: .5rem var(--pad) 1rem;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .8rem .4rem; border-bottom: 1px solid var(--line-dark); border-radius: 0; }
  .nav-links a.active::after { display: none; }
  .nav-links .btn-nav { margin: .7rem 0 0; text-align: center; border-radius: var(--radius); }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  text-decoration: none;
  padding: .85rem 1.7rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s, color .15s, box-shadow .15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ember); color: #fff; box-shadow: 0 10px 24px -12px rgba(217,87,43,.8); }
.btn-primary:hover { background: #c44a22; color: #fff; }
.btn-gold { background: var(--gold); color: var(--midnight); }
.btn-gold:hover { background: #d9942f; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); color: #fff; }
.btn-ghost { background: transparent; color: var(--midnight); border-color: rgba(14,42,53,.3); }
.btn-ghost:hover { border-color: var(--midnight); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  background: var(--midnight);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .55;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(14,42,53,0) 30%, rgba(14,42,53,.85) 100%),
    linear-gradient(180deg, rgba(14,42,53,.25), rgba(14,42,53,.6));
}
.hero-inner {
  position: relative; z-index: 2;
  padding-block: clamp(4rem, 12vw, 8rem);
  max-width: 760px;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero .lede {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--gold-soft);
  font-style: italic;
  margin-bottom: 1.6rem;
}
.hero .dates {
  font-family: var(--serif-display);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .95rem;
  color: #fff;
  margin-bottom: 2rem;
  display: inline-block;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: .55rem 0;
}
.hero .eyebrow { color: var(--gold); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; }

/* page-title (interior pages) ----------------------------- */
.page-hero {
  background: var(--midnight);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 85% -10%, rgba(217,87,43,.35), transparent 55%),
              radial-gradient(70% 120% at 10% 110%, rgba(29,112,112,.5), transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; padding-block: clamp(3rem, 8vw, 5.5rem); max-width: 820px; }
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin-bottom: 0; }
.page-hero .scripture { font-style: italic; color: var(--gold-soft); }

/* ============================================================
   Sections
   ============================================================ */
section { padding-block: clamp(3rem, 7vw, 5.5rem); }
section.tight { padding-block: clamp(2rem, 4vw, 3rem); }
.section-parchment { background: var(--parchment); }
.section-cream { background: var(--card-warm); }
.section-midnight { background: var(--midnight); color: #fff; }
.section-midnight h1, .section-midnight h2, .section-midnight h3, .section-midnight h4 { color: #fff; }
.section-midnight p { color: rgba(255,255,255,.85); }
.section-teal { background: var(--teal); color: #fff; }
.section-teal h2, .section-teal h3 { color: #fff; }
.section-teal p { color: rgba(255,255,255,.92); }

.section-head { max-width: 760px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.lead { font-size: 1.22rem; color: var(--ink-soft); }
.section-midnight .lead, .section-teal .lead { color: rgba(255,255,255,.9); }

/* scripture block ----------------------------------------- */
.scripture-quote {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.4;
  color: var(--midnight);
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.scripture-quote .ref {
  display: block;
  font-style: normal;
  font-size: .9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-top: 1.2rem;
}
.section-midnight .scripture-quote, .section-teal .scripture-quote { color: #fff; }

/* ============================================================
   Cards / pillars
   ============================================================ */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
}
.card .num {
  font-family: var(--serif-display);
  font-size: .85rem; font-weight: 600; letter-spacing: .15em;
  color: var(--ember); display: block; margin-bottom: .8rem;
}
.card h3 { margin-bottom: .6rem; }
.card p:last-child { margin-bottom: 0; }
.card .verse { font-style: italic; color: var(--ink-soft); font-size: .98rem; }

/* feature list ------------------------------------------- */
.feature-list { list-style: none; padding: 0; margin: 0; column-gap: 2.5rem; }
.feature-list li {
  position: relative; padding-left: 1.7rem; margin-bottom: .7rem;
}
.feature-list li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: .9rem;
}
@media (min-width: 700px) { .feature-list.two-col { column-count: 2; } }

/* split layout (image + text) ----------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,3.5rem); align-items: center; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }

/* ============================================================
   Q&A / FAQ accordion
   ============================================================ */
.qa-group { max-width: 860px; margin-inline: auto; }
.qa-group + .qa-group { margin-top: 3rem; }
.qa-group > h2 { padding-bottom: .5rem; border-bottom: 2px solid var(--gold); display: inline-block; }
.faq-note { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1.5rem; }

details.qa {
  border-bottom: 1px solid var(--line);
  padding: .3rem 0;
}
details.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 2.4rem 1.05rem 0;
  position: relative;
  font-family: var(--serif-display);
  font-weight: 560;
  font-size: 1.18rem;
  color: var(--midnight);
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--serif-body); font-size: 1.6rem; font-weight: 400; color: var(--ember);
  transition: transform .2s;
}
details.qa[open] summary::after { content: "–"; }
details.qa summary:hover { color: var(--teal-deep); }
.qa-body { padding: 0 1.5rem 1.4rem 0; color: var(--ink); }
.qa-body p:last-child { margin-bottom: 0; }
.qa-body .verse { font-style: italic; color: var(--ink-soft); }

/* revival comparison list -------------------------------- */
.compare { display: grid; gap: 1rem; margin: 1.5rem 0; }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 700px) { .compare-row { grid-template-columns: 1fr; } }
.compare-cell { padding: 1.1rem 1.2rem; border-radius: var(--radius); font-size: 1rem; }
.compare-cell .ref { display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-top: .5rem; opacity: .75; }
.compare-true { background: rgba(29,112,112,.1); border-left: 3px solid var(--teal); }
.compare-true b { color: var(--teal-deep); }
.compare-false { background: rgba(217,87,43,.08); border-left: 3px solid var(--ember); }
.compare-false b { color: #b8431f; }
.compare-label { font-family: var(--serif-display); font-weight:600; letter-spacing:.12em; text-transform: uppercase; font-size:.8rem; }

/* ============================================================
   Steps (register)
   ============================================================ */
.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(3,1fr); counter-reset: step; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; } }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.step .step-no {
  font-family: var(--serif-display); font-weight: 600; font-size: .8rem; letter-spacing:.15em;
  text-transform: uppercase; color: var(--ember); display:block; margin-bottom:.6rem;
}

/* countdown ---------------------------------------------- */
.countdown { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin: 1.5rem 0 0; }
.cd-unit {
  min-width: 86px; padding: 1rem .6rem; border-radius: var(--radius);
  background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); text-align: center;
}
.cd-num { font-family: var(--serif-display); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.cd-label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: .4rem; }

/* ============================================================
   Forms
   ============================================================ */
.form-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow); max-width: 560px;
}
.form-card.on-dark { background: rgba(255,255,255,.05); border-color: var(--line-dark); }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block; font-family: var(--serif-display); font-weight: 600;
  font-size: .9rem; letter-spacing: .04em; margin-bottom: .35rem; color: var(--midnight);
}
.on-dark .field label { color: #fff; }
.field input, .field textarea {
  width: 100%; font-family: var(--serif-body); font-size: 1.05rem;
  padding: .75rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card-warm); color: var(--ink);
}
.on-dark .field input, .on-dark .field textarea { background: rgba(255,255,255,.92); }
.field input:focus, .field textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
.form-note { font-size: .85rem; color: var(--ink-soft); margin-top: .8rem; }
.on-dark .form-note { color: rgba(255,255,255,.7); }

/* link rows / cta blocks --------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 760px; margin-inline: auto; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row.center { justify-content: center; }

.address-block {
  font-style: normal; background: var(--card); border: 1px solid var(--line);
  border-left: 3px solid var(--teal); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; display: inline-block; line-height: 1.6;
}

/* prose helper for long content pages -------------------- */
.prose h3 { margin-top: 2.2rem; }
.prose .verse { font-style: italic; color: var(--ink-soft); }
.prose ol, .prose ul { padding-left: 1.3rem; }
.prose li { margin-bottom: .6rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--midnight); color: rgba(255,255,255,.78); padding-block: 3rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }
.site-footer h4 { color: var(--gold); font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer .brand { margin-bottom: 1rem; }
.site-footer .brand img { height: 60px; width: auto; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .5rem; }
.site-footer a { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-tag { font-style: italic; color: var(--gold-soft); max-width: 30ch; }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: .85rem; color: rgba(255,255,255,.55);
}
.social { display: flex; gap: 1rem; }
.social a { display: inline-flex; }

/* utilities ---------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.1rem; }
.divider-flame { height: 2px; border: 0; background: linear-gradient(90deg, transparent, var(--ember), var(--gold), transparent); max-width: 200px; margin: 2.5rem auto; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ============================================================
   Donation panel (Stripe-ready)
   ============================================================ */
.donate-panel { max-width: 520px; }
.donate-panel .field-label {
  display: block; font-family: var(--serif-display); font-weight: 600;
  font-size: .9rem; letter-spacing: .04em; color: var(--midnight); margin-bottom: .5rem;
}
.freq-toggle {
  display: inline-flex; background: var(--card-warm); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px; margin-bottom: 1.4rem;
}
.freq-toggle button {
  border: 0; background: transparent; padding: .5rem 1.2rem; border-radius: 999px;
  font-family: var(--serif-display); font-weight: 600; font-size: .95rem;
  cursor: pointer; color: var(--ink-soft); transition: background .15s, color .15s;
}
.freq-toggle button.active { background: var(--teal); color: #fff; }
.amt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin: 0 0 1.1rem; }
.amt {
  padding: .85rem .5rem; text-align: center; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--card-warm);
  font-family: var(--serif-display); font-weight: 600; font-size: 1.05rem;
  color: var(--midnight); cursor: pointer; transition: border-color .15s, background .15s, color .15s;
}
.amt:hover { border-color: var(--teal); }
.amt.active { background: var(--teal); color: #fff; border-color: var(--teal); }
.custom-amt { position: relative; margin-bottom: 1.1rem; }
.custom-amt .cur { position: absolute; left: .85rem; top: 50%; transform: translateY(-50%); color: var(--ink-soft); font-size: 1.1rem; }
.custom-amt input { width: 100%; font-family: var(--serif-body); font-size: 1.1rem; padding: .75rem .9rem .75rem 1.8rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card-warm); }
.custom-amt input:focus { outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal); }
.pay-badge { display: flex; align-items: center; justify-content: center; gap: .4rem; font-size: .82rem; color: var(--ink-soft); margin-top: .85rem; }
#checkout { margin-top: 1.2rem; }
.notice {
  background: rgba(232, 163, 61, .14); border: 1px solid var(--gold);
  color: #7a561c; padding: .85rem 1rem; border-radius: var(--radius);
  font-size: .92rem; margin-top: 1rem;
}
.notice a { color: var(--teal-deep); }

/* ============================================================
   Hero speakers strip
   ============================================================ */
.hero-speakers { margin: 0 0 2rem; }
.hero-speakers .label {
  display: block; font-family: var(--serif-display); font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; font-size: .78rem;
  color: var(--gold); margin-bottom: 1rem;
}
.speaker-row { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.speaker { margin: 0; width: 98px; text-align: center; }
.speaker img {
  width: 98px; height: 98px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(232,163,61,.55);
  box-shadow: 0 8px 22px -10px rgba(0,0,0,.75);
}
.speaker figcaption {
  margin-top: .6rem; font-family: var(--serif-display); font-weight: 600;
  font-size: .85rem; color: #fff; line-height: 1.25;
}
@media (max-width: 440px) {
  .speaker, .speaker img { width: 84px; }
  .speaker img { height: 84px; }
  .speaker-row { gap: 1rem; }
}

/* Donate — Givebutter inline form / button block */
.donate-give { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.donate-give givebutter-widget { display: block; width: 100%; max-width: 540px; min-height: 48px; }
.donate-give givebutter-button { display: inline-block; min-height: 48px; }
.donate-give .pay-badge { margin-top: 1rem; }

/* ============================================================
   About — "Why the name" acronym breakout
   ============================================================ */
.acronym { display: grid; gap: .55rem; margin: 1.6rem 0 2.2rem; }
.acronym .arow { display: flex; align-items: baseline; gap: 1.1rem; }
.acronym .aletter {
  font-family: var(--serif-display); font-weight: 650; font-size: 2.1rem;
  color: var(--gold); width: 1.05em; line-height: 1; text-align: center;
}
.acronym .aword { font-family: var(--serif-display); font-size: 1.25rem; color: #fff; }
.acronym .aword em { font-style: normal; color: rgba(255,255,255,.55); }
.name-parts { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; margin-top: 1.2rem; }
@media (max-width: 700px) { .name-parts { grid-template-columns: 1fr; } }
.name-part { border-left: 3px solid var(--ember); padding: .1rem 0 .1rem 1.1rem; }
.name-part b {
  font-family: var(--serif-display); color: var(--gold); font-size: 1.3rem;
  display: block; margin-bottom: .25rem;
}
.name-part span { color: rgba(255,255,255,.85); }

/* ============================================================
   Volunteer form
   ============================================================ */
.vol-form .field { margin-bottom: 1.4rem; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
@media (max-width: 560px) { .check-grid { grid-template-columns: 1fr; } }
.check {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .75rem .9rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card-warm); cursor: pointer; font-size: 1rem; line-height: 1.35;
  transition: border-color .15s, background .15s;
}
.check:hover { border-color: var(--teal); }
.check input { margin-top: .15rem; width: 18px; height: 18px; flex: none; accent-color: var(--teal); cursor: pointer; }
.check.selected { border-color: var(--teal); background: rgba(29,112,112,.08); }
.radio-row { display: flex; gap: .7rem; max-width: 320px; }
.radio-row .check { flex: 1; justify-content: center; text-align: center; }
.vol-success {
  background: rgba(29,112,112,.08); border: 1px solid var(--teal);
  border-radius: var(--radius); padding: 2rem; text-align: center;
}
.vol-success h3 { color: var(--teal-deep); }
.vol-success p:last-child { margin-bottom: 0; }
.req { color: var(--ember); }
.field-hint { font-size: .85rem; color: var(--ink-soft); margin: .1rem 0 .5rem; }
.form-error { color: #b8431f; font-size: .9rem; margin-top: .6rem; }

/* ============================================================
   Volunteer "serve" strip (discreet, footer-adjacent)
   ============================================================ */
.serve-strip {
  background: var(--card-warm); border-top: 1px solid var(--line);
  text-align: center; padding-block: 2.6rem;
}
.serve-strip h3 { margin: .2rem 0 .4rem; }
.serve-strip p { color: var(--ink-soft); margin-bottom: 1.1rem; }

/* ============================================================
   Videos page
   ============================================================ */
.video-embed {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card { margin: 0; }
.video-card figcaption {
  margin-top: .8rem; font-family: var(--serif-display); font-weight: 600;
  font-size: 1.1rem; color: var(--midnight); line-height: 1.3;
}
.video-card .vsub { display: block; font-family: var(--serif-body); font-weight: 400; font-size: .9rem; color: var(--ink-soft); margin-top: .15rem; }
.video-featured { max-width: 880px; margin: 0 auto; }
.video-featured figcaption { text-align: center; font-size: 1.25rem; margin-top: 1rem; }

/* Volunteer — conditional flight details */
.flight-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: .8rem; }
@media (max-width: 560px) { .flight-grid { grid-template-columns: 1fr; } }
.sub-label { display: block; font-family: var(--serif-display); font-weight: 600; font-size: .82rem; color: var(--midnight); margin-bottom: .3rem; }

/* ============================================================
   Schedule page
   ============================================================ */
.day { max-width: 820px; margin: 0 auto 2.6rem; }
.day:last-child { margin-bottom: 0; }
.day-head {
  display: flex; align-items: baseline; gap: .9rem; flex-wrap: wrap;
  padding-bottom: .7rem; margin-bottom: .2rem;
  border-bottom: 2px solid var(--gold);
}
.day-name {
  font-family: var(--serif-display); font-weight: 650; font-size: 1.6rem;
  color: var(--midnight); letter-spacing: .01em; line-height: 1;
}
.day-date {
  font-family: var(--serif-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ember);
}
.day-note {
  font-style: italic; color: var(--teal-deep); font-size: 1rem;
  margin: .9rem 0 .2rem; display: flex; align-items: center; gap: .5rem;
}
.day-note::before { content: "✦"; color: var(--gold); font-style: normal; font-size: .85rem; }

.slots { list-style: none; margin: .4rem 0 0; padding: 0; }
.slot {
  display: grid; grid-template-columns: 110px 1fr; gap: 1rem;
  padding: .62rem 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.slot:last-child { border-bottom: 0; }
.slot .t {
  font-family: var(--serif-display); font-weight: 600; font-size: .98rem;
  color: var(--ember); text-align: right; white-space: nowrap;
}
.slot .e { font-size: 1.06rem; color: var(--ink); }
.slot .e .who { color: var(--teal-deep); }
.slot.major .e { font-family: var(--serif-display); font-weight: 600; font-size: 1.12rem; color: var(--midnight); }
.slot.meal .e { color: var(--ink-soft); }
@media (max-width: 520px) {
  .slot { grid-template-columns: 88px 1fr; gap: .7rem; }
  .slot .t { font-size: .9rem; }
  .slot .e { font-size: 1rem; }
}

/* venue schedule cards (prayer room / children's) */
.venue-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; box-shadow: var(--shadow); }
.venue-card .venue-name {
  font-family: var(--serif-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ember);
  display: block; margin-bottom: .2rem;
}
.venue-card h3 { margin-bottom: .3rem; }
.venue-card .hall { color: var(--teal-deep); font-style: italic; margin-bottom: 1.2rem; }
.vrow { padding: .55rem 0; border-bottom: 1px solid var(--line); }
.vrow:last-child { border-bottom: 0; }
.vrow b {
  font-family: var(--serif-display); font-weight: 600; font-size: .95rem;
  color: var(--midnight); display: block; margin-bottom: .15rem;
}
.vrow span { color: var(--ink-soft); font-size: 1rem; }
.vrow .halfnight { color: var(--ember); font-style: italic; font-size: .9rem; }
