/* =============================================================
 * Christ Chosen Generation Ministries — plain CSS design system
 * Ported from the React/Tailwind project to vanilla CSS.
 * Palette: Royal Blue · Prophetic Yellow · White · Deep Purple
 * ============================================================= */

:root {
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 1.75rem;

  --background: #ffffff;
  --foreground: #161433;
  --card: #ffffff;
  --card-foreground: #161433;
  --muted: #f3f3f7;
  --muted-foreground: #585575;
  --secondary: #f5f5f9;
  --secondary-foreground: #28233f;
  --border: #e6e6ee;

  --royal: #2c2a8a;
  --royal-deep: #161250;
  --royal-foreground: #ffffff;

  --purple: #4f1f8a;
  --purple-foreground: #ffffff;

  --yellow: #f6c84a;
  --yellow-soft: #ffe7a3;
  --yellow-foreground: #28233f;

  --teal: #0fb9a8;
  --orange: #ff7a3d;
  --pink: #e23d8f;
  --cream: #fbf7ec;
  --ink: #100d2a;
  --ink-foreground: #ffffff;

  --gradient-hero: linear-gradient(135deg, #100d2a 0%, #2a2380 45%, #4f1f8a 100%);
  --gradient-royal: linear-gradient(135deg, var(--royal-deep) 0%, var(--royal) 60%, var(--purple) 100%);
  --gradient-yellow: linear-gradient(135deg, #ffd86c 0%, #f1b13c 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(16, 13, 42, 0.18) 0%, rgba(16, 13, 42, 0.85) 100%);
  --gradient-radial-yellow: radial-gradient(ellipse at center, rgba(246, 200, 74, 0.35) 0%, transparent 70%);
  --gradient-radial-purple: radial-gradient(ellipse at 30% 20%, rgba(102, 41, 175, 0.5) 0%, transparent 65%);

  --shadow-yellow: 0 10px 40px -10px rgba(246, 200, 74, 0.55);
  --shadow-royal: 0 20px 60px -20px rgba(44, 42, 138, 0.45);
  --shadow-elegant: 0 20px 60px -20px rgba(22, 18, 80, 0.35);
  --shadow-card: 0 4px 20px -4px rgba(22, 18, 80, 0.1);

  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", system-ui, sans-serif;

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  color: inherit;
}

input,
textarea {
  font: inherit;
}

::selection {
  background: var(--yellow);
  color: var(--yellow-foreground);
}

/* ===== Layout helpers ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ===== Utility colors and gradients ===== */
.bg-cream { background-color: var(--cream); }
.bg-card { background-color: var(--card); }
.bg-white { background-color: #fff; }
.bg-ink { background-color: var(--ink); color: var(--ink-foreground); }
.bg-royal { background-color: var(--royal); color: var(--royal-foreground); }
.bg-royal-deep { background-color: var(--royal-deep); color: var(--royal-foreground); }
.bg-purple { background-color: var(--purple); color: var(--purple-foreground); }
.bg-yellow { background-color: var(--yellow); color: var(--yellow-foreground); }

.text-royal { color: var(--royal); }
.text-royal-deep { color: var(--royal-deep); }
.text-purple { color: var(--purple); }
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--muted-foreground); }
.text-white { color: #fff; }

.gradient-hero { background: var(--gradient-hero); }
.gradient-royal { background: var(--gradient-royal); }
.gradient-yellow { background: var(--gradient-yellow); }
.gradient-overlay { background: var(--gradient-overlay); }
.gradient-radial-yellow { background: var(--gradient-radial-yellow); }
.gradient-radial-purple { background: var(--gradient-radial-purple); }

.shadow-yellow { box-shadow: var(--shadow-yellow); }
.shadow-royal { box-shadow: var(--shadow-royal); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-card { box-shadow: var(--shadow-card); }

.font-display { font-family: var(--font-display); }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.2em; }
.tracking-widest { letter-spacing: 0.3em; }
.tabular-nums { font-variant-numeric: tabular-nums; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: transform 0.25s var(--ease-smooth), background-color 0.25s ease,
    color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px) scale(1.02);
}
.btn-primary {
  background: var(--gradient-royal);
  color: #fff;
  box-shadow: var(--shadow-royal);
}
.btn-yellow {
  background: var(--gradient-yellow);
  color: var(--yellow-foreground);
  box-shadow: var(--shadow-yellow);
}
.btn-outline {
  background: transparent;
  color: var(--royal);
  border-color: rgba(44, 42, 138, 0.3);
}
.btn-outline:hover {
  background: rgba(44, 42, 138, 0.05);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 0.95rem;
}

/* ===== Pills/badges ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--purple);
}
.eyebrow-yellow {
  color: var(--yellow);
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ===== Top utility bar ===== */
.top-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  background: var(--royal-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.7rem;
  display: none;
}
@media (min-width: 1024px) {
  .top-bar {
    display: block;
  }
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.top-bar__left {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
}
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar__right a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}
.top-bar__right a:hover {
  color: var(--yellow);
}
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #ef4444;
  animation: pulse-live 1.6s ease-in-out infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.3); }
}

