:root {
  --navy-950: #010817;
  --navy-900: #06122c;
  --navy-800: #071a3d;
  --cyan: #08d5ff;
  --cyan-soft: rgba(8, 213, 255, .16);
  --violet: #7a2cff;
  --violet-soft: rgba(122, 44, 255, .2);
  --gold: #f6c66d;
  --white: #fff;
  --muted: rgba(255, 255, 255, .74);
  --line: rgba(255, 255, 255, .14);
  --panel: rgba(255, 255, 255, .065);
  --shadow: 0 24px 90px rgba(0, 0, 0, .34);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--navy-950);
  color: var(--white);
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(22px, 5.5vw, 92px);
  transition: background .25s ease, border-color .25s ease, padding .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(2, 9, 25, .9);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(8, 213, 255, .28));
}

.brand-copy span,
.hero-brand {
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .48);
}

.brand-copy span {
  white-space: nowrap;
}

.brand-copy small,
.hero-subbrand {
  display: block;
  margin-top: 6px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .36em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 8px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.primary-nav a:not(.nav-cta)::after {
  display: none;
}

.primary-nav a:not(.nav-cta):hover,
.primary-nav a:not(.nav-cta).is-active {
  color: #38c8ff;
  text-shadow: 0 0 14px rgba(56, 200, 255, .42);
}

/* Keep the current page blue without adding a background container. */
.primary-nav a:not(.nav-cta).is-active {
  color: #38c8ff;
  text-shadow: 0 0 14px rgba(56, 200, 255, .42);
}

.nav-cta {
  min-width: 122px;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  -webkit-text-fill-color: #fff;
  background-image: none;
  background:
    linear-gradient(135deg, var(--cyan), var(--violet)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet)) border-box;
  -webkit-background-clip: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .04) inset, 0 12px 28px rgba(8, 213, 255, .14), 0 12px 34px rgba(122, 44, 255, .13);
  text-align: center;
}

.primary-nav .nav-cta {
  color: #fff;
  -webkit-text-fill-color: #fff;
  padding: 14px 28px;
  background:
    linear-gradient(135deg, var(--cyan), var(--violet)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet)) border-box;
  -webkit-background-clip: padding-box, border-box;
  background-clip: padding-box, border-box;
}

.nav-cta:hover,
.nav-cta.is-active {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background-image: none;
  background:
    linear-gradient(135deg, var(--cyan), var(--violet)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet)) border-box;
  -webkit-background-clip: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 16px 34px rgba(8, 213, 255, .22), 0 18px 42px rgba(122, 44, 255, .2);
  transform: translateY(-2px);
}

.primary-nav .nav-cta:hover,
.primary-nav .nav-cta.is-active {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background:
    linear-gradient(135deg, var(--cyan), var(--violet)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet)) border-box;
  -webkit-background-clip: padding-box, border-box;
  background-clip: padding-box, border-box;
}

.primary-nav .nav-cta.is-active {
  box-shadow: 0 16px 34px rgba(8, 213, 255, .28), 0 18px 42px rgba(122, 44, 255, .24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center top;
}

.hero::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 74px;
  z-index: -1;
  color: rgba(8, 88, 174, .15);
  font-size: clamp(230px, 25vw, 430px);
  line-height: 1;
}

.hero-inner {
  width: min(1480px, calc(100% - 48px));
  min-height: calc(100svh - 300px);
  margin: 0 auto;
  padding: 126px 0 12px;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 110px);
}

.section h2 {
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 760px;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(42px, 4.9vw, 78px);
  line-height: 1.06;
  letter-spacing: 0;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .45);
}

