:root {
  --bg: #0A0805;
  --bg-soft: #120d08;
  --panel: rgba(22, 16, 10, 0.78);
  --panel-strong: rgba(31, 22, 13, 0.92);
  --gold: #C9A84C;
  --gold-soft: rgba(201, 168, 76, 0.16);
  --text: #f1e7cf;
  --muted: rgba(241, 231, 207, 0.68);
  --line: rgba(201, 168, 76, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --head: "Cinzel", Georgia, serif;
  --body: "Cormorant Garamond", Georgia, serif;
  --ui: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(201, 168, 76, 0.14), transparent 32rem),
    radial-gradient(circle at 84% 22%, rgba(103, 64, 30, 0.28), transparent 34rem),
    linear-gradient(180deg, #0A0805 0%, #050403 100%);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.fullscreen-live { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.24;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(34px);
  pointer-events: none;
  opacity: 0.35;
  z-index: -1;
  animation: drift 14s ease-in-out infinite alternate;
}
.ambient-one { width: 36vw; height: 36vw; left: -12vw; top: 18vh; background: rgba(201, 168, 76, 0.13); }
.ambient-two { width: 30vw; height: 30vw; right: -10vw; top: 48vh; background: rgba(83, 39, 21, 0.5); animation-delay: 2s; }
@keyframes drift { to { transform: translate3d(5vw, -4vh, 0) scale(1.12); } }

.site-nav {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 30;
  min-height: 66px;
  padding: 12px 14px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 8, 5, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.brand, .nav-links, .hero-actions, .center-actions, .live-topline, .live-controls, .footer-bottom {
  display: flex;
  align-items: center;
}
.brand {
  gap: 12px;
  font-family: var(--head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18), transparent 68%);
}
.nav-links { gap: 8px; }
.nav-links a, .nav-toggle, .btn, .icon-btn, .calculator-toggle {
  font-family: var(--ui);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.nav-links a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--muted);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-toggle { display: none; }

.section-shell {
  width: min(1180px, calc(100% - 38px));
  margin: 0 auto;
  padding: 96px 0;
}
.hero { min-height: 92vh; padding-top: 140px; position: relative; }
.hero-content { max-width: 820px; position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  font-family: var(--head);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--head);
  line-height: 1.12;
  font-weight: 600;
}
h1 { font-size: clamp(46px, 6.2vw, 76px); letter-spacing: -0.02em; max-width: 760px; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.015em; }
h3 { font-size: 22px; }
h4 { font-size: 14px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.16em; }
.hero-copy, .section-heading p, .email-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
}

.btn, .icon-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 20px;
  background: transparent;
  color: var(--text);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.icon-btn {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  line-height: 1;
}
.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-btn .icon-collapse { display: none; }
.live-stage.expanded .icon-btn .icon-expand { display: none; }
.live-stage.expanded .icon-btn .icon-collapse { display: block; }
.btn:hover, .icon-btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, #DCC16C, var(--gold)); color: #181006; border-color: transparent; }
.btn-ghost { background: rgba(255,255,255,0.04); }
.hero-actions, .center-actions { gap: 12px; flex-wrap: wrap; margin-top: 34px; }

