@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --ink: #101820;
  --ink-soft: #1a2731;
  --paper: #f7f4ed;
  --paper-2: #efe9dd;
  --white: #ffffff;
  --accent: #f7ba26;
  --accent-dark: #c98900;
  --teal: #73d4c7;
  --text: #1a242b;
  --muted: #5d676d;
  --line: rgba(16, 24, 32, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 70px rgba(16, 24, 32, 0.16);
  --radius: 22px;
  --radius-lg: 34px;
  --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --font-display: "Sora", "Manrope", "Avenir Next", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

button,
input,
select,
textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(247, 244, 237, 0.93);
  border-bottom: 1px solid rgba(16, 24, 32, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.scrolled { box-shadow: 0 12px 30px rgba(16, 24, 32, 0.1); }

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: -0.025em;
  line-height: 1.05;
  flex: 0 0 auto;
}

.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand small { display: block; margin-top: 0.25rem; font: 800 0.64rem/1 var(--font-body); letter-spacing: 0.18em; text-transform: uppercase; }

.nav { display: flex; align-items: center; justify-content: flex-end; gap: 0.1rem; }
.nav a { padding: 0.55rem 0.65rem; border-radius: 999px; color: #2c3840; font-size: 0.78rem; font-weight: 800; }
.nav a:hover,
.nav a:focus-visible,
.nav a.active { color: var(--ink); background: rgba(16, 24, 32, 0.08); }
.nav a.nav-cta { margin-left: 0.35rem; padding-inline: 0.95rem; background: var(--ink); color: var(--white); }
.nav a.nav-cta:hover,
.nav a.nav-cta:focus-visible { background: var(--accent); color: var(--ink); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 0.68rem 0.9rem;
  cursor: pointer;
  font-weight: 800;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after { display: block; width: 18px; height: 2px; background: currentColor; transition: transform 180ms ease; }
.nav-toggle-icon { position: relative; }
.nav-toggle-icon::before,
.nav-toggle-icon::after { content: ""; position: absolute; left: 0; }
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

h1,
h2,
h3,
h4 { margin: 0; color: var(--ink); font-family: var(--font-display); font-weight: 800; line-height: 1.06; letter-spacing: -0.045em; text-wrap: balance; }
h1 { font-size: clamp(3.1rem, 8vw, 7.2rem); }
h2 { font-size: clamp(2.25rem, 5.3vw, 4.65rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
h1 em,
h2 span { color: var(--accent); font-style: normal; }

p { margin: 0 0 1rem; }
.lead-lg { color: var(--ink); font-size: clamp(1.18rem, 2vw, 1.55rem); font-weight: 700; line-height: 1.5; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.05rem;
  color: #66531d;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.45rem; height: 2px; flex: 0 0 auto; background: currentColor; opacity: 0.82; }
.eyebrow.light { color: var(--accent); }

.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; margin-top: 1.55rem; }
.button-row.centered { justify-content: center; }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.3rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16, 24, 32, 0.16); }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: #ffd15d; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #273641; }
.btn-ghost-light { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.55); color: var(--white); backdrop-filter: blur(8px); }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,0.4); }

.text-link { display: inline-flex; gap: 0.5rem; align-items: center; padding-bottom: 0.22rem; border-bottom: 2px solid var(--accent); color: var(--ink); font-size: 0.88rem; font-weight: 800; }
.text-link:hover span { transform: translateX(3px); }
.text-link span { transition: transform 160ms ease; }

.home-hero { position: relative; min-height: clamp(920px, 78vw, 1040px); display: flex; align-items: stretch; overflow: hidden; background: var(--ink); color: var(--white); }
.home-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.home-hero-shade { position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(8,15,21,0.97) 0%, rgba(8,15,21,0.76) 30%, rgba(8,15,21,0.24) 59%, rgba(8,15,21,0) 82%); pointer-events: none; }
.home-hero-content { position: relative; z-index: 2; min-height: inherit; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; padding-block: clamp(3rem, 6vw, 5rem) clamp(2.6rem, 5vw, 4rem); }
.home-hero-content > * { max-width: 980px; }
.home-hero h1 { max-width: 18ch; color: var(--white); font-size: clamp(3.2rem, 5.8vw, 6.2rem); text-shadow: 0 5px 32px rgba(0,0,0,0.52); }
.home-hero .eyebrow::before { display: none; }
.home-hero .button-row { max-width: 560px; margin-top: 1.6rem; }

