:root {
  /* Core brand */
  --plum-900: #1F0A1D;
  --plum-800: #2A0E27;
  --plum-700: #3A1535;
  --plum-600: #4A1942;       /* Sanctuary Plum */
  --plum-500: #6B2C60;
  --plum-300: #B48AA9;
  --plum-100: #EFE3EC;
  --plum-50:  #F8F2F6;

  --coral-700: #B84226;
  --coral-600: #D94F2E;
  --coral-500: #E85D3C;       /* Coral Flame */
  --coral-300: #F1A68E;
  --coral-100: #FCE5DB;
  --coral-50:  #FDF2EC;

  --parchment:   #FAF6F0;
  --parchment-2: #F3EEE5;
  --mist:        #E8E1D9;
  --mist-2:      #D5CDC3;

  --ink:    #1C1A23;
  --ink-80: #3A3641;
  --ink-60: #6B6571;
  --ink-40: #9E9AA5;
  --ink-20: #C8C5CE;

  --gold-500: #C99A3E;

  /* Semantic */
  --bg-page: var(--parchment);
  --bg-alt:  var(--parchment-2);
  --bg-card: #FFFFFF;
  --bg-dark: var(--plum-800);

  --text-primary:   var(--ink);
  --text-secondary: var(--ink-60);
  --text-muted:     var(--ink-40);
  --text-inverse:   #FAF6F0;

  --border-soft:   var(--mist);
  --border-strong: var(--mist-2);

  --cta-primary: var(--plum-600);
  --cta-accent:  var(--coral-500);

  /* Arch radii */
  --arch-full: 50% 50% 0 0 / 30% 30% 0 0;
  --arch-soft: 50% 50% 0 0 / 18% 18% 0 0;
  --arch-hi:   50% 50% 0 0 / 45% 45% 0 0;

  /* Type */
  --display: "DM Serif Display", "Times New Roman", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(28,26,35,0.04), 0 1px 3px rgba(28,26,35,0.06);
  --shadow-md: 0 4px 6px -1px rgba(28,26,35,0.05), 0 2px 12px rgba(74,25,66,0.06);
  --shadow-lg: 0 10px 24px -4px rgba(28,26,35,0.08), 0 4px 8px rgba(74,25,66,0.06);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------- Reset ----------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
html, body { overflow-x: clip; }   /* clip avoids breaking position: sticky on descendants */
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--plum-600); text-decoration: none; transition: color 0.2s var(--ease-out); }
a:hover { color: var(--plum-700); }

/* ----------------------- Layout ----------------------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .wrap { padding: 0 20px; } }

section { padding: 112px 0; }

section.alt {
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(180, 138, 169, 0.22), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(232, 93, 60, 0.14), transparent 60%),
    var(--bg-alt);
}
section.dark { background: var(--bg-dark); color: var(--text-inverse); }
@media (max-width: 800px) { section { padding: 72px 0; } }

/* Eyebrow label */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-600);
  margin-bottom: 20px;
}
section.dark .eyebrow { color: var(--coral-300); }

/* Display headlines */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text-primary);
}
.display em { font-style: italic; color: var(--plum-600); }
section.dark .display { color: var(--text-inverse); }
section.dark .display em { color: var(--coral-300); }

h1.display { font-size: clamp(48px, 7vw, 88px); }
h2.display { font-size: clamp(36px, 5vw, 56px); }
h3.display { font-size: clamp(28px, 3.5vw, 40px); }

/* Sans headings */
.sub {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 640px;
  font-weight: 400;
}
section.dark .lede { color: rgba(250,246,240,0.78); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 16px; }

/* ----------------------- Top nav ----------------------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

body { padding-top: var(--topbar-height, 72px); }
body[data-page="home"] { padding-top: 0; }
.topbar .brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  line-height: 0;
}
.topbar .brand-logo {
  display: block;
  height: 64px;
  width: auto;
  transition: opacity 0.45s var(--ease-out);
}

.topbar .brand-logo-light {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  :root { --topbar-height: 104px; }
  .topbar { padding: 22px 20px; }
  .topbar .brand-logo { height: 60px; }
}
.topbar nav {
  display: flex; align-items: center; gap: 24px;
  font-size: 14px; font-weight: 500;
}
.topbar nav a { color: var(--text-secondary); }
.topbar nav a:hover, .topbar nav a.active { color: var(--plum-600); }

.topbar .menu-btn {
  display: none;
  background: none; border: none;
  font: inherit; color: var(--text-primary);
  font-size: 22px; cursor: pointer; padding: 4px 10px;
}

@media (max-width: 920px) {
  .topbar nav { display: none; }
  .topbar .menu-btn { display: inline-block; }
  .topbar.menu-open nav {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--parchment);
    border-bottom: 1px solid var(--border-soft);
    padding: 20px 32px 24px;
    gap: 14px;
  }
  .topbar.menu-open nav a { font-size: 17px; }
  .topbar .btn-watch { display: none; }
  .topbar.menu-open nav .btn-watch {
    display: inline-flex; margin-top: 8px;
  }
}

.topbar nav a.btn-watch,
.topbar nav a.btn-watch:hover,
.topbar nav a.btn-watch:focus { color: #fff; }

.topbar {
  transition:
    background 0.45s var(--ease-out),
    border-bottom-color 0.45s var(--ease-out),
    backdrop-filter 0.45s var(--ease-out);
}
.topbar .brand,
.topbar nav a:not(.btn-watch) {
  transition: color 0.45s var(--ease-out);
}
@media (min-width: 921px) {
  body[data-page="home"] .topbar.over-hero {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
  }
  
  body[data-page="home"] .topbar.over-hero .brand-logo-dark {
    opacity: 0;
  }
  body[data-page="home"] .topbar.over-hero .brand-logo-light {
    opacity: 1;
  }
  body[data-page="home"] .topbar.over-hero nav a:not(.btn-watch) {
    color: rgba(250, 246, 240, 0.85);
  }
  body[data-page="home"] .topbar.over-hero nav a:not(.btn-watch):hover {
    color: var(--text-inverse);
  }
}

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease-out),
              background 0.25s var(--ease-out),
              color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out);
  min-height: 48px;
  will-change: transform;
}
.btn .arrow { display: inline-block; transition: transform 0.25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* Compact pill, used for inline card actions like "Add to calendar". */
.btn.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
  min-height: 30px;
  gap: 5px;
  border-width: 1px;
}

