:root {
  --ink: #14353a;
  --ink-2: #102d31;
  --teal: #347f82;
  --aqua: #79d4d0;
  --gold: #e0b24b;
  --coral: #df745f;
  --blue: #4e7fc8;
  --paper: #ffffff;
  --quiet: #f4f4f2;
  --line: #dfe6e7;
  --muted: #718083;
  --shadow: 0 28px 90px rgba(16, 45, 49, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--paper);
  color: var(--ink);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(16, 45, 49, 0.96);
  border-bottom: 1px solid rgba(121, 212, 208, 0.28);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(16, 45, 49, 0.98);
  box-shadow: 0 12px 38px rgba(16, 45, 49, 0.22);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 78px;
  width: min(1840px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 1.3rem;
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: max-content;
  max-width: 100%;
  text-decoration: none;
  color: #fff;
}

.sda-symbol {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-rule {
  width: 1px;
  height: 38px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.34);
}

.brand-copy {
  min-width: 0;
}

.brand strong,
.brand small,
.footer-logo strong,
.footer-logo small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  line-height: 1.2;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-menu a,
.nav-actions a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.nav-menu a {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.nav-menu {
  position: fixed;
  inset: 78px 24px auto auto;
  width: min(360px, calc(100% - 32px));
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0.7rem;
  border: 1px solid rgba(121, 212, 208, 0.24);
  border-radius: var(--radius);
  background: var(--ink-2);
  box-shadow: var(--shadow);
}

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

.nav-menu a {
  padding: 0.9rem;
  border-radius: 6px;
  color: #fff;
  font-size: 0.86rem;
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-menu a:hover,
.nav-actions a:hover {
  color: #fff;
}

.nav-menu a[aria-current="page"] {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--aqua);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.45rem;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 52px;
  aspect-ratio: 1;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.nav-toggle span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 8.2rem;
  color: #fff;
  background: var(--ink-2);
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 78px;
  width: min(10vw, 170px);
  height: 3px;
  background: var(--aqua);
}

.hero-video,
.hero-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: 0;
  object-fit: cover;
  object-position: center;
}

.hero-video-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 28, 31, 0.94) 0%, rgba(7, 28, 31, 0.7) 44%, rgba(7, 28, 31, 0.22) 78%, rgba(7, 28, 31, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 28, 31, 0.74) 0%, transparent 46%, rgba(7, 28, 31, 0.2) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: block;
}

.hero-content {
  max-width: 820px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 950;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--aqua);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 4.6vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

.hero-actions,
.section-heading,
.signup-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius);
  padding: 0.82rem 1.08rem;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  font-weight: 900;
  border: 1px solid transparent;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.button-primary {
  background: #fff;
  color: var(--ink);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.hero-card {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 2rem;
  padding: 1rem max(16px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  color: #fff;
  background: rgba(8, 35, 38, 0.82);
  backdrop-filter: blur(18px);
}

.hero-card span,
.hero-card a {
  color: #f1c96e;
  font-weight: 900;
  font-size: 0.82rem;
}

.hero-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(4.2rem, 8vw, 6.4rem) 0;
}

.section-intro,
.section-heading {
  margin-bottom: 2.1rem;
}

.section-intro {
  max-width: 790px;
}

.section-heading {
  justify-content: space-between;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.welcome-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.welcome .section-intro {
  margin-bottom: 0;
}

.welcome-copy {
  color: var(--muted);
  font-size: 1.12rem;
}

.welcome-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.welcome-links a {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  text-decoration: none;
}

.event-card span,
.story-card cite,
.footer-bottom {
  color: var(--muted);
  font-style: normal;
}

.events,
.ministries,
.stories {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  background: var(--quiet);
}

.event-grid,
.ministry-grid,
.story-grid {
  display: grid;
  gap: 1rem;
}

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

.event-card,
.ministry-card,
.story-card,
.watch-panel,
.video-feature,
.visit-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.event-card {
  min-height: 210px;
  padding: 1.25rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1.4rem;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.event-card time {
  width: max-content;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  color: var(--teal);
  font-weight: 950;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sermons {
  width: min(1100px, calc(100% - 32px));
}

.sermon-layout {
  display: block;
}

.video-feature,
.watch-panel {
  padding: 1.15rem;
}

.video-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
}

.video-frame iframe,
.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.watch-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: #fff;
}

.watch-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.watch-panel a {
  color: #f1c96e;
  font-weight: 900;
  text-decoration: none;
}

.video-feature > div:last-child {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
}

.video-feature > div:last-child p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
}

.video-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem 1rem;
}