.gradient-word,
.eyebrow {
  background: linear-gradient(90deg, var(--cyan) 0%, #4e8cff 45%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  max-width: 620px;
  margin-top: 20px;
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(15px, 1.16vw, 19px);
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-text {
  max-width: 500px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.58;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow: 0 20px 44px rgba(8, 213, 255, .24), 0 18px 48px rgba(122, 44, 255, .2);
}

.button-outline,
.button-quiet {
  color: #8bdcff;
  border: 1px solid transparent;
  background:
    linear-gradient(135deg, rgba(3, 15, 40, .72), rgba(7, 18, 48, .64)) padding-box,
    linear-gradient(135deg, rgba(8, 213, 255, .9), rgba(122, 44, 255, .92)) border-box;
  box-shadow: 0 12px 30px rgba(8, 213, 255, .1), 0 10px 30px rgba(122, 44, 255, .12);
}

.button-outline:hover,
.button-quiet:hover {
  color: #fff;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(8, 213, 255, .2), rgba(122, 44, 255, .24)) padding-box,
    linear-gradient(135deg, var(--cyan), var(--violet)) border-box;
  box-shadow: 0 16px 36px rgba(8, 213, 255, .18), 0 16px 38px rgba(122, 44, 255, .16);
}

.button-quiet {
  color: #fff;
}

.play-dot {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  position: relative;
}

.play-dot::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

.hero-mark {
  text-align: center;
  justify-self: center;
}

.hero-logo {
  width: min(27vw, 380px);
  min-width: 280px;
  margin: -70px auto -108px;
  filter:
    drop-shadow(0 18px 24px rgba(0, 0, 0, .26))
    drop-shadow(0 2px 8px rgba(0, 0, 0, .18));
}

.hero-brand {
  position: relative;
  z-index: 2;
  font-size: clamp(36px, 4.1vw, 66px);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, .5),
    0 8px 22px rgba(0, 0, 0, .28);
}

.hero-subbrand {
  position: relative;
  z-index: 2;
  color: #3bbcff;
  font-size: clamp(12px, 1.25vw, 20px);
  letter-spacing: .38em;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .8);
}

.verse-mark {
  margin: 18px auto;
  color: #8a5cff;
  font-size: 32px;
}

.hero-mark blockquote {
  color: #fff;
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.45vw, 22px);
  font-style: italic;
  line-height: 1.4;
}

.hero-mark cite {
  display: block;
  margin-top: 18px;
  color: #76a8ff;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0;
}

.section-deep,
.section-give {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
}

