/* ============================================================
   Hope Chapel — Apple-style Design System
   One stylesheet to rule them all.
============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --maroon: #7B2D38;
  --maroon-dark: #5B1A24;
  --maroon-deeper: #3D0F18;
  --gold: #C9986A;
  --gold-light: #D4985A;
  --sage: #4A6B4E;
  --cream: #FAF9F7;

  /* Apple-tuned neutrals */
  --ink: #1D1D1F;
  --ink-2: #424245;
  --grey-1: #6E6E73;
  --grey-2: #86868B;
  --grey-3: #D2D2D7;
  --grey-bg: #F5F5F7;
  --bg: #FFFFFF;
  --bg-warm: #FAF9F7;

  /* Surfaces */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(0, 0, 0, 0.04);
  --hairline: rgba(0, 0, 0, 0.08);

  /* Type */
  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', 'Georgia', serif;

  /* Spacing scale */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 48px; --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  /* Radii */
  --r-1: 8px;  --r-2: 12px; --r-3: 16px;
  --r-4: 20px; --r-5: 24px; --r-6: 32px;
  --r-pill: 999px;

  /* Timing */
  --t-fast: 200ms;
  --t-base: 400ms;
  --t-slow: 900ms;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.4, 0, 0.6, 1);

  /* Layout */
  --maxw: 1280px;
  --maxw-narrow: 680px;
  --maxw-wide: 1440px;

  /* Shadow */
  --shadow-1: 0 1px 2px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-2: 0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.10);
  --shadow-3: 0 20px 60px rgba(91,26,36,0.18);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --bg-warm: #0A0A0A;
    --grey-bg: #1C1C1E;
    --ink: #F5F5F7;
    --ink-2: #D2D2D7;
    --grey-1: #98989D;
    --grey-3: #38383A;
    --glass-bg: rgba(28, 28, 30, 0.72);
    --glass-border: rgba(255, 255, 255, 0.08);
    --hairline: rgba(255, 255, 255, 0.10);
    --shadow-1: 0 1px 2px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.6);
    --shadow-2: 0 4px 12px rgba(0,0,0,0.5), 0 16px 48px rgba(0,0,0,0.7);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.serif, .pull-quote, blockquote { font-family: var(--font-serif); font-weight: 500; }

.h1 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.h2 {
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.h3 {
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.h4 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
}
.lede {
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 400;
}
.muted { color: var(--grey-1); }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--sp-4);
}
.wrap-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 var(--sp-4); }
.wrap-wide { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 var(--sp-4); }
@media (min-width: 640px) { .wrap, .wrap-narrow, .wrap-wide { padding: 0 var(--sp-5); } }
@media (min-width: 1024px) { .wrap, .wrap-narrow, .wrap-wide { padding: 0 var(--sp-6); } }

.apple-section {
  padding: clamp(64px, 10vw, 128px) 0;
  position: relative;
}
.apple-section.tight { padding: clamp(48px, 7vw, 88px) 0; }
.apple-section.dark { background: var(--ink); color: var(--cream); }
.apple-section.dark h1, .apple-section.dark h2, .apple-section.dark h3, .apple-section.dark h4 { color: var(--cream); }
.apple-section.warm { background: var(--bg-warm); }
.apple-section.grey { background: var(--grey-bg); }

.center { text-align: center; }
.flow > * + * { margin-top: var(--sp-4); }
.flow-lg > * + * { margin-top: var(--sp-5); }

/* ---------- Nav ---------- */
.apple-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.apple-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--hairline);
}
@media (prefers-color-scheme: dark) {
  .apple-nav { background: rgba(0, 0, 0, 0.6); }
  .apple-nav.scrolled { background: rgba(0, 0, 0, 0.9); }
}
.apple-nav__inner {
  max-width: var(--maxw-wide);
  margin: 0 auto;
  padding: 0 var(--sp-4);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .apple-nav__inner { padding: 0 var(--sp-6); height: 64px; } }

.apple-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.apple-nav__brand .brand-mark {
  width: 22px; height: 26px;
  position: relative;
  color: var(--maroon);
}
.apple-nav__brand .brand-mark::before,
.apple-nav__brand .brand-mark::after {
  content: ''; position: absolute; background: currentColor;
}
.apple-nav__brand .brand-mark::before {
  left: 50%; top: 0; width: 3px; height: 100%;
  transform: translateX(-50%); border-radius: 2px;
}
.apple-nav__brand .brand-mark::after {
  left: 0; top: 30%; width: 100%; height: 3px; border-radius: 2px;
}

.apple-nav__links {
  display: none;
  gap: var(--sp-5);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-2);
}
.apple-nav__links a {
  position: relative;
  padding: 6px 4px;
  transition: color var(--t-fast) var(--ease);
}
.apple-nav__links a:hover { color: var(--ink); }
.apple-nav__links a.active { color: var(--ink); font-weight: 500; }
@media (min-width: 1024px) { .apple-nav__links { display: inline-flex; } }

.apple-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
}
.nav-mobile-btn {
  background: none; border: 0; padding: 6px;
  color: var(--ink); display: inline-flex;
}
@media (min-width: 1024px) { .nav-mobile-btn { display: none; } }

/* Mobile drawer */
.apple-drawer {
  position: fixed; inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  transform: translateX(100%);
  transition: transform var(--t-base) var(--ease);
  display: flex;
  flex-direction: column;
  padding: 80px var(--sp-5) var(--sp-5);
  overflow-y: auto;
}
.apple-drawer.open { transform: translateX(0); }
.apple-drawer a {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink);
}
.apple-drawer a.active { color: var(--maroon); }
@media (prefers-color-scheme: dark) { .apple-drawer { background: rgba(10,10,10,0.96); } }
@media (min-width: 1024px) { .apple-drawer { display: none; } }

/* ---------- Buttons ---------- */
.pill-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
  background: var(--maroon-dark);
  color: var(--cream);
  box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset;
}
.pill-cta:hover {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--gold-light) 140%);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(91,26,36,0.25);
}
.pill-cta--lg { padding: 16px 32px; font-size: 16px; }
.pill-cta--sm { padding: 8px 16px; font-size: 12px; }
.pill-cta--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--grey-3);
}
.pill-cta--ghost:hover {
  background: var(--grey-bg);
  border-color: var(--ink);
  color: var(--ink);
}
.pill-cta--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--maroon-deeper);
}
.pill-cta--gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 8px 24px rgba(201,152,106,0.4);
}
.pill-cta--light {
  background: var(--cream);
  color: var(--maroon-deeper);
}
.pill-cta--light:hover { background: #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.pill-cta--outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.4);
}
.pill-cta--outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--maroon-dark);
  font-weight: 500;
  font-size: 14px;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.text-link:hover { gap: 8px; color: var(--maroon); }

/* ---------- Hero ---------- */
.apple-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--sp-4) var(--sp-7);
  overflow: hidden;
  background: var(--bg-warm);
}
.apple-hero--short { min-height: 70vh; }
.apple-hero--mid { min-height: 80vh; }
.apple-hero--dark {
  background: linear-gradient(180deg, var(--maroon-deeper) 0%, var(--maroon-dark) 50%, var(--maroon-deeper) 100%);
  color: var(--cream);
}
.apple-hero--dark h1, .apple-hero--dark .h1 { color: var(--cream); }
.apple-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201,152,106,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(123,45,56,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.apple-hero--dark .apple-hero__bg {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(201,152,106,0.25) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 100%, rgba(74,107,78,0.18) 0%, transparent 50%);
}
.apple-hero__content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}
.apple-hero h1 { margin-bottom: var(--sp-5); }
.apple-hero .lede { max-width: 640px; margin: 0 auto var(--sp-6); }
.apple-hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) { .apple-hero__actions { flex-direction: row; } }

.scroll-nudge {
  position: absolute;
  left: 50%;
  bottom: var(--sp-6);
  transform: translateX(-50%);
  color: var(--grey-1);
  animation: nudge 2.4s var(--ease) infinite;
  opacity: 0.6;
}
@keyframes nudge {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  max-width: 720px;
  margin: var(--sp-7) auto 0;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.15);
}
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.hero-stat__num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.hero-stat__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,239,224,0.7);
  margin-top: 4px;
}

/* ---------- Bento grid ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
}
@media (min-width: 1024px) {
  .bento-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .bento-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cards ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-5);
  padding: var(--sp-6);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.glass-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }

.bento-card {
  background: var(--grey-bg);
  border-radius: var(--r-5);
  padding: clamp(var(--sp-5), 4vw, var(--sp-7));
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base) var(--ease), background var(--t-fast) var(--ease);
  position: relative;
  overflow: hidden;
}
.bento-card:hover { transform: translateY(-4px); background: #ECECEF; }
.bento-card--dark {
  background: var(--ink);
  color: var(--cream);
}
.bento-card--dark:hover { background: #2C2C2E; }
.bento-card--maroon {
  background: linear-gradient(160deg, var(--maroon-dark) 0%, var(--maroon-deeper) 100%);
  color: var(--cream);
}
.bento-card--gold {
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--maroon-deeper);
}
.bento-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.05);
  color: var(--maroon);
  margin-bottom: var(--sp-4);
}
.bento-card--dark .bento-card__icon,
.bento-card--maroon .bento-card__icon { background: rgba(255,255,255,0.1); color: var(--gold); }
.bento-card--gold .bento-card__icon { background: rgba(61,15,24,0.12); color: var(--maroon-deeper); }
.bento-card h3 { font-size: 24px; margin-bottom: var(--sp-2); }
.bento-card__copy { color: var(--ink-2); font-size: 15px; line-height: 1.5; margin-bottom: var(--sp-4); }
.bento-card--dark .bento-card__copy,
.bento-card--maroon .bento-card__copy { color: rgba(245,239,224,0.75); }
.bento-card--gold .bento-card__copy { color: rgba(61,15,24,0.78); }
.bento-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--maroon-dark);
  font-weight: 500;
  font-size: 14px;
  transition: gap var(--t-fast) var(--ease);
}
.bento-card--dark .bento-card__cta,
.bento-card--maroon .bento-card__cta { color: var(--gold); }
.bento-card:hover .bento-card__cta { gap: 10px; }

/* Plain card */
.card {
  background: var(--bg);
  border-radius: var(--r-4);
  padding: var(--sp-6);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--hairline);
}
.card-flat {
  background: var(--grey-bg);
  border-radius: var(--r-4);
  padding: var(--sp-6);
}