.btn-primary {
  background: var(--plum-600); color: var(--text-inverse); border-color: var(--plum-600);
}
.btn-primary:hover {
  background: var(--plum-700); border-color: var(--plum-700);
  color: var(--text-inverse);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-accent {
  background: linear-gradient(180deg, #F2704C 0%, #E85D3C 55%, #D94F2E 100%);
  color: #fff;
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 8px 22px -8px rgba(184, 66, 38, 0.55),
    0 1px 2px rgba(28,26,35,0.06);
}
.btn-accent:hover {
  background: linear-gradient(180deg, #FF7C57 0%, #F26B47 55%, #E04F2C 100%);
  color: #fff;
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    0 12px 28px -8px rgba(184, 66, 38, 0.65),
    0 2px 4px rgba(28,26,35,0.10);
  transform: translateY(-1px);
}
.btn-accent:active {
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 4px 12px -4px rgba(184, 66, 38, 0.50);
}

.btn-outline {
  background: transparent; color: var(--plum-600); border-color: var(--plum-600);
}
.btn-outline:hover {
  background: var(--plum-600); color: var(--text-inverse);
}

.btn-on-dark {
  background: var(--parchment); color: var(--plum-700); border-color: var(--parchment);
}
.btn-on-dark:hover {
  background: #fff; color: var(--plum-700);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--plum-600);
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.btn-social svg {
  width: 26px;
  height: 26px;
  display: block;
  transition: transform 0.3s var(--ease-out);
}
.btn-social:hover {
  color: var(--plum-700);
  transform: translateY(-2px);
}
.btn-social:hover svg {
  transform: scale(1.06);
}
.btn-social:focus-visible {
  outline: 2px solid var(--plum-600);
  outline-offset: 4px;
  border-radius: 6px;
}

.btn-ghost-on-dark {
  background: transparent; color: var(--text-inverse); border-color: rgba(250,246,240,0.6);
}
.btn-ghost-on-dark:hover {
  background: rgba(250,246,240,0.08); border-color: var(--text-inverse); color: var(--text-inverse);
}

.btn-watch {
  background: linear-gradient(180deg, #F2704C 0%, #E85D3C 55%, #D94F2E 100%);
  color: #fff;
  border-color: transparent;
  padding: 10px 20px; font-size: 14px; min-height: 40px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.24),
    0 6px 16px -6px rgba(184, 66, 38, 0.50),
    0 1px 2px rgba(28,26,35,0.05);
}
.btn-watch::before {
  content: ''; width: 8px; height: 8px;
  border-radius: 999px; background: #fff;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}
.btn-watch:hover {
  background: linear-gradient(180deg, #FF7C57 0%, #F26B47 55%, #E04F2C 100%);
  color: #fff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.32),
    0 10px 22px -6px rgba(184, 66, 38, 0.6),
    0 2px 4px rgba(28,26,35,0.08);
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Hero buttons: keep side-by-side on mobile by shrinking instead of stacking. */
@media (max-width: 600px) {
  .hero .btn-row {
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
  }
  .hero .btn-row .btn {
    padding: 11px 16px;
    font-size: 13.5px;
    min-height: 44px;
    white-space: nowrap;
    flex: 0 1 auto;
  }
}
@media (max-width: 360px) {
  .hero .btn-row .btn {
    padding: 10px 12px;
    font-size: 12.5px;
    gap: 6px;
  }
}

/* ----------------------- Hero ----------------------- */
.hero {
  position: relative;
  padding: 112px 0 96px;
  overflow: hidden;
  /* Subtle ambient wash — depth without noise. */
  background:
    radial-gradient(45% 60% at 110% -10%, rgba(74, 25, 66, 0.10), transparent 70%),
    radial-gradient(40% 50% at -10% 90%, rgba(232, 93, 60, 0.10), transparent 70%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 24px; max-width: 980px; }
.hero .lede { font-size: 20px; max-width: 640px; margin-bottom: 36px; }
.hero .meta {
  margin-top: 36px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-muted);
}
.hero-arch, .hero-arch-2 {
  position: absolute;
  border-radius: var(--arch-full);
  pointer-events: none;
  z-index: 1;
}
.hero-arch {
  top: 60px; right: -40px;
  width: 220px; height: 280px;
  background: var(--plum-600);
  opacity: 0.07;
}
.hero-arch-2 {
  top: 140px; right: 200px;
  width: 110px; height: 140px;
  background: var(--coral-500);
  opacity: 0.13;
}
@media (max-width: 800px) {
  .hero-arch, .hero-arch-2 { display: none; }
  .hero { padding: 56px 0 56px; }
}

.hero.compact { padding: 80px 0 60px; }
.hero.compact h1 { font-size: clamp(40px, 5.5vw, 64px); }

.hero.dark {
  background:
    radial-gradient(55% 65% at 80% 0%, rgba(232, 93, 60, 0.12), transparent 70%),
    radial-gradient(70% 80% at 15% 100%, rgba(180, 138, 169, 0.18), transparent 70%),
    linear-gradient(180deg, var(--plum-800) 0%, var(--plum-900) 100%);
  color: var(--text-inverse);
}
.hero.dark .display { color: var(--text-inverse); }
.hero.dark .display em { color: var(--coral-300); }
.hero.dark .lede { color: rgba(250,246,240,0.82); }
.hero.dark .meta { color: rgba(250,246,240,0.55); }
.hero.dark .hero-arch { opacity: 0.18; }
.hero.dark .hero-arch-2 { opacity: 0.28; }

.hero.hero-v2 {
  min-height: 100vh;
  min-height: 100svh;             /* iOS Safari: small viewport (address bar visible) so hero never overflows */
  padding: 0;
  display: flex;
  align-items: flex-end;            /* anchor content near bottom */
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--plum-900);  /* fallback if photo + gradient layers fail */
}
.hero.hero-v2 .hero-arch,
.hero.hero-v2 .hero-arch-2 { display: none; } /* legacy decoration off in v2 */

body[data-page="home"] section.alt#welcome {
  position: relative;
  z-index: 5;
  margin-top: -48px;
  border-top-left-radius: 50% 48px;
  border-top-right-radius: 50% 48px;
  padding-top: 152px;             /* base 112px + 40px breathing room below the curve */
}
@media (max-width: 600px) {
  body[data-page="home"] section.alt#welcome {
    margin-top: -32px;
    border-top-left-radius: 50% 32px;
    border-top-right-radius: 50% 32px;
    padding-top: 104px;
  }
}

.hero-v2 .hero-photo {
  position: absolute; inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg,
      rgba(31, 3, 44, 0.62) 0%,
      rgba(74, 25, 66, 0.55) 45%,
      rgba(42, 14, 39, 0.78) 100%),
    url('assets/photos/hero_background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-v2 .aurora {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
}
.hero-v2 .aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, opacity;
}
.hero-v2 .aurora-blob--plum {
  width: 70vw; height: 70vw; max-width: 1100px; max-height: 1100px;
  background: radial-gradient(circle, rgba(180, 138, 169, 0.32), transparent 65%);
  top: -25%; left: -18%;
  animation: hero-drift-1 28s ease-in-out infinite alternate;
}
.hero-v2 .aurora-blob--coral {
  width: 55vw; height: 55vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(241, 166, 142, 0.28), transparent 65%);
  bottom: -22%; right: -10%;
  animation: hero-drift-2 34s ease-in-out infinite alternate;
}
.hero-v2 .aurora-blob--soft {
  width: 40vw; height: 40vw; max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(239, 227, 236, 0.22), transparent 65%);
  top: 15%; right: 5%;
  animation: hero-drift-3 22s ease-in-out infinite alternate;
}

.hero-v2 .hero-archlight {
  position: absolute;
  bottom: -12%;
  left: 50%;
  width: clamp(420px, 65vh, 880px);
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg,
    rgba(250, 246, 240, 0.08) 0%,
    rgba(250, 246, 240, 0.02) 60%,
    transparent 100%);
  border: 1px solid rgba(250, 246, 240, 0.20);
  border-bottom: none;
  border-radius: var(--arch-full);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  animation: hero-breathe 9s ease-in-out infinite;
}