.hero-visual {
  position: absolute;
  right: 0;
  top: 160px;
  width: min(42vw, 520px);
  height: 590px;
  opacity: 0.78;
  pointer-events: none;
}
.candle {
  position: absolute;
  right: 110px;
  bottom: 90px;
  width: 44px;
  height: 150px;
  border-radius: 20px 20px 8px 8px;
  background: linear-gradient(90deg, #1b1208, #745d2b, #1a1008);
  box-shadow: 0 -150px 120px rgba(201, 168, 76, 0.3), 0 0 80px rgba(201, 168, 76, 0.2);
}
.candle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -52px;
  width: 24px;
  height: 48px;
  transform: translateX(-50%);
  border-radius: 50% 50% 46% 46%;
  background: radial-gradient(circle at 50% 70%, #fff4bd, #df9a2d 48%, transparent 70%);
  animation: flame 2.4s ease-in-out infinite alternate;
}
@keyframes flame { to { transform: translateX(-50%) scale(1.08) rotate(2deg); opacity: .85; } }
.scripture-page {
  position: absolute;
  right: 160px;
  bottom: 20px;
  width: 290px;
  height: 170px;
  transform: rotate(-8deg);
  border-radius: 10px;
  background:
    repeating-linear-gradient(180deg, rgba(67, 42, 20, .38) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, rgba(201,168,76,.2), rgba(255,255,255,.03));
  border: 1px solid rgba(201,168,76,.25);
  box-shadow: var(--shadow);
}

.questions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 64px;
}
.questions article, .turn-block, .mission-card, .merch-card, .phone, .live-stage, .email-form {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.questions article {
  min-height: 186px;
  padding: 20px;
  border-radius: 20px;
}
.questions span, .mission-card > span {
  display: block;
  color: var(--gold);
  font-family: var(--head);
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.questions p { margin: 0; color: var(--muted); font-size: 18px; }
.turn-block {
  margin-top: 14px;
  padding: 28px;
  border-radius: 26px;
  color: #fff6d8;
  font-family: var(--head);
  font-size: clamp(22px, 2.4vw, 32px);
  background: linear-gradient(135deg, rgba(201,168,76,.18), rgba(255,255,255,.04));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}
.phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.phone {
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.phone-screen {
  min-height: 430px;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(201,168,76,.22), transparent 36%),
    linear-gradient(180deg, #17100a, #060403);
  border: 1px solid rgba(255,255,255,.1);
}
.phone span, .live-topline, .comments-head, label, .stats-grid span, .progress-label {
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.phone-screen p { font-size: 25px; line-height: 1.28; color: #fff3d0; }
.phone h3 { margin-top: 18px; text-align: center; }
.ring {
  width: 172px;
  height: 172px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 34px auto;
  background: conic-gradient(var(--gold) 0 42%, rgba(255,255,255,.08) 42% 100%);
}
.ring strong {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #0b0805;
  font-family: var(--head);
  font-size: 34px;
}
.sound-screen button {
  width: 100%;
  margin: 8px 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(201,168,76,.08);
  color: var(--text);
  font-family: var(--ui);
}

.live-stage {
  display: grid;
  grid-template-columns: 1.45fr .8fr;
  gap: 18px;
  border-radius: 26px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(31,22,13,.95), rgba(6,5,4,.92));
}
.live-reader {
  min-height: 540px;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 18% 14%, var(--live-glow, rgba(201,168,76,.2)), transparent 36%),
    linear-gradient(145deg, var(--live-bg, #120c08), #040302);
  transition: background 1.2s ease;
}
.live-topline { justify-content: space-between; gap: 14px; color: var(--muted); }
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff544d;
  box-shadow: 0 0 28px #ff544d;
}
.verse-flow-live {
  position: relative;
  height: 450px;
  margin: 26px 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(201,168,76,.22);
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), transparent 20%, transparent 80%, rgba(0,0,0,.65)),
    radial-gradient(circle at 18% 20%, rgba(201,168,76,.14), transparent 44%);
}
.verse-flow-live::before,
.verse-flow-live::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 74px;
  z-index: 2;
  pointer-events: none;
}
.verse-flow-live::before { top: 0; background: linear-gradient(180deg, rgba(4,3,2,.98), transparent); }
.verse-flow-live::after { bottom: 0; background: linear-gradient(0deg, rgba(4,3,2,.98), transparent); }
.verse-flow-track {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: none;
  scrollbar-width: none;
  pointer-events: none;
  user-select: none;
}
.verse-flow-track::-webkit-scrollbar { display: none; }
.verse-flow-track.js-paging { scroll-snap-type: none; scroll-behavior: auto; }
.live-verse-card {
  height: 450px;
  min-height: 450px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 34px;
  opacity: 1;
  transform: none;
  transition: opacity .25s ease;
}
.live-verse-card.active {
  opacity: 1;
}
.live-verse-card p {
  margin: 0;
  color: #fff4d8;
  font-family: "Quicksand", var(--ui);
  font-size: 24px;
  line-height: 1.18;
}
.live-verse-card span {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.live-controls {
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  align-items: end;
}
.live-controls label, .calculator label, .email-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}
.live-controls label {
  min-width: 150px;
  flex: 1 1 150px;
  max-width: 220px;
}
.live-controls .live-icon-select,
.live-controls .live-icon-range {
  position: relative;
  width: 42px;
  height: 42px;
  min-width: 42px;
  max-width: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  z-index: 8;
}
.live-icon-select .select-icon,
.live-icon-range .select-icon {
  display: grid;
  place-items: center;
  pointer-events: none;
}
.live-icon-select svg,
.live-icon-range svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.live-icon-select select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.volume-popover {
  width: 112px;
  height: 0;
  margin: -12px auto 8px;
  padding: 0 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease, height .2s ease;
  z-index: 20;
}
.volume-popover.open {
  height: 14px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.volume-popover input[type="range"] {
  width: 100%;
  height: 12px;
  padding: 0;
  background: transparent;
  border: 0;
}
.live-controls .icon-btn {
  flex: 0 0 auto;
}
select, input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(0,0,0,.28);
  color: var(--text);
  outline: none;
  font-family: var(--ui);
}
.live-progress { margin-top: 18px; }
.progress-label { display: flex; justify-content: space-between; color: var(--muted); }
.bar {
  height: 9px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.bar span {
  display: block;
  width: 1%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #806426, var(--gold), #ffe397);
  transition: width .6s ease;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
  max-width: 230px;
}
.stats-grid article {
  min-width: 62px;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--text);
}
.stats-grid svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.stats-grid strong { display: block; font-family: var(--ui); font-size: 12px; font-weight: 800; line-height: 1; }
.comments-panel {
  border-radius: 26px;
  padding: 18px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  min-height: 620px;
}
.comments-head { display: flex; justify-content: space-between; color: var(--muted); }
.comments-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
  overflow: auto;
  max-height: 496px;
}
.comment {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.08);
}
.comment strong { font-family: var(--ui); font-size: 12px; }
.comment p { margin: 5px 0 9px; font-size: 16px; color: var(--muted); }
.comment-actions { display: flex; gap: 8px; }
.comment-actions button {
  border: 0;
  color: var(--gold);
  background: transparent;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.comment-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}
