@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #172137;
  --navy-2: #22304c;
  --ink: #24262a;
  --muted: #687075;
  --cream: #f7f1e7;
  --cream-2: #efe6d7;
  --white: #fffdf8;
  --olive: #647052;
  --olive-2: #87916f;
  --gold: #c8a866;
  --gold-2: #e5ce98;
  --line: rgba(36, 38, 42, 0.12);
  --glass: rgba(255, 253, 248, 0.13);
  --shadow: 0 24px 70px rgba(23, 33, 55, 0.16);
  --shadow-deep: 0 35px 100px rgba(10, 16, 29, 0.32);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 40px));
  --container-wide: min(1420px, calc(100vw - 32px));
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(3.6rem, 9vw, 8.6rem);
}

h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.45rem, 5vw, 5rem);
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.28;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  border-radius: 8px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: padding 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 10px 40px rgba(23, 33, 55, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container-wide);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 14px 0 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  background: rgba(12, 18, 32, 0.28);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(23, 33, 55, 0.08);
  background: rgba(255, 253, 248, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--white);
}

.brand-light {
  color: var(--white);
}

.site-header.is-scrolled .brand {
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 168, 102, 0.78);
  border-radius: 50%;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  opacity: 0.65;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.desktop-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 10px;
}

.desktop-nav__item > a,
.desktop-nav > a {
  position: relative;
  padding: 12px 10px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header.is-scrolled .desktop-nav__item > a,
.site-header.is-scrolled .desktop-nav > a {
  color: var(--navy);
}

.desktop-nav__item > a::after,
.desktop-nav > a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 220ms var(--ease);
}

.desktop-nav__item:hover > a::after,
.desktop-nav__item:focus-within > a::after,
.desktop-nav__item > a[aria-current="page"]::after,
.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.desktop-nav__submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  min-width: 220px;
  padding: 10px;
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  z-index: 5;
}

.desktop-nav__item:hover .desktop-nav__submenu,
.desktop-nav__item:focus-within .desktop-nav__submenu,
.desktop-nav__item.is-open .desktop-nav__submenu {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.desktop-nav__submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

.desktop-nav__submenu a:hover {
  background: var(--cream);
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button,
.menu-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease);
}

.site-header.is-scrolled .icon-button,
.site-header.is-scrolled .menu-button {
  background: rgba(23, 33, 55, 0.07);
  color: var(--navy);
}

.icon-button:hover,
.menu-button:hover {
  transform: translateY(-2px);
  background: rgba(200, 168, 102, 0.24);
}

.icon-button.light {
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-cta {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background: rgba(4, 8, 16, 0.58);
  opacity: 0;
  transition: opacity 280ms var(--ease);
}

.drawer-backdrop.is-open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(420px, 92vw);
  height: 100vh;
  padding: 26px;
  transform: translateX(105%);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-deep);
  transition: transform 320ms var(--ease);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.drawer-nav {
  display: grid;
  gap: 2px;
  padding: 24px 0;
}

.drawer-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.08);
  color: rgba(255, 253, 248, 0.82);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.1;
}