/* ---------- Forms ---------- */
.field { display: block; margin-bottom: var(--sp-4); }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.input, .textarea, .select {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--grey-3);
  border-radius: var(--r-2);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.input:focus, .textarea:focus, .select:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(123,45,56,0.12);
}
.textarea { resize: vertical; min-height: 120px; }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236E6E73' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.input--pill { border-radius: var(--r-pill); padding-left: 22px; padding-right: 22px; }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  cursor: pointer;
}
.checkbox-row input[type="checkbox"] { accent-color: var(--maroon); margin-top: 4px; }

/* Chip / segmented */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r-pill);
  background: var(--grey-bg);
  color: var(--ink-2);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.chip:hover { background: #ECECEF; color: var(--ink); }
.chip.active { background: var(--ink); color: var(--bg); }
.segmented {
  display: inline-flex;
  padding: 4px;
  background: var(--grey-bg);
  border-radius: var(--r-pill);
  gap: 2px;
}
.segmented button {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r-pill);
  background: transparent;
  border: 0;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.segmented button.active { background: var(--bg); color: var(--ink); box-shadow: var(--shadow-1); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  animation-fill-mode: forwards;
  will-change: transform, opacity;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal--slow { transition-duration: 1.3s; }
.reveal--fade { transform: none; }
.reveal--fade.in-view { transform: none; }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  animation-fill-mode: forwards;
}
.reveal-stagger.in-view > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 560ms; }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay: 640ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { transition: none !important; opacity: 1 !important; transform: none !important; }
  .scroll-nudge { animation: none; }
}

/* ---------- Live dot ---------- */
.live-dot {
  display: inline-block;
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FF3B30;
}
.live-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border: 2px solid rgba(255,59,48,0.4);
  border-radius: 50%;
  animation: pulse-ring 1.8s var(--ease) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ---------- Gradient tiles ---------- */
.tile-1 { background: linear-gradient(135deg, #7B2D38 0%, #C9986A 100%); }
.tile-2 { background: linear-gradient(135deg, #3D0F18 0%, #7B2D38 100%); }
.tile-3 { background: linear-gradient(135deg, #4A6B4E 0%, #C9986A 100%); }
.tile-4 { background: linear-gradient(135deg, #C9986A 0%, #D4985A 100%); }
.tile-5 { background: linear-gradient(135deg, #5B1A24 0%, #4A6B4E 100%); }
.tile-6 { background: linear-gradient(135deg, #D4985A 0%, #5B1A24 100%); }

/* ---------- Pull-quote / verse ---------- */
.verse {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto;
}
.verse-ref {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: var(--sp-5);
}

/* ---------- Footer ---------- */
.apple-footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--hairline);
  padding: var(--sp-9) 0 var(--sp-5);
  font-size: 12px;
  color: var(--grey-1);
}
.apple-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 640px) { .apple-footer__cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .apple-footer__cols { grid-template-columns: 2fr repeat(4, 1fr); } }
.apple-footer h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 var(--sp-3);
  letter-spacing: -0.01em;
}
.apple-footer ul { list-style: none; margin: 0; padding: 0; }
.apple-footer li { margin: 0 0 8px; }
.apple-footer a { color: var(--grey-1); }
.apple-footer a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.apple-footer__legal {
  padding-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  justify-content: space-between;
}
@media (min-width: 640px) {
  .apple-footer__legal { flex-direction: row; align-items: center; }
}
.apple-footer__social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.apple-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grey-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: all var(--t-fast) var(--ease);
}
.apple-footer__social a:hover { background: var(--maroon-dark); color: var(--cream); }

/* ---------- Sermon player strip ---------- */
.sermon-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-5);
  overflow: hidden;
}
@media (min-width: 768px) {
  .sermon-strip { grid-template-columns: 2fr 3fr; }
}
.sermon-strip__art {
  position: relative;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sermon-strip__art::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.sermon-strip__play {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--maroon-deeper);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: transform var(--t-fast) var(--ease);
  position: relative;
}
.sermon-strip__play:hover { transform: scale(1.08); }
.sermon-strip__body { padding: var(--sp-6); display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .sermon-strip__body { padding: var(--sp-7); } }

/* ---------- iOS widget grid (member portal) ---------- */
.widget-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 640px) { .widget-grid { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }
@media (min-width: 1024px) { .widget-grid { grid-template-columns: repeat(6, 1fr); } }
.widget {
  background: var(--bg);
  border-radius: var(--r-5);
  padding: var(--sp-5);
  box-shadow: var(--shadow-1);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  min-height: 180px;
  transition: transform var(--t-base) var(--ease);
}
.widget:hover { transform: scale(1.02); }
.widget--wide { grid-column: span 2; }
.widget--tall { grid-row: span 2; min-height: 380px; }
@media (min-width: 1024px) {
  .widget--w3 { grid-column: span 3; }
  .widget--w4 { grid-column: span 4; }
}
.widget--gold {
  background: linear-gradient(150deg, var(--gold), var(--gold-light));
  color: var(--maroon-deeper);
  border-color: transparent;
}
.widget--ink {
  background: var(--ink);
  color: var(--cream);
  border-color: transparent;
}
.widget--maroon {
  background: linear-gradient(150deg, var(--maroon-dark), var(--maroon-deeper));
  color: var(--cream);
  border-color: transparent;
}
.widget h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-2);
  opacity: 0.7;
}
.widget__big {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.widget__sub { font-size: 13px; color: var(--grey-1); margin-top: 4px; }
.widget--gold .widget__sub,
.widget--ink .widget__sub,
.widget--maroon .widget__sub { color: rgba(255,255,255,0.7); }
.widget--gold .widget__sub { color: rgba(61,15,24,0.7); }

/* ---------- Filter pills row ---------- */
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-pill {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--r-pill);
  border: 1px solid var(--grey-3);
  background: var(--bg);
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ---------- Tag chips ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  background: var(--grey-bg);
  color: var(--ink-2);
}
.tag--gold { background: rgba(201,152,106,0.18); color: #8B6336; }
.tag--maroon { background: rgba(123,45,56,0.12); color: var(--maroon-dark); }
.tag--sage { background: rgba(74,107,78,0.15); color: var(--sage); }

/* ---------- Calendar (events) ---------- */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-dow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--grey-1);
  text-transform: uppercase;
  text-align: center;
  padding: 8px 0;
}
.cal-cell {
  background: var(--bg);
  border-radius: var(--r-2);
  border: 1px solid var(--hairline);
  min-height: 88px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: background var(--t-fast) var(--ease);
}
.cal-cell.today { background: rgba(201,152,106,0.1); border-color: var(--gold); }
.cal-cell.empty { background: transparent; border-color: transparent; }
.cal-cell__date {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 2px;
}
.cal-cell.today .cal-cell__date { color: var(--maroon-dark); }
.cal-event {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  border: 0;
  text-align: left;
  background: var(--maroon-dark);
  color: var(--cream);
}
@media (min-width: 640px) { .cal-cell { min-height: 100px; } .cal-event { font-size: 11px; } }

/* Event categories */
.cat-worship { background: #5B1A24; color: var(--cream); }
.cat-kids { background: #D4985A; color: var(--maroon-deeper); }
.cat-women { background: #C9986A; color: var(--maroon-deeper); }
.cat-men { background: #4A6B4E; color: var(--cream); }
.cat-youth { background: #7B2D38; color: var(--cream); }
.cat-groups { background: #3D0F18; color: var(--cream); }
.cat-prayer { background: #5B1A24; color: var(--cream); }
.cat-arts { background: #D4985A; color: var(--maroon-deeper); }
.cat-outreach { background: #4A6B4E; color: var(--cream); }
.cat-newcomer { background: #C9986A; color: var(--maroon-deeper); }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--bg);
  border-radius: var(--r-5);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-3);
  transform: translateY(40px);
  transition: transform var(--t-base) var(--ease);
}
.modal-backdrop.open .modal { transform: translateY(0); }

/* ---------- Chat ---------- */
.chat-feed {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: var(--sp-4);
}
.chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  animation: chatIn 0.4s var(--ease);
}
@keyframes chatIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chat-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}
.chat-name { font-size: 12px; font-weight: 600; }
.chat-text { font-size: 14px; color: var(--ink-2); line-height: 1.45; }
.staff-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(201,152,106,0.18);
  color: var(--gold);
  margin-left: 6px;
}

/* ---------- Utilities ---------- */
.hidden { display: none !important; }
.flex { display: flex; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-5 { gap: var(--sp-5); }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-7 { margin-bottom: var(--sp-7); }
.mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }
.text-c { text-align: center; }

/* SVG icon base */
.icon { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: 18px; height: 18px; }
.icon-xs { width: 14px; height: 14px; }
.icon-lg { width: 32px; height: 32px; }

/* Countdown */
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  max-width: 500px;
  margin: 0 auto;
}
.countdown__cell {
  background: rgba(0,0,0,0.04);
  border-radius: var(--r-3);
  padding: var(--sp-4) var(--sp-2);
  text-align: center;
}
.countdown__num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.countdown__lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grey-1);
  margin-top: 4px;
}
.apple-section.dark .countdown__cell { background: rgba(255,255,255,0.06); }
.apple-section.dark .countdown__lbl { color: rgba(255,255,255,0.6); }

/* Detail / FAQ */
details.faq-item {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: background var(--t-fast) var(--ease);
}
details.faq-item summary {
  list-style: none;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  cursor: pointer;
  font-size: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--grey-1);
  transition: transform var(--t-fast) var(--ease);
  line-height: 1;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item .faq-body {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
}

/* Skip to top (semantic helpers) */
::selection { background: rgba(201,152,106,0.4); color: var(--maroon-deeper); }

/* ============================================================
   ADDITIONS — classes referenced by HTML but missing above
============================================================ */

/* ---------- Mobile hamburger lines ---------- */
.nav-mobile-btn {
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
}
.nav-mobile-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
  pointer-events: none;
}
@media (prefers-color-scheme: dark) { .nav-mobile-btn span { background: var(--cream); } }
.nav-mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile drawer overlay ---------- */
.apple-drawer-overlay {
  position: fixed; inset: 0;
  z-index: 98;
  background: rgba(0,0,0,0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.apple-drawer-overlay.open { opacity: 1; pointer-events: auto; }

/* ---------- Section head ---------- */
.section-head { margin-bottom: var(--sp-7); }
.section-head .eyebrow { margin-bottom: var(--sp-3); display: block; }
.section-head.center { text-align: center; }
.section-head .lede { margin-top: var(--sp-3); }

/* ---------- Bento grid column shortcuts ---------- */
@media (min-width: 1024px) {
  .bento-3 { grid-template-columns: repeat(3, 1fr); }
  .bento-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .bento-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Bento card title/desc aliases ---------- */
.bento-card__title {
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: var(--sp-2);
  color: var(--ink);
}
.bento-card--dark .bento-card__title,
.bento-card--maroon .bento-card__title { color: var(--cream); }
.bento-card__desc {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
  margin-bottom: var(--sp-4);
}
.bento-card--dark .bento-card__desc,
.bento-card--maroon .bento-card__desc { color: rgba(245,239,224,0.75); }

/* ---------- Split 2-col cards (index.html) ---------- */
.split-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) { .split-2 { grid-template-columns: repeat(2, 1fr); } }
.split-card {
  display: flex;
  flex-direction: column;
  padding: clamp(var(--sp-6), 5vw, var(--sp-8));
  border-radius: var(--r-5);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.split-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-3); }
.split-card--maroon {
  background: linear-gradient(150deg, var(--maroon-dark) 0%, var(--maroon-deeper) 100%);
  color: var(--cream);
}
.split-card--cream {
  background: var(--bg-warm);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-1);
}

/* ---------- Podcast badges ---------- */
.podcast-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: var(--sp-5);
}
.podcast-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--t-fast) var(--ease);
}
.apple-hero .podcast-badge { background: rgba(255,255,255,0.12); color: rgba(245,239,224,0.85); border-color: rgba(255,255,255,0.18); }
.apple-hero .podcast-badge:hover { background: rgba(255,255,255,0.22); color: var(--cream); }
@media (prefers-color-scheme: light) {
  .podcast-badge { background: var(--grey-bg); border-color: var(--hairline); color: var(--ink-2); }
  .podcast-badge:hover { background: var(--ink); color: var(--cream); }
}