/* ===== Site header ===== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: top 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
  top: 0;
}
@media (min-width: 1024px) {
  .site-header {
    top: 36px;
  }
}
.site-header.is-scrolled {
  top: 0 !important;
}
.site-header__inner {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.45s var(--ease-smooth);
}
.site-header.is-scrolled .site-header__inner {
  box-shadow: var(--shadow-elegant);
}
.site-header__inner::before,
.site-header__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}
.site-header__inner::before {
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 42, 138, 0.4), transparent);
}
.site-header__inner::after {
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--royal-deep), var(--purple), var(--yellow));
  opacity: 0.8;
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}
.brand img {
  height: 44px;
  width: 44px;
  border-radius: 9999px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand__text {
  line-height: 1.1;
  min-width: 0;
}
.brand__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--royal-deep);
  letter-spacing: 0.02em;
}
.brand__sub {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--purple);
}
@media (max-width: 380px) {
  .brand__text { display: none; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(22, 20, 51, 0.8);
  transition: color 0.2s ease;
  position: relative;
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--royal);
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(22, 20, 51, 0.8);
  cursor: pointer;
  transition: color 0.2s ease;
}
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--royal);
}
.nav-trigger svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}
.nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.has-mega { position: relative; }

.mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0.5rem);
  width: min(920px, 95vw);
  padding-top: 0.75rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
  z-index: 50;
}
.has-mega.is-open .mega {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mega__panel {
  background: #fff;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.9fr;
}
.mega__col-links {
  padding: 1rem;
  background: linear-gradient(180deg, #fff, rgba(245, 245, 249, 0.6));
}
.mega__col-title {
  margin: 0 0.5rem 0.5rem;
  padding: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(79, 31, 138, 0.7);
}
.mega__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-lg);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.mega__link:hover {
  background: #fff;
  box-shadow: var(--shadow-card);
}
.mega__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: inline-grid;
  place-items: center;
  font-size: 0.85rem;
  background: linear-gradient(135deg, rgba(246, 200, 74, 0.25), rgba(79, 31, 138, 0.15));
  color: var(--royal-deep);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.mega__link:hover .mega__icon {
  background: var(--gradient-yellow);
  color: var(--yellow-foreground);
  transform: scale(1.08);
}
.mega__link-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.mega__link:hover .mega__link-text {
  color: var(--royal);
}
.mega__link-arrow {
  margin-left: auto;
  font-size: 0.75rem;
  opacity: 0;
  color: var(--muted-foreground);
  transition: opacity 0.2s ease;
}
.mega__link:hover .mega__link-arrow {
  opacity: 1;
}
.mega__feature {
  position: relative;
  isolation: isolate;
  padding: 1.25rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.feature-gradient-a {
  background: linear-gradient(135deg, var(--royal-deep), var(--royal), var(--purple));
}
.feature-gradient-b {
  background: linear-gradient(135deg, var(--purple), var(--royal), var(--royal-deep));
}
.feature-gradient-c {
  background: linear-gradient(135deg, var(--royal-deep), var(--purple), var(--royal));
}
.mega__feature::before,
.mega__feature::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  filter: blur(48px);
  opacity: 0.4;
  pointer-events: none;
}
.mega__feature::before {
  inset: -2.5rem -2.5rem auto auto;
  height: 160px;
  width: 160px;
  background: rgba(255, 255, 255, 0.4);
}
.mega__feature::after {
  inset: auto auto -4rem -2.5rem;
  height: 192px;
  width: 192px;
  background: rgba(102, 41, 175, 0.6);
}
.mega__feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}
.mega__feature-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.7rem;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.mega__feature-desc {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}
.mega__feature-cta {
  margin-top: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mega__image {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.mega__image img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s var(--ease-smooth);
}
.mega__image:hover img {
  transform: scale(1.05);
}
.mega__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 18, 80, 0.7), transparent);
  pointer-events: none;
}

/* CTA + mobile button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.give-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  background: var(--gradient-royal);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-elegant);
  transition: transform 0.25s ease;
}
.give-cta:hover {
  transform: scale(1.05);
}
@media (min-width: 640px) {
  .give-cta { display: inline-flex; }
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  height: 40px;
  width: 40px;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--foreground);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.menu-toggle:hover {
  background: var(--yellow);
  color: var(--yellow-foreground);
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}
.menu-toggle__bars {
  position: relative;
  width: 20px;
  height: 16px;
}
.menu-toggle__bars span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 9999px;
  transition: transform 0.3s var(--ease-smooth), opacity 0.2s ease;
}
.menu-toggle__bars span:nth-child(1) { top: 0; }
.menu-toggle__bars span:nth-child(2) { top: 7px; }
.menu-toggle__bars span:nth-child(3) { top: 14px; }
.menu-toggle.is-open .menu-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bars span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open .menu-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 18, 80, 0.5);
  backdrop-filter: blur(4px);
}
.mobile-menu__sheet {
  position: absolute;
  inset-inline: 0;
  top: 72px;
  max-height: calc(100dvh - 5rem);
  overflow-y: auto;
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border);
  animation: sheetIn 0.4s var(--ease-smooth);
}
@keyframes sheetIn {
  from { opacity: 0; transform: translateY(-1rem); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: var(--radius-2xl);
  padding: 1rem;
  background: linear-gradient(135deg, var(--purple), var(--royal), var(--royal-deep));
  color: #fff;
  margin-bottom: 1rem;
  overflow: hidden;
}
.mobile-banner__icon {
  height: 48px;
  width: 48px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  background: var(--gradient-yellow);
  color: var(--yellow-foreground);
  box-shadow: var(--shadow-yellow);
}
.mobile-banner__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.15;
}
.mobile-banner__eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--yellow);
  font-weight: 600;
}

.mobile-nav-link,
.mobile-nav-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover,
.mobile-nav-summary:hover {
  color: var(--royal);
}
.mobile-nav-link__arrow {
  color: var(--yellow);
}
.mobile-nav-details > .mobile-nav-summary::-webkit-details-marker { display: none; }
.mobile-nav-details > .mobile-nav-summary { list-style: none; }
.mobile-nav-summary__plus {
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: var(--secondary);
  color: var(--royal);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  transition: transform 0.3s var(--ease-smooth);
}
.mobile-nav-details[open] .mobile-nav-summary__plus { transform: rotate(45deg); }
.mobile-nav-children {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
}
.mobile-nav-child {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-lg);
  transition: background-color 0.2s ease;
}
.mobile-nav-child:hover {
  background: var(--secondary);
}
.mobile-nav-child__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(246, 200, 74, 0.25), rgba(79, 31, 138, 0.15));
  color: var(--royal-deep);
  flex-shrink: 0;
}
.mobile-nav-child__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
}
.mobile-nav-child__desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.mobile-give {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 9999px;
  background: var(--gradient-royal);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--shadow-elegant);
}
.mobile-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.75rem;
}
.mobile-quick a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem;
  border-radius: var(--radius-lg);
  background: var(--secondary);
  color: var(--royal-deep);
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.mobile-quick a:hover {
  background: var(--yellow);
  color: var(--yellow-foreground);
}

/* ===== Page wrapper ===== */
.page {
  padding-top: 74px;
}
@media (min-width: 1024px) {
  .page {
    padding-top: 110px;
  }
}