.drawer-card {
  padding: 24px;
  border: 1px solid rgba(200, 168, 102, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
}

.drawer-card span {
  color: var(--gold-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drawer-card strong {
  display: block;
  margin: 8px 0 18px;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.hero-section {
  position: relative;
  min-height: 86vh;
  margin: 12px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  background: var(--navy);
}

.hero-media,
.hero-media video,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-shade {
  background: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container-wide);
  margin: 0 auto;
  padding: 170px 10px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(34px, 7vw, 100px);
  align-items: end;
}

.hero-copy {
  padding: 34px 38px;
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 70px rgba(9, 14, 25, 0.22);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section .eyebrow {
  color: #000;
  font-weight: 600;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease) 200ms forwards;
}

.hero-section h1 {
  max-width: 640px;
  color: #000;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease) 400ms forwards;
}

.hero-section h1 em {
  color: #000;
  font-style: italic;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.hero-section .hero-lead {
  max-width: 520px;
  color: rgba(23, 33, 55, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease) 600ms forwards;
}

.hero-section .button-row {
  opacity: 0;
  animation: heroFadeUp 800ms var(--ease) 800ms forwards;
}

.hero-section .button-outline.light {
  border-color: rgba(23, 33, 55, 0.3);
  color: var(--navy);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.button svg {
  transition: transform 200ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(200, 168, 102, 0.26);
}

.button-glass {
  border: 1px solid rgba(255, 253, 248, 0.5);
  background: rgba(9, 14, 25, 0.4);
  color: var(--white);
}

.button-outline {
  border: 1px solid rgba(23, 33, 55, 0.22);
  color: var(--navy);
  background: transparent;
}

.button-outline.light {
  border-color: rgba(255, 253, 248, 0.28);
  color: var(--white);
}

.hero-cards {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-left: 3px solid rgba(255, 253, 248, 0.3);
  border-radius: 12px;
  background: rgba(9, 14, 25, 0.64);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}

.hero-card-icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: var(--gold-2);
  font-size: 1.15rem;
}

.hero-card-feature {
  border-left-color: var(--gold);
  background: rgba(9, 14, 25, 0.78);
}

.hero-card-feature .hero-card-icon {
  background: rgba(200, 168, 102, 0.2);
  color: var(--gold);
}

.hero-card-feature strong {
  color: var(--gold-2);
}

.hero-card-label {
  display: block;
  color: currentColor;
  opacity: 0.78;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
}

.hero-card p {
  margin: 6px 0 0;
  color: currentColor;
  opacity: 0.82;
  font-size: 0.86rem;
}

.experience-strip {
  width: var(--container-wide);
  margin: -34px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.experience-item {
  display: flex;
  gap: 15px;
  min-height: 138px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.experience-item:last-child {
  border-right: 0;
}

.mini-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
}

.experience-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.experience-item p {
  margin: 0;
  font-size: 0.9rem;
}

.section {
  padding: clamp(76px, 10vw, 150px) 0;
}

.split-layout,
.contact-layout,
.sermon-feature,
.mission-panel {
  width: var(--container);
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: center;
}

.welcome-band {
  background:
    linear-gradient(90deg, var(--white), rgba(247, 241, 231, 0.74)),
    radial-gradient(circle at 0 100%, rgba(100, 112, 82, 0.16), transparent 38%);
}

.image-collage {
  position: relative;
}

.image-collage img {
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.collage-note {
  position: absolute;
  right: -28px;
  bottom: 36px;
  width: min(240px, 70%);
  padding: 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-deep);
}

.collage-note span,
.tile-badge,
.portal-card span,
.event-card p,
.sermon-strip span {
  display: block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collage-note strong {
  display: block;
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
}

.lead {
  max-width: 670px;
  font-size: 1.12rem;
}

.expect-list {
  display: grid;
  gap: 12px;
  margin: 32px 0;
}

.expect-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.expect-list strong {
  color: var(--navy);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--olive);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.text-link::after {
  content: "";
  width: 46px;
  height: 1px;
  margin-left: 13px;
  background: currentColor;
  transition: width 200ms var(--ease);
}

.text-link:hover::after {
  width: 70px;
}

.ministries-section,
.member-section {
  background: var(--cream);
}

.section-heading {
  width: var(--container);
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.ministry-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 286px;
  gap: 16px;
}

.ministry-tile {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 24px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.ministry-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}

.ministry-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.ministry-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 14, 25, 0.02) 20%, rgba(9, 14, 25, 0.5));
}

.ministry-tile:hover img {
  transform: scale(1.07);
}

.tile-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--navy);
}

.ministry-tile h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
}

.ministry-tile p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
}

.sermons-section {
  background: var(--navy);
  color: var(--white);
}

.sermon-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
  box-shadow: var(--shadow-deep);
}

.sermon-media {
  position: relative;
  min-height: 520px;
}

.sermon-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 20px 60px rgba(200, 168, 102, 0.34);
}

.play-button svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

.sermon-copy {
  padding: clamp(32px, 5vw, 70px);
}

.sermon-copy h2 {
  color: var(--white);
}

.sermon-copy p {
  color: rgba(255, 253, 248, 0.7);
}

.sermon-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.sermons-section .button-outline {
  border-color: rgba(255, 253, 248, 0.24);
  color: var(--white);
}

.sermon-strip {
  width: var(--container);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.1);
}

.sermon-strip article {
  padding: 22px;
  background: rgba(255, 253, 248, 0.06);
}

.sermon-strip strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
}