.video-links a {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 900;
  text-decoration: none;
}

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

.ministry-card {
  min-height: 142px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-content: center;
  gap: 0 0.85rem;
  padding: 1.1rem;
  color: inherit;
  text-decoration: none;
}

.ministry-card span {
  grid-row: 1 / span 2;
  display: inline-flex;
  margin: 0;
  color: var(--teal);
  font-weight: 950;
}

.ministry-card h3,
.ministry-card p {
  margin-bottom: 0;
}

.ministry-card p,
.belief-item p,
.visit-details span,
.story-card p,
.footer p {
  color: var(--muted);
}

.beliefs {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 3rem;
  align-items: center;
}

.beliefs-clean {
  width: 100%;
  max-width: none;
  display: block;
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--ink);
}

.beliefs-clean .eyebrow {
  color: var(--aqua);
}

.beliefs-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

.beliefs-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.beliefs-clean .text-link {
  flex: 0 0 auto;
  color: #f1c96e;
}

.beliefs-clean .belief-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.beliefs-clean .belief-item {
  grid-template-columns: 34px minmax(0, 1fr);
  border-top: 0;
  padding: 1.6rem 1.4rem 0 0;
}

.beliefs-clean .belief-item + .belief-item {
  padding-left: 1.4rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.beliefs-clean .belief-item span {
  width: auto;
  height: auto;
  display: block;
  color: var(--aqua);
  background: transparent;
  font-size: 0.72rem;
}

.beliefs-clean .belief-item p {
  color: rgba(255, 255, 255, 0.68);
}

.beliefs-media {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}

.beliefs-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.belief-list {
  display: grid;
  gap: 1rem;
}

.belief-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.belief-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(280px, 1.12fr);
  gap: 1rem;
}

.visit-compact {
  display: block;
}

.visit-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.visit-compact .visit-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  background: var(--ink);
}

.visit-compact .eyebrow {
  color: var(--aqua);
}

.visit-compact .visit-intro h2 {
  max-width: 430px;
}

.visit-compact .visit-details {
  margin: 0;
}

.visit-compact .visit-details p {
  border-color: rgba(255, 255, 255, 0.2);
}

.visit-compact .visit-details span {
  color: rgba(255, 255, 255, 0.72);
}

.visit-details {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.visit-details p {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.editable-address {
  white-space: pre-line;
}

.map-panel {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

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

.story-card {
  margin: 0;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
}

.story-card p {
  font-size: 1.12rem;
}

.cta-band {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 45, 49, 0.88), rgba(16, 45, 49, 0.28));
}

.cta-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
}

.cta-content h2 {
  max-width: 650px;
}

.footer {
  background: var(--teal);
  color: #fff;
  padding: clamp(3.8rem, 7vw, 5.2rem) max(16px, calc((100vw - 1180px) / 2)) 1.6rem;
}

.footer-logo {
  margin: 0 0 clamp(3rem, 6vw, 4.2rem);
  gap: 1rem;
  text-align: left;
}

.footer-logo .sda-symbol {
  width: 72px;
  height: 72px;
}

.footer-logo .brand-rule {
  height: 58px;
  background: rgba(255, 255, 255, 0.46);
}

.footer-logo strong {
  font-size: 1.4rem;
  line-height: 1.05;
}

.footer-logo small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}

.footer-grid > div,
.footer-grid form {
  min-width: 0;
}

