:root {
  --ink: #171311;
  --ink-soft: #211a16;
  --ink-warm: #2d211b;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ember: #e0531f;
  --ember-dark: #ae3510;
  --evergreen: #143f35;
  --gold: #d59a30;
  --muted: #6f625d;
  --line: rgba(23, 19, 17, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(23, 19, 17, 0.22);
  --display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --body: "Mulish", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

button,
input,
textarea {
  font: inherit;
}

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

.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;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--ember);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

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

.container-wide {
  width: min(1400px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: rgba(23, 19, 17, 0.94);
  border-bottom: 1px solid var(--line-light);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark,
.footer-mark,
.small-mark {
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
  width: 2.35rem;
  aspect-ratio: 1;
  background: var(--ember);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.brand-mark::before,
.brand-mark::after,
.footer-mark::before,
.footer-mark::after,
.small-mark::before,
.small-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.brand-mark::before,
.footer-mark::before,
.small-mark::before {
  width: 0.42rem;
  height: 1.55rem;
}

.brand-mark::after,
.footer-mark::after,
.small-mark::after {
  width: 1.28rem;
  height: 0.38rem;
  top: 45%;
}

.small-mark {
  width: 1.8rem;
}

.brand-text {
  display: grid;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.nav-link {
  padding: 0.68rem 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  margin-left: 0.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-height: 3rem;
  padding: 0.78rem 1rem;
  border: 2px solid transparent;
  background: var(--ember);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.58);
}

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

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

.button.outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: rgba(23, 19, 17, 0.22);
}

.button.outline-dark:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 0.24rem auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

main {
  overflow: hidden;
}

.hero,
.page-hero,
.dark-section,
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(23, 19, 17, 0.96), rgba(37, 26, 20, 0.9)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.034) 0 1px, transparent 1px 74px),
    radial-gradient(circle at 20% 16%, rgba(224, 83, 31, 0.12), transparent 24rem);
  color: var(--white);
}

.hero::before,
.page-hero::before,
.dark-section::before,
.cta-band::before,
.visual-panel::before,
.step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.8px, transparent 0.8px);
  background-size: 9px 9px;
  mix-blend-mode: screen;
}

.hero::after,
.page-hero::after,
.dark-section::after,
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 19, 17, 0.96) 0%, rgba(23, 19, 17, 0.74) 56%, rgba(23, 19, 17, 0.48) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.26), transparent 45%);
}

.hero {
  min-height: 720px;
  padding: 7rem 0 3rem;
  display: grid;
  align-items: end;
}

.page-hero {
  min-height: 460px;
  padding: 6.5rem 0 4.5rem;
  display: grid;
  align-items: end;
}

.hero-mark {
  position: absolute;
  right: max(2rem, calc((100vw - 1180px) / 2));
  top: 15%;
  width: min(24rem, 34vw);
  aspect-ratio: 1;
  opacity: 0.2;
  transform: rotate(0deg);
}

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ember);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 80px rgba(224, 83, 31, 0.22);
}

.hero-mark::before {
  width: 20%;
  height: 86%;
}