/* ===== Hero slider ===== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  display: flex;
  align-items: center;
  margin-top: -74px;
}
@media (min-width: 1024px) {
  .hero {
    margin-top: -110px;
  }
}
.hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__slide-img.is-active {
  opacity: 0.55;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  pointer-events: none;
}
.hero__radial-purple {
  position: absolute;
  inset: 0;
  background: var(--gradient-radial-purple);
  opacity: 0.6;
  pointer-events: none;
}
.hero__radial-yellow {
  position: absolute;
  inset: 0;
  background: var(--gradient-radial-yellow);
  opacity: 0.3;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 9rem 0 8rem;
}
.hero__slide {
  max-width: 64rem;
  display: none;
  animation: heroFadeIn 0.7s var(--ease-smooth);
}
.hero__slide.is-active {
  display: block;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(1.5rem); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(246, 200, 74, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--yellow);
}
.hero__title {
  margin-top: 1.75rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
}
.hero__title em {
  font-style: italic;
  color: var(--yellow);
}
.hero__desc {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__dots {
  position: absolute;
  z-index: 20;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero__dot {
  height: 6px;
  width: 22px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  transition: width 0.3s ease, background-color 0.3s ease;
  cursor: pointer;
}
.hero__dot:hover { background: rgba(255, 255, 255, 0.6); }
.hero__dot.is-active {
  width: 40px;
  background: var(--yellow);
}

.text-shimmer {
  background-image: linear-gradient(120deg, var(--yellow), #fff, var(--yellow));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmerText 5s linear infinite;
}
@keyframes shimmerText {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== Rain of blessings ===== */
.rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.rain__drop,
.rain__spark {
  position: absolute;
  top: -10vh;
  width: 2px;
  border-radius: 9999px;
  background: linear-gradient(180deg, transparent, rgba(246, 200, 74, 0.85), transparent);
  animation: rainFall linear infinite;
}
.rain__spark {
  height: 4px;
  width: 4px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 8px rgba(246, 200, 74, 0.85);
}
@keyframes rainFall {
  0%   { transform: translateY(0); }
  100% { transform: translateY(120vh); }
}

