/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --bg: #0b1220;
  --surface: #141a2b;
  --text: #e8f0ff;
  --muted: #a6b4d0;
  --card: #1a213a;
  --border: #2b3a68;
  --primary: #4aa5ff;
  --link: #87c0ff;
  --shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* =====================
   GLOBAL RESET
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body {
  background: var(--bg);
  color: var(--text);
  padding-top: 76px;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* =====================
   LAYOUT
   ===================== */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   HEADER & TOP BANNER
   ===================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  box-shadow: none;
}

/* White top banner */
.top-banner {
  background: #ffffff;
  padding: 10px clamp(20px, 4vw, 72px);
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: none;
}

/* Logo + Church Name */
.top-banner__left .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.brand__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b1220;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Social Icons */
.top-banner__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-actions {
  min-width: 240px;
  justify-content: flex-end;
}

.header-action-btn {
  min-width: 112px;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 22px;
}

.top-banner .btn--ghost {
  color: #111827;
  border-color: #111827;
  background: #fff;
}

.top-banner .btn--primary {
  color: #fff;
  background: #111827;
  border-color: #111827;
}

.social-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.2s, opacity 0.2s;
}

.social-icon:hover {
  transform: scale(1.2);
  opacity: 0.85;
}

/* Dark nav bar below the banner */
.nav-bar {
  background: transparent;
  border-bottom: none;
  padding: 0;
  position: absolute;
  inset: 0 0 auto;
  height: 76px;
  z-index: 20;
  pointer-events: none;
}

.nav-bar .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  height: 100%;
  pointer-events: none;
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  grid-column: 2;
  pointer-events: auto;
}

.nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav__menu a {
  color: #111827;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__menu a:hover {
  color: var(--primary);
  text-decoration: none;
}

.nav__item--dropdown {
  position: static;
}

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}