.hero-scroll { position: absolute; z-index: 2; bottom: 30px; left: 50%; transform: translateX(-50%); display: grid; justify-items: center; gap: 0.45rem; color: var(--muted); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-scroll span { width: 1px; height: 32px; background: linear-gradient(var(--accent), transparent); }

/* Keep the full homepage message in the first view on shorter laptops while
   preserving the clear band around the five faces. */
@media (min-width: 821px) and (max-height: 900px) {
  .home-hero { min-height: calc(100svh - 78px); }
  .home-hero-media { object-position: center 27%; filter: brightness(1.12) saturate(1.04); }
  .home-hero-shade { background: linear-gradient(0deg, rgba(8,15,21,0.96) 0%, rgba(8,15,21,0.8) 24%, rgba(8,15,21,0.28) 47%, rgba(8,15,21,0.05) 60%, transparent 72%); }
  .home-hero-content { padding-block: 1.5rem 1.7rem; }
  .home-hero h1 { font-size: clamp(3rem, 5vw, 4.7rem); line-height: 0.94; }
  .home-hero .button-row { margin-top: 1rem; }
}

.statement-band { overflow: hidden; background: var(--accent); color: var(--ink); border-block: 1px solid rgba(16,24,32,0.2); }
.ticker { width: max-content; min-width: 100%; display: flex; align-items: center; justify-content: center; gap: clamp(1rem, 3vw, 3rem); padding: 0.85rem 1rem; font-family: var(--font-display); font-size: clamp(0.72rem, 1.3vw, 1rem); font-weight: 800; letter-spacing: 0.12em; white-space: nowrap; }
.ticker b { font-size: 0.7rem; }

.new-location-spotlight { padding: clamp(3.8rem, 7vw, 6.4rem) 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.new-location-intro { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr); gap: clamp(2rem, 7vw, 6.5rem); align-items: end; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.new-location-intro h2 { max-width: 10ch; font-size: clamp(2.7rem, 5vw, 4.8rem); }
.new-location-intro > p { max-width: 56ch; margin: 0; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.26rem); line-height: 1.65; }
.new-location-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.new-location-tile { position: relative; min-height: clamp(280px, 31vw, 390px); overflow: hidden; border-radius: var(--radius-lg); color: var(--white); box-shadow: 0 18px 50px rgba(16,24,32,0.16); isolation: isolate; }
.new-location-tile::after { content: ""; position: absolute; z-index: 0; inset: 0; background: linear-gradient(0deg, rgba(8,15,21,0.93) 0%, rgba(8,15,21,0.48) 38%, rgba(8,15,21,0.03) 72%); }
.new-location-tile img { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.75,.25,1); }
.new-location-tile:hover img,
.new-location-tile:focus-visible img { transform: scale(1.035); }
.new-location-tile-body { position: absolute; z-index: 1; inset: auto 0 0; display: grid; gap: 0.35rem; padding: clamp(1.4rem, 3vw, 2.2rem); }
.new-location-kicker { color: var(--accent); font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 900; letter-spacing: 0.08em; line-height: 1.1; text-transform: uppercase; }
.new-location-tile strong { color: var(--white); font: 800 clamp(1.8rem, 3.2vw, 3rem)/1.04 var(--font-display); letter-spacing: -0.035em; }
.new-location-tile-body > span:last-child { display: flex; justify-content: space-between; gap: 1rem; color: rgba(255,255,255,0.84); font-size: 0.9rem; font-weight: 700; }
.new-location-tile-body b { flex: 0 0 auto; color: var(--white); }

.vibrant-section { overflow: hidden; background: var(--ink); color: rgba(255,255,255,0.78); }
.vibrant-section::before { content: ""; position: absolute; width: 42vw; height: 42vw; min-width: 430px; min-height: 430px; top: 50%; right: -16vw; transform: translateY(-50%); border: clamp(42px, 6vw, 90px) solid rgba(255,190,46,0.08); border-radius: 50%; box-shadow: 0 0 0 clamp(32px, 5vw, 74px) rgba(255,255,255,0.025); }
.vibrant-statement { position: relative; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr); gap: clamp(2.5rem, 8vw, 8rem); align-items: end; }
.vibrant-statement h2 { max-width: 14ch; color: var(--white); font-size: clamp(2.6rem, 5.7vw, 5.8rem); line-height: 0.98; }
.vibrant-statement h2 span { color: var(--accent); }
.vibrant-statement-copy { max-width: 520px; padding-bottom: 0.35rem; }
.vibrant-statement-copy p { margin: 0 0 1.8rem; color: rgba(255,255,255,0.78); font-size: clamp(1.05rem, 1.6vw, 1.28rem); line-height: 1.7; }

.section { position: relative; padding: clamp(5.2rem, 10vw, 9.2rem) 0; }
.section-light { background: var(--paper); }
.section-warm { background: var(--paper-2); }
.section-ink { background: var(--ink); color: rgba(255,255,255,0.78); }
.section-ink h2,
.section-ink h3 { color: var(--white); }

.split-intro { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 8vw, 7rem); align-items: start; }
.split-intro h2 { max-width: 12ch; }
.intro-copy { padding-top: 2rem; }
.intro-copy > p:not(.lead-lg) { color: var(--muted); }