/* ---------- Search input ---------- */
.search-row { margin-bottom: var(--sp-5); }
.search-input { position: relative; }
.search-input svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-1);
  pointer-events: none;
}
.search-input input[type="search"] {
  width: 100%;
  padding: 14px 18px 14px 48px;
  border: 1px solid var(--grey-3);
  border-radius: var(--r-pill);
  background: var(--bg);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  -webkit-appearance: none;
}
.search-input input[type="search"]:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(123,45,56,0.08);
}
.filter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-1);
  white-space: nowrap;
  padding: 9px 4px 9px 0;
  flex-shrink: 0;
}
.filter-row { align-items: center; padding-bottom: var(--sp-3); border-bottom: 1px solid var(--hairline); }
.filter-row:last-child { border-bottom: 0; }

/* ---------- Sermon cards ---------- */
.sermon-card {
  background: var(--grey-bg);
  border-radius: var(--r-5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  position: relative;
}
.sermon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.sermon-card__art {
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sermon-card__art svg { color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
.play-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--maroon-deeper);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  position: relative;
  z-index: 1;
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(0,0,0,0.45); }
.duration-pill {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(0,0,0,0.65);
  color: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  letter-spacing: 0.04em;
  z-index: 1;
}
.sermon-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sermon-card__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: var(--sp-1) 0 var(--sp-2);
  color: var(--ink);
}
.sermon-card__desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
  margin: var(--sp-2) 0 var(--sp-4);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sermon-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--hairline);
}

/* ---------- Category pills ---------- */
.cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--grey-bg);
  color: var(--ink-2);
}
/* sermon topic colors */
.cat-pill { background: rgba(123,45,56,0.1); color: var(--maroon-dark); }

/* ---------- Event cards ---------- */
.event-card { cursor: pointer; }
.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--grey-bg);
  border-radius: var(--r-2);
  padding: 8px 12px;
  min-width: 52px;
  margin-bottom: var(--sp-3);
  flex-shrink: 0;
  align-self: flex-start;
}
.event-card__month {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--maroon-dark);
  line-height: 1;
}
.event-card__day {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 2px;
}

/* ---------- Newsletter form ---------- */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 640px) { .newsletter { flex-direction: row; } }
.newsletter input[type="email"] {
  flex: 1;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--grey-3);
  background: var(--bg);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast) var(--ease);
  -webkit-appearance: none;
}
.newsletter input[type="email"]:focus { border-color: var(--maroon); box-shadow: 0 0 0 4px rgba(123,45,56,0.08); }
.newsletter-msg {
  font-size: 13px;
  color: var(--grey-1);
  text-align: center;
  margin-top: var(--sp-2);
  min-height: 20px;
  width: 100%;
}
.newsletter-msg.show { color: var(--sage); }

/* ---------- Verse rotator ---------- */
.verse-slide { display: none; }
.verse-slide.active { display: block; }

/* ---------- Sermon strip actions ---------- */
.strip-actions {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--sp-5);
}

/* ---------- Countdown cell aliases (cd-* used in HTML) ---------- */
.cd-block {
  background: rgba(0,0,0,0.04);
  border-radius: var(--r-3);
  padding: var(--sp-4) var(--sp-2);
  text-align: center;
}
.apple-section.dark .cd-block { background: rgba(255,255,255,0.06); }
.cd-sep {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--grey-1);
  align-self: center;
  padding-bottom: 16px;
}
.apple-section.dark .cd-sep { color: rgba(255,255,255,0.3); }
.cd-num {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1;
}
.apple-section.dark .cd-num { color: var(--cream); }
.cd-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grey-1);
  margin-top: 6px;
}
.apple-section.dark .cd-label { color: rgba(255,255,255,0.6); }
/* countdown as grid (index.html) */
[data-countdown] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  max-width: 520px;
  margin: var(--sp-5) auto 0;
}
/* Old countdown layout (4-block, no sep) */
.countdown { display: grid; }