.nav__chevron {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.theme-toggle {
  display: none;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: min(1060px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 26px;
  border-radius: 18px;
  background: #fff;
  color: #1f2937;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  inset: -30px 0 auto;
  height: 30px;
}

.nav__item--dropdown:hover .mega-menu,
.nav__item--dropdown:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mega-menu__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-menu__group h3 {
  color: #111827;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.mega-menu .mega-menu__group a {
  color: #344054;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 2px 0;
}

.mega-menu .mega-menu__group a:hover {
  color: var(--primary);
}

.mega-menu__feature {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 14px;
  background: #171923;
  color: #fff;
}

.mega-menu__feature img {
  width: 108px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
}

.mega-menu__feature span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mega-menu__feature strong {
  display: block;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.mega-menu .mega-menu__feature a {
  color: #d6b36a;
  font-weight: 700;
}

.nav__toggle {
  display: none;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  transition: all 0.2s;
  text-decoration: none;
}

.btn:hover {
  background: var(--primary);
  color: #fff;
  text-decoration: none;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: #2b8fff;
  border-color: #2b8fff;
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* =====================
   THEME TOGGLE
   ===================== */
.theme-toggle {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 1.1rem;
  margin-left: auto;
  transition: border-color 0.2s;
}

.theme-toggle:hover {
  border-color: var(--primary);
}

/* =====================
   HERO
   ===================== */
.hero {
  background: var(--bg);
  padding: 90px 0 78px;
  text-align: center;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 34px;
  color: var(--text);
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  color: var(--muted);
  margin: 0 auto 34px;
  max-width: 980px;
}

.hero-service-times {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  margin-bottom: 34px;
}

.hero-service-times span {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--text);
  padding: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.hero-service-times strong {
  color: var(--text);
  font-weight: 800;
  margin-right: 6px;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================
   SECTIONS
   ===================== */
.section {
  padding: 80px 0;
}

.section__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: var(--text);
}

.section--alt {
  background: var(--surface);
}

.section__subtitle {
  text-align: center;
  color: var(--muted);
  margin-top: -24px;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.section__cta {
  text-align: center;
  margin-top: 40px;
}

.section-kicker {
  display: inline-block;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* =====================
   CARDS
   ===================== */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card__body {
  padding: 24px;
}

.card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.card__body p {
  color: var(--muted);
  margin-bottom: 16px;
}

.text-link {
  color: var(--primary);
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

/* =====================
   HIGHLIGHT SECTION
   ===================== */
.highlight {
  background: var(--surface);
}

.highlight__row {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.highlight__text {
  flex: 1;
  min-width: 280px;
}

.highlight__text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.highlight__text p {
  color: var(--muted);
  margin-bottom: 24px;
}

.highlight__media {
  flex: 1;
  min-width: 280px;
}

.pastor-preview__row {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 0.8fr 1.2fr;
}

.pastor-preview__image {
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  min-height: 280px;
  padding: 48px;
}

.pastor-preview__image img {
  max-height: 170px;
  object-fit: contain;
}

.pastor-preview__text h2,
.split-section h2 {
  color: var(--text);
  font-size: 2rem;
  margin-bottom: 16px;
}

.pastor-preview__text p,
.split-section p {
  color: var(--muted);
  margin-bottom: 24px;
}

.home-location-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  padding: 32px;
}

.home-location-card h3 {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.home-location-card p {
  color: var(--muted);
}

.home-location-card__actions {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.split-section {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 1.4fr 0.6fr;
}

.split-section__action {
  text-align: right;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
  background: linear-gradient(135deg, #1a2a4a 0%, #0b1220 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.cta-banner p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: #211f21;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: clamp(46px, 7vw, 78px) 0 34px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__grid h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.footer__grid p {
  color: var(--muted);
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list a {
  color: var(--muted);
  transition: color 0.2s;
}

.list a:hover {
  color: var(--primary);
}

.site-footer--full .wrap {
  max-width: 1060px;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  gap: 28px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-newsletter h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
}

.footer-newsletter__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.footer-newsletter__form input {
  width: 100%;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #fff;
  color: #111827;
  padding: 0 18px;
  font-family: inherit;
}

.footer-newsletter__form .btn {
  min-height: 44px;
  border-radius: 16px;
  background: #211f21;
  border-color: #d8f7ff;
  color: #fff;
}

.footer-newsletter__status {
  grid-column: 1 / -1;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) repeat(4, minmax(140px, 1fr));
  gap: clamp(24px, 4vw, 46px);
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-logo {
  width: 58px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand-block h3,
.footer-column h4 {
  color: #fff;
}

.footer-brand-block h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.footer-brand-block p,
.footer-column p,
.footer-column .list a,
.footer-bottom,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand-block p,
.footer-column p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-column h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-column .list {
  gap: 10px;
}

.footer-social-list a::before {
  content: "•";
  margin-right: 9px;
  color: #d8f7ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  font-size: 0.9rem;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.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;
}

/* =====================
   SKIP LINK
   ===================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 6px 0;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* =====================
   PAGE HERO
   ===================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1a2a4a;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 50, 0.6);
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero__box {
  border: 2px solid #ffffff;
  padding: 16px 48px;
  display: inline-block;
}

.page-hero__box h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

/* =====================
   ABOUT STATEMENTS
   ===================== */
.about-statements {
  background: #ffffff;
  padding: 60px 0;
}

/* FIXED - using auto columns so long titles never overlap */
.statement {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 24px;
  padding: 24px 0;
}

.statement__label {
  display: flex;
  align-items: center;
  gap: 12px;
  /* removed min-width and white-space nowrap - let it size naturally */
}

.statement__label h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0b1220;
  /* removed white-space: nowrap so long titles wrap cleanly */
  white-space: normal;
  margin: 0;
  line-height: 1.3;
}

.statement__arrow {
  font-size: 1.5rem;
  color: #1a5bd6;
  font-weight: 700;
  flex-shrink: 0;
}

.statement p {
  color: #4b5f7a;
  font-size: 1rem;
  line-height: 1.7;
  padding-top: 6px;
}

.statement__divider {
  height: 1px;
  background: #e5e7eb;
  width: 100%;
}

/* =====================
   ABOUT INTRO
   ===================== */
.about-intro {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.about-intro__text {
  flex: 1;
  min-width: 280px;
}

.about-intro__text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text);
}

.about-intro__text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-intro__text .btn {
  margin-top: 8px;
}

.about-intro__image {
  flex: 1;
  min-width: 280px;
  border-radius: 12px;
  overflow: hidden;
}

.about-intro__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* =====================
   BELIEF CARDS
   ===================== */
.belief-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.belief-card:hover {
  transform: translateY(-4px);
}

.belief-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.belief-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text);
}

.belief-card p {
  color: var(--muted);
}

/* Center last odd belief card */
.grid-2 .belief-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 50%;
  margin: 0 auto;
}

/* =====================
   MEET THE TEAM
   ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.team-card .card__body {
  padding: 14px;
}

.team-card .card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.team-card .card__body p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* =====================
   VISIT PAGE
   ===================== */
.visit-hero-simple {
  padding: clamp(82px, 12vw, 150px) 0 clamp(56px, 8vw, 92px);
  text-align: center;
  background: #fbfbfb;
  color: #111827;
}

.visit-hero-simple .section-kicker {
  color: #4aa5ff;
}

.visit-hero-simple h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.8rem, 13vw, 10rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 12px 0 20px;
}

.visit-hero-simple p {
  max-width: 760px;
  margin: 0 auto;
  color: #4b5563;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.visit-services {
  background: #fbfbfb;
  color: #111827;
  padding-top: 20px;
}

.visit-intro {
  max-width: 820px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.visit-intro h2,
.visit-location-panel h2,
.visit-questions h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  color: #111827;
  margin-bottom: 18px;
}

.visit-intro p,
.visit-service-card p,
.visit-location-panel p,
.visit-questions p {
  color: #4b5563;
}

.visit-service-list {
  display: grid;
  gap: 22px;
}

.visit-service-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 54px);
  padding: clamp(24px, 4vw, 42px) 0;
  border-top: 1px solid #d8d8d8;
}

.visit-service-card:last-child {
  border-bottom: 1px solid #d8d8d8;
}

.visit-service-card__time {
  display: block;
  color: #4aa5ff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.visit-service-card h3 {
  color: #111827;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.visit-service-card .text-link {
  display: inline-block;
  margin-top: 14px;
  color: #111827;
  font-weight: 800;
}

.visit-location-simple {
  background: #111827;
}

.visit-location-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 24px;
  background: #fff;
}

.visit-location-panel .section-kicker {
  color: #4aa5ff;
}

.visit-location-panel__times {
  border-left: 1px solid #d8d8d8;
  padding-left: clamp(22px, 4vw, 44px);
}

.visit-location-panel__times h3 {
  color: #111827;
  font-size: 1.1rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.visit-location-panel__times p {
  margin-bottom: 18px;
}

.visit-location-panel__times strong,
.visit-location-panel__times span {
  display: block;
}

.visit-location-panel__times strong {
  color: #111827;
  margin-bottom: 4px;
}

.visit-questions {
  text-align: center;
  background: #fbfbfb;
}

.visit-questions .wrap {
  max-width: 760px;
}

.visit-questions p {
  margin-bottom: 24px;
}

.visit-location {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.visit-location__info {
  flex: 1;
  min-width: 280px;
}

.visit-location__info .card__body h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.visit-location__info .card__body p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.visit-location__map {
  flex: 1.5;
  min-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visit-location__map iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

.visit-times {
  margin: 20px 0;
}

.visit-times h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.visit-times__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.visit-times__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.visit-times__day {
  font-weight: 600;
  color: var(--text);
}

.visit-times__time {
  color: var(--primary);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

/* =====================
   QR CODE SECTION
   ===================== */
.qr-section {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.qr-section__text {
  flex: 1;
  min-width: 280px;
}

.qr-section__text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text);
}

.qr-section__text p {
  color: var(--muted);
  margin-bottom: 12px;
}

.qr-section__note {
  font-size: 0.9rem;
  font-style: italic;
}

.qr-section__code {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border: 4px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
}

.qr-section__code p {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

/* =====================
   PRAYER FORM
   ===================== */
.prayer-section {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.prayer-section__text {
  flex: 1;
  min-width: 280px;
}

.prayer-section__text h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text);
}

.prayer-section__text p {
  color: var(--muted);
  margin-bottom: 12px;
}

.prayer-form {
  flex: 1.5;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 400 !important;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-status {
  color: var(--text);
  font-weight: 600;
  margin-top: 8px;
}

.form-status a {
  color: inherit;
  text-decoration: underline;
}

.about-intro__fallback {
  display: grid;
  min-height: 280px;
  place-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--surface), var(--primary));
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

/* =====================
   SUBSCRIBE PAGE
   ===================== */
.subscribe-hero {
  padding: clamp(78px, 10vw, 130px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(214, 179, 106, 0.16), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(74, 165, 255, 0.14), transparent 26%),
    linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}

.subscribe-hero__content {
  max-width: 880px;
}

.subscribe-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 12px 0 18px;
}

.subscribe-hero p {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 720px;
  margin: 0 auto;
}

.subscribe-section {
  background: var(--surface);
}

.subscribe-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.subscribe-copy h2,
.subscribe-form h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.subscribe-copy > p,
.subscribe-form > p {
  color: var(--muted);
}

.subscribe-benefits {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.subscribe-benefits article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
}

.subscribe-benefits span {
  display: inline-block;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 10px;
}

.subscribe-benefits h3 {
  margin-bottom: 8px;
}

.subscribe-benefits p {
  color: var(--muted);
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

/* =====================
   GIVING PAGE
   ===================== */
.give-hero {
  padding: clamp(78px, 11vw, 140px) 0 clamp(44px, 7vw, 78px);
  text-align: center;
  background: #fbfbfb;
  color: #111827;
}

.give-hero .section-kicker {
  color: #4aa5ff;
}

.give-hero h1,
.give-now-card h2,
.other-ways-give h2,
.giving-help-content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
  color: #111827;
}

.give-hero h1 {
  font-size: clamp(5rem, 13vw, 10rem);
  margin: 12px 0 18px;
}

.give-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #4b5563;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.give-now-section,
.other-ways-give,
.giving-help-section {
  background: #fbfbfb;
}

.give-now-section {
  padding-top: 16px;
}

.give-now-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.give-now-card h2 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  margin: 10px 0 18px;
}

.give-now-card > p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #4b5563;
}

.giving-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid #d8d8d8;
  border-radius: 18px;
  background: #f5f5f5;
  margin-bottom: 22px;
}

.giving-tab {
  appearance: none;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #4b5563;
  font: inherit;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
}

.giving-tab.is-active {
  background: #171417;
  color: #fff;
}

.giving-tab-panels {
  max-width: 620px;
  margin: 0 auto 26px;
}

.giving-panel {
  display: none;
}

.giving-panel.is-active {
  display: block;
}

.giving-panel h3 {
  color: #111827;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.giving-panel p {
  color: #4b5563;
}

.give-now-button {
  min-width: 220px;
  border-radius: 18px;
  background: #171417;
  border-color: #171417;
  color: #fff;
}

.other-ways-give h2 {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: clamp(30px, 5vw, 56px);
}

.other-ways-card {
  display: flex;
  justify-content: center;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid #d8d8d8;
  background: #f4f1ef;
}

.phone-placeholder {
  display: flex;
  justify-content: center;
}

.phone-placeholder__screen {
  width: min(100%, 360px);
  aspect-ratio: 0.56;
  border: 18px solid #171417;
  border-radius: 42px;
  background: #fff;
  color: #111827;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.16);
}

.phone-placeholder__screen span,
.phone-placeholder__screen strong {
  display: block;
}

.phone-placeholder__screen strong {
  margin: 28px 0;
  text-align: center;
}

.phone-placeholder__message {
  height: 52%;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(#fff, #f8fafc);
}

.giving-steps {
  display: grid;
  gap: 42px;
  width: min(100%, 620px);
}

.other-ways-card .giving-steps {
  justify-items: center;
}

.giving-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  width: 100%;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.08);
  color: #111827;
}

.other-ways-card .giving-step {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 560px;
}

.giving-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #171417;
  color: #fff;
  font-weight: 800;
}