.section-heading { max-width: 880px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section-heading.with-action { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }

.feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.feature-card { position: relative; min-height: clamp(390px, 44vw, 530px); overflow: hidden; border-radius: var(--radius-lg); background: var(--ink); display: flex; flex-direction: column; justify-content: flex-end; box-shadow: 0 18px 55px rgba(0,0,0,0.24); isolation: isolate; }
.feature-card[id] { scroll-margin-top: 96px; }
.feature-card::after { content: ""; position: absolute; z-index: 4; inset: 0; border: 1px solid rgba(255,255,255,0.12); border-radius: inherit; pointer-events: none; }
.feature-card-media { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 650ms ease; }
.feature-card-media-teaching { object-position: center 22%; }
.feature-card-media-kids { object-position: center 28%; }
.feature-card-media-community { top: 0; bottom: 0; height: 100%; object-position: center 18%; }
.feature-card-clear-face { min-height: 600px; display: grid; grid-template-rows: clamp(280px, 30vw, 350px) minmax(0, 1fr); justify-content: stretch; }
.feature-card-clear-face .feature-card-media { position: relative; z-index: 0; inset: auto; grid-row: 1; width: 100%; height: 100%; object-position: center 24%; }
.feature-card-clear-face .feature-card-media-teaching { object-position: center; transform: scale(1.32); transform-origin: center bottom; }
.feature-card-clear-face .feature-card-media-kids { object-position: center 28%; }
.feature-card-clear-face .feature-card-media-community { object-position: center 28%; }
.feature-card-photo-frame { position: relative; z-index: 0; grid-row: 1; overflow: hidden; background: #080d12; }
.feature-card-photo-frame::before { content: ""; position: absolute; inset: -12%; background-image: var(--feature-photo); background-position: center; background-size: cover; filter: blur(22px) brightness(0.42) saturate(0.85); transform: scale(1.08); }
.feature-card-photo-frame .feature-card-media { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.feature-card-clear-face .feature-card-shade { display: none; }
.feature-card-clear-face .feature-card-copy { position: relative; z-index: 2; grid-row: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: linear-gradient(145deg, #101820 0%, #080d12 100%); }
.feature-card-shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(6,12,17,0.98) 0%, rgba(6,12,17,0.82) 36%, rgba(6,12,17,0.18) 72%, rgba(6,12,17,0.02) 100%); }
.feature-card:hover .feature-card-media { transform: scale(1.035); }
.feature-card-clear-face:hover .feature-card-media-teaching { transform: scale(1.35); }
.feature-card-clear-face:hover .feature-card-photo-frame .feature-card-media { transform: scale(1.018); }
.feature-number { position: absolute; z-index: 2; top: 1.35rem; left: 1.35rem; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--ink); font-family: var(--font-display); font-size: 0.72rem; font-weight: 800; box-shadow: 0 10px 28px rgba(0,0,0,0.24); }
.feature-card-copy { padding: clamp(1.5rem, 3vw, 2.3rem); }
.feature-card h3 { color: var(--white); font-size: clamp(1.75rem, 3.4vw, 3rem); }
.feature-card p { max-width: 48ch; margin: 0.85rem 0 1.2rem; color: rgba(255,255,255,0.78); font-size: 0.98rem; }
.feature-card a { display: inline-flex; gap: 0.45rem; align-items: center; padding-bottom: 0.2rem; border-bottom: 2px solid var(--accent); color: var(--white); font-size: 0.82rem; font-weight: 800; }
.feature-card a span { color: var(--accent); transition: transform 180ms ease; }
.feature-card a:hover span { transform: translateX(3px); }

.visit-feature { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.visit-feature-media { position: relative; }
.visit-feature-media img { width: 100%; height: clamp(500px, 60vw, 680px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.media-note { position: absolute; right: -24px; bottom: 36px; max-width: 240px; display: grid; padding: 1rem 1.15rem; border-radius: 16px; background: var(--accent); color: var(--ink); box-shadow: var(--shadow); }
.media-note strong { font-family: var(--font-display); }
.media-note span { font-size: 0.82rem; }
.visit-feature-copy h2 { max-width: 11ch; }
.visit-feature-copy .lead-lg { margin-top: 1.5rem; }
.check-list { list-style: none; margin: 1.6rem 0 2rem; padding: 0; display: grid; gap: 0.8rem; }
.check-list li { position: relative; padding-left: 2rem; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 1.35rem; height: 1.35rem; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--ink); font-size: 0.72rem; }

.campus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.campus-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: 0 18px 44px rgba(16,24,32,0.1); }
.campus-card img { width: 100%; height: 370px; object-fit: cover; transition: transform 600ms ease; }
.campus-card:hover img { transform: scale(1.035); }
.campus-badge { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; min-height: 34px; padding: 0.45rem 0.8rem; border-radius: 999px; background: var(--accent); color: var(--ink); box-shadow: 0 10px 24px rgba(16,24,32,0.22); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.campus-card-body { padding: 1.6rem; }
.campus-card-body .eyebrow { margin-bottom: 0.65rem; }
.campus-card-body h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); }
.campus-card-body p:not(.eyebrow) { margin: 0.55rem 0 1.2rem; color: var(--muted); }
.campus-card-body .campus-proof { margin-top: -0.15rem; padding-top: 0.95rem; border-top: 1px solid var(--line); color: var(--ink); font-size: 0.9rem; font-weight: 700; }
.campus-intro { max-width: 720px; margin: 1.1rem 0 0; color: var(--muted); font-size: 1.02rem; }
.family-facility-note { max-width: 850px; margin: 1.35rem 0 0; padding: 1.15rem 1.25rem; border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; background: var(--paper-2); color: var(--muted); }
.family-facility-note strong { color: var(--ink); }

.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.event-card { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 1.35rem; align-items: start; padding: clamp(1.4rem, 3vw, 2rem); border-top: 4px solid var(--accent); border-radius: 0 0 var(--radius) var(--radius); background: var(--white); box-shadow: 0 16px 42px rgba(16,24,32,0.08); }
.event-date { width: 92px; min-height: 104px; display: grid; align-content: center; justify-items: center; border-radius: 18px; background: var(--ink); color: var(--white); }
.event-date strong { color: var(--accent); font-size: 0.7rem; letter-spacing: 0.18em; }
.event-date span { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; line-height: 1; }
.event-card-copy .eyebrow { margin-bottom: 0.55rem; }
.event-card-copy h3 { font-size: clamp(1.45rem, 2.5vw, 2.15rem); }
.event-card-copy > p:not(.eyebrow) { margin: 0.85rem 0 1.35rem; color: var(--muted); }
.event-card-copy .btn { width: fit-content; }

.message-feature { overflow: hidden; background: #22333d; color: rgba(255,255,255,0.76); }
.message-feature::after { content: ""; position: absolute; right: -10vw; top: -22vw; width: 48vw; aspect-ratio: 1; border: 1px solid rgba(247,186,38,0.25); border-radius: 50%; box-shadow: 0 0 0 80px rgba(247,186,38,0.03), 0 0 0 160px rgba(247,186,38,0.02); }
.message-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.message-copy h2 { color: var(--white); }
.message-copy p:not(.eyebrow) { max-width: 48ch; margin-top: 1.2rem; }
.message-art { position: relative; }
.message-art img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); filter: saturate(0.88) contrast(1.05); }
.play-mark { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 82px; height: 82px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: var(--ink); box-shadow: 0 18px 50px rgba(0,0,0,0.28); padding-left: 5px; font-size: 1.45rem; }

.answer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.answer-card { padding: 1.6rem; border-top: 4px solid var(--accent); background: var(--white); box-shadow: 0 14px 36px rgba(16,24,32,0.08); }
.answer-card h3 { font-size: 1.2rem; line-height: 1.22; letter-spacing: -0.03em; }
.answer-card p { margin: 1rem 0; color: var(--muted); font-size: 0.93rem; }
.answer-card a { color: #6f5100; font-size: 0.83rem; font-weight: 800; overflow-wrap: anywhere; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.final-cta { position: relative; overflow: hidden; padding: clamp(5rem, 10vw, 9rem) 0; background: var(--ink); color: var(--white); text-align: center; }
.final-cta::before { content: "CF"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); color: rgba(255,255,255,0.025); font: 800 clamp(14rem, 38vw, 34rem)/1 var(--font-display); letter-spacing: -0.1em; }
.final-cta-inner { position: relative; }
.final-cta h2 { color: var(--white); }

/* Interior pages */
.page-hero { position: relative; min-height: 650px; display: grid; align-items: end; overflow: hidden; background: var(--ink); color: var(--white); }
.page-hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-picture { display: block; overflow: hidden; }
.page-hero-picture img { display: block; width: 100%; height: 100%; object-fit: cover; }
.visit-hero-media { object-position: center 62%; }
.visit-hero-picture img { object-position: center 38%; }
.page-about-hero-media { position: absolute; inset: 0; overflow: hidden; }
.page-about .page-hero-media { object-position: center 48%; transform: scale(1.3); transform-origin: 56% 40%; filter: brightness(1.12) saturate(1.04); }
.page-families .page-hero-media { object-position: center 42%; }
.page-groups .page-hero-media { object-position: center 38%; }
.page-leadership .page-hero-media { object-position: center 60%; }
.page-serve .page-hero-media { object-position: center 44%; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,15,21,0.92), rgba(8,15,21,0.4) 62%, rgba(8,15,21,0.12)), linear-gradient(0deg, rgba(8,15,21,0.72), transparent 60%); }
.page-watch .page-hero-media { object-position: center 16%; filter: brightness(1.2) saturate(1.04) contrast(0.98); }
.page-watch .page-hero::after { background: linear-gradient(90deg, rgba(8,15,21,0.82) 0%, rgba(8,15,21,0.56) 24%, rgba(8,15,21,0.16) 47%, transparent 70%), linear-gradient(0deg, rgba(8,15,21,0.52), transparent 44%); }
.page-hero-content { position: relative; z-index: 1; padding-block: 7rem 5rem; }
.page-hero h1 { max-width: 11ch; color: var(--white); font-size: clamp(3rem, 7.2vw, 6.3rem); }
.page-about .page-hero h1 { max-width: 14ch; font-size: clamp(2.8rem, 6.1vw, 5.5rem); }
.page-hero .hero-lead { max-width: 670px; margin-top: 1.4rem; color: rgba(255,255,255,0.82); font-size: clamp(1.05rem, 1.9vw, 1.35rem); font-weight: 600; }
.page-hero.compact { min-height: 520px; }
.page-visit .page-hero .button-row .btn { border-color: var(--accent); background: var(--accent); color: var(--ink); }
.locations-hero { min-height: 560px; background: radial-gradient(circle at 84% 20%, rgba(240,145,35,0.18), transparent 31%), radial-gradient(circle at 72% 78%, rgba(255,255,255,0.06), transparent 24%), var(--ink); }
.locations-hero::after { background: linear-gradient(90deg, rgba(8,15,21,0.18), transparent 75%); }
.locations-hero .page-hero-content { padding-block: 7.5rem 5rem; }
.locations-hero h1 { max-width: 14ch; font-size: clamp(3rem, 5.4vw, 4.9rem); }
.locations-hero .hero-lead { max-width: 780px; font-size: clamp(1rem, 1.35vw, 1.18rem); }