/* ---------- Footer top area ---------- */
.apple-footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid var(--hairline);
}
@media (min-width: 640px) { .apple-footer__top { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.apple-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}
.apple-footer__bottom {
  padding-top: var(--sp-5);
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--grey-1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  justify-content: space-between;
}
@media (min-width: 640px) { .apple-footer__bottom { flex-direction: row; align-items: center; } }

/* ---------- Text utility ---------- */
.small { font-size: 12px; }
p.muted.small { font-size: 12px; }
.empty-state {
  text-align: center;
  padding: var(--sp-9) var(--sp-4);
  color: var(--grey-1);
  font-size: 15px;
}

/* ---------- Gradient tile icon boxes (bento-card__icon) overrides ---------- */
.bento-card__icon.tile-1,
.bento-card__icon.tile-2,
.bento-card__icon.tile-3,
.bento-card__icon.tile-4,
.bento-card__icon.tile-5,
.bento-card__icon.tile-6 {
  color: #fff;
}
/* Gradient tile used inside bento-card on homepage — override base bg */
.bento-card__icon[class*="tile-"] { background: none; }

/* ---------- Sermon strip hero (homepage featured sermon) ---------- */
.sermon-strip__art.tile-1 { background: linear-gradient(135deg, #7B2D38 0%, #C9986A 100%); }
.sermon-strip__art.tile-2 { background: linear-gradient(135deg, #3D0F18 0%, #7B2D38 100%); }
.sermon-strip__art.tile-3 { background: linear-gradient(135deg, #4A6B4E 0%, #C9986A 100%); }
.sermon-strip__art.tile-4 { background: linear-gradient(135deg, #C9986A 0%, #D4985A 100%); }
.sermon-strip__art.tile-5 { background: linear-gradient(135deg, #5B1A24 0%, #4A6B4E 100%); }
.sermon-strip__art.tile-6 { background: linear-gradient(135deg, #D4985A 0%, #5B1A24 100%); }

/* ============================================================
   PAGE-SPECIFIC STYLES (events, livestream, about, contact,
   groups, prayer, giving, kids, member-portal)
   Consolidated here so every page shares one CSS file.
   ============================================================ */

/* ---------- Events ---------- */
.ev-hero {
  padding: 152px 0 var(--sp-7);
  background:
    radial-gradient(ellipse 60% 50% at 80% 10%, rgba(201,152,106,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(123,45,56,0.12) 0%, transparent 60%),
    var(--bg-warm);
}
.ev-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 768px) { .ev-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .ev-list { grid-template-columns: repeat(3, 1fr); } }
.ev-card {
  background: var(--bg);
  border: 1px solid var(--hairline);
  border-radius: var(--r-4);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  box-shadow: var(--shadow-1);
}
.ev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.ev-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-3); }
.ev-date { flex-shrink: 0; text-align: center; width: 64px; padding: 10px 8px; border-radius: var(--r-3); background: var(--grey-bg); border: 1px solid var(--hairline); }
.ev-date__mo { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--maroon); }
.ev-date__day { font-size: 26px; font-weight: 700; line-height: 1.1; color: var(--ink); margin-top: 2px; }
.ev-pill { display: inline-flex; align-items: center; padding: 5px 12px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; align-self: flex-start; }
.ev-card h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.3; }
.ev-meta { font-size: 13px; color: var(--grey-1); display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.ev-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.ev-card p { font-size: 14px; color: var(--ink-2); line-height: 1.55; flex: 1; margin: 0; }
.ev-card__actions { display: flex; gap: 10px; padding-top: var(--sp-3); border-top: 1px solid var(--hairline); margin-top: var(--sp-2); flex-wrap: wrap; }
.ev-card__actions a { font-size: 13px; font-weight: 500; color: var(--maroon); }
.ev-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: var(--sp-6) 0 var(--sp-5); padding-bottom: var(--sp-4); border-bottom: 1px solid var(--hairline); }
.ev-empty { grid-column: 1 / -1; text-align: center; padding: var(--sp-9) var(--sp-4); color: var(--grey-1); }
.ev-featured {
  background: linear-gradient(135deg, var(--maroon-deeper) 0%, var(--maroon) 50%, var(--maroon-dark) 100%);
  color: var(--cream);
  border-radius: var(--r-5);
  padding: clamp(var(--sp-6), 5vw, var(--sp-8));
  margin-bottom: var(--sp-7);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 900px) { .ev-featured { grid-template-columns: 1fr 1.4fr; } }
.ev-featured h2 { color: var(--cream); }
.ev-featured .eyebrow { color: var(--gold); }
.ev-featured__date { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-4); padding: var(--sp-6); text-align: center; }
.ev-featured__date .month { font-size: 14px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.ev-featured__date .day { font-size: 96px; font-weight: 800; line-height: 1; color: var(--cream); letter-spacing: -0.04em; }
.ev-featured__date .meta { color: rgba(245,239,224,0.78); margin-top: var(--sp-2); font-size: 13px; }

/* ---------- Livestream ---------- */
body.dark-page { background: #0A0A0A; color: var(--cream); }
body.dark-page .apple-nav { background: rgba(10,10,10,0.65); backdrop-filter: saturate(180%) blur(20px); }
body.dark-page .apple-nav.scrolled { background: rgba(10,10,10,0.92); }
body.dark-page .apple-nav__brand,
body.dark-page .apple-nav__links a { color: rgba(245,239,224,0.78); }
body.dark-page .apple-nav__links a:hover,
body.dark-page .apple-nav__links a.active { color: var(--cream); }
body.dark-page .apple-nav__brand .brand-mark { color: var(--gold); }
body.dark-page .nav-mobile-btn { color: var(--cream); }
body.dark-page .apple-drawer { background: rgba(10,10,10,0.96); }
body.dark-page .apple-drawer a { color: var(--cream); border-bottom-color: rgba(255,255,255,0.08); }
body.dark-page .apple-drawer a.active { color: var(--gold); }
.ls-header {
  padding: 96px 0 var(--sp-5);
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(123,45,56,0.40) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 30%, rgba(201,152,106,0.20) 0%, transparent 60%),
    #0A0A0A;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ls-header__row { display: flex; align-items: end; justify-content: space-between; gap: var(--sp-4); flex-wrap: wrap; }
.ls-header__title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.ls-header__sub { color: rgba(245,239,224,0.65); font-size: 14px; margin-top: 6px; }
.ls-badges { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.ls-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: var(--r-pill); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); color: var(--cream); }
.ls-badge--live { background: #FF3B30; border-color: transparent; }
.ls-badge--gold { background: rgba(201,152,106,0.18); border-color: rgba(201,152,106,0.3); color: var(--gold); }
.ls-main { padding: var(--sp-7) 0; display: grid; grid-template-columns: 1fr; gap: var(--sp-6); }
@media (min-width: 1024px) { .ls-main { grid-template-columns: 1fr 360px; padding: var(--sp-8) 0; } }
.ls-player { background: #000; border-radius: var(--r-5); aspect-ratio: 16/9; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.ls-player::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #3D0F18 0%, #5B1A24 50%, #7B2D38 100%); opacity: 0.95; }
.ls-player::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0); background-size: 24px 24px; opacity: 0.5; }
.ls-play { position: relative; z-index: 1; width: 92px; height: 92px; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--maroon-deeper); border: 0; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 16px 60px rgba(0,0,0,0.5); transition: transform var(--t-fast) var(--ease); }
.ls-play:hover { transform: scale(1.06); }
.ls-play svg { width: 36px; height: 36px; margin-left: 4px; }
.ls-player__bar { position: absolute; bottom: var(--sp-4); left: var(--sp-4); right: var(--sp-4); z-index: 1; display: flex; align-items: center; gap: var(--sp-3); }
.ls-player__bar button { background: none; border: 0; color: rgba(255,255,255,0.85); cursor: pointer; }
.ls-player__bar button:hover { color: white; }
.ls-player__progress { flex: 1; height: 4px; background: rgba(255,255,255,0.2); border-radius: var(--r-pill); overflow: hidden; }
.ls-player__progress > span { display: block; height: 100%; width: 32%; background: var(--gold); }
.ls-time { font-family: var(--font-sans); font-variant-numeric: tabular-nums; font-size: 11px; color: rgba(255,255,255,0.85); letter-spacing: 0.05em; }
.offline-card { margin-top: var(--sp-5); padding: var(--sp-6); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-5); text-align: center; backdrop-filter: blur(20px); }
.offline-card h2 { color: var(--cream); margin-bottom: var(--sp-3); font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.offline-card p { color: rgba(245,239,224,0.65); font-size: 14px; margin-bottom: var(--sp-5); }
.ls-cd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); max-width: 500px; margin: 0 auto var(--sp-5); }
.ls-cd-cell { background: rgba(255,255,255,0.06); border-radius: var(--r-3); padding: var(--sp-4) 8px; text-align: center; }
.ls-cd-cell .n { font-size: clamp(24px, 4vw, 36px); font-weight: 700; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; color: var(--cream); }
.ls-cd-cell .l { font-size: 10px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.16em; margin-top: 4px; }
.ls-actions { margin-top: var(--sp-5); display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 640px) { .ls-actions { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ls-actions { grid-template-columns: repeat(4, 1fr); } }
.ls-action { padding: var(--sp-5); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-4); text-align: left; cursor: pointer; text-decoration: none; color: var(--cream); transition: all var(--t-fast) var(--ease); display: block; }
.ls-action:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.ls-action--gold { background: linear-gradient(150deg, var(--gold), var(--gold-light)); color: var(--maroon-deeper); border-color: transparent; }
.ls-action--gold:hover { background: linear-gradient(150deg, var(--gold-light), var(--gold)); }
.ls-action svg { width: 22px; height: 22px; color: var(--gold); margin-bottom: var(--sp-3); }
.ls-action--gold svg { color: var(--maroon-deeper); }
.ls-action h4 { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
.ls-action p { font-size: 12px; opacity: 0.7; margin-top: 2px; }
.notes-card { margin-top: var(--sp-7); background: var(--cream); color: var(--ink); border-radius: var(--r-5); padding: clamp(var(--sp-5), 4vw, var(--sp-7)); }
.notes-card h3 { color: var(--maroon-deeper); font-size: clamp(22px, 3vw, 28px); }
.notes-card .scripture { color: var(--maroon-dark); text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; font-weight: 600; margin-bottom: 6px; }
.notes-list { list-style: none; padding: 0; margin: var(--sp-5) 0 0; display: flex; flex-direction: column; gap: var(--sp-4); }
.notes-list li { display: flex; gap: var(--sp-3); font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.notes-list .num { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: rgba(201,152,106,0.28); color: var(--maroon-deeper); font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.notes-list strong { color: var(--ink); font-weight: 600; }
.ls-chat { background: rgba(20,20,20,0.7); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-5); backdrop-filter: blur(30px); display: flex; flex-direction: column; height: 600px; overflow: hidden; }
@media (min-width: 1024px) { .ls-chat { max-height: 80vh; height: auto; } }
.ls-chat__head { padding: var(--sp-4) var(--sp-5); border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; }
.ls-chat__head h3 { font-size: 16px; font-weight: 600; color: var(--cream); margin: 0; }
.ls-chat__head p { font-size: 12px; color: rgba(255,255,255,0.55); margin: 2px 0 0; }
.ls-chat__icons { display: flex; gap: 4px; }
.ls-chat__icons button { background: none; border: 0; padding: 6px; border-radius: var(--r-2); color: rgba(255,255,255,0.7); cursor: pointer; }
.ls-chat__icons button:hover { background: rgba(255,255,255,0.08); color: var(--cream); }
.ls-chat__feed { flex: 1; overflow-y: auto; padding: var(--sp-4); display: flex; flex-direction: column; gap: 12px; }
.ls-chat__feed::-webkit-scrollbar { width: 6px; }
.ls-chat__feed::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
.ls-msg { display: flex; gap: 10px; align-items: start; animation: msgIn 0.4s var(--ease); }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.ls-msg__avatar { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--cream); font-size: 11px; font-weight: 600; flex-shrink: 0; }
.ls-msg__body { flex: 1; min-width: 0; }
.ls-msg__name { font-size: 12px; font-weight: 600; color: var(--cream); display: flex; align-items: center; gap: 6px; }
.ls-msg__text { font-size: 13px; color: rgba(245,239,224,0.78); line-height: 1.45; margin-top: 2px; }
.ls-msg__tag { display: inline-block; font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; padding: 2px 6px; border-radius: var(--r-pill); background: rgba(201,152,106,0.18); color: var(--gold); }
.ls-chat__form { padding: var(--sp-4); border-top: 1px solid rgba(255,255,255,0.08); }
.ls-chat__row { display: flex; gap: 8px; align-items: center; }
.ls-chat__input { flex: 1; padding: 10px 16px; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-pill); color: var(--cream); font-size: 13px; outline: none; }
.ls-chat__input::placeholder { color: rgba(255,255,255,0.35); }
.ls-chat__input:focus { border-color: var(--gold); }
.ls-chat__send { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); color: var(--maroon-deeper); border: 0; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--t-fast) var(--ease); }
.ls-chat__send:hover { background: var(--gold-light); transform: scale(1.05); }
.ls-chat__note { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 8px; text-align: center; }
.online-help { padding: var(--sp-8) 0; background: #0A0A0A; }
.online-help__grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 768px) { .online-help__grid { grid-template-columns: repeat(3, 1fr); } }
.help-card { padding: var(--sp-6); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-5); transition: all var(--t-base) var(--ease); }
.help-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.help-card svg { width: 28px; height: 28px; color: var(--gold); margin-bottom: var(--sp-4); }
.help-card h3 { font-size: 22px; color: var(--cream); margin-bottom: var(--sp-3); letter-spacing: -0.02em; }
.help-card p { color: rgba(245,239,224,0.7); font-size: 14px; line-height: 1.55; margin-bottom: var(--sp-4); }
.youversion { padding: var(--sp-8) 0; background: #000; text-align: center; }
.youversion h2 { color: var(--cream); font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.025em; max-width: 720px; margin: 0 auto var(--sp-4); }
.youversion p { color: rgba(245,239,224,0.65); max-width: 580px; margin: 0 auto var(--sp-5); line-height: 1.55; font-size: 15px; }
.ls-footer { background: #000; padding: var(--sp-6) 0; text-align: center; color: rgba(245,239,224,0.4); font-size: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.ls-footer a { color: rgba(245,239,224,0.6); }
.ls-footer a:hover { color: var(--gold); }

/* ---------- About ---------- */
.staff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
@media (min-width: 640px) { .staff-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .staff-grid { grid-template-columns: repeat(4, 1fr); } }
.staff-card { background: var(--bg); border-radius: var(--r-4); padding: var(--sp-5); box-shadow: var(--shadow-1); border: 1px solid var(--hairline); text-align: center; transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.staff-avatar { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto var(--sp-4); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; color: #fff; }
.staff-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.staff-card .role { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-3); }
.staff-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.mission-split { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); align-items: center; }
@media (min-width: 1024px) { .mission-split { grid-template-columns: 1fr 1fr; } }
.belief-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 768px) { .belief-grid { grid-template-columns: repeat(2, 1fr); } }
.belief-card { background: var(--grey-bg); border-radius: var(--r-4); padding: var(--sp-5) var(--sp-6); display: flex; gap: var(--sp-4); align-items: flex-start; }
.belief-card__num { font-size: 40px; font-weight: 800; letter-spacing: -0.04em; color: var(--grey-3); line-height: 1; flex-shrink: 0; width: 48px; }
.belief-card h4 { font-size: 17px; margin-bottom: 6px; }
.belief-card p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--maroon-dark) 0%, var(--gold) 100%); }
.timeline-item { position: relative; margin-bottom: var(--sp-6); }
.timeline-item::before { content: ''; position: absolute; left: -35px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--maroon); border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--maroon); }
.timeline-year { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.timeline-item h4 { font-size: 18px; margin-bottom: 6px; }
.timeline-item p { font-size: 15px; color: var(--ink-2); line-height: 1.5; margin: 0; }
.value-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
@media (min-width: 640px) { .value-row { grid-template-columns: repeat(3, 1fr); } }
.value-item { text-align: center; padding: var(--sp-6) var(--sp-4); }
.value-item__icon { width: 56px; height: 56px; border-radius: var(--r-3); background: rgba(123,45,56,0.1); color: var(--maroon); display: inline-flex; align-items: center; justify-content: center; margin-bottom: var(--sp-4); }
.value-item h4 { font-size: 20px; margin-bottom: var(--sp-2); }
.value-item p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 0; }
.visit-card { background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon-deeper) 100%); border-radius: var(--r-6); padding: clamp(var(--sp-6), 6vw, var(--sp-9)); color: var(--cream); display: grid; grid-template-columns: 1fr; gap: var(--sp-7); align-items: center; }
@media (min-width: 1024px) { .visit-card { grid-template-columns: 1fr 1fr; } }
.visit-card h2 { color: var(--cream); margin-bottom: var(--sp-4); }
.visit-card p { color: rgba(245,239,224,0.8); font-size: 16px; line-height: 1.6; margin: 0 0 var(--sp-5); }
.visit-details { background: rgba(255,255,255,0.08); border-radius: var(--r-4); padding: var(--sp-5); }
.visit-detail-row { display: flex; gap: var(--sp-4); align-items: flex-start; padding: var(--sp-3) 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.visit-detail-row:last-child { border-bottom: 0; }
.visit-detail-row svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.visit-detail-row strong { display: block; font-size: 14px; color: var(--cream); margin-bottom: 2px; }
.visit-detail-row span { font-size: 13px; color: rgba(245,239,224,0.7); }
.map-placeholder { background: linear-gradient(145deg, var(--grey-bg), #E8E8ED); border-radius: var(--r-5); height: 320px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: var(--sp-4); color: var(--grey-1); border: 1px solid var(--hairline); position: relative; overflow: hidden; }
.map-placeholder--tall { height: 360px; }
.map-placeholder::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(0,0,0,0.03) 40px, rgba(0,0,0,0.03) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(0,0,0,0.03) 40px, rgba(0,0,0,0.03) 41px); }
.map-pin { width: 48px; height: 48px; background: var(--maroon); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.map-pin::after { content: ''; position: absolute; inset: 0; margin: auto; width: 16px; height: 16px; background: #fff; border-radius: 50%; transform: rotate(45deg); }
.map-label { position: relative; z-index: 1; text-align: center; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 3fr 2fr; } }
.form-section { background: var(--bg); border-radius: var(--r-6); padding: clamp(var(--sp-6), 5vw, var(--sp-8)); box-shadow: var(--shadow-2); border: 1px solid var(--hairline); }
.form-title { font-size: clamp(22px, 3vw, 30px); margin-bottom: 6px; }
.form-subtitle { color: var(--ink-2); font-size: 15px; margin-bottom: var(--sp-6); }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-success { display: none; text-align: center; padding: var(--sp-7) var(--sp-4); }
.form-success.show { display: block; }
.form-hidden { display: none; }
.form-hidden.show { display: block; }
.success-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--sage), #6B9B6F); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; margin-bottom: var(--sp-5); }
.success-icon svg { width: 32px; height: 32px; }
.info-stack { display: flex; flex-direction: column; gap: var(--sp-4); }
.info-card { background: var(--grey-bg); border-radius: var(--r-4); padding: var(--sp-5); display: flex; gap: var(--sp-4); align-items: flex-start; text-decoration: none; color: inherit; transition: background var(--t-fast) var(--ease), transform var(--t-base) var(--ease); }
.info-card:hover { background: #ECECEF; transform: translateX(4px); }
.info-card__icon { width: 44px; height: 44px; border-radius: var(--r-2); background: rgba(123,45,56,0.1); color: var(--maroon); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.info-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0; }
.dept-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
@media (min-width: 640px) { .dept-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .dept-grid { grid-template-columns: repeat(4, 1fr); } }
.dept-card { background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--r-4); padding: var(--sp-4) var(--sp-5); text-align: center; transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease); }
.dept-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.dept-avatar { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; color: #fff; margin: 0 auto var(--sp-3); }
.dept-card h5 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.dept-card .dept-role { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--sp-2); }
.dept-card a { font-size: 13px; color: var(--maroon-dark); display: block; margin-top: var(--sp-2); }
.dept-card a:hover { text-decoration: underline; text-underline-offset: 3px; }
.subject-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--sp-5); }
.subject-tab { padding: 8px 16px; font-size: 13px; font-weight: 500; border-radius: var(--r-pill); border: 1px solid var(--grey-3); background: var(--bg); color: var(--ink-2); cursor: pointer; transition: all var(--t-fast) var(--ease); }
.subject-tab:hover { border-color: var(--maroon); color: var(--maroon); }
.subject-tab.active { background: var(--maroon-dark); color: var(--cream); border-color: var(--maroon-dark); }
.plan-visit-panel { background: linear-gradient(135deg, var(--maroon-dark), var(--maroon-deeper)); border-radius: var(--r-4); padding: var(--sp-5); color: var(--cream); margin-top: var(--sp-5); }
.plan-visit-panel h4 { color: var(--cream); font-size: 17px; margin-bottom: var(--sp-3); }
.plan-visit-panel p { font-size: 14px; color: rgba(245,239,224,0.8); margin: 0 0 var(--sp-4); line-height: 1.55; }
.plan-visit-panel .pv-row { display: flex; align-items: center; gap: var(--sp-3); font-size: 13px; color: rgba(245,239,224,0.75); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.plan-visit-panel .pv-row:last-of-type { border-bottom: 0; }
.plan-visit-panel .pv-row svg { color: var(--gold); }

/* ---------- Groups ---------- */
.gr-hero { padding: 120px 0 0; background: var(--bg-warm); position: relative; overflow: hidden; }
.gr-hero__inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); align-items: center; padding: var(--sp-7) 0; }
@media (min-width: 900px) { .gr-hero__inner { grid-template-columns: 1.1fr 1fr; padding: var(--sp-8) 0; } }
.gr-hero__photo { position: relative; border-radius: var(--r-5); overflow: hidden; box-shadow: var(--shadow-3); aspect-ratio: 4/3; }
.gr-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gr-list { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 768px) { .gr-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .gr-list { grid-template-columns: repeat(3, 1fr); } }
.gr-card { background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--r-4); padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); box-shadow: var(--shadow-1); }
.gr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.gr-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--sp-3); }
.gr-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; }
.gr-card .leader { font-size: 13px; color: var(--grey-1); }
.gr-pill { display: inline-flex; align-items: center; padding: 5px 12px; border-radius: var(--r-pill); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; align-self: flex-start; }
.gr-pill--couples { background: var(--maroon); color: var(--cream); }
.gr-pill--men     { background: var(--sage); color: var(--cream); }
.gr-pill--women   { background: var(--gold); color: var(--maroon-deeper); }
.gr-pill--study   { background: var(--maroon-deeper); color: var(--cream); }
.gr-pill--young-adults { background: var(--gold-light); color: var(--maroon-deeper); }
.gr-pill--accountability { background: var(--maroon-dark); color: var(--cream); }
.gr-pill--youth   { background: var(--maroon); color: var(--cream); }
.gr-pill--prayer  { background: var(--maroon-deeper); color: var(--gold); }
.gr-meta { display: grid; grid-template-columns: auto 1fr; gap: 8px 12px; font-size: 13px; color: var(--ink-2); align-items: center; }
.gr-meta svg { width: 14px; height: 14px; color: var(--grey-1); }
.gr-card p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0; flex: 1; }
.gr-vacancy { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: var(--r-pill); background: rgba(74,107,78,0.12); color: var(--sage); }
.gr-vacancy--full { background: rgba(123,45,56,0.10); color: var(--maroon); }
.gr-card__cta { display: flex; gap: 10px; padding-top: var(--sp-3); border-top: 1px solid var(--hairline); margin-top: var(--sp-2); }
.gr-card__cta a { font-size: 13px; font-weight: 500; color: var(--maroon); }
.gr-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: var(--sp-6) 0 var(--sp-5); padding-bottom: var(--sp-4); border-bottom: 1px solid var(--hairline); }
.gr-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); margin-top: var(--sp-6); }
@media (min-width: 700px) { .gr-stats { grid-template-columns: repeat(4, 1fr); } }
.gr-stat { padding: var(--sp-5); border-radius: var(--r-4); background: var(--grey-bg); text-align: center; }
.gr-stat__num { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.025em; color: var(--maroon); }
.gr-stat__label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-1); margin-top: 4px; }