/* ===== Marquee ticker ===== */
.ticker {
  overflow: hidden;
  background: var(--royal-deep);
  color: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.ticker__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  animation: marqueeMove 38s linear infinite;
}
.ticker__track span { color: rgba(246, 200, 74, 0.9); }
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Sections ===== */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-tight { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.section--white { background: #fff; }
.section--royal {
  background: var(--royal-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section--hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
}
.section--hero::before,
.section--royal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-radial-purple);
  opacity: 0.5;
  pointer-events: none;
}

.section-head { text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; }
.section-head h2,
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.75rem);
  color: var(--royal-deep);
  line-height: 1.1;
  margin-top: 1rem;
}
.section--hero .section-head h2,
.section--royal .section-head h2 {
  color: #fff;
}
.section-head p {
  margin: 1.25rem auto 0;
  color: var(--muted-foreground);
  max-width: 40rem;
}
.section--hero .section-head p,
.section--royal .section-head p {
  color: rgba(255, 255, 255, 0.85);
}
em { font-style: italic; }
.italic-purple { color: var(--purple); font-style: italic; }
.italic-yellow { color: var(--yellow); font-style: italic; }

/* ===== Countdown ===== */
.countdown {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .countdown { grid-template-columns: 1.2fr 1fr; gap: 3rem; }
}
.countdown__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--royal-deep);
  margin-top: 1rem;
}
.countdown__time {
  margin-top: 0.7rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--royal);
}
.countdown__desc {
  margin-top: 1rem;
  max-width: 30rem;
  color: var(--muted-foreground);
}
.countdown__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.countdown__cell {
  background: var(--gradient-royal);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-2xl);
  padding: 1.25rem 0.5rem;
  box-shadow: var(--shadow-royal);
}
.countdown__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--yellow);
}

/* ===== Mandate cards ===== */
.mandate-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .mandate-grid { grid-template-columns: repeat(3, 1fr); }
}
.mandate-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease-smooth), border-color 0.3s ease,
    background-color 0.3s ease;
}
.mandate-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 200, 74, 0.6);
  background: rgba(255, 255, 255, 0.08);
}
.mandate-card__icon {
  display: grid;
  place-items: center;
  height: 56px;
  width: 56px;
  border-radius: var(--radius-lg);
  background: var(--gradient-yellow);
  color: var(--yellow-foreground);
  font-size: 1.5rem;
  box-shadow: var(--shadow-yellow);
  animation: floatSlow 6s ease-in-out infinite;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.mandate-card h3 {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.mandate-card p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  color: var(--purple);
}
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted-foreground);
}

/* ===== Schedule cards ===== */
.schedule-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .schedule-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .schedule-grid { grid-template-columns: repeat(3, 1fr); } }
.schedule-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-2xl);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
}
.schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-royal);
}
.schedule-card::before {
  content: "";
  position: absolute;
  right: -2rem;
  top: -2rem;
  width: 120px;
  height: 120px;
  border-radius: 9999px;
  background: rgba(246, 200, 74, 0.18);
  filter: blur(40px);
  transition: transform 0.3s ease;
}
.schedule-card:hover::before { transform: scale(1.5); }
.schedule-card__day-tag {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--purple);
}
.schedule-card__badge {
  background: var(--royal);
  color: var(--yellow);
  border-radius: 9999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.schedule-card__day {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--royal-deep);
  margin-top: 0.6rem;
}
.schedule-card__name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(22, 20, 51, 0.8);
  margin-top: 0.4rem;
}
.schedule-card__time {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
.schedule-card__time::before {
  content: "●";
  color: var(--yellow);
}

/* ===== Feature grid (icons) ===== */
.features-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  display: block;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease-smooth), border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--royal);
  box-shadow: var(--shadow-royal);
}
.feature-card__icon {
  height: 48px;
  width: 48px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--gradient-royal);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-royal);
}
.feature-card h3 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}
.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.feature-card__open {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--royal);
  transition: transform 0.3s var(--ease-smooth);
}
.feature-card:hover .feature-card__open {
  transform: translateX(4px);
}