.footer,
.page-footer,
.event-card,
.visit-card {
  overflow-wrap: anywhere;
}

.footer h2 {
  margin-bottom: 1.25rem;
  color: var(--ink-2);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer h2::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 0.8rem;
  background: rgba(255, 255, 255, 0.72);
}

.footer a:not(.footer-logo) {
  display: block;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
}

.footer a:not(.footer-logo) + a {
  margin-top: 0.72rem;
}

.footer a:hover {
  color: #fff;
}

.footer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--ink-2);
  font-weight: 950;
  line-height: 1.2;
}

.footer .social-links a + a {
  margin-top: 0;
}

.newsletter label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 850;
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
  gap: 0.85rem;
}

.signup-row input {
  width: 100%;
  height: 48px;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  padding: 0 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.signup-row input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.signup-row button {
  height: 48px;
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0 1.05rem;
  color: var(--ink);
  background: #fff;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.form-note {
  margin: 0.7rem 0 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.concept-switcher {
  position: fixed;
  z-index: 90;
  left: 50%;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  max-width: calc(100% - 24px);
  padding: 0.35rem;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(16, 45, 49, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.concept-switcher a {
  flex: 0 0 auto;
  padding: 0.55rem 0.72rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 850;
}

.concept-switcher a:hover,
.concept-switcher a.is-active {
  color: var(--ink);
  background: #fff;
}

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

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

@media (max-width: 1080px) {
  .nav {
    grid-template-columns: minmax(210px, 1fr) auto auto;
  }

  .nav-menu {
    inset: 78px 16px auto;
    width: auto;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .hero-side {
    display: none;
  }

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

  .welcome-grid,
  .sermon-layout,
  .beliefs,
  .visit {
    grid-template-columns: 1fr;
  }

  .visit-compact .visit-card {
    grid-template-columns: 1fr;
  }

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

  .beliefs-media {
    aspect-ratio: 16 / 10;
  }

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

@media (max-width: 680px) {
  .nav {
    min-height: 70px;
    width: min(100% - 28px, 1840px);
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .sda-symbol {
    width: 44px;
    height: 44px;
  }

  .brand {
    gap: 0.62rem;
  }

  .brand .brand-rule {
    height: 34px;
  }

  .brand small {
    max-width: 180px;
    font-size: 0.59rem;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu {
    top: 70px;
  }

  .hero {
    min-height: auto;
    min-height: 100svh;
    padding: 7.5rem 0 14rem;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.22rem;
  }

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

  .hero-video {
    object-position: 58% center;
  }

  .hero-video-shade {
    background:
      linear-gradient(90deg, rgba(7, 28, 31, 0.9), rgba(7, 28, 31, 0.52)),
      linear-gradient(0deg, rgba(7, 28, 31, 0.82), transparent 62%);
  }

  .hero-card {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .hero-card > div:nth-child(2) {
    display: none;
  }

  .event-grid,
  .ministry-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter {
    grid-column: 1 / -1;
  }

  .video-feature > div:last-child {
    grid-template-columns: 1fr;
  }

  .video-links {
    justify-content: flex-start;
  }

  .beliefs-heading {
    align-items: start;
    flex-direction: column;
  }

  .beliefs-clean .belief-list {
    grid-template-columns: 1fr;
  }

  .beliefs-clean .belief-item,
  .beliefs-clean .belief-item + .belief-item {
    padding: 1.35rem 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .visit-details p {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 380px;
  }

  .signup-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter {
    grid-column: auto;
  }

  .footer-logo .sda-symbol {
    width: 56px;
    height: 56px;
  }

  .footer-logo .brand-rule {
    height: 46px;
  }

  .footer-logo {
    gap: 0.7rem;
  }

  .footer-logo strong {
    font-size: 1.12rem;
  }

  .footer-logo small {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero {
    background:
      linear-gradient(90deg, rgba(7, 28, 31, 0.9), rgba(7, 28, 31, 0.42)),
      url("assets/worship-hero.jpg") center / cover no-repeat;
  }
}