.giving-step h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.giving-step p,
.giving-step li {
  color: #2f343d;
}

.giving-step ol {
  margin-top: 12px;
  padding-left: 20px;
}

.giving-step li + li {
  margin-top: 8px;
}

.giving-help-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: stretch;
  border-top: 1px solid #d8d8d8;
  padding-top: clamp(32px, 5vw, 62px);
}

.giving-help-image {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 25%, rgba(74, 165, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #e5e7eb, #f8fafc);
  color: #6b7280;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.giving-help-content {
  align-self: center;
}

.giving-help-content h2 {
  font-size: clamp(3rem, 7vw, 6.6rem);
  margin-bottom: 20px;
}

.giving-help-content p {
  color: #4b5563;
  font-size: 1.08rem;
}

/* =====================
   TEAM / PASTOR STORY
   ===================== */
.pastor-story-section {
  background: var(--surface);
}

.pastor-story-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.pastor-story__image {
  display: grid;
  place-items: center;
  gap: 16px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(214, 179, 106, 0.18), transparent 34%),
    linear-gradient(135deg, var(--bg), var(--surface));
  border: 1px solid var(--border);
  text-align: center;
}

.pastor-story__image img {
  width: min(180px, 62%);
  height: auto;
}

.pastor-story__image p {
  color: var(--muted);
  font-weight: 700;
}

.pastor-story__content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 10px 0 18px;
}

.pastor-story__content p {
  color: var(--muted);
  margin-bottom: 14px;
}

/* =====================
   CONTACT / PRAYER PAGE
   ===================== */
.contact-hero {
  padding: clamp(76px, 10vw, 130px) 0;
  text-align: center;
  background:
    radial-gradient(circle at 24% 20%, rgba(214, 179, 106, 0.18), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(77, 163, 255, 0.16), transparent 26%),
    linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border);
}

.contact-hero--simple {
  padding: clamp(56px, 8vw, 92px) 0 36px;
  background: #fbfbfb;
  border-bottom: 0;
}

.contact-hero__content {
  max-width: 820px;
}

.contact-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 12px 0 18px;
}

.contact-hero--simple h1 {
  color: #111827;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  margin: 0;
}

.contact-hero p {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 680px;
  margin: 0 auto;
}

.contact-prayer-section {
  background: #fbfbfb;
  padding-top: 18px;
}

.contact-prayer-card {
  max-width: 1050px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.08);
}

.contact-prayer-card .prayer-section__text {
  min-width: 0;
}

.contact-prayer-card .prayer-section__text h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 10px;
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-info-list > div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
}

.contact-info-list strong,
.contact-info-list span {
  display: block;
}

.contact-info-list strong {
  color: var(--text);
  margin-bottom: 6px;
}

.contact-info-list span {
  color: var(--muted);
}

.prayer-form--card {
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  gap: 20px;
}

.prayer-form--card textarea {
  min-height: 130px;
}

.prayer-form--card .form-group label {
  color: #111827;
  font-weight: 500;
}

.prayer-form--card .form-group input,
.prayer-form--card .form-group textarea {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 18px;
  color: #111827;
  padding: 15px 22px;
}

.prayer-form--card .form-group input::placeholder,
.prayer-form--card .form-group textarea::placeholder {
  color: #6b7280;
}

.prayer-form--card .form-group input:focus,
.prayer-form--card .form-group textarea:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

.form-note {
  margin-top: 8px;
  color: #4b5563;
  font-size: 0.95rem;
}

.form-checkbox--plain {
  color: #4b5563 !important;
  font-weight: 400 !important;
  text-transform: none;
}

.form-checkbox--plain input {
  border-radius: 2px;
}