.hero-mark::after {
  width: 64%;
  height: 18%;
  top: 42%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
  align-items: end;
  gap: 2.5rem;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
.stat-value {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: 3.15rem;
}

.home-hero h1 {
  font-size: 3.35rem;
}

.hero-copy p,
.page-hero p {
  max-width: 710px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.76;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-times,
.quick-card {
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-times {
  padding: 1.4rem;
}

.hero-times h2 {
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
}

.time-row,
.footer-time-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.time-row:first-of-type,
.footer-time-row:first-of-type {
  border-top: 0;
}

.time-row span,
.footer-time-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.time-row strong,
.footer-time-row strong {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero-address {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.service-band {
  position: relative;
  z-index: 2;
  background: var(--ember);
  color: var(--white);
}

.service-band .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 0;
}

.service-band strong {
  display: block;
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1.05;
}

.service-band span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-band .button {
  background: var(--ink);
  min-width: 11rem;
}

.section {
  padding: 5.5rem 0;
}

.section.tight {
  padding: 4rem 0;
}

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

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

.section-header {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header h2,
.split-copy h2,
.dark-section h2,
.cta-band h2 {
  font-size: 2.55rem;
}

.section-header p,
.split-copy p,
.dark-section p,
.cta-band p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.dark-section p,
.cta-band p,
.section.dark .section-header p,
.section.dark .split-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split.reverse .visual-panel {
  order: 2;
}

.split-copy {
  max-width: 620px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  color: var(--ember);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.text-link::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.45rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.visual-panel {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(23, 19, 17, 0.18), rgba(23, 19, 17, 0.86)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 24px),
    linear-gradient(135deg, var(--evergreen), var(--ink-warm) 58%, var(--ember-dark));
  box-shadow: var(--shadow);
}

.visual-panel::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -16%;
  width: 52%;
  aspect-ratio: 1;
  background:
    linear-gradient(var(--ember), var(--ember)) center / 18% 82% no-repeat,
    linear-gradient(var(--ember), var(--ember)) center 42% / 58% 16% no-repeat;
  opacity: 0.86;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.28));
}

.visual-panel.alt {
  background:
    linear-gradient(140deg, rgba(23, 19, 17, 0.08), rgba(23, 19, 17, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 36px),
    linear-gradient(135deg, #493422, var(--ink) 58%, var(--gold));
}

.visual-label {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 1;
  max-width: 18rem;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expect-grid,
.belief-grid,
.two-card-grid,
.faq-grid,
.pathway-grid,
.arrival-grid,
.compare-grid,
.story-grid {
  display: grid;
  gap: 1rem;
}

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

.pathway-card,
.story-card,
.arrival-card,
.compare-card,
.family-card {
  position: relative;
  min-height: 16rem;
  padding: 1.35rem;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 19, 17, 0.08);
}

.pathway-card {
  border-left: 5px solid var(--ember);
}

.pathway-card span,
.story-card span,
.arrival-card span,
.compare-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--ember);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pathway-card h3,
.story-card h3,
.arrival-card h3,
.compare-card h3,
.family-card h3,
.flow-step h3 {
  font-size: 1.55rem;
  line-height: 1.03;
}

.pathway-card p,
.story-card p,
.arrival-card p,
.compare-card p,
.family-card p,
.flow-step p {
  margin-top: 0.85rem;
  color: var(--muted);
  line-height: 1.66;
}

.story-grid {
  margin-top: 2rem;
}

.story-card {
  min-height: 14rem;
  border-top: 5px solid var(--evergreen);
}

.belief-feature {
  max-width: 920px;
  margin-bottom: 1rem;
  padding: 1.55rem;
  background: var(--ink);
  color: var(--white);
}

.belief-feature h3 {
  font-size: 2rem;
}

.belief-feature p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

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

.arrival-card {
  grid-column: span 2;
  min-height: 15rem;
  border-top: 5px solid var(--ember);
}

.arrival-card.feature {
  grid-column: span 4;
  background: var(--ink);
  color: var(--white);
}

.arrival-card.feature p {
  color: rgba(255, 255, 255, 0.72);
}

.family-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.family-card {
  min-height: 15rem;
  background: rgba(255, 255, 255, 0.08);
  border-top: 5px solid var(--ember);
}

.family-card p {
  color: rgba(255, 255, 255, 0.72);
}

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

.compare-card {
  min-height: 20rem;
  border-top: 5px solid var(--ember);
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.flow-list {
  display: grid;
  gap: 0.75rem;
  counter-reset: flow;
}

.flow-step {
  position: relative;
  padding: 1.1rem 1.1rem 1.1rem 4.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--ember);
  counter-increment: flow;
}

.flow-step::before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  color: var(--gold);
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.flow-step h3,
.flow-step p {
  color: var(--white);
}

.flow-step p {
  color: rgba(255, 255, 255, 0.72);
}

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

.expect-item {
  position: relative;
  min-height: 21rem;
  padding: 1.5rem;
  border-top: 5px solid var(--ember);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 19, 17, 0.08);
  counter-increment: expect;
}

.expect-item::before {
  content: counter(expect, decimal-leading-zero);
  display: block;
  margin-bottom: 3.5rem;
  color: rgba(224, 83, 31, 0.18);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 0.85;
}

.expect-item h3,
.belief-card h3,
.give-card h3,
.belong-card h3 {
  font-size: 1.55rem;
  line-height: 1.02;
}

.expect-item p,
.belief-card p,
.give-card p,
.belong-card p {
  margin-top: 0.9rem;
  color: var(--muted);
  line-height: 1.68;
}

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

.step-card {
  position: relative;
  min-height: 370px;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(23, 19, 17, 0.96), rgba(23, 19, 17, 0.24) 62%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px),
    linear-gradient(145deg, var(--ink), var(--evergreen) 54%, var(--ember));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.step-card:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(23, 19, 17, 0.96), rgba(23, 19, 17, 0.24) 62%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px),
    linear-gradient(145deg, #1d342d, var(--ink) 62%, var(--gold));
}

.step-card:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(23, 19, 17, 0.96), rgba(23, 19, 17, 0.24) 62%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px),
    linear-gradient(145deg, #4a2013, var(--ink) 62%, var(--ember));
}