.comment-form button {
  border: 0;
  border-radius: 16px;
  padding: 0 16px;
  background: var(--gold);
  color: #171006;
  font-family: var(--ui);
  font-weight: 800;
}
.live-stage.expanded {
  position: fixed;
  inset: 12px;
  z-index: 60;
  width: auto;
  height: auto;
}
.live-stage.expanded .live-reader,
.live-stage.expanded .comments-panel { min-height: calc(100vh - 60px); }

.donate-grid, .merch-grid, .email-section {
  display: grid;
  gap: 18px;
}
.donate-grid { grid-template-columns: repeat(2, 1fr); }
.mission-card {
  min-height: 330px;
  border-radius: 30px;
  padding: 34px;
}
.mission-card p { color: var(--muted); font-size: 19px; }
.merch-grid { grid-template-columns: repeat(4, 1fr); }
.merch-card {
  min-height: 290px;
  border-radius: 28px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
}
.merch-card div {
  position: absolute;
  inset: 18px 18px 92px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 12%, rgba(201,168,76,.26), transparent 40%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
}
.merch-card span { color: var(--gold); font-family: var(--ui); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }

.email-section {
  grid-template-columns: 1fr .9fr;
  align-items: center;
}
.email-form {
  border-radius: 30px;
  padding: 28px;
}
.email-form button { margin-top: 8px; width: 100%; }
#email-message { margin: 12px 0 0; color: var(--gold); font-family: var(--ui); font-size: 13px; }

.site-footer {
  width: min(1180px, calc(100% - 38px));
  margin: 0 auto;
  padding: 64px 0 34px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
}
.footer-grid p { color: var(--muted); }
.footer-grid a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
}
.footer-bottom {
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  color: var(--muted);
  font-size: 15px;
}
.footer-bottom p { margin: 0; font-style: italic; }