.prayer-submit-btn {
  align-self: center;
  min-width: 250px;
  border-radius: 18px;
  background: #171417;
  border-color: #171417;
  color: #fff;
  margin-top: 10px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Layout */
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  body {
    padding-top: 124px;
  }

  .top-banner {
    padding: 10px 18px;
  }

  .brand__logo {
    height: 46px;
  }

  .header-actions {
    min-width: 0;
  }

  .header-action-btn {
    min-width: auto;
    padding: 9px 13px;
    border-radius: 11px;
    font-size: 0.85rem;
  }

  /* Hero */
  .hero h1 {
    font-size: 2rem;
  }

  .hero-service-times {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pastor-preview__row,
  .home-location-card,
  .split-section {
    grid-template-columns: 1fr;
  }

  .home-location-card__actions,
  .split-section__action {
    justify-content: flex-start;
    text-align: left;
  }

  .page-hero {
    height: 220px;
  }

  .page-hero__box h1 {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .page-hero__box {
    padding: 12px 28px;
  }

  /* Navigation */
  .nav-bar .wrap {
    display: flex;
    justify-content: space-between;
    pointer-events: auto;
  }

  .nav-bar {
    position: relative;
    height: auto;
    padding: 10px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    pointer-events: auto;
  }

  .nav {
    grid-column: auto;
    min-width: 0;
    flex: 1;
  }

  .nav__toggle {
    display: none;
  }

  .nav__menu {
    display: flex;
    flex-direction: row;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scrollbar-width: none;
    width: 100%;
    white-space: nowrap;
  }

  .nav__menu::-webkit-scrollbar {
    display: none;
  }

  .nav__menu a {
    font-size: 0.9rem;
    color: var(--text);
  }

  .mega-menu {
    display: none;
  }

  .theme-toggle {
    grid-column: auto;
    flex: 0 0 auto;
  }

  /* Header */
  .brand__name {
    font-size: 1rem;
  }

  .brand__logo {
    height: 45px;
  }

  .social-icon {
    width: 22px;
    height: 22px;
  }

  /* Sections */
  .highlight__row {
    flex-direction: column;
  }

  .about-intro {
    flex-direction: column;
  }

  /* Statements - stack on mobile */
  .statement {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .statement__label {
    min-width: unset;
  }

  /* Belief cards */
  .grid-2 .belief-card:last-child:nth-child(odd) {
    grid-column: 1;
    max-width: 100%;
    margin: 0;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 180px;
  }

  .team-grid .team-card:last-child {
    grid-column: auto !important;
  }

  /* Visit */
  .visit-location {
    flex-direction: column;
  }

  .visit-location__map iframe {
    height: 250px;
  }

  .qr-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .prayer-section {
    flex-direction: column;
  }

  .contact-prayer-card {
    grid-template-columns: 1fr;
  }

  .footer-newsletter,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-newsletter__form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .visit-service-card,
  .visit-location-panel {
    grid-template-columns: 1fr;
  }

  .visit-location-panel__times {
    border-left: 0;
    border-top: 1px solid #d8d8d8;
    padding-left: 0;
    padding-top: 24px;
  }

  .giving-tabs {
    display: grid;
  }

  .other-ways-card,
  .giving-help-card {
    grid-template-columns: 1fr;
  }

  .giving-step {
    grid-template-columns: 1fr;
  }

  .subscribe-layout {
    grid-template-columns: 1fr;
  }

  .pastor-story-card {
    grid-template-columns: 1fr;
  }
}
/* =====================
   SERMONS PAGE
   ===================== */

/* Featured Sermon */
.featured-sermon {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.featured-sermon__video {
  flex: 1.5;
  min-width: 280px;
}

.featured-sermon__info {
  flex: 1;
  min-width: 280px;
}

.featured-sermon__info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 12px;
}

.sermon-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sermon-speaker {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}

.sermon-date {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.sermon-description {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Platform Cards */
.platform-grid {
  gap: 24px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s, border-color 0.2s;
  gap: 16px;
}

.platform-card:hover {
  transform: translateY(-4px);
  text-decoration: none;
}

.platform-card--youtube:hover {
  border-color: #FF0000;
}

.platform-card--spotify:hover {
  border-color: #1DB954;
}

.platform-card--apple:hover {
  border-color: #fc3c44;
}

.platform-card__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.platform-card__text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.platform-card__text p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.platform-card__link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Sermon Cards */
.sermon-grid {
  gap: 24px;
}

.sermon-card {
  display: flex;
  flex-direction: column;
}

.sermon-card__thumb {
  position: relative;
  overflow: hidden;
}

.sermon-card__thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}

.sermon-card:hover .sermon-card__thumb img {
  transform: scale(1.05);
}

.sermon-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
}

.sermon-card:hover .sermon-card__play {
  background: var(--primary);
}

.sermon-card .card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sermon-card .card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.sermon-card .card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* =====================
   RESPONSIVE SERMONS
   ===================== */
@media (max-width: 768px) {
  .featured-sermon {
    flex-direction: column;
  }

  .featured-sermon__info h3 {
    font-size: 1.4rem;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .sermon-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   EVENTS PAGE
   ===================== */
.featured-event {
  display: flex;
  gap: 48px;
  align-items: stretch;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.featured-event__date {
  min-width: 220px;
  background: linear-gradient(135deg, var(--primary), #1a2a4a);
  color: #fff;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.featured-event__month,
.featured-event__day {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-event__date strong {
  font-size: 3rem;
  line-height: 1;
  margin: 10px 0;
}

.featured-event__info {
  flex: 1;
  padding: 36px;
}

.featured-event__info h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  margin-top: 12px;
}

.event-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.event-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.event-description {
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.event-grid {
  gap: 24px;
}

.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.event-card__date {
  background: linear-gradient(135deg, var(--primary), #1a2a4a);
  color: #fff;
  padding: 22px 20px;
  text-align: center;
}

.event-card__date span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.event-card__date strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
  margin-top: 6px;
}

.event-card .card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.event-card .card__body h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.event-card .card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.event-type-card:hover {
  border-color: var(--primary);
}

.calendar-embed {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.calendar-embed iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
}

.calendar-embed__fallback {
  margin-top: 16px;
  color: var(--muted);
  text-align: center;
}

.calendar-embed__fallback a {
  color: var(--primary);
  font-weight: 700;
}

.event-type-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

@media (max-width: 700px) {
  .calendar-embed {
    overflow-x: auto;
    border-radius: 14px;
  }

  .calendar-embed iframe {
    min-width: 680px;
    height: 640px;
  }
}

.small-groups-grid {
  gap: 24px;
}

.small-groups-heading {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 36px 0 18px;
}

.small-groups-heading:first-of-type {
  margin-top: 0;
}

.small-group-card .card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 240px;
}

.small-group-card .card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* =====================
   KIDS & STUDENTS PAGE
   ===================== */
.kids-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 130px) 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 179, 106, 0.24), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(58, 113, 193, 0.18), transparent 26%),
    linear-gradient(135deg, #101827 0%, #1d2636 48%, #111827 100%);
  color: #fff;
}

.kids-hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -22% 45%;
  height: 260px;
  border-radius: 999px 999px 0 0;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-4deg);
}

.kids-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.kids-hero__content h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
  margin: 12px 0 20px;
}

.kids-hero__content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  max-width: 680px;
}

.kids-hero__panel {
  display: grid;
  gap: 16px;
}

.kids-hero__card,
.kids-hero__mini-grid > div {
  background: rgba(255, 255, 255, 0.94);
  color: #182033;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.kids-hero__card {
  padding: 30px;
  border-radius: 24px;
}

.kids-hero__card span {
  color: var(--primary);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.kids-hero__card strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.kids-hero__card p {
  color: #4b5563;
}

.kids-hero__mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.kids-hero__mini-grid > div {
  border-radius: 18px;
  padding: 18px;
}

.kids-hero__mini-grid strong,
.kids-hero__mini-grid span {
  display: block;
}

.kids-hero__mini-grid strong {
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.kids-hero__mini-grid span {
  color: #667085;
  font-size: 0.88rem;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading-row .section__title,
.section-heading-row .section__subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.kids-leader-grid {
  align-items: stretch;
}

.kids-leader-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.kids-leader-card__initials {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(214, 179, 106, 0.24), rgba(58, 113, 193, 0.18));
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.kids-leader-card__role {
  display: block;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.kids-feature-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.kids-feature-card {
  padding: 28px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.kids-feature-card--wide {
  grid-column: span 2;
}

.kids-feature-card span {
  display: inline-block;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}

.kids-feature-card h3 {
  margin-bottom: 10px;
}

.kids-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.kids-paths article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(135deg, rgba(214, 179, 106, 0.6), rgba(19, 31, 52, 0.92));
  color: #fff;
}

.kids-paths article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(135deg, rgba(58, 113, 193, 0.62), rgba(19, 31, 52, 0.94));
}

.kids-paths .section-kicker,
.kids-paths p {
  color: rgba(255, 255, 255, 0.82);
}

.kids-paths h2 {
  margin: 8px 0 10px;
}

.kids-cta p {
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   RESPONSIVE EVENTS
   ===================== */
@media (max-width: 768px) {
  .featured-event {
    flex-direction: column;
    gap: 0;
  }

  .featured-event__date {
    min-width: 0;
    padding: 28px 20px;
  }

  .featured-event__date strong {
    font-size: 2.4rem;
  }

  .featured-event__info {
    padding: 28px 22px;
  }

  .featured-event__info h3 {
    font-size: 1.4rem;
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .kids-hero__grid,
  .section-heading-row,
  .kids-feature-layout,
  .kids-paths {
    grid-template-columns: 1fr;
  }

  .kids-feature-card--wide {
    grid-column: auto;
  }

  .kids-leader-card {
    grid-template-columns: 1fr;
  }

  .kids-hero__mini-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   LIGHT BLUE SITE THEME
   ===================== */
:root {
  --bg: #ffffff;
  --surface: #f6f9ff;
  --text: #111827;
  --muted: #4b5563;
  --card: #ffffff;
  --border: #dbe7f6;
  --primary: #1f8fff;
  --link: #116dcc;
  --shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

html,
body {
  background: #ffffff;
  color: #111827;
}

a {
  color: var(--link);
}

.site-header {
  border-bottom: 1px solid #e5edf8;
}

.top-banner .btn--primary,
.btn--primary,
.give-now-button,
.prayer-submit-btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.top-banner .btn--primary:hover,
.btn--primary:hover,
.give-now-button:hover,
.prayer-submit-btn:hover {
  background: #0f76da;
  border-color: #0f76da;
  color: #ffffff;
}

.top-banner .btn--ghost,
.btn--ghost {
  color: #111827;
  border-color: #111827;
  background: #ffffff;
}

.top-banner .btn--ghost:hover,
.btn--ghost:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: #eef6ff;
}

.hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(31, 143, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.hero h1,
.hero-service-times span,
.hero-service-times strong,
.section__title,
.card__body h3,
.pastor-preview__text h2,
.split-section h2,
.home-location-card h3,
.statement__label h2,
.belief-card h3,
.team-card .card__body h3,
.prayer-section__text h2,
.subscribe-form h2,
.kids-feature-card h3 {
  color: #111827;
}

.hero p,
.section__subtitle,
.card__body p,
.highlight__text p,
.pastor-preview__text p,
.split-section p,
.home-location-card p,
.statement p,
.belief-card p,
.team-card .card__body p,
.prayer-section__text p,
.subscribe-benefits p,
.kids-feature-card p {
  color: #4b5563;
}

.section,
.section--alt,
.highlight,
.about-statements,
.pastor-story-section,
.contact-prayer-section,
.subscribe-hero,
.subscribe-section,
.small-groups-hero,
.small-groups-section,
.kids-hero,
.kids-main,
.kids-cta {
  background: #ffffff;
}

.section--alt,
.highlight,
.small-groups-section,
.kids-main {
  background: #f6f9ff;
}

.card,
.belief-card,
.home-location-card,
.pastor-preview__image,
.team-card,
.pastor-story-card,
.subscribe-form,
.kids-feature-card,
.small-group-card,
.event-card,
.featured-event,
.contact-info-list > div {
  background: #ffffff;
  border-color: #dbe7f6;
  box-shadow: var(--shadow);
}

.text-link,
.section-kicker,
.visit-service-card__time,
.visit-location-panel .section-kicker,
.give-hero .section-kicker,
.visit-hero-simple .section-kicker {
  color: var(--primary);
}

.cta-banner,
.visit-location-simple {
  background: linear-gradient(135deg, #0f76da 0%, #1f8fff 100%);
}

.cta-banner h2,
.cta-banner p,
.visit-location-simple .section-kicker {
  color: #ffffff;
}

.visit-location-simple .visit-location-panel {
  background: #ffffff;
}

.mega-menu__feature,
.giving-tab.is-active,
.giving-step__number {
  background: var(--primary);
  color: #ffffff;
}

.mega-menu .mega-menu__feature a {
  color: #ffffff;
}

.footer-newsletter__form .btn {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.site-footer {
  background: #0b2f57;
}

.footer-social-list a::before {
  color: #8fd0ff;
}

.giving-tabs {
  background: #eef6ff;
  border-color: #dbe7f6;
}

.other-ways-card {
  background: #f6f9ff;
  border-color: #dbe7f6;
}

.phone-placeholder__screen {
  border-color: #0b2f57;
}

.page-hero__box {
  background: rgba(255, 255, 255, 0.92);
  color: #111827;
}

.page-hero__box h1 {
  color: #111827;
}

.cta-banner--connected {
  background: #ffffff;
  border-top: 1px solid #dbe7f6;
  border-bottom: 1px solid #dbe7f6;
}

.cta-banner--connected h2 {
  color: #111827;
}

.cta-banner--connected p {
  color: #4b5563;
}

.cta-banner--connected .btn,
.cta-banner--connected .btn--primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.cta-banner--connected .btn:hover,
.cta-banner--connected .btn--primary:hover {
  background: #0f76da;
  border-color: #0f76da;
  color: #ffffff;
}

/* =====================
   BRIGHT KIDS MINISTRY THEME
   ===================== */
.kids-hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 205, 71, 0.52), transparent 18%),
    radial-gradient(circle at 86% 16%, rgba(255, 119, 168, 0.42), transparent 22%),
    radial-gradient(circle at 70% 88%, rgba(46, 213, 115, 0.26), transparent 24%),
    linear-gradient(135deg, #eaf6ff 0%, #ffffff 48%, #fff6dd 100%);
  color: #111827;
}

.kids-hero::before {
  content: "";
  position: absolute;
  inset: 34px auto auto 6%;
  width: 82px;
  height: 82px;
  border-radius: 24px;
  background: #ffcd47;
  transform: rotate(14deg);
  opacity: 0.7;
}

.kids-hero::after {
  inset: auto -8% -18% 46%;
  height: 300px;
  background:
    linear-gradient(90deg, rgba(31, 143, 255, 0.24), rgba(255, 119, 168, 0.24)),
    rgba(255, 255, 255, 0.6);
}

.kids-hero .section-kicker {
  color: #ff7a1a;
}

.kids-hero__content h1 {
  color: #111827;
}

.kids-hero__content p {
  color: #374151;
}

.kids-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}

.kids-hero__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(31, 143, 255, 0.24);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
  font-weight: 800;
}

.kids-hero__badges span:nth-child(1) {
  border-color: rgba(31, 143, 255, 0.45);
}

.kids-hero__badges span:nth-child(2) {
  border-color: rgba(255, 119, 168, 0.55);
}

.kids-hero__badges span:nth-child(3) {
  border-color: rgba(46, 213, 115, 0.55);
}

.kids-hero__card,
.kids-hero__mini-grid > div {
  border: 1px solid rgba(31, 143, 255, 0.18);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 50px rgba(31, 143, 255, 0.14);
}

.kids-hero__card {
  border-top: 8px solid #1f8fff;
}

.kids-hero__card span {
  color: #ff7a1a;
}

.kids-hero__mini-grid > div:nth-child(1) {
  background: #eaf6ff;
}

.kids-hero__mini-grid > div:nth-child(2) {
  background: #fff6dd;
}

.kids-hero__mini-grid > div:nth-child(3) {
  background: #fff0f6;
}

.kids-hero__mini-grid > div:nth-child(4) {
  background: #edfff4;
}

.kids-mini-icon {
  width: 34px;
  height: 34px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #ffffff;
  color: var(--primary) !important;
  font-weight: 900;
}

.kids-leaders {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.kids-leader-card {
  background: #ffffff;
  border: 1px solid #dbe7f6;
  box-shadow: 0 18px 42px rgba(31, 143, 255, 0.1);
}

.kids-leader-card:nth-child(1) {
  border-top: 8px solid #ffcd47;
}

.kids-leader-card:nth-child(2) {
  border-top: 8px solid #ff77a8;
}

.kids-leader-card__initials {
  color: #111827;
  background: linear-gradient(135deg, #ffcd47, #ffffff);
  box-shadow: inset 0 0 0 2px rgba(255, 205, 71, 0.55);
}

.kids-leader-card:nth-child(2) .kids-leader-card__initials {
  background: linear-gradient(135deg, #ff77a8, #ffffff);
  box-shadow: inset 0 0 0 2px rgba(255, 119, 168, 0.42);
}

.kids-leader-card__role {
  color: #1f8fff;
}

.kids-feature-layout {
  gap: 24px;
}

.kids-feature-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-color: #dbe7f6;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.07);
}

.kids-feature-card::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  right: -30px;
  top: -30px;
  background: rgba(31, 143, 255, 0.12);
}

.kids-feature-card:nth-child(1)::after {
  background: rgba(255, 205, 71, 0.28);
}

.kids-feature-card:nth-child(2)::after {
  background: rgba(31, 143, 255, 0.16);
}

.kids-feature-card:nth-child(3)::after {
  background: rgba(255, 119, 168, 0.2);
}

.kids-feature-card:nth-child(4)::after {
  background: rgba(46, 213, 115, 0.18);
}

.kids-feature-card span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #eaf6ff;
  color: #1f8fff;
}

.kids-feature-card:nth-child(1) span {
  background: #fff6dd;
  color: #9a6500;
}

.kids-feature-card:nth-child(3) span {
  background: #fff0f6;
  color: #bd2d6a;
}

.kids-feature-card:nth-child(4) span {
  background: #edfff4;
  color: #087c3d;
}

.kids-paths article {
  min-height: 310px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(135deg, #1f8fff, #2ed573 100%);
  box-shadow: 0 22px 44px rgba(31, 143, 255, 0.18);
}

.kids-paths article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.44) 100%),
    linear-gradient(135deg, #ff77a8, #ffcd47 100%);
}

.kids-paths h2 {
  color: #ffffff;
}

.kids-paths .section-kicker,
.kids-paths p {
  color: rgba(255, 255, 255, 0.9);
}

.kids-cta {
  background:
    radial-gradient(circle at 18% 25%, rgba(255, 205, 71, 0.45), transparent 24%),
    linear-gradient(135deg, #1f8fff 0%, #0f76da 100%);
}

.kids-cta h2,
.kids-cta p {
  color: #ffffff;
}

.kids-cta .btn--primary {
  background: #ffffff;
  border-color: #ffffff;
  color: #0f76da;
}

.kids-cta .btn--primary:hover {
  background: #eaf6ff;
  border-color: #eaf6ff;
  color: #0f76da;
}

/* =====================
   KIDS MINISTRY QUESTION PAGE
   ===================== */
.kids-question-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 74px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 205, 71, 0.5), transparent 20%),
    radial-gradient(circle at 86% 18%, rgba(255, 119, 168, 0.38), transparent 22%),
    radial-gradient(circle at 72% 88%, rgba(46, 213, 115, 0.24), transparent 24%),
    linear-gradient(135deg, #eaf6ff 0%, #ffffff 50%, #fff6dd 100%);
  border-bottom: 1px solid #dbe7f6;
}

.kids-question-hero::before {
  content: "";
  position: absolute;
  left: 8%;
  top: 28px;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: rgba(255, 205, 71, 0.7);
  transform: rotate(14deg);
}

.kids-question-hero::after {
  content: "?";
  position: absolute;
  right: 9%;
  bottom: -18px;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(31, 143, 255, 0.12);
  color: #1f8fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.kids-question-hero .wrap {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.kids-question-hero .section-kicker {
  color: #ff7a1a;
}

.kids-question-hero h1 {
  max-width: 760px;
  margin: 12px auto 18px;
  color: #111827;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 5.75rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.kids-question-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: #374151;
  font-size: 1.12rem;
}

.kids-question-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.kids-question-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid #dbe7f6;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(31, 143, 255, 0.12);
}

.kids-question-card__intro {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 119, 168, 0.18), transparent 36%),
    linear-gradient(135deg, #eaf6ff 0%, #ffffff 100%);
  border: 1px solid rgba(31, 143, 255, 0.16);
}

.kids-question-card__intro h2 {
  margin: 10px 0 12px;
  color: #111827;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.kids-question-card__intro p {
  color: #4b5563;
}

.kids-question-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.kids-question-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(31, 143, 255, 0.22);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
}

.kids-question-highlights span:nth-child(2) {
  border-color: rgba(255, 119, 168, 0.4);
}

.kids-question-highlights span:nth-child(3) {
  border-color: rgba(46, 213, 115, 0.38);
}

.kids-question-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 24px;
  background: #f7fbff;
  border: 1px solid #dbe7f6;
}