.hero-v2 .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 940px;
  
  padding: clamp(96px, calc(var(--topbar-height, 72px) + 24px), 140px) 32px clamp(80px, 18vh, 180px);
  color: var(--text-inverse);
}
.hero-v2 .hero-content .eyebrow { color: var(--coral-300); }
.hero-v2 .hero-content h1.display {
  margin: 14px auto 18px;
  max-width: 14ch;
  color: var(--text-inverse);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  
  font-size: clamp(36px, min(6.5vw, 9vh), 76px);
  line-height: 1.06;
}
.hero-v2 .hero-content .lede {
  margin: 0 auto clamp(18px, 3vh, 26px);
  max-width: 52ch;
  font-size: clamp(15px, 1.7vh, 17px);
  color: rgba(250, 246, 240, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.hero-v2 .hero-content .btn-row { margin-bottom: clamp(8px, 1.5vh, 14px); }
@media (max-height: 900px) {
  
  .hero-v2 .hero-content h1.display {
    font-size: clamp(34px, 6.8vh, 58px);
    margin: 12px auto 14px;
  }
  .hero-v2 .hero-content { padding-bottom: clamp(64px, 13vh, 120px); }
  .hero-v2 .hero-content .lede {
    font-size: clamp(14px, 1.6vh, 16px);
    margin-bottom: clamp(14px, 2.2vh, 22px);
  }
}
@media (max-height: 720px) {
  /* Surface Duo / very short laptops — squeeze further. */
  .hero-v2 .hero-content {
    padding-top: clamp(80px, calc(var(--topbar-height, 72px) + 12px), 110px);
    padding-bottom: 48px;
  }
  .hero-v2 .hero-content h1.display {
    font-size: clamp(30px, 6vh, 48px);
    margin: 8px auto 10px;
  }
  .hero-v2 .hero-content .meta-link {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 480px) {
  
  .hero-v2 .hero-content h1.display { max-width: 100%; }
}

@media (max-width: 380px), (max-width: 480px) and (max-height: 700px) {
  .hero-v2 .hero-content {
    padding-top: clamp(76px, calc(var(--topbar-height, 72px) + 6px), 96px);
    padding-bottom: 36px;
  }
  .hero-v2 .hero-content .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }
  .hero-v2 .hero-content h1.display {
    font-size: clamp(26px, 8.5vw, 34px);
    margin: 4px auto 10px;
    line-height: 1.08;
  }
  .hero-v2 .hero-content .lede {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 16px;
  }
  .hero-v2 .hero-content .btn-row {
    gap: 10px;
    margin-bottom: 12px;
  }
  .hero-v2 .hero-content .btn,
  .hero-v2 .hero-content .btn-outline-on-photo {
    padding: 11px 18px;
    font-size: 14px;
    min-height: 42px;
  }
  .hero-v2 .hero-content .meta-link {
    font-size: 11px;
    letter-spacing: 0.08em;
  }
}
.hero-v2 .hero-content .meta {
  color: rgba(250, 246, 240, 0.65);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
/* Address as a Google-Maps link with a small location-pin glyph. */
.hero-v2 .hero-content .meta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}
.hero-v2 .hero-content .meta-link svg {
  flex-shrink: 0;
  opacity: 0.8;
  
  width: 1.5em;
  height: 1.5em;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.hero-v2 .hero-content .meta-link:hover {
  color: var(--text-inverse);
}
.hero-v2 .hero-content .meta-link:hover svg {
  opacity: 1;
  transform: translateY(-1px);
}

.btn-outline-on-photo {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(250, 246, 240, 0.55);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid rgba(250, 246, 240, 0.55);
  transition: all 0.25s var(--ease-out);
  min-height: 48px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline-on-photo:hover {
  background: rgba(250, 246, 240, 0.15);
  border-color: var(--text-inverse);
  color: var(--text-inverse);
  transform: translateY(-1px);
}

.hero-v2 .scroll-cue {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(250, 246, 240, 0.70);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.hero-v2 .scroll-cue:hover { color: var(--text-inverse); transform: translateX(-50%) translateY(2px); }
.hero-v2 .scroll-cue-line {
  position: relative;
  width: 1px;
  height: 18px;
  background: rgba(250, 246, 240, 0.25);
  display: block;
  overflow: hidden;
}
.hero-v2 .scroll-cue-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 9px;
  background: var(--text-inverse);
  animation: hero-scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(14vw, 10vh) scale(1.18); }
}
@keyframes hero-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-12vw, -8vh) scale(1.12); }
}
@keyframes hero-drift-3 {
  0%   { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(-10vw, 6vh) scale(0.85); opacity: 0.55; }
}
@keyframes hero-breathe {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.85; }
  50%      { transform: translateX(-50%) scale(1.04); opacity: 1; }
}
@keyframes hero-scroll-pulse {
  0%   { transform: translateY(-9px); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

@media (max-width: 600px) {
  .hero-v2 .hero-content { padding: 56px 20px; }
  .hero-v2 .scroll-cue { display: none; }
}

/* Very small phones (e.g. iPhone SE 320 width): shrink the address widget and
   tighten buttons so the hero copy isn't pushed off-screen. */
@media (max-width: 360px) {
  .hero-v2 .hero-content .meta-link {
    gap: 6px;
    font-size: 10.5px;
    letter-spacing: 0.06em;
    line-height: 1.35;
    margin-top: 12px;
  }
  .hero-v2 .hero-content .meta-link svg { width: 1.15em; height: 1.15em; }
  .hero-v2 .hero-content .btn,
  .hero-v2 .hero-content .btn-outline-on-photo {
    padding: 9px 14px;
    font-size: 13px;
    min-height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2 .aurora-blob,
  .hero-v2 .hero-archlight,
  .hero-v2 .hero-photo,
  .hero-v2 .scroll-cue-line::after { animation: none !important; }
}

/* ----------------------- Cards ----------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 28px;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--plum-300);
}
.card .label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral-600);
  margin-bottom: 14px;
}
.card h3 {
  font-family: var(--sans);
  font-weight: 600; font-size: 20px;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.card p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.6;
}
.card .card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 14px; font-weight: 600;
  color: var(--plum-600);
}
.card .card-cta:hover { color: var(--plum-700); }
.card .card-cta::after { content: '→'; transition: transform 0.25s var(--ease-out); }
.card .card-cta:hover::after { transform: translateX(4px); }

.card.schedule-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: 32px;
}
.card.schedule-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.card.schedule-card p {
  font-size: 16px;
  color: var(--plum-600);
  font-weight: 600;
  letter-spacing: -0.005em;
}
.card.schedule-card .cal-add {
  align-self: flex-start;
  margin-top: 4px;
}

.cal-add { position: relative; display: inline-block; }
.cal-add .cal-chev {
  margin-left: 2px;
  transition: transform 0.25s var(--ease-out);
}
.cal-add [aria-expanded="true"] .cal-chev { transform: rotate(180deg); }
.cal-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 14px 32px -8px rgba(31,3,44,0.18),
              0 4px 12px -4px rgba(31,3,44,0.10);
  animation: cal-menu-in 0.18s var(--ease-out);
}
.cal-menu[hidden] { display: none; }
.cal-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.2s var(--ease-out),
              color 0.2s var(--ease-out);
}
.cal-menu a:hover,
.cal-menu a:focus-visible {
  background: var(--plum-50);
  color: var(--plum-700);
  outline: none;
}
@keyframes cal-menu-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card grids */
.grid { display: grid; gap: 24px; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .grid.c4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 800px) { .grid.c3 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .grid.c2, .grid.c4 { grid-template-columns: 1fr; } }

.spot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
#spotGridNextSteps { grid-template-columns: repeat(3, 1fr); }
#spotGridDuringService { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  #spotGridNextSteps { grid-template-columns: 1fr; }
  #spotGridDuringService { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .spot-grid { grid-template-columns: 1fr; }
}
.spot-card {
  background: var(--bg-card);
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s var(--ease-out);
}
.spot-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 240px at var(--mx, 50%) var(--my, 50%),
              rgba(74, 25, 66, 0.10), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}
.spot-card:hover::before { opacity: 1; }
.spot-card .label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral-600);
  margin-bottom: 14px;
  position: relative; z-index: 2;
}