.legal-page {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 80px 18px;
}
.legal-shell {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 5vw, 44px);
  background: rgba(10, 8, 5, 0.82);
  box-shadow: var(--shadow);
}
.legal-shell h1 {
  font-size: clamp(34px, 7vw, 56px);
  margin: 18px 0 24px;
}
.legal-shell p {
  color: var(--muted);
  font-size: 19px;
}
.legal-back {
  color: var(--gold);
  font-family: var(--head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.calculator {
  position: fixed;
  right: 18px;
  top: 108px;
  z-index: 25;
  width: 270px;
}
.calculator-panel {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10,8,5,.76);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 136px);
  overflow: auto;
}
.calculator-toggle { display: none; width: 100%; border: 1px solid var(--line); border-radius: 999px; padding: 12px; background: var(--gold); color: #171006; }
.fact-list { margin: 0 0 16px; padding: 0; list-style: none; display: grid; gap: 8px; }
.fact-list li { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); }
.fact-list strong { color: var(--text); font-family: var(--head); }
.calculator form { display: grid; gap: 10px; }
.calculator .btn { width: 100%; }
.calc-output {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
}
.calc-output span, .calc-output small { display: block; font-family: var(--ui); color: var(--muted); font-size: 12px; }
.calc-output strong { display: block; font-family: var(--head); font-size: 26px; color: var(--gold); }

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1400px) {
  .section-shell, .site-footer { width: min(940px, calc(100% - 38px)); }
}

@media (min-width: 1181px) {
  .site-nav {
    right: 320px;
  }
  .section-shell,
  .site-footer {
    width: min(980px, calc(100% - 378px));
    margin-left: max(19px, calc((100vw - 320px - min(980px, calc(100% - 378px))) / 2));
    margin-right: 320px;
  }
}

@media (max-width: 1180px) {
  .section-shell, .site-footer { width: min(980px, calc(100% - 38px)); }
  .calculator {
    top: 50%;
    right: 12px;
    bottom: auto;
    width: auto;
    transform: translateY(-50%);
    z-index: 45;
  }
  .calculator-toggle {
    display: block;
    width: 54px;
    min-height: 138px;
    padding: 14px 10px;
    border-radius: 999px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  .calculator-panel {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: min(360px, calc(100vw - 32px));
    display: none;
    margin-top: 0;
    max-height: min(78vh, 620px);
  }
  .calculator.open .calculator-panel { display: block; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .site-nav { border-radius: 28px; align-items: flex-start; flex-wrap: wrap; }
  .nav-toggle { display: block; border: 1px solid var(--line); border-radius: 999px; padding: 12px 14px; background: transparent; color: var(--text); }
  .nav-links { display: none; width: 100%; flex-direction: column; align-items: stretch; }
  .site-nav.open .nav-links { display: flex; }
  .nav-links a { text-align: center; }
  .hero-visual { opacity: .34; width: 70vw; right: -16vw; }
  .questions, .phones, .live-stage, .donate-grid, .merch-grid, .email-section, .footer-grid {
    grid-template-columns: 1fr;
  }
  .phone-screen { min-height: 420px; }
  .live-reader, .comments-panel { min-height: 520px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .section-shell { width: min(100% - 28px, 1180px); padding: 82px 0; }
  .hero { padding-top: 142px; }
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .hero-copy, .section-heading p, .email-copy p { font-size: 18px; }
  .questions article { min-height: auto; }
  .live-stage, .phone, .mission-card, .email-form { border-radius: 24px; padding: 14px; }
  .live-reader, .comments-panel { border-radius: 20px; padding: 18px; }
  .verse-flow-live { height: 313px; }
  .live-verse-card { height: 313px; min-height: 313px; padding: 26px 22px; }
  .live-verse-card p { font-size: 24px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .comment-form { grid-template-columns: 1fr; }
  .comment-form button { padding: 14px; }
  .site-footer { width: calc(100% - 28px); }
  .calculator {
    top: auto;
    bottom: 16px;
    transform: none;
  }
  .calculator-panel {
    top: auto;
    bottom: 0;
    transform: none;
    width: calc(100vw - 28px);
  }
}