.kids-question-form .form-group label {
  color: #111827;
}

.kids-question-form .form-group input,
.kids-question-form .form-group select,
.kids-question-form .form-group textarea {
  min-height: 52px;
  border-radius: 14px;
  background: #ffffff;
  border-color: #dbe7f6;
  color: #111827;
}

.kids-question-form .form-group textarea {
  min-height: 150px;
}

.kids-question-form .form-group input::placeholder,
.kids-question-form .form-group textarea::placeholder {
  color: #6b7280;
}

.kids-question-form .form-group input:focus,
.kids-question-form .form-group select:focus,
.kids-question-form .form-group textarea:focus {
  border-color: #1f8fff;
  box-shadow: 0 0 0 4px rgba(31, 143, 255, 0.12);
}

.kids-question-form .form-status {
  margin: 0;
  border-radius: 16px;
  background: #eef6ff;
  color: #17466f;
  border: 1px solid rgba(31, 143, 255, 0.35);
}

@media (max-width: 768px) {
  .kids-question-hero {
    padding: 70px 0 56px;
  }

  .kids-question-hero::before,
  .kids-question-hero::after {
    opacity: 0.45;
  }

  .kids-question-card {
    grid-template-columns: 1fr;
    gap: 22px;
    border-radius: 22px;
  }

  .kids-question-card__intro {
    position: static;
  }
}