/* ===== Testimonies ===== */
.testimonies-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonies-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonies-grid { grid-template-columns: repeat(4, 1fr); } }
.testimony-card {
  position: relative;
  border-radius: var(--radius-2xl);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
}
.testimony-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant);
}
.testimony-card__quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--yellow);
}
.testimony-card__text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(22, 20, 51, 0.85);
}
.testimony-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testimony-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: var(--gradient-royal);
  color: #fff;
  font-weight: 700;
}
.testimony-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--royal-deep);
}
.testimony-card__place {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

/* ===== Sermons ===== */
.sermons-head {
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}
.sermons-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .sermons-grid { grid-template-columns: repeat(3, 1fr); } }
.sermon-card {
  display: block;
  overflow: hidden;
  background: var(--card);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
}
.sermon-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-royal);
}
.sermon-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--royal-deep);
  overflow: hidden;
}
.sermon-card__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}
.sermon-card:hover .sermon-card__media img { transform: scale(1.1); }
.sermon-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 18, 80, 0.85), rgba(22, 18, 80, 0.2), transparent);
}
.sermon-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.sermon-card__play span {
  height: 64px;
  width: 64px;
  border-radius: 9999px;
  background: var(--gradient-yellow);
  color: var(--yellow-foreground);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-yellow);
  transition: transform 0.3s ease;
}
.sermon-card:hover .sermon-card__play span { transform: scale(1.08); }
.sermon-card__tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: #dc2626;
  color: #fff;
  border-radius: 9999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.sermon-card__body { padding: 1.5rem; }
.sermon-card__date {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--purple);
}
.sermon-card__title {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}
.sermon-card__author {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Pillars ===== */
.pillars-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 1024px) {
  .pillars-head { grid-template-columns: 1fr 1.4fr; align-items: flex-end; }
}
.pillars-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }
.pillar-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease-smooth), border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--royal);
  box-shadow: var(--shadow-royal);
}
.pillar-card::before {
  content: "";
  position: absolute;
  right: -2.5rem;
  top: -2.5rem;
  width: 130px;
  height: 130px;
  border-radius: 9999px;
  background: rgba(246, 200, 74, 0.1);
  filter: blur(48px);
  transition: background-color 0.3s ease;
}
.pillar-card:hover::before { background: rgba(246, 200, 74, 0.2); }
.pillar-card__tag {
  position: relative;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--yellow);
}
.pillar-card h3 {
  position: relative;
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--royal-deep);
}
.pillar-card p {
  position: relative;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* ===== Programmes ===== */
.programmes-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .programmes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .programmes-grid { grid-template-columns: repeat(3, 1fr); } }
.programme-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-2xl);
  background: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
}
.programme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-royal);
}
.programme-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--royal-deep);
}
.programme-card p {
  margin-top: 0.75rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.programme-card__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--royal);
}

/* ===== Featured event ===== */
.event {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .event { grid-template-columns: 1.1fr 0.9fr; }
}
.event__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  margin-top: 1.5rem;
}
.event__title em { color: var(--yellow); font-style: italic; }
.event__sub {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
}
.event__desc {
  margin-top: 1.5rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.event__details {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 28rem;
}
.event__detail {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 1rem;
}
.event__detail-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--yellow);
}
.event__detail-value {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}
.event__media {
  position: relative;
}
.event__media-glow {
  position: absolute;
  inset: -1rem;
  background: var(--gradient-yellow);
  opacity: 0.2;
  filter: blur(48px);
  border-radius: var(--radius-3xl);
  pointer-events: none;
}
.event__media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-elegant);
}
.event__media-frame img { display: block; width: 100%; }
.event__media-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(to top, var(--royal-deep), rgba(22, 18, 80, 0.7), transparent);
}
.event__media-caption-eyebrow {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--yellow);
}
.event__media-caption-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