.spot-card .card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--plum-100);
  color: var(--plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative; z-index: 2;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.spot-card .card-icon svg { width: 22px; height: 22px; display: block; }
.spot-card:hover .card-icon { background: var(--plum-600); color: var(--text-inverse); }

/* Contact "Reach us" list — small leading icons aligned with each row. */
.contact-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 14px;
  margin: 0; padding: 0;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
}
.contact-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--plum-100);
  color: var(--plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 14px; height: 14px; display: block; }
.spot-card .num {
  font-family: var(--display);
  font-size: 36px;
  color: rgba(74, 25, 66, 0.18);
  margin-bottom: 12px;
  line-height: 1;
}
.spot-card h3 {
  font-family: var(--sans);
  font-size: 19px; font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  position: relative; z-index: 2;
}
.spot-card p {
  font-size: 14.5px; color: var(--text-secondary);
  line-height: 1.55;
  position: relative; z-index: 2;
}
.spot-card .card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-size: 13.5px; font-weight: 600;
  color: var(--plum-600);
  position: relative; z-index: 2;
}
.spot-card .card-cta::after {
  content: '→'; transition: transform 0.25s var(--ease-out);
}
.spot-card:hover .card-cta::after { transform: translateX(4px); }

.stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.stack-visual {
  position: sticky;
  top: 120px;
  height: fit-content;
}
.stack-arch {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--plum-100);
  border: 1px solid var(--border-soft);
  border-radius: var(--arch-full);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.stack-arch::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(74,25,66,0.12), transparent 60%),
    linear-gradient(160deg, rgba(232,93,60,0.08), transparent 60%);
}
.stack-state {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 36px 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  overflow: hidden;
}
.stack-state.active { opacity: 1; transform: translateY(0); }
.stack-state img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.stack-card-arch { display: none; }

.stack-state img + .caption-overlay,
.stack-state.has-image::before {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; top: 40%;
  background: linear-gradient(180deg, transparent, rgba(28, 10, 26, 0.55));
  z-index: 1;
  pointer-events: none;
}
.stack-state .placeholder {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--plum-700);
  background: rgba(255,255,255,0.7);
  padding: 6px 14px; border-radius: 999px;
  margin-top: auto;
  margin-bottom: 8px;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
}
.stack-state .caption {
  font-family: var(--display); font-style: italic;
  font-size: 22px; line-height: 1.2;
  color: var(--plum-700);
  max-width: 80%;
  position: relative;
  z-index: 2;
}

.stack-state.has-image .caption { color: var(--text-inverse); }
.stack-state.has-image .placeholder { display: none; }
.stack-features {
  display: flex; flex-direction: column;
  gap: 160px;
  padding: 8px 0;
}
.stack-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 64px 40px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.45;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease-out),
              transform 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.stack-card.active {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--plum-300);
  box-shadow: var(--shadow-md);
}
.stack-card .num {
  font-family: var(--display); font-style: italic;
  font-size: 30px;
  color: var(--coral-500);
  line-height: 1; margin-bottom: 8px;
}
.stack-card h3 {
  font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.stack-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .stack { grid-template-columns: 1fr; gap: 32px; }
  
  .stack-visual { display: none; }
  .stack-features { gap: 20px; }
  .stack-card {
    padding: 28px;
    min-height: 0;
    opacity: 1;
    transform: none;
    border-color: var(--border-soft);
    box-shadow: none;
  }
  .stack-card.active {
    border-color: var(--border-soft);
    box-shadow: none;
  }
  .stack-card-arch {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    background: var(--plum-100);
    border: 1px solid var(--border-soft);
    border-radius: var(--arch-full);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 12px;
  }
  .stack-card-arch:first-child { margin-top: 0; }
  .stack-card-arch img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    
    object-position: center 25%;
    z-index: 0;
  }
  .stack-card-arch::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0; top: 40%;
    background: linear-gradient(180deg, transparent, rgba(28, 10, 26, 0.55));
    z-index: 1;
    pointer-events: none;
  }
  .stack-card-arch .caption {
    position: absolute;
    left: 0; right: 0; bottom: 22px;
    margin: 0 auto;
    padding: 0 28px;
    font-family: var(--display); font-style: italic;
    font-size: 20px; line-height: 1.2;
    color: var(--text-inverse);
    text-align: center;
    max-width: 80%;
    z-index: 2;
  }
}

.church-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.church-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--plum-300);
}
.church-card .card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--plum-500), var(--plum-700));
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.grid.c2 .church-card .card-image { height: 300px; }
.church-card .card-image.coral {
  background: linear-gradient(135deg, var(--coral-300), var(--coral-600));
}
.church-card .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.church-card:hover .card-image img { transform: scale(1.04); }
.church-card .card-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 10, 26, 0.32));
  pointer-events: none;
}
@media (max-width: 600px) {
  .church-card .card-image,
  .grid.c2 .church-card .card-image { height: 168px; }
}
.church-card .card-body {
  padding: 24px 28px 28px;
  flex: 1;
}
.church-card .card-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-600);
  margin-bottom: 10px;
}
.church-card .card-title {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.church-card .card-time {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--plum-600);
  margin-bottom: 10px;
}
.church-card .card-desc {
  display: block;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
}
.church-card .card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--plum-600);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.church-card .card-link:hover { color: var(--coral-600); }
.church-card .card-link::after {
  content: '→';
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
}
.church-card .card-link:hover::after { transform: translateX(4px); }

.cta-band {
  background:
    radial-gradient(60% 70% at 18% 100%, rgba(232, 93, 60, 0.22), transparent 65%),
    radial-gradient(48% 60% at 85% -5%, rgba(180, 138, 169, 0.28), transparent 65%),
    linear-gradient(180deg, var(--plum-700) 0%, var(--plum-800) 100%);
  color: var(--text-inverse);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: '';
  position: absolute;
  border-radius: var(--arch-full);
  pointer-events: none;
  filter: blur(2px);
}
.cta-band::before {
  top: -80px; left: -80px;
  width: 280px; height: 340px;
  background: var(--plum-500);
  opacity: 0.22;
}
.cta-band::after {
  bottom: -120px; right: -60px;
  width: 240px; height: 300px;
  background: var(--coral-500);
  opacity: 0.18;
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2.display { color: var(--text-inverse); margin-bottom: 16px; }
.cta-band h2.display em { color: var(--coral-300); }
.cta-band .lede { color: rgba(250,246,240,0.78); margin-bottom: 28px; }

/* ----------------------- Photo placeholder ----------------------- */
.photo-arch {
  background: var(--plum-100);
  border: 1px solid var(--border-soft);
  border-radius: var(--arch-full);
  aspect-ratio: 4 / 5;
  width: 100%;
  position: relative;
  overflow: hidden;
  
  box-shadow: var(--shadow-md);
}
.photo-arch::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(74,25,66,0.10), transparent 60%),
    linear-gradient(160deg, rgba(232,93,60,0.06), transparent 60%);
}
.photo-arch .label {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--plum-700);
  background: rgba(255,255,255,0.78);
  padding: 6px 14px; border-radius: 999px;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.photo-arch.landscape {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
}