/* ---------- Prayer ---------- */
.pr-hero { padding: 120px 0 0; background: radial-gradient(ellipse 60% 50% at 20% 10%, rgba(123,45,56,0.10) 0%, transparent 60%), var(--bg-warm); }
.pr-hero__inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-7); align-items: center; padding: var(--sp-7) 0; }
@media (min-width: 900px) { .pr-hero__inner { grid-template-columns: 1fr 1fr; padding: var(--sp-8) 0; } }
.pr-hero__photo { border-radius: var(--r-5); overflow: hidden; box-shadow: var(--shadow-3); aspect-ratio: 4/3; }
.pr-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pr-share { background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--r-5); padding: clamp(var(--sp-5), 4vw, var(--sp-7)); box-shadow: var(--shadow-2); }
.pr-share h2 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: var(--sp-2); }
.pr-share textarea { width: 100%; min-height: 120px; padding: 16px 20px; border-radius: var(--r-3); border: 1px solid var(--hairline); background: var(--bg); font-size: 16px; font-family: inherit; color: var(--ink); resize: vertical; margin: var(--sp-4) 0 var(--sp-3); }
.pr-share textarea:focus { outline: none; border-color: var(--maroon); box-shadow: 0 0 0 4px rgba(123,45,56,0.08); }
.pr-share-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); margin-bottom: var(--sp-4); }
@media (min-width: 600px) { .pr-share-row { grid-template-columns: 1fr 1fr 1fr; } }
.pr-share input, .pr-share select { padding: 14px 18px; border-radius: var(--r-3); border: 1px solid var(--hairline); background: var(--bg); font-size: 15px; font-family: inherit; color: var(--ink); }
.pr-share input:focus, .pr-share select:focus { outline: none; border-color: var(--maroon); }
.pr-share-cta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.pr-check { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey-1); }
.pr-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); max-width: 720px; margin: 0 auto var(--sp-6); }
.pr-stat { text-align: center; padding: var(--sp-4) var(--sp-3); }
.pr-stat__num { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; color: var(--maroon); line-height: 1; }
.pr-stat__lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-1); margin-top: 6px; }
.pr-filter { display: flex; flex-wrap: wrap; gap: 8px; margin: var(--sp-5) 0; padding-bottom: var(--sp-4); border-bottom: 1px solid var(--hairline); }
.pr-list { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 700px) { .pr-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pr-list { grid-template-columns: repeat(3, 1fr); } }
.pr-card { background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--r-4); padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); box-shadow: var(--shadow-1); transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
.pr-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.pr-card__top { display: flex; justify-content: space-between; align-items: center; gap: var(--sp-3); }
.pr-card__who { font-weight: 600; font-size: 14px; color: var(--ink); }
.pr-card__when { font-size: 12px; color: var(--grey-1); }
.pr-tag { display: inline-flex; padding: 4px 10px; border-radius: var(--r-pill); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.pr-tag--health { background: rgba(74,107,78,0.12); color: var(--sage); }
.pr-tag--marriage { background: rgba(201,152,106,0.18); color: var(--maroon-dark); }
.pr-tag--finances { background: rgba(123,45,56,0.10); color: var(--maroon); }
.pr-tag--spiritual { background: rgba(61,15,24,0.10); color: var(--maroon-deeper); }
.pr-tag--family { background: rgba(212,152,90,0.18); color: var(--maroon-deeper); }
.pr-tag--personal { background: rgba(110,110,115,0.12); color: var(--ink-2); }
.pr-card p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; flex: 1; }
.pr-card__actions { display: flex; gap: var(--sp-4); padding-top: var(--sp-3); border-top: 1px solid var(--hairline); font-size: 12px; color: var(--grey-1); }
.pr-action { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; border: 0; background: transparent; color: var(--grey-1); font-size: 13px; font-weight: 500; padding: 4px 0; transition: color var(--t-fast) var(--ease); }
.pr-action:hover { color: var(--maroon); }
.pr-action.active { color: var(--maroon); font-weight: 600; }
.pr-action svg { width: 14px; height: 14px; }