/* ===== Beliefs ===== */
.beliefs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .beliefs { grid-template-columns: 0.9fr 1.1fr; align-items: flex-start; }
}
.beliefs__intro p {
  margin-top: 1.25rem;
  max-width: 28rem;
  color: var(--muted-foreground);
}
.beliefs__list { display: grid; gap: 0.75rem; }
.beliefs__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.beliefs__item:hover {
  border-color: var(--royal);
  box-shadow: var(--shadow-card);
}
.beliefs__num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--gradient-royal);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-royal);
}
.beliefs__item p {
  padding-top: 0.4rem;
  font-size: 0.875rem;
  color: rgba(22, 20, 51, 0.9);
}

/* ===== Locations ===== */
.locations-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(4, 1fr); } }
.location-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-royal);
}
.location-card__role {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--yellow);
}
.location-card__city {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--royal-deep);
}
.location-card__country {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ===== Newsletter / CTA cards ===== */
.newsletter-card {
  overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--royal-deep), var(--royal), var(--purple));
  color: #fff;
  padding: 2.5rem;
  box-shadow: var(--shadow-elegant);
}
@media (min-width: 768px) { .newsletter-card { padding: 3.5rem; } }
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .newsletter-grid { grid-template-columns: 1.2fr 1fr; } }
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.1);
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.newsletter-form label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--yellow);
}
.newsletter-form input {
  width: 100%;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--foreground);
  border: 0;
  outline: 0;
}
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(246, 200, 74, 0.5); }
.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  background: var(--gradient-yellow);
  color: var(--yellow-foreground);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-yellow);
  transition: transform 0.25s ease;
}
.newsletter-form button:hover { transform: scale(1.02); }
.newsletter-form .fineprint {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Prayer wall CTA ===== */
.prayer-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  border-radius: var(--radius-3xl);
  background: var(--gradient-royal);
  color: #fff;
  padding: 2.5rem;
  box-shadow: var(--shadow-royal);
}
@media (min-width: 768px) {
  .prayer-card { grid-template-columns: 1.4fr 1fr; padding: 3.5rem; }
}
.prayer-card h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.1;
}
.prayer-card h2 em { color: var(--yellow); font-style: italic; }
.prayer-card p {
  margin-top: 1.25rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-radial-purple);
  opacity: 0.4;
  pointer-events: none;
}
.site-footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 5rem 0;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer__brand img {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer__brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}
.site-footer__brand-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--yellow);
}
.site-footer__about {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}
.site-footer__socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.6rem;
}
.site-footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-footer__socials a:hover {
  background: var(--yellow);
  color: var(--yellow-foreground);
}
.site-footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--yellow);
}
.site-footer__col ul {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__col a:hover { color: var(--yellow); }
.footer-form {
  margin-top: 1rem;
  display: flex;
}
.footer-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 9999px 0 0 9999px;
  border: 0;
  outline: 0;
  font-size: 0.875rem;
}
.footer-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.footer-form input:focus { box-shadow: 0 0 0 2px var(--yellow); }
.footer-form button {
  background: var(--gradient-yellow);
  color: var(--yellow-foreground);
  padding: 0 1.25rem;
  border-radius: 0 9999px 9999px 0;
  font-weight: 600;
  font-size: 0.875rem;
}
.site-footer__contact {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.site-footer__bar {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__bar-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (min-width: 768px) { .site-footer__bar-row { flex-direction: row; } }
.site-footer__verse {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(246, 200, 74, 0.85);
}

/* ===== Page-specific helpers ===== */
.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}
.prose {
  max-width: 56rem;
  margin: 0 auto;
}
.prose h2,
.prose h3 {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  color: var(--royal-deep);
}
.prose h2 { font-size: 2rem; }
.prose h3 { font-size: 1.4rem; }
.prose p {
  margin-top: 1.25rem;
  color: rgba(22, 20, 51, 0.85);
  line-height: 1.8;
}
.prose ul {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.5rem;
  color: rgba(22, 20, 51, 0.85);
}
.prose ul li {
  position: relative;
  padding-left: 1.5rem;
}
.prose ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
}

.split {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) { .split { grid-template-columns: 0.9fr 1.1fr; } }

.callout {
  border-radius: var(--radius-3xl);
  background: var(--gradient-royal);
  color: #fff;
  padding: 2.25rem;
  box-shadow: var(--shadow-royal);
}
.callout p { color: rgba(255, 255, 255, 0.9); margin-top: 1rem; }

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}
.contact-card h3 {
  font-family: var(--font-display);
  color: var(--royal-deep);
  font-size: 1.25rem;
  font-weight: 700;
}
.contact-card p { margin-top: 0.5rem; color: var(--muted-foreground); font-size: 0.95rem; }
.contact-card a { color: var(--royal); font-weight: 600; }
.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.95rem;
  color: var(--foreground);
  outline: 0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(44, 42, 138, 0.15);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