.photo-arch img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}
.photo-arch.has-image .label,
.photo-arch.has-image::before { display: none; }

.photo-arch.has-image {
  background: linear-gradient(135deg, #8c5a7d, var(--plum-600) 50%, #2a0e27);
  border: none;
}
.photo-arch.has-image img {
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  border-radius: var(--arch-full);
}
.photo-arch.has-image::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  border-radius: var(--arch-full);
  pointer-events: none;
  z-index: 2;
}

.photo-arch.editorial,
.photo-arch.has-image.editorial {
  background:
    radial-gradient(circle at 30% 20%, rgba(232, 93, 60, 0.35) 0%, transparent 45%),
    linear-gradient(135deg, var(--plum-500), var(--plum-700) 60%, var(--plum-800));
}
.photo-arch.editorial::before { display: none; }
.photo-arch.editorial::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  border-radius: var(--arch-full);
  pointer-events: none;
  z-index: 2;
}

.photo-rect {
  background: var(--plum-100);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.photo-rect::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(74,25,66,0.10), rgba(232,93,60,0.06));
}
.photo-rect .label {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--plum-700);
  background: rgba(255,255,255,0.85);
  padding: 5px 10px; border-radius: 6px;
}

/* ----------------------- Two-col text + photo ----------------------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col.flip { direction: ltr; }
}

/* ----------------------- FAQ ----------------------- */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.faq details:hover { border-color: var(--plum-300); }
.faq details[open] {
  border-color: var(--plum-300);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 600; font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--display);
  font-size: 24px; color: var(--plum-600);
  transition: transform 0.25s var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ----------------------- Forms ----------------------- */
.form { display: flex; flex-direction: column; gap: 14px; }
.form .field { display: flex; flex-direction: column; gap: 6px; }
.form label {
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary);
}
.form input, .form select, .form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--text-primary);
  width: 100%;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.form textarea { resize: vertical; min-height: 120px; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--plum-600);
  box-shadow: 0 0 0 4px rgba(74, 25, 66, 0.10);
}

/* ----------------------- Footer ----------------------- */
footer.site-footer {
  background: var(--plum-800);
  color: rgba(250,246,240,0.78);
  padding: 64px 0 28px;
}
footer.site-footer h4 {
  color: var(--text-inverse);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
footer.site-footer a {
  color: rgba(250,246,240,0.78);
  display: block;
  padding: 3px 0;
}
footer.site-footer a:hover { color: var(--text-inverse); }
footer.site-footer .col p { font-size: 14.5px; line-height: 1.7; }
footer.site-footer .grid { gap: 40px; }

/* 4-column footer: Visit | Services | Explore | Follow */
footer.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.4fr;
  gap: 48px;
}
@media (max-width: 920px) {
  footer.site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 600px) {
  footer.site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Visit list rows with leading icons */
footer.site-footer .visit-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 0;
}
footer.site-footer .visit-list .row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; line-height: 1.55;
}
footer.site-footer .visit-list .row svg {
  width: 13px; height: 13px;
  margin-top: 5px;
  color: rgba(250,246,240,0.55);
  flex-shrink: 0;
  transition: color 0.25s var(--ease-out);
}
footer.site-footer .visit-list .row a,
footer.site-footer .visit-list .row span {
  display: inline; padding: 0;
  color: rgba(250,246,240,0.78);
  line-height: 1.55;
}
footer.site-footer .visit-list .row a:hover { color: var(--text-inverse); }
footer.site-footer .visit-list .row:hover svg { color: var(--coral-300); }

/* Explore (links) column */
footer.site-footer .explore-list {
  display: flex; flex-direction: column;
  gap: 2px;
}
footer.site-footer .explore-list a {
  font-size: 14.5px;
  padding: 4px 0;
}
footer.site-footer .legal {
  border-top: 1px solid rgba(250,246,240,0.14);
  margin-top: 40px;
  padding-top: 18px;
  display: flex; flex-wrap: nowrap; gap: 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(250,246,240,0.55);
}

footer.site-footer .legal > :first-child {
  flex: 1 1 auto;
  min-width: 0;
}

footer.site-footer .legal .legal-credit {
  flex: 0 0 auto;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
}

footer.site-footer .legal a {
  display: inline;
  padding: 0;
}

@media (max-width: 560px) {
  footer.site-footer .legal {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  footer.site-footer .legal > :first-child { flex: 0 1 auto; }
}
footer.site-footer .socials {
  display: flex; gap: 10px; margin-top: 4px;
}
footer.site-footer .socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(250,246,240,0.08);
  color: var(--text-inverse);
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
footer.site-footer .socials a:hover {
  background: var(--coral-500);
  transform: translateY(-2px);
}
footer.site-footer .socials svg { width: 18px; height: 18px; }
footer.site-footer .nl-form {
  display: flex; gap: 8px; margin-top: 10px;
}
footer.site-footer .nl-form input {
  flex: 1; padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(250,246,240,0.20);
  background: rgba(250,246,240,0.06);
  color: var(--text-inverse);
  font: inherit;
}
footer.site-footer .nl-form input::placeholder { color: rgba(250,246,240,0.45); }
footer.site-footer .nl-form input:focus {
  outline: none;
  border-color: var(--coral-500);
}
footer.site-footer .nl-form button {
  padding: 10px 18px; min-height: 0;
  font-size: 13px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* ----------------------- Department list ----------------------- */
.dept {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 22px 24px;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.dept:hover { border-color: var(--plum-300); box-shadow: var(--shadow-sm); }
.dept .role {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral-600);
  margin-bottom: 8px;
}
.dept .lead {
  font-family: var(--sans);
  font-weight: 600; font-size: 17px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.dept .assist {
  font-size: 14px; color: var(--text-secondary);
}

/* ----------------------- Scroll reveal ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn-watch::before { animation: none; }
}

/* ----------------------- Live page bits ----------------------- */
.live-status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(74,25,66,0.1);
  color: var(--plum-700);
  letter-spacing: 0.04em;
}
.live-status .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--ink-40);
}
.live-status.live { background: rgba(232,93,60,0.12); color: var(--coral-700); }
.live-status.live .dot {
  background: var(--coral-500);
  animation: pulse-dot 2s ease-in-out infinite;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--plum-800);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--plum-700);
  position: relative;
}
.video-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.video-frame .placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(250,246,240,0.7);
  text-align: center; padding: 24px;
}

