:root {
  --ink: #080a0e;
  --ink-soft: #10141b;
  --navy: #102039;
  --navy-bright: #173258;
  --gold: #c9a35c;
  --gold-light: #e8ca8d;
  --cream: #f5efe3;
  --paper: #ebe2d2;
  --white: #fffdf8;
  --muted: #a8a59e;
  --line-dark: rgba(245, 239, 227, 0.16);
  --line-light: rgba(8, 10, 14, 0.14);
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--gold-light);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(232, 202, 141, 0.22);
  background: rgba(8, 10, 14, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo-image {
  width: 112px;
  height: 56px;
  padding: 4px 6px;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.24);
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: rotate(45deg);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201, 163, 92, 0.35);
}

.brand-mark::after {
  content: "WG";
  transform: rotate(-45deg);
}

.brand-mark {
  font-size: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.35vw, 22px);
}

.nav-links a {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .nav-cta {
  padding: 10px 17px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  transition: color 180ms ease, background 180ms ease;
}

.nav-links .nav-cta:hover {
  color: var(--ink);
  background: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 10px;
  border: 1px solid rgba(232, 202, 141, 0.35);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(23, 50, 88, 0.85), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(201, 163, 92, 0.08), transparent 24%),
    linear-gradient(135deg, #080a0e 0%, #0d121b 53%, #0a0e14 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: var(--header-height) 0 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 16%;
  right: -12vw;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 163, 92, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(201, 163, 92, 0.035),
    0 0 0 110px rgba(201, 163, 92, 0.02);
  pointer-events: none;
}

.hero-lines {
  position: absolute;
  z-index: 1;
  top: 22%;
  right: 7vw;
  width: 1px;
  height: 40%;
  background: linear-gradient(transparent, var(--gold), transparent);
  opacity: 0.55;
}

.hero-lines::before,
.hero-lines::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-lines::before {
  top: 0;
}

.hero-lines::after {
  top: 100%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - var(--header-height) - 105px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 118px);
  padding-block: clamp(70px, 10vh, 120px);
}

.eyebrow,
.kicker {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section h2,
.program h2,
.support h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(3.5rem, 6.5vw, 6.4rem);
}

.hero h1.hero-steps {
  max-width: 810px;
  font-size: clamp(3.25rem, 5.7vw, 5.8rem);
  line-height: 0.9;
}

.hero-step {
  display: block;
}

.hero-step-two {
  margin-left: 0.58em;
}

.hero-step-three {
  margin-left: 1.16em;
  color: var(--gold-light);
  font-style: italic;
}

.hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-declaration {
  max-width: 620px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 30px 0 0;
  padding: 12px 0 12px 18px;
  border-left: 2px solid var(--gold);
}

.hero-declaration strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.1;
}

.hero-declaration span {
  padding: 6px 10px;
  color: var(--ink);
  background: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.74);
  font-size: clamp(1.03rem, 1.3vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions,
.program-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

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

.button-gold:hover {
  background: var(--white);
  border-color: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.3);
}

.button-ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

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

.button-dark:hover {
  color: var(--gold-light);
  background: var(--navy);
  border-color: var(--navy);
}

.hero-signature {
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.48);
  font-family: var(--display);
  font-size: 0.95rem;
  font-style: italic;
}

.hero-signature span {
  margin-inline: 8px;
  color: var(--gold);
}

.scripture-panel {
  position: relative;
  padding: clamp(32px, 4vw, 50px);
  border: 1px solid rgba(232, 202, 141, 0.45);
  background:
    linear-gradient(135deg, rgba(201, 163, 92, 0.08), transparent 46%),
    rgba(8, 10, 14, 0.58);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.hero-logo-panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.logo-full-frame {
  position: relative;
  padding: clamp(12px, 2vw, 20px);
  border: 1px solid rgba(232, 202, 141, 0.6);
  background: rgba(255, 253, 248, 0.06);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
}

.logo-full-frame::before,
.logo-full-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  pointer-events: none;
}

.logo-full-frame::before {
  top: 5px;
  left: 5px;
  border-top: 2px solid var(--gold-light);
  border-left: 2px solid var(--gold-light);
}