.event-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.event-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  min-height: 188px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(23, 33, 55, 0.07);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.event-card time {
  display: grid;
  place-items: center;
  align-content: center;
  width: 76px;
  height: 86px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.event-card time span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-card time strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.event-card h3 {
  margin: 8px 0 10px;
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
}

.event-card span {
  color: var(--muted);
}

.mission-section {
  background:
    linear-gradient(rgba(23, 33, 55, 0.36), rgba(23, 33, 55, 0.42)),
    url("../assets/images/mission-outreach.jpg") center / cover;
}

.mission-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  color: var(--white);
}

.mission-panel h2 {
  color: var(--white);
}

.mission-panel p {
  color: rgba(255, 253, 248, 0.72);
}

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

.impact-grid article {
  min-height: 172px;
  padding: 26px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(14px);
}

.impact-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-family: var(--font-display);
  font-size: 2.1rem;
}

.impact-grid span {
  color: rgba(255, 253, 248, 0.72);
}

.portal-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.portal-card {
  min-height: 170px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(23, 33, 55, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(23, 33, 55, 0.06);
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.portal-card:hover {
  transform: translateY(-5px);
  background: var(--navy);
}

.portal-card strong {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.portal-card:hover strong {
  color: var(--white);
}

.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  align-items: stretch;
}

.contact-copy,
.map-panel {
  min-height: 480px;
  border-radius: 8px;
}

.contact-copy {
  padding: clamp(28px, 5vw, 54px);
  background: var(--cream);
}

address {
  margin: 26px 0;
  color: var(--muted);
  font-style: normal;
}

address strong {
  display: block;
  color: var(--navy);
}

.map-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 33, 55, 0.36), rgba(100, 112, 82, 0.24)),
    url("../assets/images/map-panel-bg.jpg") center / cover;
  color: var(--white);
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 8px;
}

.map-panel span {
  position: relative;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-panel strong {
  position: relative;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
}

.map-panel p {
  position: relative;
  color: rgba(255, 253, 248, 0.76);
}

.site-footer {
  background: #0b1220;
  color: rgba(255, 253, 248, 0.72);
}

.footer-layout {
  width: var(--container-wide);
  margin: 0 auto;
  padding: 74px 0 52px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 42px;
}

.footer-layout h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-layout p,
.footer-layout a {
  display: block;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.92rem;
}

.footer-layout a {
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 340px;
}

.footer-form {
  display: grid;
  gap: 10px;
}

.footer-form label {
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.78rem;
}

.footer-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
}

.footer-bottom {
  width: var(--container-wide);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 253, 248, 0.1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 253, 248, 0.55);
  font-size: 0.82rem;
}

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

.footer-bottom a {
  color: rgba(255, 253, 248, 0.7);
  font-size: 0.82rem;
}

.mobile-visit {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  display: none;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 18px 60px rgba(23, 33, 55, 0.24);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 44;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  transform: translateY(18px);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
  cursor: pointer;
}