/* ---------- Giving ---------- */
.give-hero { padding: 152px 0 var(--sp-8); background: radial-gradient(ellipse 60% 50% at 80% 10%, rgba(201,152,106,0.20) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 10% 90%, rgba(123,45,56,0.14) 0%, transparent 60%), var(--bg-warm); text-align: center; }
.give-card { max-width: 720px; margin: 0 auto; background: var(--bg); border-radius: var(--r-5); border: 1px solid var(--hairline); box-shadow: var(--shadow-2); padding: clamp(var(--sp-5), 5vw, var(--sp-7)); }
.give-card__tabs { display: flex; gap: 4px; background: var(--grey-bg); padding: 4px; border-radius: var(--r-pill); margin-bottom: var(--sp-6); }
.give-tab { flex: 1; padding: 12px 16px; border-radius: var(--r-pill); border: 0; background: transparent; font-size: 14px; font-weight: 600; color: var(--grey-1); cursor: pointer; transition: all var(--t-fast) var(--ease); }
.give-tab.active { background: var(--bg); color: var(--ink); box-shadow: var(--shadow-1); }
.give-amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: var(--sp-4); }
@media (min-width: 500px) { .give-amounts { grid-template-columns: repeat(5, 1fr); } }
.give-amount { padding: 18px 8px; border: 1px solid var(--hairline); border-radius: var(--r-3); background: var(--bg); font-size: 16px; font-weight: 600; color: var(--ink); cursor: pointer; transition: all var(--t-fast) var(--ease); }
.give-amount:hover { border-color: var(--maroon); color: var(--maroon); }
.give-amount.active { background: var(--maroon); color: var(--cream); border-color: var(--maroon); }
.give-input { width: 100%; padding: 18px 22px; border-radius: var(--r-3); border: 1px solid var(--hairline); background: var(--bg); font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: var(--sp-4); transition: border-color var(--t-fast) var(--ease); }
.give-input:focus { outline: none; border-color: var(--maroon); box-shadow: 0 0 0 4px rgba(123,45,56,0.08); }
.give-select { width: 100%; padding: 18px 22px; border-radius: var(--r-3); border: 1px solid var(--hairline); background: var(--bg); font-size: 16px; font-weight: 500; color: var(--ink); margin-bottom: var(--sp-4); cursor: pointer; }
.give-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
@media (min-width: 600px) { .give-row { grid-template-columns: 1fr 1fr; } }
.give-disclaimer { font-size: 12px; color: var(--grey-1); text-align: center; margin-top: var(--sp-4); }
.impact-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 700px) { .impact-grid { grid-template-columns: repeat(3, 1fr); } }
.impact-card { background: var(--bg); padding: var(--sp-6); border-radius: var(--r-4); border: 1px solid var(--hairline); text-align: center; }
.impact-num { font-size: clamp(40px, 6vw, 64px); font-weight: 800; letter-spacing: -0.03em; color: var(--maroon); line-height: 1; }
.impact-label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-1); margin-top: var(--sp-3); }
.impact-desc { font-size: 14px; color: var(--ink-2); margin-top: var(--sp-3); line-height: 1.55; }
.ways { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 700px) { .ways { grid-template-columns: repeat(2, 1fr); } }
.way-card { background: var(--grey-bg); padding: var(--sp-6); border-radius: var(--r-4); }
.way-card h3 { font-size: 22px; font-weight: 600; margin-bottom: var(--sp-3); }
.way-card p { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin-bottom: var(--sp-4); }
.way-card code { background: var(--bg); padding: 4px 10px; border-radius: var(--r-2); font-family: 'SF Mono', monospace; font-size: 14px; font-weight: 600; color: var(--maroon); border: 1px solid var(--hairline); }