.live-stage {
  position: relative;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(232,93,60,0.10), transparent 70%),
    linear-gradient(180deg, var(--plum-800) 0%, var(--plum-700) 100%);
  color: var(--text-inverse);
  padding: 88px 0 120px;
  overflow: hidden;
}
.live-stage::after {
  
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: rgba(0,0,0,0.18);
}
.live-stage-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.live-stage-head {
  max-width: 720px;
}
.live-stage-head .live-status {
  background: rgba(250,246,240,0.10);
  color: var(--parchment);
  margin-bottom: 18px;
}
.live-stage-head .live-status .dot { background: rgba(250,246,240,0.55); }
.live-stage[data-live="true"] .live-status {
  background: var(--coral-600);
  color: #fff;
  animation: pulse-live 2.4s ease-in-out infinite;
}
.live-stage[data-live="true"] .live-status .dot {
  background: #fff;
  animation: pulse-dot 1.6s ease-in-out infinite;
}
.live-stage-head h1.display {
  color: var(--parchment);
  margin-bottom: 14px;
  font-size: clamp(36px, 5.5vw, 56px);
  white-space: nowrap;
}
@media (max-width: 380px) {
  .live-stage-head h1.display { white-space: normal; }
}
.live-stage-head .lede {
  color: rgba(250,246,240,0.8);
  margin: 0;
}

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,93,60,0.55); }
  50% { box-shadow: 0 0 0 10px rgba(232,93,60,0); }
}

.live-player {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55),
              0 12px 24px -8px rgba(31,3,44,0.4);
  isolation: isolate;
}
.live-player iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.live-player-link {
  position: absolute; inset: 0;
  display: block;
  cursor: pointer;
}
.live-player-thumb {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.live-player-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 50%, rgba(0,0,0,0.0), rgba(0,0,0,0.45)),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.3));
  z-index: 1;
}
.live-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 104px; height: 104px;
  border-radius: 999px;
  background: var(--coral-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 18px 40px -8px rgba(232,93,60,0.6),
              0 0 0 0 rgba(232,93,60,0.45);
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out);
}
.live-play svg { width: 38px; height: 38px; margin-left: 4px; }
.live-player-link:hover .live-play {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 22px 50px -8px rgba(232,93,60,0.75),
              0 0 0 14px rgba(232,93,60,0.18);
}
.live-player-link:hover .live-player-thumb { transform: scale(1.04); }

@media (max-width: 700px) {
  .live-stage { padding: 64px 0 88px; }
  .live-play { width: 80px; height: 80px; }
  .live-play svg { width: 30px; height: 30px; }
}

.broadcast-card {
  display: block;
  color: inherit;
  text-decoration: none;
}
.broadcast-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--plum-100);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.broadcast-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.broadcast-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(31,3,44,0.32));
  pointer-events: none;
}
.broadcast-play {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(250,246,240,0.92);
  color: var(--plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  backdrop-filter: blur(6px);
  transition: background 0.3s var(--ease-out),
              color 0.3s var(--ease-out),
              transform 0.3s var(--ease-out);
}
.broadcast-play svg { width: 18px; height: 18px; margin-left: 2px; }
.broadcast-card:hover .broadcast-thumb img { transform: scale(1.05); }
.broadcast-card:hover .broadcast-play {
  background: var(--coral-500);
  color: #fff;
  transform: scale(1.08);
}
.broadcast-meta h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color 0.25s var(--ease-out);
}
.broadcast-card:hover .broadcast-meta h3 { color: var(--coral-600); }
.broadcast-meta p {
  font-size: 14px;
  color: var(--text-secondary);
}

.upcoming-event {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 24px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}

.upcoming-event:has([data-cal-toggle][aria-expanded="true"]) {
  position: relative;
  z-index: 50;
}
.upcoming-event:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--plum-300);
}
.upcoming-event .event-date {
  flex-shrink: 0;
  width: 72px;
  text-align: center;
  background: linear-gradient(135deg, var(--plum-500), var(--plum-700));
  border-radius: 14px;
  padding: 14px 6px 16px;
  color: #fff;
}
.upcoming-event .event-date .month {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-300);
  margin-bottom: 4px;
}
.upcoming-event .event-date .day {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
}
.upcoming-event .event-body { flex: 1; min-width: 0; }
.upcoming-event .event-meta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--coral-600);
  margin-bottom: 8px;
}
.upcoming-event h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.012em;
  line-height: 1.25;
  margin-bottom: 8px;
}
.upcoming-event p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 14px;
}
.upcoming-event .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--plum-600);
}
.upcoming-event .card-cta::after {
  content: '\2192';
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
}
.upcoming-event .card-cta:hover { color: var(--coral-600); }
.upcoming-event .card-cta:hover::after { transform: translateX(4px); }

.upcoming-event .cal-add { display: inline-block; position: relative; }
.upcoming-event .cal-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: -0.005em;
  color: var(--plum-600);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s var(--ease-out);
}
.upcoming-event .cal-cta:hover { color: var(--coral-600); }
.upcoming-event .cal-cta:focus-visible {
  outline: 2px solid var(--plum-600);
  outline-offset: 4px;
  border-radius: 4px;
}
.upcoming-event .cal-cta .cal-chev {
  width: 10px; height: 10px;
  transition: transform 0.25s var(--ease-out);
}
.upcoming-event .cal-cta[aria-expanded="true"] .cal-chev { transform: rotate(180deg); }
@media (max-width: 600px) {
  .upcoming-event { padding: 20px; gap: 18px; }
  .upcoming-event .event-date { width: 64px; padding: 12px 4px 14px; }
  .upcoming-event .event-date .day { font-size: 30px; }
}

/* ----------------------- Notice ----------------------- */
.notice {
  background: var(--coral-50);
  border: 1px solid var(--coral-300);
  border-left: 4px solid var(--coral-500);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--coral-700);
  margin: 24px 0;
}
.notice strong { color: var(--coral-700); }

.ss-tabs {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin: 8px auto 48px;
  width: fit-content;
  max-width: 100%;
}
.ss-tab {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: -0.005em;
  white-space: nowrap;
  min-height: 48px;
  transition: color 0.25s var(--ease-out),
              background 0.25s var(--ease-out);
}
.ss-tab:hover {
  color: var(--plum-700);
  background: var(--plum-50);
}
.ss-tab.is-active {
  background: var(--plum-600);
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
}
.ss-tab.is-active:hover {
  background: var(--plum-700);
  color: var(--text-inverse);
}
.ss-tab:focus-visible {
  outline: 2px solid var(--plum-600);
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .ss-tabs {
    width: 100%;
    gap: 4px;
    margin-bottom: 36px;
  }
  .ss-tab {
    flex: 1;
    padding: 14px 12px;
    font-size: 15px;
  }
}

.ss-panel { display: none; }
.ss-panel.is-active { display: block; }