.logo-full-frame::after {
  right: 5px;
  bottom: 5px;
  border-right: 2px solid var(--gold-light);
  border-bottom: 2px solid var(--gold-light);
}

.logo-full-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fff;
}

.logo-meta {
  display: grid;
  gap: 7px;
  margin: 14px 0 0 clamp(18px, 3vw, 44px);
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(8, 10, 14, 0.74);
  backdrop-filter: blur(12px);
}

.logo-meta span {
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-meta strong {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(0.82rem, 1.4vw, 1.08rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.scripture-panel::before,
.scripture-panel::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: var(--gold-light);
  opacity: 0.8;
}

.scripture-panel::before {
  top: -7px;
  left: -7px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.scripture-panel::after {
  right: -7px;
  bottom: -7px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scripture-panel blockquote {
  margin: 40px 0 32px;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  font-style: italic;
  line-height: 1.34;
}

.scripture-panel > p {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scripture-panel > p span {
  color: var(--muted);
}

.cross-rule {
  position: relative;
  height: 38px;
  margin-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.cross-rule::before,
.cross-rule::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}

.cross-rule::before {
  width: 22px;
  height: 1px;
}

.cross-rule::after {
  width: 1px;
  height: 28px;
}

.mission-band {
  position: relative;
  z-index: 4;
  min-height: 105px;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--gold-light);
}

.mission-band-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.mission-band-inner > span {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mission-band-inner strong {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  font-weight: 500;
}

.mission-band-inner a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(8, 10, 14, 0.5);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding-block: clamp(88px, 11vw, 150px);
}

.section h2,
.support h2 {
  font-size: clamp(2.8rem, 5.2vw, 5rem);
}

.kicker {
  color: #806530;
}

.kicker-gold {
  color: var(--gold-light);
}

.about {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(8, 10, 14, 0.045) 50%, transparent 50.1%),
    var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.section-heading h2 {
  max-width: 650px;
}

.about .section-heading h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.35rem);
}

.about-copy {
  padding-top: 40px;
}

.about-copy p {
  margin: 0 0 20px;
  color: #4b4a46;
}

.about-copy .lead {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  line-height: 1.38;
}

.vision-statements {
  margin-block: 30px;
  padding: 4px 0 4px 26px;
  border-left: 2px solid var(--gold);
}

.vision-statements p:last-child {
  margin-bottom: 0;
}

.vision-statements strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 600;
}

.about-copy .relationship-goal {
  color: var(--ink);
  font-weight: 650;
}

.values-intro {
  margin-top: clamp(70px, 9vw, 120px);
}

.values-intro h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
}

.values-intro h3 em {
  color: #7c6129;
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 42px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.value-card {
  min-height: 390px;
  padding: 30px 25px;
  border-right: 1px solid var(--line-light);
}

.value-card:last-child {
  border-right: 0;
}

.value-number {
  color: #8c743f;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
}

.value-card h3 {
  margin: 36px 0 12px;
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  font-weight: 500;
  line-height: 1.12;
}

.value-card p {
  margin: 0;
  color: #56544e;
  font-size: 0.92rem;
}

.value-card .value-scripture {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 10, 14, 0.12);
  color: #715721;
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.48;
}

.value-scripture cite {
  display: block;
  margin-top: 8px;
  color: #686158;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pastor {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(201, 163, 92, 0.2), transparent 30%),
    linear-gradient(135deg, var(--white), #eee4d4 72%, #e6d9c6);
}

.pastor::before {
  content: "PK";
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  color: rgba(16, 32, 57, 0.035);
  font-family: var(--display);
  font-size: clamp(18rem, 42vw, 42rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.1em;
  pointer-events: none;
  user-select: none;
}

.pastor-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 140px);
  align-items: start;
}

.pastor-profile {
  position: relative;
  padding-right: clamp(28px, 4vw, 54px);
  border-right: 1px solid rgba(8, 10, 14, 0.18);
}

.pastor-profile h2 {
  max-width: 460px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.2rem, 6vw, 5.9rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
}

.pastor-role {
  max-width: 390px;
  margin: 30px 0 0;
  color: #72581f;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pastor-role span {
  margin-inline: 0.35em;
  color: var(--gold);
}

