:root {
  --ink: #080811;
  --paper: #fff7f5;
  --muted: #6b6574;
  --panel: #ffffff;
  --teal: #43e8ef;
  --magenta: #d31359;
  --purple: #6d35d8;
  --line: rgba(8, 8, 17, 0.13);
  --shadow: 0 24px 70px rgba(9, 7, 22, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: white;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(5, 6, 13, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.08),
    0 0 28px rgba(67, 232, 239, 0.32);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  font-weight: 750;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 9px 14px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #060712;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 13, 0.92), rgba(5, 6, 13, 0.48) 55%, rgba(5, 6, 13, 0.22)),
    linear-gradient(0deg, rgba(5, 6, 13, 0.86), rgba(5, 6, 13, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 168px 0 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--magenta);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--teal);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.35rem, 9vw, 7.7rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.primary {
  color: white;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  box-shadow: 0 16px 36px rgba(211, 19, 89, 0.26);
}

.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

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

.outline {
  color: var(--ink);
  border: 1px solid var(--line);
  background: white;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.quick-links {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100% - 36px));
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.quick-links a {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-links strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.15;
}

.section {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 128px) 0;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 7vw, 90px);
}

.section-copy {
  color: #332f3b;
  font-size: 1.12rem;
}

.network-note {
  margin-top: 26px;
  padding: 20px;
  border-left: 4px solid var(--magenta);
  border-radius: 8px;
  color: #2a2434;
  background: rgba(255, 255, 255, 0.72);
}

.network-note a {
  color: var(--purple);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faith-note {
  border-left-color: var(--teal);
}

.gathering {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #05060d;
  color: white;
  box-shadow: var(--shadow);
}

.gather-card {
  padding: clamp(34px, 6vw, 72px);
}

.gather-card p {
  color: rgba(255, 255, 255, 0.78);
}

.gather-card dl {
  display: grid;
  gap: 18px;
  margin: 32px 0;
}

.gather-card dt {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gather-card dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.map-link {
  color: white;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: var(--teal);
  text-underline-offset: 4px;
}

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

.gather-image-graphic {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 38px);
  background: #020205;
}

.gather-image-graphic img {
  width: min(100%, 620px);
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.steps-grid article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.steps-grid span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--magenta);
  font-weight: 950;
}

.steps-grid p,
.intro p,
.connect-copy p {
  color: var(--muted);
}

.photo-section {
  padding-bottom: clamp(82px, 10vw, 130px);
}

.intro {
  padding-bottom: 36px;
}

.intro p {
  max-width: 720px;
  font-size: 1.12rem;
}

.carousel {
  position: relative;
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.carousel-track {
  position: relative;
  height: clamp(360px, 64vw, 740px);
  overflow: hidden;
  border-radius: 8px;
  background: #070813;
  box-shadow: var(--shadow);
}

.carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 500ms ease,
    transform 700ms ease;
}

.carousel-track img.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-button {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(5, 6, 13, 0.68);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.previous {
  left: 18px;
}

.next {
  right: 18px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 8, 17, 0.25);
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--magenta);
}

.prayer-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(48px, 7vw, 84px) clamp(18px, 6vw, 70px);
  color: white;
  background:
    radial-gradient(circle at top left, rgba(67, 232, 239, 0.26), transparent 32%),
    linear-gradient(135deg, #05060d, #25104d 55%, #d31359);
}

.prayer-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.prayer-band .eyebrow {
  color: var(--teal);
}

.connect-section {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 128px) 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 80px);
}

.connect-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #1f1a2c;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(67, 232, 239, 0.4);
  border-color: var(--teal);
}

.full,
.form-note {
  grid-column: 1 / -1;
}

.connect-form .button {
  width: max-content;
  border: 0;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 34px clamp(18px, 4vw, 58px);
  color: white;
  background: #05060d;
}

.site-footer img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 24px rgba(67, 232, 239, 0.22);
}

.site-footer p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.67);
}

.site-footer a {
  margin-left: auto;
  color: var(--teal);
  font-weight: 850;
}

.site-footer p a {
  margin-left: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subpage {
  background:
    radial-gradient(circle at top right, rgba(67, 232, 239, 0.28), transparent 28rem),
    var(--paper);
}

.subpage .site-header {
  position: sticky;
  top: 0;
}

.faith-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(118px, 15vw, 178px) 0 clamp(42px, 6vw, 72px);
}

.faith-hero h1 {
  margin-bottom: 24px;
  color: var(--ink);
}

.faith-hero p {
  max-width: 760px;
  color: #332f3b;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.faith-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(82px, 10vw, 132px);
}

.faith-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.faith-card p {
  color: #2a2434;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.faith-card p + p {
  margin-top: 24px;
}

.faith-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

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

  .site-nav {
    position: absolute;
    inset: 76px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 8px;
    background: rgba(5, 6, 13, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    border-radius: 8px;
  }

  .quick-links,
  .split,
  .gathering,
  .steps-grid,
  .prayer-band,
  .connect-section,
  .connect-form {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .gather-image img {
    min-height: 340px;
  }

  .gather-image-graphic img {
    min-height: 0;
  }

  .steps-grid span {
    margin-bottom: 28px;
  }

  .prayer-band {
    align-items: start;
  }

  .connect-form .button {
    width: 100%;
  }

  .faith-actions .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .carousel-button {
    width: 42px;
    height: 42px;
  }
}