@media (min-width: 821px) {
  .page-about-hero-media { left: 45%; width: 55%; }
  .page-about .page-hero-media { left: 0; width: 100%; object-position: center; }
  .page-about .page-hero::after { background: linear-gradient(90deg, #081016 0%, #081016 34%, rgba(8,16,22,0.97) 40%, rgba(8,16,22,0.76) 46%, rgba(8,16,22,0.43) 52%, rgba(8,16,22,0.18) 59%, rgba(8,16,22,0.05) 66%, transparent 74%); }
  .page-about .page-hero-content { padding-right: 53%; }
  .page-about .page-hero .hero-lead { max-width: 540px; }
}

@media (min-width: 581px) {
  .page-visit .visit-hero-picture { inset: 0 0 auto 28%; width: 72%; height: 650px; }
  .page-visit .visit-hero-picture img { transform: scale(1.06); transform-origin: 58% 46%; }
  .page-visit .page-hero::after { background: linear-gradient(90deg, #081016 0%, #081016 27%, rgba(8,16,22,0.9) 33%, rgba(8,16,22,0.18) 44%, rgba(8,16,22,0.02) 53%); }
  .page-visit .page-hero-content { padding-right: 64%; }
  .page-visit .page-hero h1 { max-width: none; font-size: clamp(2.45rem, 4.6vw, 3.7rem); }
  .page-visit .page-hero .hero-lead { max-width: 520px; }
}

@media (min-width: 821px) {
  .page-visit .visit-hero-picture { inset: 0 0 auto 18%; width: 82%; height: 650px; }
  .page-visit .visit-hero-picture img { transform: scale(1.1); transform-origin: 58% 46%; }
  .page-visit .page-hero-content { padding-right: 67%; }
}

.contact-hero { padding: clamp(4.5rem, 8vw, 7.5rem) 0; overflow: hidden; background: var(--ink); color: var(--white); }
.contact-hero-layout { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center; }
.contact-hero-copy h1 { max-width: 10ch; color: var(--white); font-size: clamp(3rem, 6.8vw, 6.15rem); }
.contact-hero-copy .hero-lead { max-width: 620px; margin-top: 1.4rem; color: rgba(255,255,255,0.82); font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 600; }
.contact-hero-photo { position: relative; margin: 0; padding: 0 0 1.25rem 1.25rem; }
.contact-hero-photo::before { content: ""; position: absolute; inset: 1.25rem 1.25rem 0 0; border-radius: var(--radius-lg); background: var(--accent); }
.contact-hero-photo img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 24%; border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(0,0,0,0.3); }
.contact-hero-photo figcaption { position: relative; z-index: 1; margin-top: 0.8rem; color: rgba(255,255,255,0.62); font-size: 0.75rem; font-weight: 700; }

.facts-bar { background: var(--accent); }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { min-height: 118px; padding: 1.2rem; border-right: 1px solid rgba(16,24,32,0.2); display: flex; flex-direction: column; justify-content: center; }
.fact:last-child { border-right: 0; }
.fact strong { color: var(--ink); font-family: var(--font-display); font-size: 1.05rem; line-height: 1.2; }
.fact span { margin-top: 0.35rem; color: rgba(16,24,32,0.72); font-size: 0.78rem; font-weight: 700; }

.content-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 7vw, 6rem); align-items: start; }
.content-split.reverse { grid-template-columns: 1.15fr 0.85fr; }
.content-split h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
.content-prose { color: var(--muted); }
.content-prose h3 { margin-top: 2rem; color: var(--ink); }
.content-prose p + p { margin-top: 1rem; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.info-card { padding: 1.55rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.7); }
.info-card .icon { width: 46px; height: 46px; display: grid; place-items: center; margin-bottom: 2rem; border-radius: 50%; background: var(--accent); color: var(--ink); font-weight: 800; }
.info-card h3 { font-size: 1.2rem; }
.info-card p { margin: 0.75rem 0 0; color: var(--muted); font-size: 0.92rem; }

.step-list { counter-reset: steps; display: grid; }
.step { counter-increment: steps; display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.step::before { content: "0" counter(steps); color: var(--accent-dark); font: 800 1.1rem/1 var(--font-display); }
.step h3 { font-size: 1.5rem; }
.step p { margin: 0.7rem 0 0; color: var(--muted); }

.location-stack { display: grid; gap: 1.5rem; }
.location-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.location-panel:nth-child(even) .location-media { order: 2; }
.location-media img { width: 100%; height: 100%; object-fit: cover; }
.location-copy { padding: clamp(2rem, 5vw, 4rem); display: flex; flex-direction: column; justify-content: center; }
.location-copy h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.location-details { display: grid; gap: 0.85rem; margin: 1.5rem 0; }
.location-details p { margin: 0; padding-bottom: 0.75rem; border-bottom: 1px solid var(--line); color: var(--muted); }
.location-details strong { color: var(--ink); }

.ministry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.ministry-card { position: relative; min-height: 480px; overflow: hidden; border-radius: var(--radius); background: var(--ink); color: var(--white); }
.ministry-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.72; transition: transform 600ms ease; }
.ministry-card:hover img { transform: scale(1.04); }
.ministry-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,15,21,0.96), rgba(8,15,21,0.06) 75%); }
.ministry-card-body { position: absolute; z-index: 1; inset: auto 0 0; padding: 1.8rem; }
.ministry-card h3 { color: var(--white); font-size: clamp(1.65rem, 3vw, 2.5rem); }
.ministry-card p { margin: 0.75rem 0 0; color: rgba(255,255,255,0.74); }