/* =====================
   ALC HOMEPAGE
   ===================== */
.home-page {
  --home-navy: #071b33;
  --home-navy-soft: #0d2d50;
  --home-blue: #137fc8;
  --home-blue-bright: #42b6e8;
  --home-gold: #d6b36a;
  --home-gold-light: #f1d99f;
  --home-cream: #f8f5ee;
  --home-ink: #17212b;
  --home-line: rgba(7, 27, 51, 0.14);
}

.home-page .home-main {
  overflow: hidden;
  background: #ffffff;
  color: var(--home-ink);
}

.home-page .home-main a:focus-visible,
.home-page .site-header a:focus-visible,
.home-page .site-header button:focus-visible,
.home-page .site-footer a:focus-visible,
.home-page .site-footer input:focus-visible,
.home-page .site-footer button:focus-visible {
  outline: 3px solid #f0bd52;
  outline-offset: 4px;
}

.home-page .home-hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(92px, 12vw, 150px) 0;
  background:
    radial-gradient(circle at 76% 40%, rgba(66, 182, 232, 0.18), transparent 28%),
    linear-gradient(125deg, #06182d 0%, #092745 55%, #0b345b 100%);
  color: #ffffff;
}

.home-page .home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
}

.home-page .home-hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.home-page .home-hero__content {
  max-width: 760px;
}