.section-deep {
  background:
    radial-gradient(circle at 15% 0%, rgba(8, 213, 255, .12), transparent 30%),
    linear-gradient(180deg, #050f27, #030816);
}

.section-give {
  min-height: 480px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(2, 9, 25, .94), rgba(2, 9, 25, .58)),
    url("https://placehold.co/1600x700/0b1838/f7fbff?text=Generosity+and+Outreach");
  background-size: cover;
  background-position: center;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.section-kicker {
  margin-bottom: 15px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(29px, 3.3vw, 48px);
  line-height: 1.04;
}

.section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-image,
.image-card,
.content-card,
.event-card,
.schedule-card,
.contact-grid article {
  border: 1px solid rgba(8, 213, 255, .18);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.section-image {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.about-image {
  object-position: 44% center;
}

.section-visit {
  width: 100%;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 82% 0%, rgba(122, 44, 255, .22), transparent 30%),
    linear-gradient(180deg, #020817, #061534);
}

.schedule-card {
  padding: 34px;
  backdrop-filter: blur(18px);
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.schedule-row:last-child {
  border-bottom: 0;
}

.schedule-row strong {
  color: #fff;
}

.belief-grid,
.ministry-grid,
.event-grid,
.contact-grid {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.belief-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card,
.event-card,
.contact-grid article {
  padding: 28px;
}

.content-card h3,
.event-card h3,
.image-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.content-card p,
.event-card p,
.image-card p,
.contact-grid p {
  font-size: 16px;
}

.ministry-grid,
.event-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  aspect-ratio: 1.34;
  object-fit: cover;
}

.image-card div {
  padding: 24px;
}

.event-card span,
.contact-grid span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section-visit-contact {
  width: 100%;
  padding-top: 56px;
  padding-bottom: 56px;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 12%, rgba(8, 213, 255, .13), transparent 30%),
    linear-gradient(180deg, #061534, #020817);
}

.visit-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

.visit-map,
.visit-details {
  overflow: hidden;
  border: 1px solid rgba(8, 213, 255, .18);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.visit-map {
  min-height: 410px;
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.visit-details {
  min-height: 410px;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 100% 0%, rgba(122, 44, 255, .18), transparent 38%),
    rgba(255, 255, 255, .065);
}

.visit-details h2 {
  margin-bottom: 18px;
}

.visit-contact-info {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.visit-contact-info > div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.visit-contact-info > div:first-child {
  padding-bottom: 12px;
}

.visit-contact-info > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.visit-contact-info span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.visit-contact-info h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.visit-contact-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.visit-contact-line span {
  margin-bottom: 0;
}

.visit-contact-info a {
  color: rgba(255, 255, 255, .88);
}

.visit-contact-info a:hover {
  color: var(--cyan);
}

.site-footer {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 42px;
  align-items: end;
  padding: 54px clamp(22px, 5.5vw, 92px) 34px;
  border-top: 1px solid rgba(8, 213, 255, .2);
  background:
    linear-gradient(90deg, rgba(2, 7, 20, .95), rgba(4, 16, 45, .92)),
    url("assets/background.png") center bottom / cover no-repeat;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 213, 255, .95), rgba(122, 44, 255, .95)) top / 100% 2px no-repeat,
    radial-gradient(circle at 18% 0%, rgba(8, 213, 255, .14), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(122, 44, 255, .14), transparent 28%);
}

.site-footer::after {
  content: "✡";
  position: absolute;
  left: clamp(18px, 4vw, 64px);
  bottom: -42px;
  color: rgba(8, 213, 255, .05);
  font-size: clamp(120px, 16vw, 220px);
  line-height: 1;
}

.footer-main,
.site-footer nav,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-brand img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .34));
}

.footer-brand span {
  font-family: Cinzel, Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 34px);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.footer-brand small {
  display: block;
  margin-top: 5px;
  color: #3bbcff;
  font-family: Montserrat, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .32em;
}

.site-footer p {
  max-width: 470px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
  max-width: 520px;
}

.site-footer nav a {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease, transform .2s ease;
}

.site-footer nav a:hover {
  color: #38c8ff;
  text-shadow: 0 0 14px rgba(56, 200, 255, .42);
  transform: translateY(-1px);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(8, 213, 255, .38);
  border-radius: 50%;
  background: rgba(3, 15, 40, .72);
  color: #fff;
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(14px);
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@media (min-width: 1181px) {
  .hero {
    height: 100svh;
    min-height: 760px;
  }

  .site-header {
    padding-top: 34px;
    padding-bottom: 20px;
  }

  .brand {
    gap: 12px;
  }

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

  .brand-copy span {
    font-size: 24px;
  }

  .brand-copy small {
    margin-top: 4px;
    font-size: 8px;
    letter-spacing: .28em;
  }

  .hero-inner {
    position: relative;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 0;
    padding: 0;
  }

  .hero-copy {
    position: absolute;
    left: 5.65vw;
    top: 35.5svh;
    width: 48vw;
    max-width: 760px;
  }

  .hero-copy h1 {
    font-size: clamp(51px, 3.7vw, 60px);
  }

  .hero-text {
    max-width: 500px;
  }

  .hero-mark {
    position: absolute;
    left: 45.8vw;
    top: 34.4svh;
    width: 48.5vw;
    max-width: 780px;
  }

  .hero-logo {
    width: min(24vw, 335px);
    min-width: 0;
    margin-top: -82px;
    margin-bottom: -82px;
  }

  .hero-brand {
    font-size: clamp(42px, 3.7vw, 58px);
  }

  .hero-subbrand {
    font-size: clamp(15px, 1.22vw, 20px);
  }

  .verse-mark {
    margin: 14px auto;
  }

}

@media (min-width: 1181px) and (max-width: 1320px) {
  .site-header {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .brand-copy span {
    font-size: 20px;
  }

  .brand-copy small {
    font-size: 7px;
    letter-spacing: .22em;
  }

  .primary-nav {
    gap: 10px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .primary-nav .nav-cta {
    min-width: 112px;
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    padding: 16px 20px;
  }

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

  .brand-copy span {
    font-size: 18px;
  }

  .brand-copy small {
    max-width: 190px;
    font-size: 7px;
    letter-spacing: .2em;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 61;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-content: center;
    gap: 22px;
    background: rgba(2, 8, 23, .96);
    transform: translateX(100%);
    transition: transform .25s ease;
  }

  body.menu-open .primary-nav {
    transform: translateX(0);
  }

  .primary-nav a {
    font-size: 22px;
    text-align: center;
  }
}

@media (max-width: 1180px) {
  .brand-copy span {
    font-size: 18px;
  }

  .primary-nav {
    gap: 18px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 150px;
    text-align: left;
  }

  .hero-mark {
    justify-self: start;
    text-align: left;
  }

  .hero-logo {
    margin-left: 0;
  }

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

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

@media (max-width: 900px) {
  .hero-inner {
    width: min(100% - 32px, 680px);
    min-height: auto;
    padding: 120px 0 48px;
  }

  .hero-copy h1 {
    font-size: clamp(45px, 12vw, 70px);
  }

  .eyebrow {
    letter-spacing: .2em;
    white-space: normal;
  }

  .hero-logo {
    width: min(82vw, 330px);
    min-width: 0;
    margin: -52px auto -74px 0;
  }

  .hero-brand {
    font-size: clamp(34px, 10vw, 58px);
  }

  .hero-subbrand {
    letter-spacing: .2em;
  }

  .hero-mark blockquote {
    font-size: 18px;
  }

  .section,
  .section-visit,
  .section-deep,
  .section-give {
    width: 100%;
    padding: 82px 20px;
  }

  .section-grid,
  .visit-contact-layout,
  .ministry-grid,
  .event-grid,
  .contact-grid,
  .belief-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    object-position: center;
  }

  .section-visit-contact {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .visit-map {
    height: 260px;
    min-height: 0;
  }

  .visit-details {
    min-height: 0;
  }

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

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

  .hero-actions,
  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .schedule-row {
    display: grid;
    gap: 6px;
  }
}

/* Floating Donate Button */
.floating-donate {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 42;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .22), transparent 34%),
    linear-gradient(135deg, var(--cyan), var(--violet));
  box-shadow:
    0 20px 44px rgba(8, 213, 255, .24),
    0 18px 48px rgba(122, 44, 255, .2),
    0 0 0 6px rgba(8, 213, 255, .08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.floating-donate:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 24px 54px rgba(8, 213, 255, .3),
    0 22px 58px rgba(122, 44, 255, .26),
    0 0 0 8px rgba(8, 213, 255, .1);
  filter: saturate(1.08);
}

.floating-donate span {
  display: block;
  padding-top: 2px;
}

.back-top {
  bottom: 118px;
}

@media (max-width: 560px) {
  .floating-donate {
    right: 18px;
    bottom: 18px;
    width: 88px;
    height: 88px;
    font-size: 11px;
  }

  .back-top {
    right: 22px;
    bottom: 102px;
  }
}

/* Refined action styling */
.primary-nav .nav-cta,
.primary-nav .nav-cta:hover,
.primary-nav .nav-cta.is-active {
  border-color: rgba(140, 240, 255, .72);
  background: linear-gradient(135deg, #13d9ff, #7a2cff);
  background-clip: padding-box;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .2) inset, 0 14px 32px rgba(8, 213, 255, .28), 0 14px 36px rgba(122, 44, 255, .22);
}

.button {
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, filter .2s ease;
}

.button:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.button:focus-visible,
.nav-cta:focus-visible,
.floating-donate:focus-visible {
  outline: 3px solid rgba(8, 213, 255, .78);
  outline-offset: 4px;
}

.button-primary {
  border-color: rgba(140, 240, 255, .5);
  background: linear-gradient(135deg, #13d9ff 0%, #316cf0 46%, #7a2cff 100%);
  background-clip: padding-box;
  box-shadow: 0 18px 40px rgba(8, 213, 255, .26), 0 16px 42px rgba(122, 44, 255, .24);
}

.button-primary:hover {
  box-shadow: 0 22px 46px rgba(8, 213, 255, .34), 0 20px 50px rgba(122, 44, 255, .3);
}

.button-outline,
.button-quiet {
  border-color: rgba(8, 213, 255, .58);
  background: rgba(5, 24, 59, .76);
  box-shadow: 0 10px 26px rgba(8, 213, 255, .12), 0 8px 24px rgba(122, 44, 255, .1);
}

.button-outline:hover,
.button-quiet:hover {
  border-color: rgba(140, 240, 255, .92);
  background: rgba(23, 74, 130, .52);
  box-shadow: 0 16px 36px rgba(8, 213, 255, .22), 0 16px 38px rgba(122, 44, 255, .2);
}

.button-donate,
.button[href*="paypal.com/donate"] {
  color: #fff;
  border-color: rgba(140, 240, 255, .68);
  background: linear-gradient(135deg, #16dcff 0%, #247ae6 48%, #7a2cff 100%);
  background-clip: padding-box;
  box-shadow: 0 18px 40px rgba(8, 213, 255, .3), 0 14px 34px rgba(122, 44, 255, .24);
}

.button-donate:hover,
.button[href*="paypal.com/donate"]:hover {
  color: #fff;
  box-shadow: 0 22px 48px rgba(8, 213, 255, .4), 0 18px 40px rgba(122, 44, 255, .3);
}

.floating-donate {
  border-color: rgba(140, 240, 255, .72);
  color: #fff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .3), transparent 34%),
    linear-gradient(135deg, #16dcff, #247ae6 48%, #7a2cff);
  background-clip: padding-box;
  box-shadow: 0 20px 44px rgba(8, 213, 255, .3), 0 18px 48px rgba(122, 44, 255, .24);
}

.floating-donate:hover {
  box-shadow: 0 24px 54px rgba(8, 213, 255, .42), 0 22px 58px rgba(122, 44, 255, .3);
}