/* ===== Notes (sermon notes) ===== */
.notes-app {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .notes-app { grid-template-columns: 1fr 2fr; } }
.notes-list {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  max-height: 600px;
  overflow-y: auto;
}
.notes-list h3 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--purple);
  padding: 0.25rem 0.5rem;
}
.notes-list ul { display: grid; gap: 0.25rem; margin-top: 0.5rem; }
.notes-list li button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--foreground);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.notes-list li button:hover {
  background: var(--secondary);
  border-color: var(--border);
}
.notes-list li.is-active button {
  background: var(--secondary);
  border-color: var(--royal);
}
.notes-editor {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 1rem;
}
.notes-editor input,
.notes-editor textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  outline: 0;
}
.notes-editor textarea { min-height: 360px; resize: vertical; font-family: var(--font-sans); }
.notes-editor__row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===== Bible reader ===== */
.bible-app {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .bible-app { grid-template-columns: 320px 1fr; } }
.bible-side {
  background:
    radial-gradient(circle at 10% 0%, rgba(246, 200, 74, 0.22), transparent 35%),
    radial-gradient(circle at 100% 20%, rgba(15, 185, 168, 0.18), transparent 38%),
    var(--card);
  border: 1px solid rgba(79, 31, 138, 0.16);
  border-radius: var(--radius-2xl);
  padding: 1rem;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.75rem;
  align-content: start;
}
.bible-side label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--purple);
  font-weight: 600;
}
.bible-side select,
.bible-side input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  outline: 0;
  font-size: 0.875rem;
}
.bible-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.bible-quick-search input {
  border-color: rgba(15, 185, 168, 0.45);
  box-shadow: 0 0 0 4px rgba(15, 185, 168, 0.08);
}
.bible-reader {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 236, 0.98)),
    var(--card);
  border: 1px solid rgba(44, 42, 138, 0.12);
  border-radius: var(--radius-2xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(22, 20, 51, 0.9);
}
.bible-reader__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-sans);
}
.bible-reader__chapter {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--royal-deep);
}
.bible-reader__verse {
  display: block;
  margin-top: 0.75rem;
}
.bible-reader__verse-num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  vertical-align: super;
  color: var(--purple);
  margin-right: 0.4rem;
}
.bible-reader__notice {
  background: rgba(246, 200, 74, 0.18);
  border: 1px solid rgba(246, 200, 74, 0.45);
  border-radius: var(--radius);
  color: var(--royal-deep);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
}
@media (max-width: 560px) {
  .bible-form-row { grid-template-columns: 1fr; }
  .bible-reader { padding: 1.15rem; font-size: 1rem; }
  .bible-reader__head { align-items: flex-start; flex-direction: column; gap: 0.35rem; }
}

