:root {
  --ink: #071019;
  --deep: #0b2635;
  --reef: #1fbec3;
  --water: #63eff2;
  --gold: #e3b85c;
  --coral: #d96f5f;
  --mist: #fff4de;
  --paper: #f7fbf8;
  --muted: #536871;
  --line: rgba(11, 38, 53, 0.13);
  --shadow: 0 24px 70px rgba(6, 19, 29, 0.16);
  --surface: #ffffff;
  --surface-soft: #eef9f7;
  --header-bg: rgba(247, 251, 248, 0.9);
  --nav-ink: #183040;
  --field-bg: #ffffff;
  --tour-bg: linear-gradient(100deg, #eef9f7, #fff4de);
}

:root[data-theme="night"] {
  --ink: #edfafa;
  --deep: #06131d;
  --reef: #1fbec3;
  --water: #63eff2;
  --gold: #e3b85c;
  --coral: #d96f5f;
  --mist: #102b36;
  --paper: #06131d;
  --muted: #abc1c7;
  --line: rgba(99, 239, 242, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --surface: #0b2635;
  --surface-soft: #102b36;
  --header-bg: rgba(6, 19, 29, 0.92);
  --nav-ink: #e7f8f8;
  --field-bg: #091d2a;
  --tour-bg: linear-gradient(100deg, #0b2635, #2b2618);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  transition: background 220ms ease, color 220ms ease;
}
#main { min-height: 40vh; }
html[data-theme="day"] body,
html[data-theme="night"] body {
  color: var(--ink);
  background: var(--paper);
}
body.theme-day {
  color: #071019;
  background: #f7fbf8;
}
body.theme-night {
  color: #edfafa;
  background: #06131d;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link { position: absolute; left: -999px; top: 8px; background: white; padding: 10px; z-index: 20; }
.skip-link:focus { left: 8px; }

.staging-banner {
  position: sticky;
  top: 0;
  z-index: 12;
  padding: 10px clamp(18px, 4vw, 56px);
  text-align: center;
  font-size: 0.92rem;
  color: #06131d;
  background: linear-gradient(90deg, #ffe08a, #63eff2);
  border-bottom: 1px solid rgba(11, 38, 53, 0.18);
}
.staging-banner strong { font-weight: 800; }
body.has-staging-banner .site-header { top: 42px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  isolation: isolate;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; min-width: 0; }
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(31,190,195,0.22), 0 8px 18px rgba(6,19,29,0.18);
}
.brand-name { line-height: 1.15; }
.footer-brand { display: grid; gap: 10px; justify-items: start; }
.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(31,190,195,0.22), 0 10px 24px rgba(6,19,29,0.16);
}
.admin-login-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0 0 0 1px rgba(31,190,195,0.24), 0 14px 32px rgba(6,19,29,0.22);
}
.site-nav { display: flex; align-items: center; gap: 16px; font-size: 0.92rem; font-weight: 700; flex-wrap: wrap; }
.site-nav a { color: var(--nav-ink); padding: 4px 0; }
.site-nav a:hover { color: var(--reef); }
.nav-toggle { display: none; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: var(--surface); padding: 10px 12px; font-weight: 800; cursor: pointer; }
.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--nav-ink);
  background: var(--surface);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(7,16,25,0.08);
}
.theme-toggle-track {
  position: relative;
  width: 48px;
  height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7d477, #7bdde1);
  overflow: hidden;
}
.theme-toggle-thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 2px 8px rgba(7,16,25,0.22);
  transition: transform 200ms ease, background 200ms ease;
}
.theme-toggle-text { min-width: 38px; text-align: left; }
:root[data-theme="night"] .theme-toggle-track {
  background: linear-gradient(135deg, #142439, #35c7cd);
}
:root[data-theme="night"] .theme-toggle-thumb {
  transform: translateX(22px);
  background: #dff8ff;
}

.hero, .page-hero, .landing-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--deep);
  padding: clamp(96px, 12vw, 148px) clamp(20px, 6vw, 80px) clamp(60px, 9vw, 110px);
}
.page-hero, .landing-hero {
  min-height: 54vh;
  background:
    radial-gradient(circle at 82% 24%, rgba(31,190,195,0.34), transparent 32%),
    linear-gradient(130deg, rgba(6,19,29,0.94), rgba(11,38,53,0.86) 62%, rgba(95,71,33,0.66)),
    url("/static/images/water-sanctuary-hero.png");
  background-position: center;
  background-size: cover;
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,19,29,0.9), rgba(6,19,29,0.62) 48%, rgba(6,19,29,0.2)); }
.hero-flow, .landing-hero::after, .page-hero::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -70px;
  height: 170px;
  opacity: 0.72;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(31,190,195,0.4), transparent 60%),
    repeating-linear-gradient(168deg, transparent 0 28px, rgba(255,255,255,0.16) 29px 31px);
  animation: flow 11s ease-in-out infinite alternate;
}
.hero-content, .page-hero > *, .landing-hero > * { position: relative; z-index: 1; max-width: 860px; }
h1, h2, h3 { line-height: 1.06; margin: 0 0 18px; letter-spacing: 0; }
h1 { font-family: "Libre Baskerville", Georgia, serif; font-size: clamp(2.55rem, 6vw, 5.8rem); max-width: 920px; }
h2 { font-size: clamp(1.85rem, 4vw, 3.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 18px; color: inherit; }
.hero p, .page-hero p, .landing-hero p { max-width: 710px; font-size: clamp(1.08rem, 2vw, 1.32rem); color: rgba(255,255,255,0.9); }
.eyebrow { font-size: 0.77rem !important; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 800; color: var(--gold) !important; margin-bottom: 12px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(7,16,25,0.18); }
.btn:focus-visible { outline: 3px solid color-mix(in srgb, var(--reef) 55%, transparent); outline-offset: 3px; }
.btn-primary { background: var(--gold); color: #17202a; }
.btn-secondary { background: var(--reef); color: #06131d; }
.btn-ghost { border-color: rgba(255,255,255,0.44); color: white; background: rgba(255,255,255,0.08); }
.text-panel .btn-ghost,
.form-card .btn-ghost,
.legal-trust-panel .btn-ghost,
.empty-state .btn-ghost,
.related-links.compact .btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: var(--surface-soft);
}
.text-panel .btn-ghost:hover,
.form-card .btn-ghost:hover,
.legal-trust-panel .btn-ghost:hover,
.empty-state .btn-ghost:hover {
  border-color: rgba(31,190,195,0.45);
  color: var(--ink);
}

.section, .tour-band, .site-footer { padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 80px); }
.section + .section { padding-top: clamp(40px, 6vw, 72px); }
.tour-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--tour-bg);
  border-bottom: 1px solid var(--line);
}
.tour-band h2 { margin-bottom: 10px; }
.tour-band p { max-width: 720px; color: var(--muted); }
.two-column, .split-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 64px); align-items: center; }
.section-heading { max-width: 760px; margin-bottom: 30px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.action-grid .card { min-height: 220px; }
.card, .panel, .text-panel, .form-card, .ai-widget, .video-shell {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(7,16,25,0.07);
}
.card { display: block; padding: 28px; min-height: 210px; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.card:hover { transform: translateY(-4px); border-color: rgba(31,190,195,0.42); box-shadow: var(--shadow); }
.card h2, .card h3 { font-size: 1.35rem; }
.expect-grid .card { min-height: 180px; }
.belief-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}
.belief-list li {
  padding-left: 16px;
  border-left: 3px solid var(--reef);
  color: var(--muted);
  font-weight: 600;
}
.home-signup-form {
  display: grid;
  gap: 16px;
  margin-top: 8px;
}
.home-signup-form label { font-weight: 800; }
.next-service-card,
.event-detail-card,
.schedule-prep-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(31,190,195,0.24);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(31,190,195,0.12), transparent 34%),
    linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--surface-soft) 82%, var(--gold) 18%));
  box-shadow: 0 16px 42px rgba(6,19,29,0.08);
}
.next-service-header h3,
.event-detail-card h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 18px;
}
.event-meta span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31,190,195,0.24);
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}
.event-grid .event-card {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.event-card-actions,
.calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}
.calendar-actions { margin-top: 22px; }
.btn-compact {
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.92rem;
}
.inline-service-signup {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.event-address { color: var(--muted); font-weight: 600; }
.event-detail-meta { margin-bottom: 22px; }
.event-detail-ctas { margin-top: 24px; }
.event-recording {
  margin: 18px 0;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(227,184,92,0.28);
  background: color-mix(in srgb, var(--surface-soft) 88%, var(--gold) 12%);
}
.card p, .text-panel p, .panel p { color: var(--muted); }
.card span { color: var(--reef); font-weight: 800; margin-top: auto; display: inline-block; }
.stat-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.stat-grid div { padding: 24px; border-radius: 8px; background: var(--surface-soft); border: 1px solid rgba(31,190,195,0.22); }
.stat-grid strong { display: block; font-size: 1.45rem; }
.stat-grid span { color: var(--muted); }
.panel, .text-panel, .ai-widget { padding: clamp(24px, 4vw, 42px); }
.featured-answer {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border-color: rgba(227,184,92,0.4);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--surface) 92%, var(--gold) 8%), var(--surface));
}
.featured-answer::after {
  content: "";
  position: absolute;
  inset: auto -12% -44px 22%;
  height: 110px;
  opacity: 0.28;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(31,190,195,0.5), transparent 68%),
    repeating-linear-gradient(168deg, transparent 0 22px, rgba(227,184,92,0.32) 23px 25px);
  pointer-events: none;
}
.featured-answer > * { position: relative; z-index: 1; }
.landing-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(22px, 5vw, 56px);
  color: white;
  background:
    radial-gradient(circle at 18% 22%, rgba(31,190,195,0.28), transparent 34%),
    linear-gradient(120deg, #06131d, #0b2635 58%, #4d3b20);
}
.landing-cta-band p { max-width: 720px; color: rgba(255,255,255,0.78); }
.landing-cta-band .button-row { flex-shrink: 0; margin-top: 0; }
.split-band { background: #071019; color: white; }
.split-band p { color: rgba(255,255,255,0.78); }
.video-shell {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 28px;
  text-align: center;
  color: white;
  background:
    linear-gradient(140deg, rgba(31,190,195,0.78), rgba(6,19,29,0.94)),
    radial-gradient(circle at 30% 20%, rgba(227,184,92,0.36), transparent 55%);
  overflow: hidden;
  position: relative;
}
.video-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(168deg, transparent 0 28px, rgba(255,255,255,0.06) 29px 31px);
  opacity: 0.5;
  pointer-events: none;
}
.video-shell.large { min-height: 380px; }
.video-shell span {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 12px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.08);
  line-height: 1.55;
  font-weight: 600;
}
.content-stack { max-width: 980px; margin: 0 auto; display: grid; gap: 22px; }
.narrow { max-width: 780px; margin: 0 auto; }
.form-shell { max-width: 780px; margin: 0 auto; }
.form-intro { max-width: 62ch; margin-bottom: 8px; color: var(--muted); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-strip span { padding: 20px 16px; text-align: center; background: var(--surface); font-weight: 800; color: var(--reef); font-size: 0.92rem; line-height: 1.35; }
.faq { padding: 22px 26px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; transition: border-color 180ms ease; }
.faq[open] { border-color: rgba(31,190,195,0.35); }
.faq summary { cursor: pointer; font-weight: 800; padding-right: 12px; }
.faq summary:hover { color: var(--reef); }
.faq p { color: var(--muted); margin-top: 14px; }
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: clamp(28px, 4vw, 40px);
  border-radius: 12px;
  background: var(--mist);
  border: 1px solid var(--line);
}
.related-links h2 { flex-basis: 100%; margin-bottom: 4px; }
.related-links p { flex-basis: 100%; max-width: 760px; color: var(--muted); margin-bottom: 6px; }
.related-links a {
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease;
}
.related-links a:hover { transform: translateY(-2px); border-color: rgba(31,190,195,0.45); }
.related-links.compact { padding: 0; background: transparent; border: 0; border-radius: 0; margin-top: 8px; }