.leader-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.leader-card { overflow: hidden; background: var(--white); border-bottom: 4px solid var(--accent); box-shadow: 0 14px 34px rgba(16,24,32,0.08); }
.leader-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; }
.leader-copy { padding: 1.15rem; }
.leader-copy h3 { font-size: 1.02rem; line-height: 1.25; letter-spacing: -0.025em; }
.leader-copy p { margin: 0.4rem 0 0; color: var(--muted); font-size: 0.78rem; font-weight: 700; }

.belief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.belief-card { padding: 1.5rem; border: 1px solid var(--line); background: rgba(255,255,255,0.65); }
.belief-card h3 { font-size: 1.2rem; }
.belief-card p { margin: 0.8rem 0 0; color: var(--muted); font-size: 0.9rem; }

.group-grid,
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.group-card,
.serve-card { min-height: 300px; padding: 1.6rem; border-radius: 18px; background: var(--white); box-shadow: 0 14px 34px rgba(16,24,32,0.08); display: flex; flex-direction: column; justify-content: space-between; }
.group-card:nth-child(2n),
.serve-card:nth-child(2n) { background: var(--ink); color: rgba(255,255,255,0.72); }
.group-card:nth-child(2n) h3,
.serve-card:nth-child(2n) h3 { color: var(--white); }