.ss-static {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ss-static-image img,
.ss-static-image .ss-image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  object-fit: cover;
}
.ss-static-image .ss-image-placeholder {
  background: linear-gradient(135deg, var(--plum-500), var(--plum-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 246, 240, 0.7);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ss-static-text { max-width: 520px; }

.ss-static-text .display    { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 14px; }
.ss-static-text .sub        { font-size: 17px; margin-bottom: 14px; }
.ss-static-text .lede       { font-size: 15.5px; line-height: 1.55; margin-bottom: 0; }

@media (max-width: 820px) {
  .ss-static {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .ss-static-text { max-width: 100%; margin: 0 auto; }
}

.ministry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

@media (min-width: 880px) {
  .ministry-grid > .ministry-card:nth-child(7):last-child {
    grid-column: 2;
  }
}
@media (min-width: 580px) and (max-width: 879px) {
  
  .ministry-grid > .ministry-card:nth-child(7):last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - 10px);
  }
}
.ministry-card {
  appearance: none;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 32px 28px 26px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.ministry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--plum-300);
}
.ministry-card:focus-visible {
  outline: 2px solid var(--plum-600);
  outline-offset: 3px;
}
.pastor-card { cursor: pointer; transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out); }
.pastor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--plum-300); }
.pastor-card:focus-visible { outline: 2px solid var(--plum-600); outline-offset: 3px; }
.pastor-card a, .pastor-card button { cursor: pointer; }
.ministry-card .ministry-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--plum-100);
  color: var(--plum-700);
  display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s var(--ease-out),
              color 0.3s var(--ease-out);
}
.ministry-card .ministry-icon svg { width: 24px; height: 24px; display: block; }
.ministry-card:hover .ministry-icon {
  background: var(--plum-600);
  color: var(--text-inverse);
}
.ministry-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.ministry-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 18px;
  flex: 1;
}
.ministry-card .ministry-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--coral-600);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ministry-card .ministry-link .arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
}
.ministry-card:hover .ministry-link .arrow { transform: translateX(4px); }

/* Modal overlay */
.ministry-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(31, 3, 44, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.ministry-overlay.open { display: flex; }
.ministry-overlay.visible { opacity: 1; }

.ministry-detail {
  background: var(--bg-card);
  border-radius: 24px;
  max-width: 540px;
  width: 100%;
  max-height: calc(100vh - 48px);
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 40px 36px 32px;
  box-shadow: 0 40px 80px -10px rgba(0, 0, 0, 0.3),
              0 12px 32px -8px rgba(31, 3, 44, 0.25);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}
.ministry-overlay.visible .ministry-detail {
  transform: scale(1) translateY(0);
}

.ministry-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: none;
  background: var(--bg-alt);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease-out),
              color 0.2s var(--ease-out);
}
.ministry-close:hover {
  background: var(--plum-100);
  color: var(--plum-700);
}

.ministry-detail-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-600);
  margin-bottom: 12px;
}
.ministry-detail h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.ministry-blurb {
  font-size: 15.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 28px;
}
.ministry-depts {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ministry-depts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ministry-depts .dept-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.ministry-depts .dept-lead {
  font-size: 14px;
  color: var(--plum-600);
}

.ministry-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ministry-actions .btn { padding: 10px 22px; font-size: 14px; min-height: 40px; }

@media (max-width: 600px) {
  .ministry-detail {
    padding: 28px 20px 22px;
    border-radius: 20px;
    max-height: calc(100vh - 24px);
    max-height: calc(100svh - 24px);
  }
  .ministry-detail h2 { font-size: 22px; }
  .ministry-detail .ministry-blurb { font-size: 14.5px; }
  .ministry-depts { gap: 14px; margin: 0 0 22px; }
  .ministry-depts .dept-name { font-size: 14px; }
  .ministry-depts .dept-lead { font-size: 13px; }
  .ministry-actions .btn { padding: 9px 18px; font-size: 13.5px; }
  .ministry-close { top: 12px; right: 12px; }
  .ministry-overlay { padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .ministry-overlay,
  .ministry-detail,
  .ministry-card,
  .ministry-icon { transition: none; }
}

.card-link.card-link-button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--plum-600);
  cursor: pointer;
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link.card-link-button:hover { color: var(--coral-600); }
.card-link.card-link-button:focus-visible {
  outline: 2px solid var(--plum-600);
  outline-offset: 4px;
  border-radius: 4px;
}

.prayer-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(31, 3, 44, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.28s var(--ease-out);
}
.prayer-overlay.open    { display: flex; }
.prayer-overlay.visible { opacity: 1; }

.prayer-detail {
  background: var(--bg-card);
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px 36px 32px;
  box-shadow: 0 40px 80px -10px rgba(0, 0, 0, 0.3),
              0 12px 32px -8px rgba(31, 3, 44, 0.25);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.32s var(--ease-out);
  position: relative;
}
.prayer-overlay.visible .prayer-detail {
  transform: scale(1) translateY(0);
}

.prayer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--bg-alt);
  color: var(--text-secondary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.prayer-close:hover {
  background: var(--plum-100);
  color: var(--plum-700);
}

.prayer-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-600);
  margin-bottom: 12px;
}

#prayerModalTitle {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.prayer-blurb {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.prayer-dialin {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px 16px;
  margin-bottom: 28px;
  font-size: 15px;
}
.prayer-dialin dt {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 4px;
}
.prayer-dialin dd {
  margin: 0;
  color: var(--text-primary);
  line-height: 1.5;
}
.prayer-dialin dd a { color: var(--plum-600); font-weight: 600; }
.prayer-dialin dd a:hover { color: var(--plum-700); text-decoration: underline; }

.prayer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .prayer-detail { padding: 32px 22px 24px; }
  .prayer-dialin { grid-template-columns: 1fr; gap: 4px 0; }
  .prayer-dialin dt { padding-top: 12px; }
  .prayer-actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .prayer-overlay,
  .prayer-detail { transition: none; }
}

.give-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 48px 44px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.give-card-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--plum-100);
  color: var(--plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.give-card-icon svg { width: 30px; height: 30px; display: block; }
.give-card h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.give-card > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 28px;
}
.give-features {
  list-style: none;
  padding: 0;
  margin: 0 auto 32px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.give-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-primary);
  line-height: 1.5;
}
.give-features .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--plum-100);
  color: var(--plum-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.give-card-cta {
  margin-bottom: 18px;
}
.give-card-fineprint {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 380px;
  margin: 0 auto;
}
.give-card-fineprint a {
  color: var(--plum-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.give-card-fineprint a:hover { color: var(--plum-700); }

@media (max-width: 600px) {
  .give-card { padding: 36px 24px 30px; border-radius: 20px; }
  .give-card h3 { font-size: 24px; }
}

section.has-bg-image {
  position: relative;
  isolation: isolate;
  background-color: var(--bg-alt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.has-bg-image::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(180, 138, 169, 0.42), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(232, 93, 60, 0.32), transparent 60%),
    rgba(243, 238, 229, 0.42);
}

section.has-bg-image.heavy-overlay::before {
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(180, 138, 169, 0.68), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(232, 93, 60, 0.52), transparent 60%),
    rgba(243, 238, 229, 0.82);
}

section.has-bg-image.parallax {
  background-attachment: fixed;
}
@media (max-width: 900px) {
  section.has-bg-image.parallax { background-attachment: scroll; }
}
section.has-bg-image.solid-overlay::before {
  
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(180, 138, 169, 0.22), transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(232, 93, 60, 0.16), transparent 60%),
    rgba(250, 246, 240, 0.78);
}

.photo-arch.bare,
.photo-arch.bare.has-image {
  background: transparent;
  border: none;
  box-shadow: none;
}
.photo-arch.bare img {
  inset: 0;
  width: 100%; height: 100%;
  border-radius: var(--arch-full);
}
.photo-arch.bare::before,
.photo-arch.bare::after { display: none; }

.with-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.with-side.image-left { grid-template-columns: 1fr 1fr; }
.with-side > .with-side-image { max-width: 420px; width: 100%; justify-self: center; }

.with-side.upcoming-twocol {
  grid-template-columns: 3fr 2fr;
  align-items: start;
}
.with-side.upcoming-twocol > .with-side-image { max-width: 360px; }
@media (max-width: 900px) {
  .with-side { grid-template-columns: 1fr; gap: 32px; }
  .with-side > .with-side-image {
    order: -1;
    max-width: 100%;
    justify-self: stretch;
  }
}

.bio-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(31, 3, 44, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.bio-overlay.open { display: flex; }
.bio-overlay.visible { opacity: 1; }
.bio-detail {
  background: var(--bg-card);
  border-radius: 24px;
  max-width: 560px; width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px 36px 32px;
  box-shadow: 0 40px 80px -10px rgba(0,0,0,0.3),
              0 12px 32px -8px rgba(31,3,44,0.25);
  transform: scale(0.92) translateY(16px);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}
.bio-overlay.visible .bio-detail { transform: scale(1) translateY(0); }
.bio-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 999px;
  border: none;
  background: var(--bg-alt);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease-out),
              color 0.2s var(--ease-out);
}
.bio-close:hover {
  background: var(--plum-100);
  color: var(--plum-700);
}
.bio-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral-600);
  margin-bottom: 12px;
}
.bio-detail h2 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.bio-role {
  color: var(--plum-600);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.bio-body {
  font-size: 15.5px;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 28px;
}
.bio-body p + p { margin-top: 12px; }
.bio-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.bio-actions .btn { padding: 10px 22px; font-size: 14px; min-height: 40px; }
@media (max-width: 600px) {
  .bio-detail { padding: 32px 22px 24px; border-radius: 20px; }
  .bio-detail h2 { font-size: 24px; }
  .bio-close { top: 12px; right: 12px; }
}

/* Bio CTA — a small pill above the social row on each pastor card. */
.btn-bio {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: transparent;
  color: var(--plum-700);
  border: 1.5px solid var(--plum-300);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease-out),
              color 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out);
}
.btn-bio:hover {
  background: var(--plum-600);
  color: var(--text-inverse);
  border-color: var(--plum-600);
}