.form-card { display: grid; gap: 18px; padding: clamp(24px, 4vw, 42px); }
.form-errors {
  padding: 14px 16px;
  border: 1px solid rgba(217,111,95,0.45);
  border-radius: 10px;
  color: #5b2018;
  background: color-mix(in srgb, var(--coral) 12%, var(--surface));
}
:root[data-theme="night"] .form-errors { color: #ffd8d2; background: color-mix(in srgb, var(--coral) 18%, var(--surface)); }
.field-error {
  margin: -4px 0 0;
  color: var(--coral);
  font-weight: 800;
  font-size: 0.92rem;
}
.form-help {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}
.form-help a { color: var(--reef); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.contact-routes { margin-bottom: 6px; }
.text-panel a:not(.btn) { color: var(--reef); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
label { display: grid; gap: 8px; font-weight: 800; font-size: 0.96rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  background: var(--field-bg);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(31,190,195,0.55);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--reef) 18%, transparent);
}
input::placeholder, textarea::placeholder { color: color-mix(in srgb, var(--muted) 72%, transparent); }
textarea { resize: vertical; }
.inline-form { display: flex; flex-wrap: wrap; align-items: end; gap: 12px; }
.inline-form label { min-width: 190px; color: white; }
.inline-form span { font-size: 0.82rem; }
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.site-footer { background: #06131d; color: white; }
.site-footer p, .site-footer a { color: rgba(255,255,255,0.72); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 28px; padding-top: 44px; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-legal {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
}
.stack-panel { display: grid; gap: 20px; }
.legal-trust-panel {
  margin-top: 0;
  border-color: rgba(227,184,92,0.28);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, var(--gold) 8%), var(--surface));
}
.legal-trust-panel .eyebrow { color: var(--gold) !important; }
.sacred-giving .form-card {
  border-color: rgba(31,190,195,0.24);
  box-shadow: 0 18px 48px rgba(6,19,29,0.08);
}
.prayer-care-band {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(31,190,195,0.24);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(31,190,195,0.12), transparent 34%),
    linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--surface-soft) 84%, var(--gold) 16%));
  box-shadow: 0 14px 36px rgba(6,19,29,0.06);
}
.prayer-care-band p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.prayer-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
  counter-reset: prayer-step;
}
.prayer-steps li {
  position: relative;
  padding-left: 52px;
  color: var(--muted);
  line-height: 1.6;
}
.prayer-steps li::before {
  counter-increment: prayer-step;
  content: counter(prayer-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--reef) 18%, var(--surface-soft));
  border: 1px solid rgba(31,190,195,0.28);
  color: var(--reef);
  font-weight: 900;
  font-size: 0.92rem;
}
.prayer-steps strong { color: var(--ink); display: block; margin-bottom: 4px; }
.prayer-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.prayer-topic {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(31,190,195,0.2);
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: center;
}
.crisis-note {
  border-color: rgba(217,111,95,0.28);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 94%, var(--coral) 6%), var(--surface));
}
.crisis-note p { margin-bottom: 12px; color: var(--muted); }
.crisis-note p:last-child { margin-bottom: 0; }
.prayer-form-card {
  border-color: rgba(31,190,195,0.24);
  box-shadow: 0 18px 48px rgba(6,19,29,0.08);
}
.giving-trust-band {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(227,184,92,0.28);
  border-radius: 12px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, var(--gold) 8%), var(--surface));
  box-shadow: 0 14px 36px rgba(6,19,29,0.06);
}
.giving-trust-band p { margin: 0; color: var(--muted); line-height: 1.65; }
.fund-grid .fund-card { min-height: 190px; }
.fund-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.giving-form-card {
  border-color: rgba(227,184,92,0.28);
  box-shadow: 0 18px 48px rgba(6,19,29,0.08);
}
.giving-form-card h2 { margin-bottom: 8px; }
.giving-after-panel,
.giving-support-panel {
  border-color: rgba(31,190,195,0.22);
}
.giving-after-panel h2,
.giving-support-panel h2 { font-size: 1.35rem; margin-bottom: 10px; }
.join-ways-grid .join-way-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.join-way-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}
.watchcare-band {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid rgba(31,190,195,0.24);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(31,190,195,0.12), transparent 34%),
    linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--surface-soft) 84%, var(--gold) 16%));
}
.watchcare-band p { margin: 0; color: var(--muted); line-height: 1.65; }
.join-form-card {
  border-color: rgba(31,190,195,0.24);
  box-shadow: 0 18px 48px rgba(6,19,29,0.08);
}
.join-steps li::before {
  background: color-mix(in srgb, var(--gold) 18%, var(--surface-soft));
  border-color: rgba(227,184,92,0.28);
  color: var(--gold);
}
.doctrine-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(31,190,195,0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 8%, rgba(31,190,195,0.1), transparent 32%),
    linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--surface-soft) 88%, var(--gold) 12%));
  box-shadow: 0 14px 36px rgba(6,19,29,0.06);
}
.doctrine-panel h2 { font-size: clamp(1.45rem, 3vw, 2rem); margin-bottom: 14px; }
.doctrine-panel h3 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); margin-bottom: 12px; }
.doctrine-panel p { color: var(--muted); line-height: 1.65; }
.doctrine-panel p:last-child { margin-bottom: 0; }
.belief-foundation-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.belief-difference-stack { display: grid; gap: 18px; }
.belief-panel h3 { color: var(--text); }
.belief-ai-band {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(31,190,195,0.24);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(31,190,195,0.12), transparent 34%),
    linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--surface-soft) 84%, var(--gold) 16%));
}
.belief-ai-band h2 { margin-bottom: 12px; }
.belief-ai-band p { color: var(--muted); line-height: 1.65; }
.belief-mission-band {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(227,184,92,0.22);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 18%, rgba(227,184,92,0.1), transparent 36%),
    linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--surface-soft) 88%, var(--gold) 12%));
}
.belief-mission-band h2 { margin-bottom: 12px; }
.belief-mission-band p { color: var(--muted); line-height: 1.65; }
.belief-mission-lead {
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: var(--text) !important;
  margin-bottom: 16px;
}
.belief-boundary-list { margin: 18px 0 22px; }
.belief-values-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.belief-value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.belief-value-card p { color: var(--muted); margin: 0; line-height: 1.6; }
.belief-closing {
  padding: clamp(28px, 5vw, 42px);
  border: 1px solid rgba(227,184,92,0.24);
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 18%, rgba(227,184,92,0.12), transparent 36%),
    linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--surface-soft) 86%, var(--gold) 14%));
  text-align: center;
}
.belief-closing h2 { margin-bottom: 12px; }
.belief-closing p { color: var(--muted); max-width: 62ch; margin: 0 auto 22px; line-height: 1.65; }
.belief-closing .button-row { justify-content: center; flex-wrap: wrap; }
.page-hero .hero-note {
  margin-top: 14px;
  font-size: clamp(0.98rem, 1.8vw, 1.12rem);
  color: rgba(255,255,255,0.82);
}
.empty-state,
.ai-widget.empty-state {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 48px);
  border-color: rgba(31,190,195,0.24);
  background:
    radial-gradient(circle at 88% 12%, rgba(31,190,195,0.14), transparent 34%),
    linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--surface-soft) 80%, var(--gold) 20%));
}
.empty-state-glow {
  position: absolute;
  inset: auto -20% -50px 30%;
  height: 140px;
  opacity: 0.35;
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(31,190,195,0.55), transparent 68%),
    repeating-linear-gradient(168deg, transparent 0 22px, rgba(227,184,92,0.22) 23px 25px);
  pointer-events: none;
}
.empty-state-inner { position: relative; z-index: 1; }
.confirmation-panel {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(6,19,29,0.08);
}
.confirmation-panel p:last-of-type { margin-bottom: 0; }
.confirmation-meta {
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(31,190,195,0.22);
  background: var(--surface-soft);
  margin: 18px 0;
}
.footer-grid h3, .footer-grid h4 { margin: 0 0 12px; color: white; font-size: 1rem; }
.footer-grid h4 { color: rgba(255,255,255,0.88); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; }
.metric { font-size: 2.4rem; color: var(--reef) !important; font-weight: 900; }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.admin-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.admin-table th, .admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { color: var(--reef); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.ai-widget { display: grid; gap: 14px; align-content: start; }
.ai-widget .pulse-dot { margin-bottom: 4px; }
.landing-hero .eyebrow,
.page-hero .eyebrow { color: var(--gold) !important; }
.section-heading h2 { margin-bottom: 12px; }
.section-heading p { color: var(--muted); max-width: 68ch; }
.pulse-dot { width: 18px; height: 18px; border-radius: 999px; background: var(--water); box-shadow: 0 0 0 0 rgba(38,198,201,0.6); animation: pulse 1.8s infinite; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes flow {
  from { transform: translateX(-3%) translateY(0); }
  to { transform: translateX(3%) translateY(-10px); }
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 18px rgba(38,198,201,0); }
  100% { box-shadow: 0 0 0 0 rgba(38,198,201,0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .site-header { position: sticky; }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    z-index: 20;
  }
  .site-nav a { padding: 10px 4px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav.is-open { display: flex; }
  .two-column, .split-band, .footer-grid, .footer-cta { grid-template-columns: 1fr; flex-direction: column; align-items: stretch; }
  .landing-cta-band { flex-direction: column; align-items: stretch; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .belief-foundation-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero, .page-hero, .landing-hero { min-height: 64vh; }
  .theme-toggle { margin-left: auto; }
}
@media (max-width: 560px) {
  .site-header { padding: 12px 16px; }
  .brand-name { max-width: 180px; line-height: 1.1; font-size: 0.92rem; }
  .brand-logo { width: 38px; height: 38px; }
  .button-row, .inline-form { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .stat-grid, .card-grid, .trust-strip { grid-template-columns: 1fr; }
  .prayer-topics-grid { grid-template-columns: 1fr; }
  .section, .tour-band, .site-footer { padding-left: 16px; padding-right: 16px; }
  .footer-legal { font-size: 0.82rem; line-height: 1.45; padding-left: 8px; padding-right: 8px; }
}