.pastor-photo {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.pastor-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pastor-story {
  max-width: 720px;
}

.pastor-story p {
  margin: 0 0 25px;
  color: #45423c;
  font-size: 1.02rem;
  line-height: 1.82;
}

.pastor-story .pastor-lead {
  margin-bottom: 34px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.9vw, 1.62rem);
  line-height: 1.5;
}

.pastor-story .pastor-pivot {
  margin: 40px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  color: var(--white);
  background: var(--navy);
  font-family: var(--display);
  font-size: clamp(0.75rem, 1.7vw, 1.5rem);
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.pastor-signoff {
  display: grid;
  gap: 8px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(8, 10, 14, 0.2);
}

.pastor-signoff strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
}

.pastor-signoff em {
  color: #72581f;
  font-family: var(--display);
  font-size: 1.08rem;
}

.program {
  overflow: hidden;
}

.program-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 85%, rgba(201, 163, 92, 0.08), transparent 28%),
    linear-gradient(135deg, #090c11, #111a27 60%, #0a0d12);
}

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

.program-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(65px, 10vw, 150px);
  align-items: center;
}

.program-grid-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
}

.program-art {
  position: relative;
}

.image-frame {
  position: relative;
  padding: clamp(12px, 1.5vw, 20px);
  border: 1px solid rgba(232, 202, 141, 0.4);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.44);
}

.image-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 7px;
  border: 1px solid rgba(232, 202, 141, 0.17);
  pointer-events: none;
}

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

.image-frame img.knight-emblem-full {
  object-fit: contain;
}

.image-frame-full {
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #000;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.44);
}

.image-frame-full::before {
  display: none;
}

.image-frame-full img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.image-frame-light {
  border-color: rgba(8, 10, 14, 0.3);
  background: #0a0b0e;
  box-shadow: 0 35px 90px rgba(8, 10, 14, 0.2);
}

.program-copy h2 {
  font-size: clamp(3.5rem, 6vw, 6rem);
}

.program-light .program-copy h2 {
  font-size: clamp(3.1rem, 5.2vw, 5.2rem);
}

.program-tagline {
  margin: 18px 0 32px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-style: italic;
}

.program-light .program-tagline {
  color: #745920;
}

.training-promise {
  max-width: 620px;
  margin: -8px 0 30px;
  padding: 13px 0;
  border-top: 1px solid rgba(232, 202, 141, 0.32);
  border-bottom: 1px solid rgba(232, 202, 141, 0.32);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.program-copy > p:not(.kicker):not(.program-tagline):not(.training-promise) {
  max-width: 620px;
  margin: 0 0 18px;
  color: rgba(255, 253, 248, 0.68);
}

.program-light .program-copy > p:not(.kicker):not(.program-tagline):not(.training-promise) {
  color: #4c4a44;
}

.knight-scripture {
  max-width: 620px;
  margin: 30px 0 28px;
  padding: 22px 24px;
  border-top: 1px solid rgba(232, 202, 141, 0.48);
  border-bottom: 1px solid rgba(232, 202, 141, 0.22);
  background: rgba(201, 163, 92, 0.06);
}

.knight-scripture span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.knight-scripture blockquote {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.18rem, 1.8vw, 1.48rem);
  font-style: italic;
  line-height: 1.42;
}

.program-copy > p.knight-call {
  color: rgba(255, 253, 248, 0.86);
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.5;
}

.knight-call strong,
.program-dark .program-copy > p strong {
  color: var(--gold-light);
  font-weight: 650;
}

.program-copy > p.class-session {
  max-width: 620px;
  margin: 26px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--gold);
  color: var(--white);
  background: rgba(23, 50, 88, 0.62);
  font-size: 0.88rem;
  font-weight: 750;
}

.schedule-note {
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-light .schedule-note {
  color: #70561e;
}

.script-steps {
  max-width: 620px;
  margin: 38px 0 30px;
  border-top: 1px solid var(--line-light);
}

.script-steps div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
}

.script-steps strong {
  color: #73591e;
  font-family: var(--display);
  font-size: 1.08rem;
  font-style: italic;
}