.story-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.story-gallery figure { overflow: hidden; border-radius: 18px; background: var(--white); box-shadow: 0 14px 34px rgba(16,24,32,0.08); }
.story-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.story-gallery figcaption { padding: 1rem 1.1rem 1.15rem; color: var(--muted); font-size: 0.82rem; font-weight: 700; }
.story-gallery.featured { grid-template-columns: 1fr; }
.story-gallery.featured img { aspect-ratio: 16 / 9; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-card { min-height: 260px; padding: 2rem; border: 1px solid var(--line); background: var(--white); }
.contact-card h3 { font-size: clamp(1.35rem, 2.4vw, 2rem); }
.contact-card p:not(.eyebrow) { margin: 1rem 0 1.25rem; color: var(--muted); }
.contact-card a { color: #6f5100; font-weight: 800; overflow-wrap: anywhere; text-decoration: underline; text-underline-offset: 4px; }
.give-hero .contact-hero-photo img { object-position: center 36%; }
.fact span { overflow-wrap: anywhere; }
.not-found { min-height: calc(100vh - 78px); display: grid; place-items: center; }
.not-found h1 { color: var(--white); }
.not-found .hero-lead { max-width: 620px; margin: 1.3rem auto 0; }

.faq-list { max-width: 900px; margin-inline: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.35rem 3rem 1.35rem 0; cursor: pointer; color: var(--ink); font-family: var(--font-display); font-size: 1.08rem; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 1.05rem; width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: 50%; background: var(--accent); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 760px; padding: 0 2rem 1.4rem 0; color: var(--muted); }


.site-footer { padding: 4.5rem 0 1.5rem; background: #0b1116; color: rgba(255,255,255,0.65); }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: clamp(2rem, 6vw, 5rem); }
.footer-brand img { filter: brightness(0) invert(1); }
.footer-brand p { max-width: 340px; margin-top: 1rem; }
.footer-grid h2 { margin-bottom: 1rem; color: var(--white); font: 800 0.72rem/1 var(--font-body); letter-spacing: 0.16em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { padding-block: 0.3rem; font-size: 0.83rem; font-weight: 700; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.72rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.25,1); }
.reveal.show { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 78px 0 auto;
    max-height: calc(100svh - 78px);
    overflow-y: auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 1rem 20px 1.5rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }
  .nav.open { transform: translateY(0); visibility: visible; }
  .nav a { padding: 0.9rem 0; border-radius: 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a.nav-cta { margin: 1rem 0 0; border: 0; border-radius: 999px; text-align: center; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { top: 0; transform: rotate(-45deg); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .home-hero { min-height: clamp(680px, 100vw, 730px); padding-top: 0; overflow: hidden; }
  .home-hero-media { inset: 0; width: 100%; height: 100%; object-position: center 20%; }
  .home-hero-shade { inset: 0; height: auto; background: linear-gradient(0deg, rgba(8,15,21,0.98) 0%, rgba(8,15,21,0.78) 34%, rgba(8,15,21,0.22) 64%, rgba(8,15,21,0) 84%); }
  .home-hero-content { width: min(100% - 32px, 720px); min-height: inherit; margin-top: 0; padding: 2.5rem 0 2.4rem; border-radius: 0; background: transparent; box-shadow: none; }
  .home-hero-content > *,
  .home-hero h1 { max-width: 680px; }
  .home-hero h1 { font-size: clamp(2.8rem, 7.6vw, 4rem); }
  .page-about .page-hero { min-height: 650px; display: grid; padding-top: 0; background: var(--ink); }
  .page-about-hero-media { left: 45%; width: 55%; height: 100%; }
  .page-about .page-hero-media { left: 0; width: 100%; height: 100%; object-position: center; }
  .page-about .page-hero::after { inset: 0; height: auto; background: linear-gradient(90deg, #081016 0%, #081016 34%, rgba(8,16,22,0.97) 40%, rgba(8,16,22,0.76) 46%, rgba(8,16,22,0.43) 52%, rgba(8,16,22,0.18) 59%, rgba(8,16,22,0.05) 66%, transparent 74%); }
  .page-about .page-hero-content { padding-block: 4.8rem 4rem; padding-right: 58%; }
  .page-about .page-hero h1 { max-width: 11ch; font-size: clamp(2.3rem, 5.4vw, 3.2rem); }
  .page-about .page-hero .hero-lead { font-size: 0.98rem; line-height: 1.55; }
  .page-about .page-hero .button-row { gap: 0.55rem; }
  .page-about .page-hero .btn { min-height: 46px; padding-inline: 1rem; font-size: 0.78rem; }
  .locations-hero .page-hero-content { padding: 6.5rem 0 4.5rem; }
  .locations-hero h1 { font-size: clamp(2.8rem, 7vw, 3.8rem); }
  .locations-hero .hero-lead { font-size: 0.96rem; line-height: 1.5; }
  .locations-hero .button-row { gap: 0.55rem; }
  .locations-hero .btn { min-height: 46px; padding-inline: 1rem; font-size: 0.76rem; }
  .new-location-intro { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
  .new-location-intro h2 { max-width: none; }
  .split-intro,
  .vibrant-statement,
  .visit-feature,
  .message-layout,
  .content-split,
  .content-split.reverse,
  .contact-hero-layout { grid-template-columns: 1fr; }
  .contact-hero-copy { max-width: 720px; }
  .contact-hero-photo { max-width: 780px; }
  .intro-copy { padding-top: 0; }
  .vibrant-statement { align-items: start; }
  .vibrant-statement-copy { max-width: 680px; }
  .visit-feature-media { padding-right: 14px; }
  .media-note { right: 0; }
  .campus-grid,
  .event-grid,
  .location-panel,
  .ministry-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .location-panel:nth-child(even) .location-media { order: 0; }
  .location-media { min-height: 340px; }
  .message-art img { height: 420px; }
  .answer-grid,
  .belief-grid,
  .group-grid,
  .serve-grid,
  .story-gallery { grid-template-columns: 1fr 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .page-locations .facts-bar { display: none; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid rgba(16,24,32,0.2); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .leader-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, 1180px); }
  .answer-grid,
  .belief-grid,
  .group-grid,
  .serve-grid,
  .story-gallery { grid-template-columns: 1fr; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 42px; height: 42px; }
  .brand { font-size: 0.82rem; }
  .nav { inset-block-start: 70px; max-height: calc(100svh - 70px); }
  .home-hero { min-height: clamp(760px, 205vw, 820px); padding-top: 0; }
  .home-hero-media { top: 145px; bottom: 0; height: calc(100% - 145px); object-position: center top; filter: brightness(1.38) saturate(1.1) contrast(0.98); }
  .home-hero-shade { height: auto; background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 30%, rgba(8,15,21,0.62) 34%, rgba(8,15,21,0.12) 38%, transparent 42%), linear-gradient(0deg, rgba(8,15,21,0.78) 0%, rgba(8,15,21,0.2) 18%, transparent 30%); }
  .home-hero-content { width: min(100% - 28px, 560px); min-height: inherit; justify-content: space-between; padding: 3rem 0 2rem; }
  .home-hero-message { max-width: 100%; }
  .home-hero h1 { max-width: 100%; font-size: clamp(2rem, 8.8vw, 2.4rem); line-height: 0.98; }
  .home-hero .eyebrow { max-width: 34ch; margin-bottom: 0.7rem; font-size: 0.64rem; line-height: 1.5; }
  .home-hero .button-row { width: 100%; margin-top: 0; }
  .button-row .btn { width: 100%; }
  .event-card { grid-template-columns: 74px minmax(0, 1fr); gap: 1rem; }
  .event-date { width: 74px; min-height: 88px; border-radius: 14px; }
  .event-date span { font-size: 2.15rem; }
  .event-card-copy .btn { width: 100%; }
  .ticker { justify-content: flex-start; }
  .new-location-grid { grid-template-columns: 1fr; }
  .new-location-tile { min-height: 300px; }
  .new-location-tile-body > span:last-child { align-items: end; }
  .vibrant-section::before { right: -280px; opacity: 0.7; }
  .vibrant-statement h2 { font-size: clamp(2.75rem, 13vw, 4.6rem); }
  .section { padding-block: 4.8rem; }
  .section-heading.with-action { display: block; }
  .section-heading.with-action .text-link { margin-top: 1.2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 300px; }
  .feature-card.feature-card-clear-face { min-height: 590px; grid-template-rows: 280px minmax(0, 1fr); }
  .visit-feature-media img { height: 500px; }
  .campus-card img { height: 270px; }
  .page-hero { min-height: 600px; }
  .page-about .page-hero { min-height: auto; display: block; padding-top: 300px; }
  .page-about-hero-media { left: 0; width: 100%; height: 300px; }
  .page-about .page-hero-media { left: 0; width: 100%; height: 300px; }
  .page-about .page-hero-media { transform: scale(1.55); transform-origin: 56% 38%; filter: brightness(1.16) saturate(1.05); }
  .page-about .page-hero::after { inset: 0 0 auto; width: 100%; height: 300px; background: linear-gradient(0deg, var(--ink) 0%, rgba(8,15,21,0.7) 4%, rgba(8,15,21,0.24) 8%, rgba(8,15,21,0.06) 11%, transparent 15%); }
  .page-about .page-hero-content { padding: 2.8rem 0 4.5rem; }
  .page-about .page-hero h1 { max-width: 13ch; font-size: clamp(2.5rem, 11vw, 3.8rem); }
  .page-about .page-hero .hero-lead { font-size: 1rem; }
  .page-leadership .page-hero { min-height: 780px; align-items: start; }
  .page-leadership .page-hero-media { top: 100px; height: calc(100% - 100px); object-position: center top; }
  .page-leadership .page-hero::after { background: linear-gradient(180deg, rgba(8,15,21,0.96) 0%, rgba(8,15,21,0.88) 35%, rgba(8,15,21,0.36) 62%, rgba(8,15,21,0.2) 100%); }
  .page-leadership .page-hero-content { width: min(100% - 28px, 560px); min-height: inherit; padding-block: 1.1rem 2rem; }
  .page-leadership .page-hero h1 { max-width: 12ch; font-size: clamp(2.15rem, 10vw, 2.55rem); }
  .page-leadership .page-hero .hero-lead { max-width: 38ch; margin-top: 0.8rem; font-size: 0.88rem; line-height: 1.42; }
  .page-leadership .page-hero .button-row { position: absolute; right: 0; bottom: 2rem; left: 0; gap: 0.5rem; margin-top: 0; }
  .page-leadership .page-hero .btn { min-height: 43px; padding-block: 0.65rem; font-size: 0.74rem; }
  .page-watch .page-hero { min-height: 780px; align-items: start; }
  .page-watch .page-hero-media { top: 160px; height: calc(100% - 160px); object-position: 62% center; filter: brightness(1.34) saturate(1.06) contrast(0.98); }
  .page-watch .page-hero::after { background: linear-gradient(180deg, #081016 0%, #081016 20%, rgba(8,15,21,0.62) 27%, rgba(8,15,21,0.08) 38%, transparent 45%), linear-gradient(0deg, rgba(8,15,21,0.58) 0%, rgba(8,15,21,0.12) 20%, transparent 30%); }
  .page-watch .page-hero-content { width: min(100% - 28px, 560px); min-height: inherit; padding-block: 1rem 2rem; }
  .page-watch .page-hero h1 { max-width: 12ch; font-size: clamp(2.15rem, 10vw, 2.55rem); }
  .page-watch .page-hero .hero-lead { max-width: 38ch; margin-top: 0.8rem; font-size: 0.88rem; line-height: 1.42; }
  .page-watch .page-hero .button-row { position: absolute; right: 0; bottom: 2rem; left: 0; gap: 0.5rem; margin-top: 0; }
  .page-watch .page-hero .btn { min-height: 43px; padding-block: 0.65rem; font-size: 0.74rem; }
  .page-visit .page-hero { min-height: 700px; align-items: start; }
  .page-visit .visit-hero-picture { inset: 150px 0 auto; width: 100%; height: 550px; }
  .page-visit .visit-hero-picture img { object-position: center 34%; filter: brightness(1.08) saturate(1.04); }
  .page-visit .page-hero::after { background: linear-gradient(180deg, #081016 0%, #081016 22%, rgba(8,15,21,0.82) 28%, rgba(8,15,21,0.18) 37%, transparent 45%), linear-gradient(0deg, rgba(8,15,21,0.72) 0%, rgba(8,15,21,0.18) 22%, transparent 35%); }
  .page-visit .page-hero-content { width: min(100% - 28px, 560px); min-height: inherit; padding-block: 1rem 2rem; }
  .page-visit .page-hero h1 { max-width: 12ch; font-size: clamp(2.15rem, 10vw, 2.55rem); }
  .page-visit .page-hero .hero-lead { max-width: 38ch; margin-top: 0.8rem; font-size: 0.88rem; line-height: 1.42; }
  .page-visit .page-hero .button-row { position: absolute; right: 0; bottom: 7rem; left: 0; gap: 0.5rem; margin-top: 0; }
  .page-visit .page-hero .btn { min-height: 43px; padding-block: 0.65rem; font-size: 0.74rem; }
  .locations-hero { min-height: 590px; }
  .locations-hero::after { inset: 0; width: auto; height: auto; }
  .locations-hero .page-hero-content { padding: 6.5rem 0 4.5rem; }
  .locations-hero h1 { max-width: 11ch; font-size: clamp(2.5rem, 11vw, 3.8rem); }
  .locations-hero .hero-lead { font-size: 1rem; }
  .page-hero.compact { min-height: 500px; }
  .page-hero-content { padding-block: 6rem 3.8rem; }
  .contact-hero { padding-block: 4.8rem; }
  .contact-hero-photo { padding: 0 0 0.8rem 0.8rem; }
  .contact-hero-photo::before { inset: 0.8rem 0.8rem 0 0; }
  .facts-grid,
  .answer-grid,
  .belief-grid,
  .group-grid,
  .serve-grid,
  .leader-grid,
  .story-gallery,
  .fact { border-right: 0; border-bottom: 1px solid rgba(16,24,32,0.2); }
  .fact:last-child { border-bottom: 0; }
  .location-panel { min-height: unset; }
  .location-media { min-height: 280px; }
  .ministry-card { min-height: 430px; }
  .leader-card img { aspect-ratio: 1 / 1; }
  .step { grid-template-columns: 58px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

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

/* Launch utility pages: connection card, church app, and livestream. */
.utility-hero {
  padding: 9rem 0 4.5rem;
  background: var(--ink);
  color: #fff;
}

.utility-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: .92;
}

.utility-hero h1 em {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 500;
}

.utility-layout {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.utility-logo {
  width: min(100%, 240px);
  height: auto;
}

.app-utility-hero {
  background: radial-gradient(circle at 18% 42%, rgba(235, 119, 43, .22), transparent 30%), var(--ink);
}

.form-shell {
  max-width: 980px;
}

.form-embed {
  display: block;
  width: 100%;
  min-height: 980px;
  border: 0;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 24, 32, .12);
}

.form-fallback {
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 680px) {
  .utility-hero {
    padding: 7.5rem 0 3.5rem;
  }

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

  .utility-logo {
    width: 132px;
  }

  .form-embed {
    min-height: 1120px;
    border-radius: .8rem;
  }
}