/* Footer office-hours block + mobile Explore-column hide. */
footer.site-footer .col-services-hours strong { color: var(--text-inverse); }
footer.site-footer .col-services-hours small {
  font-size: 11.5px;
  font-style: italic;
  color: rgba(250,246,240,0.55);
}
@media (max-width: 600px) {
  footer.site-footer .col-explore { display: none; }
}

.pastor-bio-trigger {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral-600);
  letter-spacing: 0.01em;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.25s var(--ease-out);
}
.pastor-bio-trigger:hover { color: var(--coral-700); }
.pastor-bio-trigger:hover .arrow { transform: translateX(4px); }
.pastor-bio-trigger:focus-visible {
  outline: 2px solid var(--plum-600);
  outline-offset: 4px;
  border-radius: 4px;
}
.pastor-bio-trigger .arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
}

/* Error pages: fill viewport, vertically center content, kill bottom whitespace. */
body[data-page="error"] {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}
body[data-page="error"] > section.hero {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px;
}
body[data-page="error"] > section.hero .wrap {
  width: 100%;
}
body[data-page="error"] .display {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  body[data-page="error"] > section.hero {
    padding: 56px 16px;
  }
  body[data-page="error"] .display {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.15;
  }
  body[data-page="error"] .lede {
    font-size: 17px;
  }
  body[data-page="error"] .btn-row .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Church Center modal trigger card. Used on /new (Connection Card)
   and /contact (Send us a message). Now the card hosts the section
   header (eyebrow + h2 + lede) directly, so it stands as the full
   section content rather than sitting under a separate section-head.
   On both pages the card stretches to align with the adjacent column
   (the photo-arch on /new, the contact info card on /contact). */
.cc-modal-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 48px 44px;
  min-height: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
}
.cc-modal-card .eyebrow {
  margin-bottom: 14px;
}
.cc-modal-card .cc-modal-heading {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  margin: 0 0 16px;
}
.cc-modal-card .lede {
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
  max-width: 540px;
}
.cc-modal-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}
.cc-modal-card .btn {
  align-self: flex-start;
  max-width: 100%;
}
.cc-modal-card .fineprint {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.cc-modal-card .btn:focus-visible {
  outline: 3px solid var(--coral-500);
  outline-offset: 3px;
}
/* Stretch the modal card to fill its column on /contact (.two-col
   default is align-items: center) and /new (.with-side default is
   align-items: center). The :has() guard scopes the override to
   sections that actually contain a .cc-modal-card. */
.two-col:has(.cc-modal-card),
.with-side:has(.cc-modal-card) { align-items: stretch; }
.two-col:has(.cc-modal-card) > .reveal,
.with-side:has(.cc-modal-card) > * {
  display: flex;
  flex-direction: column;
}
.two-col:has(.cc-modal-card) > .reveal > .cc-modal-card,
.with-side:has(.cc-modal-card) > * > .cc-modal-card { flex: 1; }
/* Keep the photo-arch in the side column vertically centered when
   its column is stretched by :has() (so it doesn't drift to the top). */
.with-side:has(.cc-modal-card) > .with-side-image { justify-content: center; }
@media (max-width: 900px) {
  .cc-modal-card {
    padding: 32px 24px;
    gap: 16px;
    min-height: auto;
  }
  .cc-modal-card .cc-modal-heading {
    font-size: clamp(26px, 7vw, 34px);
  }
  .cc-modal-card .lede {
    font-size: 16px;
  }
  .cc-modal-card .btn {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }
}

/* ----------------------- Form result card -----------------------
   Replaces a submitted form on success/error so the user gets a
   clear acknowledgement instead of the same fields re-rendered with
   an inline note. Reload restores the original empty form. */
.form-result-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 28px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  outline: none;
  animation: form-result-in 0.32s var(--ease-out, cubic-bezier(.2,.7,.3,1));
}
.form-result-card .form-result-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 25, 66, 0.08);
  color: var(--plum-600);
}
.form-result-card .form-result-icon svg {
  width: 22px;
  height: 22px;
}
.form-result-card.is-error .form-result-icon {
  background: rgba(232, 93, 60, 0.12);
  color: var(--coral-700);
}
.form-result-card .form-result-title {
  margin: 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}
.form-result-card .form-result-msg {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.form-result-card.on-dark {
  background: rgba(250, 246, 240, 0.08);
  border-color: rgba(250, 246, 240, 0.18);
  padding: 22px 22px 24px;
}
.form-result-card.on-dark .form-result-icon {
  background: rgba(250, 246, 240, 0.12);
  color: var(--text-inverse);
}
.form-result-card.on-dark.is-error .form-result-icon {
  background: rgba(255, 175, 160, 0.18);
  color: rgba(255, 200, 190, 1);
}
.form-result-card.on-dark .form-result-title {
  color: var(--text-inverse);
  font-size: 19px;
}
.form-result-card.on-dark .form-result-msg {
  color: rgba(250, 246, 240, 0.78);
  font-size: 14.5px;
}
@keyframes form-result-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 600px) {
  .form-result-card {
    padding: 22px 20px 24px;
  }
  .form-result-card .form-result-title { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  .form-result-card { animation: none; }
}

/* Hide the floating reCAPTCHA v3 badge. Google permits this only when
   the site discloses reCAPTCHA usage with links to Google's Privacy
   Policy and Terms — that disclosure lives on /privacy under the
   Cookies and analytics section. */
.grecaptcha-badge {
  visibility: hidden !important;
}