.home-page .home-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--home-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-page .home-hero .home-eyebrow,
.home-page .home-message .home-eyebrow {
  color: var(--home-gold-light);
}

.home-page .home-hero h1 {
  max-width: 800px;
  margin: 0 0 24px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.home-page .home-hero__content > p {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.home-page .home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.home-page .home-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-page .home-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.home-page .home-button--gold {
  border-color: var(--home-gold);
  background: var(--home-gold);
  color: #15202a;
}

.home-page .home-button--gold:hover {
  border-color: var(--home-gold-light);
  background: var(--home-gold-light);
  color: #15202a;
}

.home-page .home-button--blue {
  border-color: var(--home-blue);
  background: var(--home-blue);
  color: #ffffff;
}

.home-page .home-button--blue:hover {
  border-color: #0d6fab;
  background: #0d6fab;
  color: #ffffff;
}

.home-page .home-button--outline-light {
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
}

.home-page .home-button--outline-light:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--home-navy);
}

.home-page .home-button--outline-dark {
  border-color: var(--home-navy);
  color: var(--home-navy);
}

.home-page .home-button--outline-dark:hover {
  background: var(--home-navy);
  color: #ffffff;
}

.home-page .home-hero__mark {
  position: relative;
  display: grid;
  min-height: 420px;
  place-items: center;
}

.home-page .home-hero__mark::before,
.home-page .home-hero__mark::after {
  content: "";
  position: absolute;
  width: min(34vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  transform: rotate(45deg);
}

.home-page .home-hero__mark::after {
  width: min(25vw, 280px);
  border-color: rgba(214, 179, 106, 0.32);
}

.home-page .home-hero__mark img {
  position: relative;
  z-index: 2;
  width: min(28vw, 320px);
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.34));
}

.home-page .home-hero__beam {
  position: absolute;
  z-index: 1;
  width: min(48vw, 560px);
  height: 180px;
  background: linear-gradient(90deg, transparent, rgba(214, 179, 106, 0.16), transparent);
  clip-path: polygon(50% 38%, 100% 0, 100% 100%, 50% 62%, 0 100%, 0 0);
}

.home-page .home-hero__geometry {
  position: absolute;
  inset: auto 3vw -80px auto;
  width: 260px;
  height: 260px;
  opacity: 0.2;
  transform: rotate(45deg);
}