/* ---------- HopeKids ---------- */
.kd-hero { padding: 120px 0 0; background: var(--bg-warm); }
.kd-hero__inner { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); align-items: center; padding: var(--sp-7) 0 var(--sp-8); }
@media (min-width: 900px) { .kd-hero__inner { grid-template-columns: 1.1fr 1fr; padding: var(--sp-8) 0 var(--sp-9); } }
.kd-hero__photo { border-radius: var(--r-5); overflow: hidden; box-shadow: var(--shadow-3); aspect-ratio: 4/3; }
.kd-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.age-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 700px) { .age-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .age-grid { grid-template-columns: repeat(4, 1fr); } }
.age-card { background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--r-4); padding: var(--sp-6); transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); box-shadow: var(--shadow-1); position: relative; overflow: hidden; }
.age-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.age-card__photo { width: 100%; aspect-ratio: 4/3; border-radius: var(--r-3); overflow: hidden; margin-bottom: var(--sp-4); background: var(--grey-bg); }
.age-card__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.age-card .age-tag { display: inline-block; padding: 5px 12px; border-radius: var(--r-pill); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: var(--gold); color: var(--maroon-deeper); margin-bottom: var(--sp-3); }
.age-card h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; }
.age-card .age-room { font-size: 13px; color: var(--grey-1); margin-top: 4px; }
.age-card p { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin-top: var(--sp-3); }
.safety-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
@media (min-width: 700px) { .safety-grid { grid-template-columns: repeat(3, 1fr); } }
.safety-card { background: var(--grey-bg); padding: var(--sp-6); border-radius: var(--r-4); text-align: center; }
.safety-icon { width: 56px; height: 56px; border-radius: var(--r-3); display: flex; align-items: center; justify-content: center; margin: 0 auto var(--sp-4); background: linear-gradient(135deg, var(--maroon) 0%, var(--gold) 100%); color: #fff; }
.safety-card h3 { font-size: 18px; font-weight: 600; margin-bottom: var(--sp-2); }
.safety-card p { font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
@media (min-width: 700px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--r-3); display: block; }

/* ---------- Member Portal ---------- */
.portal-hero { padding: clamp(112px, 14vw, 168px) 0 var(--sp-6); background: radial-gradient(ellipse 60% 50% at 20% 0%, rgba(201,152,106,0.14) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 100% 30%, rgba(123,45,56,0.10) 0%, transparent 60%), var(--bg-warm); }
.portal-hero h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.portal-greeting { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--sp-4); }
.avatar-lg { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon-dark), var(--maroon-deeper)); color: var(--cream); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: 20px; letter-spacing: -0.02em; }
.portal-meta { display: flex; gap: var(--sp-4); align-items: center; font-size: 13px; color: var(--grey-1); flex-wrap: wrap; }
.badge-dot { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; background: var(--grey-bg); border-radius: var(--r-pill); font-size: 12px; color: var(--ink-2); }
.badge-dot.green::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #34C759; }
.widget-canvas { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); padding-top: var(--sp-5); }
@media (min-width: 640px) { .widget-canvas { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); } }
@media (min-width: 1024px) { .widget-canvas { grid-template-columns: repeat(6, 1fr); gap: var(--sp-5); } }
.w { background: var(--bg); border-radius: var(--r-5); padding: var(--sp-5); border: 1px solid var(--hairline); box-shadow: 0 1px 2px rgba(0,0,0,0.03), 0 12px 28px rgba(0,0,0,0.05); display: flex; flex-direction: column; min-height: 180px; position: relative; overflow: hidden; transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); text-decoration: none; color: inherit; }
.w:hover { transform: translateY(-3px); box-shadow: 0 2px 4px rgba(0,0,0,0.04), 0 20px 40px rgba(0,0,0,0.10); }
.w-2 { grid-column: span 2; }
.w-3 { grid-column: span 2; }
.w-tall { grid-row: span 2; min-height: 380px; }
@media (min-width: 640px) { .w-3 { grid-column: span 3; } }
@media (min-width: 1024px) { .w-3 { grid-column: span 3; } .w-6 { grid-column: span 6; } }
.w--ink { background: var(--ink); color: var(--cream); border-color: transparent; }
.w--maroon { background: linear-gradient(155deg, var(--maroon-dark) 0%, var(--maroon-deeper) 100%); color: var(--cream); border-color: transparent; }
.w--gold { background: linear-gradient(155deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--maroon-deeper); border-color: transparent; }
.w--sage { background: linear-gradient(155deg, var(--sage) 0%, #3D5A41 100%); color: var(--cream); border-color: transparent; }
.w--glass { background: var(--glass-bg); backdrop-filter: blur(40px) saturate(180%); -webkit-backdrop-filter: blur(40px) saturate(180%); }
.w__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-3); }
.w__label { font-size: 11px; font-weight: 600; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.12em; }
.w__icon-pill { width: 28px; height: 28px; border-radius: 50%; background: rgba(0,0,0,0.06); display: inline-flex; align-items: center; justify-content: center; }
.w--ink .w__icon-pill, .w--maroon .w__icon-pill, .w--sage .w__icon-pill { background: rgba(255,255,255,0.12); }
.w--gold .w__icon-pill { background: rgba(61,15,24,0.14); }
.w__icon-pill svg { width: 14px; height: 14px; }
.w__big { font-size: clamp(32px, 4vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin: var(--sp-2) 0; }
.w__sub { font-size: 13px; color: var(--grey-1); margin-top: 4px; }
.w--ink .w__sub, .w--maroon .w__sub, .w--sage .w__sub { color: rgba(255,255,255,0.7); }
.w--gold .w__sub { color: rgba(61,15,24,0.72); }
.w__foot { margin-top: auto; padding-top: var(--sp-4); font-size: 12px; font-weight: 500; opacity: 0.7; display: inline-flex; align-items: center; gap: 4px; transition: gap var(--t-fast) var(--ease); }
.w:hover .w__foot { gap: 8px; opacity: 1; }
.w__title { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 2px; color: inherit; }
.progress { width: 100%; height: 6px; background: rgba(0,0,0,0.08); border-radius: var(--r-pill); overflow: hidden; margin-top: var(--sp-3); }
.w--ink .progress, .w--maroon .progress, .w--sage .progress { background: rgba(255,255,255,0.15); }
.w--gold .progress { background: rgba(61,15,24,0.18); }
.progress > span { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: var(--r-pill); transition: width 1.2s var(--ease); }
.w--gold .progress > span { background: var(--maroon-deeper); }
.donut { position: relative; width: 100px; height: 100px; margin: var(--sp-2) auto 0; }
.donut svg { transform: rotate(-90deg); }
.donut__center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.donut__center small { font-size: 9px; font-weight: 500; opacity: 0.6; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }
.avatar-stack { display: inline-flex; align-items: center; }
.avatar-stack > * { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -8px; display: inline-flex; align-items: center; justify-content: center; color: var(--cream); font-size: 10px; font-weight: 600; }
.avatar-stack > *:first-child { margin-left: 0; }
.w--ink .avatar-stack > *, .w--maroon .avatar-stack > * { border-color: var(--ink); }
.mini-list { display: flex; flex-direction: column; gap: 0; margin-top: var(--sp-2); }
.mini-list__item { display: grid; grid-template-columns: auto 1fr auto; gap: var(--sp-3); align-items: start; padding: 10px 0; border-bottom: 1px solid var(--hairline); }
.mini-list__item:last-child { border-bottom: 0; }
.w--ink .mini-list__item, .w--maroon .mini-list__item, .w--sage .mini-list__item { border-bottom-color: rgba(255,255,255,0.1); }
.mini-list__date { background: var(--grey-bg); border-radius: var(--r-2); padding: 6px 8px; text-align: center; min-width: 44px; }
.mini-list__date .m { font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--maroon-dark); font-weight: 700; }
.mini-list__date .d { font-size: 18px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.mini-list__body .t { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.3; }
.mini-list__body .s { font-size: 12px; color: var(--grey-1); margin-top: 2px; }
.w--ink .mini-list__body .s, .w--maroon .mini-list__body .s, .w--sage .mini-list__body .s { color: rgba(255,255,255,0.6); }
.mini-list__icon-btn { width: 28px; height: 28px; border-radius: 50%; background: var(--grey-bg); border: 0; display: inline-flex; align-items: center; justify-content: center; color: var(--ink-2); cursor: pointer; }
.quick-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
@media (min-width: 640px) { .quick-actions { grid-template-columns: repeat(4, 1fr); } }
.quick-action { background: var(--grey-bg); border-radius: var(--r-4); padding: var(--sp-5); text-align: left; transition: all var(--t-fast) var(--ease); cursor: pointer; border: 1px solid transparent; text-decoration: none; color: inherit; display: block; }
.quick-action:hover { background: #ECECEF; transform: translateY(-2px); }
.quick-action svg { width: 24px; height: 24px; color: var(--maroon-dark); margin-bottom: var(--sp-3); }
.quick-action h4 { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.quick-action p { font-size: 12px; color: var(--grey-1); margin-top: 2px; }
.portal-tabs { display: inline-flex; gap: 2px; padding: 4px; background: var(--grey-bg); border-radius: var(--r-pill); margin-top: var(--sp-4); overflow-x: auto; max-width: 100%; }
.portal-tab { padding: 8px 16px; font-size: 13px; font-weight: 500; letter-spacing: -0.01em; border: 0; background: transparent; color: var(--ink-2); border-radius: var(--r-pill); cursor: pointer; white-space: nowrap; transition: all var(--t-fast) var(--ease); }
.portal-tab.active { background: var(--bg); color: var(--ink); box-shadow: var(--shadow-1); }
.notif-pill { position: absolute; top: var(--sp-4); right: var(--sp-4); background: #FF3B30; color: white; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: var(--r-pill); }
.group-mini { display: flex; flex-direction: column; gap: 0; margin-top: var(--sp-3); }
.group-mini__item { display: flex; align-items: center; gap: var(--sp-3); padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.group-mini__item:last-child { border-bottom: 0; }
.group-mini__dot { width: 36px; height: 36px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--cream); font-size: 13px; font-weight: 700; flex-shrink: 0; }
.group-mini__body { flex: 1; min-width: 0; }
.group-mini__name { font-size: 14px; font-weight: 600; letter-spacing: -0.01em; }
.group-mini__when { font-size: 12px; opacity: 0.7; margin-top: 2px; }
.chat-snippet { display: flex; flex-direction: column; gap: 8px; flex: 1; overflow: hidden; margin-top: var(--sp-3); }
.chat-snippet__msg { display: flex; gap: 8px; align-items: start; }
.chat-snippet__bubble { background: var(--grey-bg); border-radius: 14px; padding: 8px 12px; font-size: 13px; max-width: 90%; line-height: 1.4; color: var(--ink); }
.chat-snippet__bubble.me { background: var(--maroon-dark); color: var(--cream); margin-left: auto; }
.chat-snippet__name { font-size: 10px; font-weight: 600; color: var(--grey-1); margin-bottom: 2px; }
.directory-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
@media (min-width: 640px) { .directory-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .directory-grid { grid-template-columns: repeat(6, 1fr); } }
.dir-card { background: var(--bg); border: 1px solid var(--hairline); border-radius: var(--r-4); padding: var(--sp-4); text-align: center; transition: all var(--t-fast) var(--ease); cursor: pointer; }
.dir-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.dir-card__avatar { width: 56px; height: 56px; border-radius: 50%; margin: 0 auto var(--sp-3); display: inline-flex; align-items: center; justify-content: center; color: var(--cream); font-weight: 600; font-size: 18px; }
.dir-card__name { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; }
.dir-card__role { font-size: 11px; color: var(--grey-1); margin-top: 2px; }
.sermon-strip__art svg { color: rgba(255,255,255,0.75); position: relative; z-index: 1; }

/* Sermon strip body dark text */
.sermon-strip__body .eyebrow { color: var(--gold); }
.sermon-strip__body h3 { color: var(--cream); }
.sermon-strip__body .muted { color: rgba(245,239,224,0.75); }
.sermon-strip__body p { color: rgba(245,239,224,0.85); font-size: 15px; line-height: 1.6; margin: var(--sp-3) 0 var(--sp-5); }

/* ---------- Hero stats (dark variant on about page) ---------- */
.apple-hero--dark .hero-stats { border-top-color: rgba(255,255,255,0.12); }
/* Light hero stats on index.html (uses inline styles already, just ensure grid works) */
.hero-stats li { list-style: none; display: flex; flex-direction: column; align-items: center; }

/* ---------- Pill CTA active state ---------- */
.pill-cta.active { opacity: 0.75; pointer-events: none; }

/* ---------- Overlay for dark page nav (livestream) ---------- */
body.dark-page .apple-drawer-overlay { background: rgba(0,0,0,0.65); }

/* ---------- About page map grid fix ---------- */
@media (min-width: 1024px) {
  .mission-split + .mission-split,
  [style*="grid-template-columns:1fr;gap"] {
    /* no override needed, inline styles handle it */
  }
}

/* ---------- Gradient thumbs for sermon cards (bento-grid variants) ---------- */
.gradient-1 .sermon-card__art { background: linear-gradient(135deg, #7B2D38, #C9986A); }
.gradient-2 .sermon-card__art { background: linear-gradient(135deg, #3D0F18, #7B2D38); }
.gradient-3 .sermon-card__art { background: linear-gradient(135deg, #4A6B4E, #C9986A); }
.gradient-4 .sermon-card__art { background: linear-gradient(135deg, #C9986A, #D4985A); }
.gradient-5 .sermon-card__art { background: linear-gradient(135deg, #5B1A24, #4A6B4E); }
.gradient-6 .sermon-card__art { background: linear-gradient(135deg, #D4985A, #5B1A24); }

/* Sermon card thumb class applied directly on the art div */
.sermon-card__art.gradient-1 { background: linear-gradient(135deg, #7B2D38, #C9986A); }
.sermon-card__art.gradient-2 { background: linear-gradient(135deg, #3D0F18, #7B2D38); }
.sermon-card__art.gradient-3 { background: linear-gradient(135deg, #4A6B4E, #C9986A); }
.sermon-card__art.gradient-4 { background: linear-gradient(135deg, #C9986A, #D4985A); }
.sermon-card__art.gradient-5 { background: linear-gradient(135deg, #5B1A24, #4A6B4E); }
.sermon-card__art.gradient-6 { background: linear-gradient(135deg, #D4985A, #5B1A24); }

/* ---------- Verse rotator fade transition ---------- */
.verse-slide {
  transition: opacity 0.6s var(--ease);
}
.verse-slide:not(.active) { opacity: 0; position: absolute; pointer-events: none; }
[data-verse-rotator] { position: relative; min-height: 160px; text-align: center; padding: var(--sp-9) var(--sp-4); }
@media (min-width: 640px) { [data-verse-rotator] { min-height: 200px; } }

/* ---------- Hero stats dark mode ---------- */
@media (prefers-color-scheme: dark) {
  .hero-stat__label { color: rgba(255,255,255,0.6); }
}

/* ---------- Footer bottom (used on some pages) ---------- */
.apple-footer__legal {
  padding-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  justify-content: space-between;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--grey-1);
}

/* ============================================================
   REAL LOGO + PHOTO-DRIVEN DESIGN (May 2026 redesign)
   ============================================================ */

/* Nav logo (replaces .brand-mark on nav) */
.apple-nav__brand .nav-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity var(--t-fast) var(--ease);
}
.apple-nav__brand:hover .nav-logo { opacity: 0.82; }
body.dark-page .apple-nav__brand .nav-logo {
  filter: brightness(0) invert(1);
}

/* Footer logo */
.apple-footer__brand .footer-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Hero photo background (full-bleed worship image) */
.apple-hero--photo {
  background-color: var(--maroon-deeper);
  background-image:
    linear-gradient(180deg, rgba(20,8,12,0.55) 0%, rgba(61,15,24,0.78) 60%, rgba(20,8,12,0.92) 100%),
    url('/images/N2Worship.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--cream);
  min-height: 100vh;
}
.apple-hero--photo h1,
.apple-hero--photo .h1 { color: var(--cream); text-shadow: 0 2px 30px rgba(0,0,0,0.5); }
.apple-hero--photo .lede { color: rgba(245,239,224,0.92); text-shadow: 0 1px 12px rgba(0,0,0,0.35); }
.apple-hero--photo .eyebrow { color: var(--gold); }
.apple-hero--photo .apple-hero__bg { display: none; }
.apple-hero--photo .scroll-nudge { color: rgba(255,255,255,0.7); }

/* Hero logo (centered above headline) */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.hero-logo {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}
@media (max-width: 640px) {
  .hero-logo { width: 100px; }
}

/* Headline accent — "Hope" in gold + italic serif */
.apple-hero--photo h1 .hope-accent {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  background: linear-gradient(135deg, #E6BB85 0%, #C9986A 60%, #D4985A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glass pill stats (replace .hero-stats grid) */
.hero-stats-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: center;
  margin: var(--sp-7) auto 0;
  max-width: 820px;
  padding: 0;
  list-style: none;
  border-top: 0;
}
.hero-stats-pills li {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-pill);
  padding: 12px 22px;
  min-width: 130px;
  list-style: none;
}
.hero-stats-pills .hero-stat__num {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.hero-stats-pills .hero-stat__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,239,224,0.78);
  margin-top: 2px;
}
@media (max-width: 640px) {
  .hero-stats-pills li { min-width: 0; padding: 10px 16px; }
  .hero-stats-pills .hero-stat__num { font-size: 16px; }
}

/* Photo bento cards — image background + overlay */
.bento-card--photo {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  color: var(--cream);
  border-radius: var(--r-3);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: var(--maroon-deeper);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.bento-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.82) 100%);
  z-index: 0;
  transition: background var(--t-base) var(--ease);
}
.bento-card--photo:hover::before {
  background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(61,15,24,0.55) 50%, rgba(20,8,12,0.92) 100%);
}
.bento-card--photo > * { position: relative; z-index: 1; }
.bento-card--photo .bento-card__title {
  color: var(--cream);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.bento-card--photo .bento-card__desc {
  color: rgba(245,239,224,0.88);
  font-size: 14.5px;
  line-height: 1.55;
  margin-bottom: var(--sp-3);
}
.bento-card--photo .text-link {
  color: var(--gold);
  font-weight: 600;
}
.bento-card--photo:hover .text-link { color: #E6BB85; }
.bento-card--photo:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(20,8,12,0.35); }

/* Sermon strip — make art use a real photo */
.sermon-strip__art.photo-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}
.sermon-strip__art.photo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,15,24,0.55) 0%, rgba(20,8,12,0.45) 100%);
}
.sermon-strip__art.photo-bg svg { z-index: 1; color: rgba(255,255,255,0.95); }

/* X feed cards — extra visual weight */
.xfeed-card {
  background: var(--bg-warm);
  border-radius: var(--r-3);
  padding: var(--sp-5);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.xfeed-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.08); }
.xfeed-card__head { display: flex; align-items: center; gap: 10px; }
.xfeed-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon) 0%, var(--gold) 100%);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.xfeed-card__handle { font-size: 13px; color: var(--ink-2); font-weight: 600; }
.xfeed-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}

/* Split CTA photo backgrounds */
.split-card.split-card--photo-give {
  background-color: var(--maroon-deeper);
  background-image:
    linear-gradient(135deg, rgba(61,15,24,0.85) 0%, rgba(91,26,36,0.70) 60%, rgba(20,8,12,0.92) 100%),
    url('/images/6-1.jpg');
  background-size: cover;
  background-position: center;
}
.split-card.split-card--photo-prayer {
  background-color: #2A0D14;
  background-image:
    linear-gradient(135deg, rgba(20,8,12,0.55) 0%, rgba(61,15,24,0.78) 100%),
    url('/images/prayer-featured.png');
  background-size: cover;
  background-position: center;
  color: var(--cream);
}
.split-card.split-card--photo-prayer .eyebrow { color: var(--gold); }
.split-card.split-card--photo-prayer h3 { color: var(--cream); }
.split-card.split-card--photo-prayer p { color: rgba(245,239,224,0.85); }

/* Hide old hero radial bg when photo hero is active */
.apple-hero--photo .apple-hero__bg { display: none; }
@media (min-width: 640px) { .apple-footer__legal { flex-direction: row; align-items: center; } }