.step-card:nth-child(4) {
  background:
    linear-gradient(0deg, rgba(23, 19, 17, 0.96), rgba(23, 19, 17, 0.24) 62%),
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px),
    linear-gradient(145deg, #3c321b, var(--ink) 62%, var(--gold));
}

.step-card::after {
  content: "";
  position: absolute;
  right: -16%;
  top: 8%;
  width: 52%;
  aspect-ratio: 1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)) center / 20% 86% no-repeat,
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)) center 42% / 62% 18% no-repeat;
}

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

.step-card-content {
  position: relative;
  z-index: 1;
  padding: 1.35rem;
}

.step-card h3 {
  font-size: 1.75rem;
}

.step-card p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.dark-section {
  padding: 5.5rem 0;
}

.dark-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 2.5rem;
  align-items: center;
}

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

.group-card,
.quick-card {
  padding: 1.35rem;
}

.group-card {
  border-left: 5px solid var(--ember);
  background: rgba(255, 255, 255, 0.08);
}

.group-card span,
.quick-card span,
.give-card span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.group-card strong,
.quick-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1.05;
}

.quick-card p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band {
  padding: 5.5rem 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}

.cta-band h2 {
  max-width: 760px;
}

.visit-flow {
  display: grid;
  gap: 1rem;
  counter-reset: visit;
}

.visit-step {
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  counter-increment: visit;
}

.visit-step:first-child {
  border-top: 0;
}

.visit-step::before {
  content: counter(visit, decimal-leading-zero);
  color: var(--ember);
  font-family: var(--display);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 0.88;
}

.visit-step h2,
.visit-step h3 {
  font-size: 1.75rem;
}