.home-page .home-hero__geometry span {
  position: absolute;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.home-page .home-hero__geometry span:nth-child(1) { inset: 0 auto auto 86px; }
.home-page .home-hero__geometry span:nth-child(2) { inset: 86px auto auto 0; }
.home-page .home-hero__geometry span:nth-child(3) { inset: 86px auto auto 86px; background: rgba(66, 182, 232, 0.28); }
.home-page .home-hero__geometry span:nth-child(4) { inset: 86px 0 auto auto; }
.home-page .home-hero__geometry span:nth-child(5) { inset: 172px auto auto 86px; background: rgba(214, 179, 106, 0.22); }

.home-page .home-schedule {
  position: relative;
  z-index: 3;
  background: var(--home-cream);
  border-bottom: 1px solid var(--home-line);
}

.home-page .home-schedule__layout {
  display: grid;
  grid-template-columns: 0.85fr 2fr 0.95fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}

.home-page .home-schedule__heading h2 {
  color: var(--home-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
}

.home-page .home-schedule__heading .home-eyebrow {
  margin-bottom: 8px;
}

.home-page .home-schedule__services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-right: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}

.home-page .home-schedule__service {
  padding: 6px clamp(18px, 2.5vw, 34px);
}

.home-page .home-schedule__service + .home-schedule__service {
  border-left: 1px solid var(--home-line);
}

.home-page .home-schedule__service span,
.home-page .home-schedule__service strong {
  display: block;
}

.home-page .home-schedule__service span {
  min-height: 2.8em;
  color: #53606c;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.home-page .home-schedule__service strong {
  color: var(--home-navy);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.1;
}

.home-page .home-schedule__directions {
  display: block;
  color: var(--home-ink);
  font-style: normal;
  line-height: 1.45;
  text-decoration: none;
}

.home-page .home-schedule__directions span,
.home-page .home-schedule__directions strong {
  display: block;
}

.home-page .home-schedule__directions span {
  margin-bottom: 7px;
  color: #53606c;
  font-size: 0.88rem;
}

.home-page .home-schedule__directions strong {
  color: var(--home-blue);
}

.home-page .home-section {
  padding: clamp(78px, 9vw, 124px) 0;
}

.home-page .home-section__heading {
  max-width: 760px;
  margin: 0 auto clamp(38px, 5vw, 64px);
  text-align: center;
}

.home-page .home-section__heading--left {
  margin-left: 0;
  text-align: left;
}

.home-page .home-section__heading h2 {
  margin-bottom: 16px;
  color: var(--home-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.home-page .home-section__heading p {
  color: #53606c;
  font-size: 1.08rem;
}

.home-page .home-pathways {
  background: #ffffff;
}

.home-page .home-pathways__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}

.home-page .home-pathway {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 44px);
  overflow: hidden;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: #ffffff;
  color: var(--home-ink);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.home-page .home-pathway::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(19, 127, 200, 0.24);
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.home-page .home-pathway:hover {
  background: #f2f8fc;
  color: var(--home-ink);
  text-decoration: none;
}

.home-page .home-pathway:hover::after {
  transform: rotate(45deg) translate(-12px, -12px);
}

.home-page .home-pathway--new {
  background: var(--home-navy);
  color: #ffffff;
}

.home-page .home-pathway--new:hover {
  background: var(--home-navy-soft);
  color: #ffffff;
}

.home-page .home-pathway--kids {
  border-top: 5px solid;
  border-image: linear-gradient(90deg, #1f8fff, #ffcd47, #ff77a8, #2ed573) 1;
}

.home-page .home-pathway__number {
  display: block;
  margin-bottom: auto;
  color: var(--home-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.home-page .home-pathway--new .home-pathway__number {
  color: var(--home-gold-light);
}

.home-page .home-pathway h3 {
  margin: 36px 0 10px;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 400;
}

.home-page .home-pathway p {
  margin-bottom: 24px;
  color: #5b6671;
}

.home-page .home-pathway--new p {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .home-pathway strong {
  margin-top: auto;
  color: var(--home-blue);
}

.home-page .home-pathway--new strong {
  color: var(--home-gold-light);
}

.home-page .home-welcome {
  background: var(--home-cream);
}

.home-page .home-welcome__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.home-page .home-welcome__brand {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--home-navy), var(--home-navy-soft));
}

.home-page .home-welcome__brand img {
  position: relative;
  z-index: 2;
  width: min(68%, 320px);
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.34));
}

.home-page .home-welcome__diamonds {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(45deg);
}

.home-page .home-welcome__diamonds::before,
.home-page .home-welcome__diamonds::after {
  content: "";
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(214, 179, 106, 0.34);
}

.home-page .home-welcome__diamonds::after {
  inset: 104px;
  background: rgba(66, 182, 232, 0.12);
}

.home-page .home-welcome__content h2 {
  max-width: 700px;
  margin-bottom: 22px;
  color: var(--home-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.home-page .home-welcome__content > p {
  max-width: 650px;
  margin-bottom: 22px;
  color: #53606c;
  font-size: 1.1rem;
}

.home-page .home-welcome__content address {
  margin-bottom: 30px;
  color: var(--home-ink);
  font-style: normal;
  font-weight: 700;
}

.home-page .home-message {
  background:
    radial-gradient(circle at 8% 18%, rgba(214, 179, 106, 0.14), transparent 22%),
    linear-gradient(125deg, var(--home-navy), #0b345b);
  color: #ffffff;
}

.home-page .home-message__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: center;
}

.home-page .home-message__content h2 {
  margin-bottom: 20px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.home-page .home-message__content > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.home-page .home-message__media {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.28);
}

.home-page .home-weekly {
  background: #ffffff;
}

.home-page .home-weekly__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(280px, 0.8fr);
  gap: 18px;
}

.home-page .home-weekly__card,
.home-page .home-weekly__events {
  min-height: 330px;
  padding: clamp(28px, 4vw, 44px);
}

.home-page .home-weekly__card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--home-line);
  background: var(--home-cream);
}

.home-page .home-weekly__card > span {
  color: var(--home-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-page .home-weekly__card h3,
.home-page .home-weekly__events h3 {
  margin: 26px 0 20px;
  color: var(--home-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.home-page .home-weekly__card p {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 30px;
}

.home-page .home-weekly__card p strong {
  color: var(--home-navy);
  font-size: 1.45rem;
}

.home-page .home-weekly__card a {
  margin-top: auto;
  color: var(--home-blue);
  font-weight: 800;
}

.home-page .home-weekly__events {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #dceef8;
}

.home-page .home-weekly__events p {
  margin-bottom: 30px;
  color: #455461;
}

.home-page .home-weekly__events .home-button {
  margin-top: auto;
}

.home-page .home-response {
  padding: clamp(72px, 8vw, 106px) 0;
  background: var(--home-cream);
}

.home-page .home-response__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--home-gold);
  border: 1px solid var(--home-gold);
}

.home-page .home-response__grid article {
  padding: clamp(34px, 5vw, 60px);
  background: var(--home-navy);
  color: #ffffff;
}

.home-page .home-response__grid article:nth-child(2) {
  background: var(--home-navy-soft);
}

.home-page .home-response__grid span {
  color: var(--home-gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.home-page .home-response__grid h3 {
  margin: 24px 0 14px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
}

.home-page .home-response__grid p {
  max-width: 570px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
}

.home-page .home-response__grid a {
  color: var(--home-gold-light);
  font-weight: 800;
}

@media (max-width: 1080px) {
  .home-page .home-schedule__layout {
    grid-template-columns: 1fr;
  }

  .home-page .home-schedule__heading {
    text-align: center;
  }

  .home-page .home-schedule__services {
    border-right: 0;
    border-left: 0;
  }

  .home-page .home-schedule__directions {
    text-align: center;
  }

  .home-page .home-weekly__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-weekly__events {
    grid-column: 1 / -1;
    min-height: 260px;
  }
}

@media (max-width: 820px) {
  .home-page .home-hero {
    min-height: auto;
    padding: 84px 0;
  }

  .home-page .home-hero__layout,
  .home-page .home-welcome__layout,
  .home-page .home-message__layout {
    grid-template-columns: 1fr;
  }

  .home-page .home-hero__content {
    text-align: center;
  }

  .home-page .home-hero__content > p {
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .home-hero .home-actions {
    justify-content: center;
  }

  .home-page .home-hero__mark {
    min-height: 320px;
  }

  .home-page .home-hero__mark img {
    width: min(48vw, 270px);
  }

  .home-page .home-hero__mark::before {
    width: min(58vw, 330px);
  }

  .home-page .home-hero__mark::after {
    width: min(42vw, 240px);
  }

  .home-page .home-pathways__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-welcome__brand {
    min-height: 380px;
  }

  .home-page .home-message__content {
    text-align: center;
  }

  .home-page .home-message__content .home-actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .home-page .home-hero {
    padding: 68px 0 76px;
  }

  .home-page .home-hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.5rem);
  }

  .home-page .home-hero__mark {
    min-height: 250px;
  }

  .home-page .home-hero__mark img {
    width: min(58vw, 230px);
  }

  .home-page .home-hero__beam {
    width: 110vw;
  }

  .home-page .home-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-page .home-button {
    width: 100%;
  }

  .home-page .home-schedule__services,
  .home-page .home-pathways__grid,
  .home-page .home-weekly__grid,
  .home-page .home-response__grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-schedule__services {
    gap: 0;
  }

  .home-page .home-schedule__service {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 17px 0;
  }

  .home-page .home-schedule__service + .home-schedule__service {
    border-top: 1px solid var(--home-line);
    border-left: 0;
  }

  .home-page .home-schedule__service span {
    min-height: 0;
  }

  .home-page .home-pathway {
    min-height: 255px;
  }

  .home-page .home-welcome__brand {
    min-height: 310px;
  }

  .home-page .home-welcome__diamonds {
    width: 240px;
    height: 240px;
  }

  .home-page .home-weekly__events {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .home-button,
  .home-page .home-pathway,
  .home-page .home-pathway::after {
    transition: none;
  }

  .home-page .home-button:hover {
    transform: none;
  }
}

/* Small Groups seasonal break */
.small-groups-season__intro,
.small-groups-season__closing {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.small-groups-season__intro p,
.small-groups-season__closing p {
  font-size: 1.08rem;
}

.small-groups-season__accent {
  display: block;
  margin-bottom: 12px;
  font-size: 1.75rem;
}

.small-groups-season__section,
.small-groups-season__closing {
  margin-top: clamp(48px, 7vw, 76px);
}

.small-groups-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.small-groups-action {
  display: flex;
  min-height: 140px;
  padding: 28px;
  color: inherit;
  text-align: center;
  text-decoration: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.small-groups-action__title {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 800;
}

.small-groups-action span + span {
  margin-top: 8px;
}

.small-groups-action:hover,
.small-groups-action:focus-visible {
  transform: translateY(-3px);
}

.small-groups-action:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

.small-groups-benefits {
  display: grid;
  max-width: 780px;
  margin: 30px auto 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  list-style: none;
}

.small-groups-benefits li {
  position: relative;
  padding: 18px 20px 18px 48px;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.small-groups-benefits li::before {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--primary);
  content: "✓";
  font-weight: 900;
}

.small-groups-benefits li:last-child {
  grid-column: 1 / -1;
}

.small-groups-season__closing-line {
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 640px) {
  .small-groups-actions,
  .small-groups-benefits {
    grid-template-columns: 1fr;
  }

  .small-groups-benefits li:last-child {
    grid-column: auto;
  }
}