.script-steps span {
  color: #56534c;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: #6d531e;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
  gap: 20px;
  color: var(--ink);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.prayer {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 20%, rgba(23, 50, 88, 0.9), transparent 36%),
    #090d13;
}

.prayer::before {
  content: "PRAY";
  position: absolute;
  right: -0.05em;
  bottom: -0.26em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: clamp(9rem, 26vw, 26rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.prayer-glow {
  position: absolute;
  top: 50%;
  left: 17%;
  width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 202, 141, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 70px rgba(232, 202, 141, 0.025),
    0 0 0 140px rgba(232, 202, 141, 0.012);
}

.prayer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.prayer-art {
  width: 100%;
  max-width: 520px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.prayer-art img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.prayer-copy {
  max-width: 680px;
}

.prayer-copy h2 {
  font-size: clamp(1.25rem, 3.3vw, 2.55rem);
  white-space: nowrap;
}

.prayer-copy p:not(.kicker) {
  max-width: 600px;
  margin: 28px 0 34px;
  color: rgba(255, 253, 248, 0.7);
  font-size: 1.05rem;
}

.prayer-copy small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 253, 248, 0.43);
  font-size: 0.77rem;
}

.prayer-copy small a {
  color: var(--gold-light);
  overflow-wrap: anywhere;
}

.events {
  background: var(--paper);
}

.events .section-heading h2 {
  font-size: clamp(1.1rem, 3.7vw, 3.45rem);
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.event-countdown {
  margin: 0 0 8px;
  color: #73591e;
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
}

.event-card {
  display: grid;
  grid-template-columns: 150px 1fr 165px;
  align-items: stretch;
  margin-top: 65px;
  border: 1px solid var(--line-light);
  background: var(--cream);
  box-shadow: 0 24px 70px rgba(8, 10, 14, 0.08);
}

.event-date {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--ink);
}

.event-date span,
.event-date small {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

.event-date strong {
  margin-block: 4px;
  font-family: var(--display);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
}

.event-details {
  padding: 45px clamp(35px, 5vw, 75px);
}

.event-label {
  color: #7d632e;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.event-details h3 {
  margin: 12px 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.event-details p {
  max-width: 680px;
  margin: 0;
  color: #56544e;
  font-size: 0.94rem;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 25px;
}

.event-meta span {
  position: relative;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-meta span + span::before {
  content: "•";
  position: absolute;
  left: -15px;
  color: var(--gold);
}

.event-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-left: 1px solid var(--line-light);
  color: var(--ink);
  background: var(--gold-light);
  text-align: center;
  transition: color 180ms ease, background 180ms ease;
}

.event-action:hover {
  color: var(--white);
  background: var(--navy);
}

.event-action span {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-action strong {
  font-size: 1.5rem;
}

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

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.support-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(45px, 6vw, 82px);
}

.support-card h2 {
  max-width: 540px;
  font-size: clamp(2.4rem, 3.7vw, 3.8rem);
}

.support-card-gold h2 {
  font-size: clamp(1.15rem, 2.45vw, 1.95rem);
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.support-card > p:not(.kicker) {
  max-width: 540px;
  margin: 28px 0 34px;
}

.support-card-gold {
  background: var(--gold-light);
}

.support-card-gold .kicker {
  color: #563d10;
}

.support-card-gold > p:not(.kicker) {
  color: rgba(8, 10, 14, 0.72);
}

.giving-email {
  display: block;
  margin-top: 20px;
  color: rgba(8, 10, 14, 0.62);
  font-size: 0.76rem;
}

.giving-email a {
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.support-card-dark {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(23, 50, 88, 0.75), transparent 58%),
    var(--ink);
}

.support-card-dark > p:not(.kicker) {
  color: rgba(255, 253, 248, 0.66);
}

.support-card-dark > p.connect-tagline {
  margin: 0 0 32px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 600;
}

.social-links {
  width: 100%;
  border-top: 1px solid var(--line-dark);
}

.social-links a {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: color 180ms ease, padding-left 180ms ease;
}

.social-links a:hover {
  padding-left: 8px;
  color: var(--gold-light);
}

.social-links span {
  color: rgba(255, 253, 248, 0.45);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links strong {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.social-links b {
  font-weight: 500;
}

.site-footer {
  color: rgba(255, 253, 248, 0.65);
  background: #06080b;
}

.footer-top {
  min-height: 160px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 45px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-top > p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
}

.back-top {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-top span {
  margin-left: 8px;
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 253, 248, 0.38);
  font-size: 0.72rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1080px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100svh - var(--header-height));
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 24px;
    border-bottom: 1px solid rgba(232, 202, 141, 0.28);
    background: rgba(8, 10, 14, 0.985);
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 17px 14px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.9rem;
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.68fr;
    gap: 50px;
  }

  .scripture-panel {
    padding: 30px;
  }

  .hero-logo-panel {
    max-width: 420px;
  }

  .scripture-panel blockquote {
    font-size: 1.6rem;
  }

  .program-grid,
  .program-grid-reverse {
    gap: 60px;
  }

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

  .value-card {
    border-bottom: 1px solid var(--line-light);
  }

  .value-card:nth-child(2n) {
    border-right: 0;
  }

  .value-card:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .event-card {
    grid-template-columns: 130px 1fr;
  }

  .event-action {
    grid-column: 1 / -1;
    min-height: 76px;
    flex-direction: row;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 680px);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 85px;
  }

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

  .hero h1 {
    font-size: clamp(3.25rem, 13vw, 5.2rem);
  }

  .hero h1.hero-steps {
    font-size: clamp(3.2rem, 11.5vw, 5.1rem);
  }

  .scripture-panel {
    max-width: 540px;
  }

  .hero-logo-panel {
    max-width: 600px;
    justify-self: start;
  }

  .mission-band {
    padding-block: 25px;
  }

  .mission-band-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mission-band-inner a {
    width: max-content;
    margin-top: 10px;
  }

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

  .about-grid,
  .pastor-layout,
  .program-grid,
  .program-grid-reverse,
  .prayer-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-top: 0;
  }

  .pastor-layout {
    gap: 52px;
  }

  .pastor-profile {
    position: relative;
    top: auto;
    padding: 0 0 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 10, 14, 0.18);
  }

  .pastor-profile h2,
  .pastor-role {
    max-width: 620px;
  }

  .pastor-story {
    max-width: none;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card:last-child {
    grid-column: auto;
  }

  .value-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .value-card h3 {
    margin-top: 30px;
  }

  .program-grid-reverse .program-art {
    grid-row: 1;
  }

  .program-art {
    max-width: 560px;
  }

  .prayer-grid {
    gap: 25px;
  }

  .prayer-art {
    max-width: 560px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: 500px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .brand-copy small {
    font-size: 0.58rem;
  }

  .brand-logo-image {
    width: 98px;
    height: 50px;
  }

  .logo-meta {
    margin-left: 0;
    padding: 16px 12px;
  }

  .logo-meta strong {
    font-size: clamp(0.75rem, 3.4vw, 0.92rem);
    letter-spacing: -0.025em;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 82px;
  }

  .hero-grid {
    padding-block: 72px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .hero h1.hero-steps {
    font-size: clamp(2.95rem, 14vw, 4.1rem);
  }

  .hero-step-two,
  .hero-step-three {
    margin-left: 0;
  }

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

  .pastor-story .pastor-pivot {
    padding-inline: 6px;
  }

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

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

  .schedule-note {
    text-align: center;
  }

  .panel-topline {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .script-steps div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .event-date {
    min-height: 155px;
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 14px;
  }

  .event-date strong {
    font-size: 3.6rem;
  }

  .event-details {
    padding: 34px 26px;
  }

  .event-meta {
    flex-direction: column;
    gap: 7px;
  }

  .event-meta span + span::before {
    display: none;
  }

  .event-action {
    grid-column: auto;
  }

  .support-card {
    min-height: 470px;
    padding: 44px 28px;
  }

  .support-card-gold {
    padding-inline: 20px;
  }

  .social-links a {
    grid-template-columns: 76px 1fr auto;
    gap: 12px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 44px;
  }

  .footer-top > p {
    text-align: left;
  }

  .back-top {
    width: max-content;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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