/* ===== Live page ===== */
.live-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) { .live-shell { grid-template-columns: 2fr 1fr; } }
.live-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-elegant);
}
.live-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.live-side {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.live-side h3 {
  font-family: var(--font-display);
  color: var(--royal-deep);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== Radio page ===== */
.radio-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-elegant);
  color: #fff;
  isolation: isolate;
}
.radio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.radio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 18, 80, 0.85), rgba(79, 31, 138, 0.7));
  z-index: -1;
}
.radio-card__inner {
  padding: 3.5rem 2.5rem;
}
.radio-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.75rem;
}
.radio-controls {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.radio-controls audio { width: 100%; max-width: 360px; }

/* ===== Giving page ===== */
.giving-hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  padding: 7rem 0 5rem;
}
.giving-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-radial-purple);
  opacity: 0.55;
  pointer-events: none;
}
.giving-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .giving-hero__grid {
    grid-template-columns: 1fr 420px;
  }
}
.giving-hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 800;
}
.giving-hero h1 em {
  color: var(--yellow);
  font-style: italic;
}
.giving-hero p {
  margin-top: 1.4rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  line-height: 1.7;
}
.giving-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
  max-width: 34rem;
}
.giving-impact__item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem;
  backdrop-filter: blur(8px);
}
.giving-impact__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--yellow);
}
.giving-impact__label {
  margin-top: 0.2rem;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
}
.giving-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--foreground);
  border-radius: 2rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
}
.giving-card--donorbox {
  border-radius: 0;
  max-width: 516px;
  margin-left: auto;
  background: #fff;
  color: #111;
}
.giving-card__top {
  background: linear-gradient(135deg, #36a1bd, #3ca8c5);
  color: #fff;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.giving-card__top-title {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.5rem;
}
.giving-card__steps {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}
.giving-dot {
  width: 15px;
  height: 15px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
}
.giving-dot.is-active {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.62);
}
.giving-card__body {
  padding: 2.15rem 2.4rem 2.5rem;
}
@media (min-width: 640px) {
  .giving-card__body {
    padding: 2.25rem 2.45rem 2.65rem;
  }
}
.giving-card__message {
  text-align: center;
  color: #030303;
  font-weight: 500;
  line-height: 1.45;
  font-size: 1.28rem;
  margin: 0 auto 1.65rem;
  max-width: 390px;
}
.giving-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid #38a6c4;
  border-radius: 9999px;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto 2rem;
}
.giving-tab {
  padding: 0.82rem 0.75rem;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 500;
  color: #2e99c4;
  border-right: 1.5px solid #38a6c4;
}
.giving-tab:last-child {
  border-right: 0;
}
.giving-tab.is-active {
  color: #fff;
  background: #38a6c4;
}
.giving-form {
  display: grid;
  gap: 1.35rem;
}
.giving-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--royal-deep);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.giving-control {
  width: 100%;
  min-height: 56px;
  border: 1px solid #c9dceb;
  border-radius: 0.25rem;
  padding: 0.85rem 1rem;
  background: #fff;
  color: var(--foreground);
  outline: 0;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.giving-control:focus {
  border-color: #38a6c4;
  box-shadow: 0 0 0 4px rgba(56, 166, 196, 0.16);
}
.giving-amount-wrap {
  position: relative;
}
.giving-amount-wrap::before {
  content: "$";
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: #2d4055;
  font-size: 1.35rem;
  font-weight: 400;
}
.giving-amount-wrap input {
  padding-left: 2.55rem;
  font-size: 1.55rem;
  font-weight: 400;
  color: #2e99c4;
  min-height: 74px;
  border-color: #9b9b9b;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.25) inset, 0 2px 6px rgba(0, 0, 0, 0.14);
}
.giving-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.giving-amount-btn {
  min-height: 76px;
  border: 1px solid #c8c8c8;
  border-radius: 9999px;
  color: #2d4055;
  background: #fff;
  font-size: 1.45rem;
  font-weight: 400;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.giving-amount-btn:hover,
.giving-amount-btn.is-selected {
  transform: translateY(-1px);
  background: #38a6c4;
  color: #fff;
  border-color: #38a6c4;
}
.giving-field--reason {
  margin-top: 2rem;
}
.giving-field--reason label {
  color: #2e99c4;
  font-size: 1.18rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 0.15rem;
}
.giving-control--select {
  border: 0;
  border-bottom: 1.5px solid #c5c5c5;
  border-radius: 0;
  min-height: 50px;
  padding: 0.35rem 2.5rem 0.35rem 0.2rem;
  color: #686868;
  font-size: 1.35rem;
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #888 50%) calc(100% - 18px) 50% / 10px 10px no-repeat,
    linear-gradient(135deg, #888 50%, transparent 50%) calc(100% - 10px) 50% / 10px 10px no-repeat,
    #fff;
}
.giving-control--select:focus {
  box-shadow: none;
  border-bottom-color: #38a6c4;
}
.giving-name-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .giving-name-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.giving-methods {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.giving-submit {
  width: 100%;
  min-height: 54px;
  border-radius: 9999px;
  background: var(--gradient-royal);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-royal);
  transition: transform 0.2s ease;
}
.giving-submit:hover {
  transform: translateY(-1px);
}
.giving-submit--flutter {
  background: linear-gradient(135deg, #f39c12, #8e44ad);
}
.giving-submit--paypal {
  background: linear-gradient(135deg, #003087, #009cde);
}
.giving-secure-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted-foreground);
}
.giving-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .giving-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Page hero ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  padding: 7rem 0 5rem;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-radial-purple);
  opacity: 0.5;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  text-align: center;
}
.page-hero h1 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.05;
}
.page-hero h1 em { color: var(--yellow); font-style: italic; }
.page-hero p {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ===== Misc ===== */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-wrap-gap { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-20 { margin-top: 5rem; }

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive tweaks for reduced columns */
@media (max-width: 1023px) {
  .mega { display: none; }
}