.back-to-top.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-shell {
    justify-content: space-between;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .experience-item:nth-child(2) {
    border-right: 0;
  }

  .experience-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .split-layout,
  .sermon-feature,
  .mission-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 32px, 1180px);
    --container-wide: min(100vw - 24px, 1420px);
  }

  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    min-height: 62px;
    padding-left: 12px;
    border-radius: 999px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 1.1rem;
  }

  .brand small,
  .nav-cta,
  .icon-button:not(.light) {
    display: none;
  }

  .hero-section {
    min-height: 780px;
    margin: 0;
    border-radius: 0 0 18px 18px;
  }

  .hero-inner {
    padding: 130px 4px 38px;
    gap: 28px;
  }

  .hero-copy {
    padding: 24px 22px;
    border-radius: 16px;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .button {
    width: 100%;
  }

  .hero-cards,
  .experience-strip,
  .event-grid,
  .portal-grid,
  .impact-grid,
  .sermon-strip {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card strong {
    font-size: 1.7rem;
  }

  .experience-strip {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
  }

  .experience-item {
    min-height: 116px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .image-collage img {
    aspect-ratio: 1;
  }

  .collage-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 30px);
    margin: -52px auto 0;
  }

  .expect-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ministry-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .ministry-tile.large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .sermon-media,
  .sermon-media img,
  .contact-copy,
  .map-panel {
    min-height: 360px;
  }

  .sermon-copy {
    padding: 28px;
  }

  .event-card {
    grid-template-columns: 70px 1fr;
    gap: 16px;
    min-height: auto;
    padding: 18px;
  }

  .event-card time {
    width: 70px;
    height: 78px;
  }

  .mission-panel {
    gap: 28px;
  }

  .impact-grid article,
  .portal-card {
    min-height: 136px;
  }

  .footer-layout,
  .footer-bottom {
    grid-template-columns: 1fr;
    width: var(--container);
  }

  .footer-layout {
    padding: 58px 0 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 86px;
  }

  .mobile-visit {
    display: block;
  }

  .back-to-top {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Legacy page compatibility for existing inner pages. */
.container {
  width: var(--container);
  margin: 0 auto;
}

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

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.t-eyebrow {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.t-lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.gold-rule {
  display: block;
  width: 54px;
  height: 2px;
  margin: 18px 0;
  background: var(--gold);
}

.section-header {
  max-width: 720px;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.centered .gold-rule {
  margin-left: auto;
  margin-right: auto;
}

.section--cream {
  background: var(--cream);
}

.section--ivory {
  background: var(--cream-2);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.section--navy p {
  color: rgba(255, 253, 248, 0.72);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline-white {
  border: 1px solid rgba(255, 253, 248, 0.36);
  color: var(--white);
}

.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

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

.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form .form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-form .form-group label {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid rgba(23, 33, 55, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.contact-form .form-group select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 23px,
    calc(100% - 14px) 23px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

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

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 168, 102, 0.18);
  outline: none;
}

@media (max-width: 640px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding 240ms var(--ease), background 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-nav.scrolled {
  padding: 8px 0;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 40px rgba(23, 33, 55, 0.08);
  backdrop-filter: blur(18px);
}

.nav-inner {
  width: var(--container-wide);
  min-height: 68px;
  margin: 0 auto;
  padding: 0 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 999px;
  background: rgba(12, 18, 32, 0.28);
  backdrop-filter: blur(16px);
}

.site-nav.scrolled .nav-inner {
  border-color: rgba(23, 33, 55, 0.08);
  background: rgba(255, 253, 248, 0.94);
}

.nav-logo {
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
  color: var(--white);
}

.site-nav.scrolled .nav-logo {
  color: var(--navy);
}

.nav-logo-top {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
}

.nav-logo-sub {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.66;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 10px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 10px;
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav.scrolled .nav-link {
  color: var(--navy);
}

.nav-link:hover {
  color: var(--gold);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 230px;
  padding: 10px;
  margin: 0;
  list-style: none;
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.86rem;
}

.nav-dropdown a:hover {
  background: var(--cream);
}

.nav-give-btn {
  background: var(--gold);
  color: var(--navy) !important;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.site-nav.scrolled .nav-hamburger {
  color: var(--navy);
  background: rgba(23, 33, 55, 0.07);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background: rgba(4, 8, 16, 0.58);
  opacity: 0;
  transition: opacity 280ms var(--ease);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-overlay.open,
.drawer-overlay.is-open {
  pointer-events: auto;
  opacity: 1;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.drawer-logo {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  cursor: pointer;
}

.drawer-section {
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drawer-bottom {
  display: grid;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.page-transition {
  display: none;
}

.page-hero {
  position: relative;
  padding: 168px 0 92px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(9, 14, 25, 0.42), rgba(23, 33, 55, 0.14)),
    url("../assets/images/hero-worship.jpg") center / cover;
  color: var(--white);
}

.page-hero-content {
  width: var(--container);
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.78);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.84rem;
}

.breadcrumb .current {
  color: var(--gold);
}

.card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-body {
  padding: 24px;
}

.card-title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

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

.cta-banner {
  padding: 86px 20px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
}

.cta-banner p {
  color: rgba(255, 253, 248, 0.72);
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-main {
  width: var(--container-wide);
  margin: 0 auto;
  padding: 74px 0 52px;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  gap: 42px;
}

.footer-logo-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.footer-logo-sub {
  margin: 4px 0 18px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col a,
.footer-time-item,
.footer-brand p {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.09);
}

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

.fab-visit {
  display: none;
}

.reveal-left,
.reveal-right,
.stagger-children > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

.reveal-left.is-visible,
.reveal-right.is-visible,
.stagger-children.is-visible > *,
.reveal-left.visible,
.reveal-right.visible,
.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .grid-3,
  .grid-4,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .nav-give-btn {
    display: none;
  }

  .page-hero {
    padding: 132px 0 70px;
  }

  .cta-banner-actions .btn {
    width: 100%;
  }

  .fab-visit {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 45;
    display: none;
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 18px 60px rgba(23, 33, 55, 0.24);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
  }

  .fab-visit.visible,
  .fab-visit.is-visible {
    display: flex;
  }
}