.visit-step p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-trigger {
  width: 100%;
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.accordion-trigger span {
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.12;
}

.accordion-trigger::after {
  content: "+";
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.accordion-trigger[aria-expanded="true"]::after {
  content: "-";
  background: var(--ember);
}

.accordion-panel {
  padding: 0 0 1.35rem;
  color: var(--muted);
}

.js .accordion-panel[hidden] {
  display: none;
}

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

.belief-card,
.give-card,
.belong-card {
  min-height: 17rem;
  padding: 1.35rem;
  border-top: 5px solid var(--ember);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 19, 17, 0.08);
}

.mission-band {
  background: var(--evergreen);
  color: var(--white);
}

.mission-band .container {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.mission-band h2 {
  font-size: 1.45rem;
}

.mission-band p {
  font-family: var(--display);
  font-size: 2.05rem;
  font-weight: 800;
  line-height: 1.1;
}

.pastor-quote {
  padding: 1.6rem;
  border-left: 5px solid var(--ember);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(23, 19, 17, 0.08);
}

.pastor-quote blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.24;
}

.pastor-quote cite {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

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

.give-card span {
  color: var(--ember);
}

.faq-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.belong-card {
  min-height: 15rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(210px, 1fr) minmax(150px, 0.8fr) minmax(180px, 0.9fr) minmax(220px, 1fr);
  gap: 2rem;
  padding: 4rem 0 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand h2 {
  font-size: 1.45rem;
}

.footer-description {
  max-width: 28rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-column h3 {
  margin-bottom: 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-column a {
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 0.35rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.js [data-reveal-delay="1"] {
  transition-delay: 90ms;
}

.js [data-reveal-delay="2"] {
  transition-delay: 180ms;
}

@media (min-width: 760px) {
  h1 {
    font-size: 4.6rem;
  }

  .home-hero h1 {
    font-size: 5.4rem;
  }

  .section-header h2,
  .split-copy h2,
  .dark-section h2,
  .cta-band h2 {
    font-size: 3.35rem;
  }
}

@media (min-width: 1160px) {
  h1 {
    font-size: 5.6rem;
  }

  .home-hero h1 {
    font-size: 6.25rem;
  }

  .section-header h2,
  .split-copy h2,
  .dark-section h2,
  .cta-band h2 {
    font-size: 4rem;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .dark-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-times {
    max-width: 560px;
  }

  .service-band .container {
    grid-template-columns: 1fr 1fr;
  }

  .service-band .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .expect-grid,
  .step-grid,
  .belief-grid,
  .pathway-grid,
  .story-grid,
  .compare-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .arrival-card,
  .arrival-card.feature {
    grid-column: auto;
  }
}

@media (max-width: 880px) {
  .header-inner {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    justify-items: stretch;
    gap: 0;
    max-height: calc(100vh - 72px);
    padding: 1rem;
    overflow: auto;
    background: rgba(23, 19, 17, 0.98);
    border-bottom: 1px solid var(--line-light);
    transform: translateY(-120%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .menu-open .site-nav {
    transform: translateY(0);
    visibility: visible;
  }

  .nav-link,
  .nav-cta {
    margin: 0;
    padding: 1rem;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 0.75rem;
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding-top: 5.5rem;
  }

  .hero-mark {
    width: 14rem;
    right: 1rem;
    top: 5rem;
  }

  .split,
  .split.reverse,
  .mission-band .container,
  .family-grid,
  .flow-layout,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .split.reverse .visual-panel {
    order: 0;
  }

  .visual-panel {
    min-height: 340px;
  }

  .cta-content {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .container,
  .container-wide {
    width: min(100% - 1.25rem, 1180px);
  }

  .brand-mark {
    width: 2rem;
  }

  .brand-text {
    white-space: normal;
  }

  h1,
  .home-hero h1 {
    font-size: 3rem;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .service-band .container,
  .expect-grid,
  .step-grid,
  .belief-grid,
  .two-card-grid,
  .pathway-grid,
  .story-grid,
  .arrival-grid,
  .compare-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .dark-section,
  .cta-band {
    padding: 4.25rem 0;
  }

  .section-header h2,
  .split-copy h2,
  .dark-section h2,
  .cta-band h2 {
    font-size: 2.45rem;
  }

  .expect-item {
    min-height: 17rem;
  }

  .step-card {
    min-height: 270px;
  }

  .visit-step {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .mission-band p {
    font-size: 1.65rem;
  }

  .footer-bottom {
    display: grid;
  }
}

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