:root {
  --navy: #0d2a55;
  --navy-deep: #071e40;
  --red: #d81920;
  --red-dark: #b81218;
  --ink: #1a2940;
  --muted: #667085;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --line: #dfe4ea;
  --shadow: 0 14px 35px rgba(15, 36, 71, 0.12);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.96rem;
  line-height: 1.65;
}

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

.site-container {
  max-width: 1180px;
}

.py-lg-6 {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.pb-lg-6 {
  padding-bottom: 5.5rem;
}

.section-space {
  padding: 4.8rem 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(13, 42, 85, 0.08);
  backdrop-filter: blur(10px);
}

.navbar {
  min-height: 84px;
}

.navbar-brand img {
  width: 200px;
  height: auto;
}

.nav-link {
  color: var(--navy) !important;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--red) !important;
}

.btn {
  border-radius: 0.25rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.btn-brand {
  color: #fff;
  border-color: var(--red);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 10px 20px rgba(216, 25, 32, 0.18);
}

.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  border-color: #a20c12;
  background: #b81218;
  transform: translateY(-1px);
}

.btn-outline-navy {
  color: var(--navy);
  border: 1px solid var(--navy);
  background: transparent;
}

.btn-outline-navy:hover,
.btn-outline-navy:focus {
  color: #fff;
  background: var(--navy);
}

.hero {
  overflow: hidden;
  position: relative;
  min-height: 530px;
  background:
    radial-gradient(circle at 45% 50%, rgba(220, 225, 232, 0.45), transparent 32%),
    linear-gradient(90deg, #fff 0%, #fff 44%, #edf1f6 100%);
}

.hero .site-container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display-title {
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.7rem, 7vw, 6.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.84;
  text-transform: uppercase;
}

.display-title span,
.hero-lead strong,
.section-heading strong,
.text-brand {
  color: var(--red);
}

.hero-lead {
  color: #263651;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero-photo-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo-wrap::before {
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 52%;
  content: "";
  background: linear-gradient(90deg, #fff 55%, rgba(255, 255, 255, 0));
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.lined-heading,
.cta-band h2,
.harvest-message {
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading h2::before,
.section-heading h2::after {
  width: 82px;
  height: 2px;
  content: "";
  background: var(--red);
}

.section-heading p {
  color: #4f5e72;
}

.shadow-soft {
  box-shadow: var(--shadow);
}

.mission-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  max-width: 930px;
  margin: 0 auto;
  border: 1px solid #e5e9ef;
  border-radius: 0.4rem;
  background: #fff;
}

.mission-icon {
  display: grid;
  min-height: 185px;
  border-right: 1px solid var(--line);
  place-items: center;
  position: relative;
  color: var(--red);
  font-size: 4.4rem;
}

.mission-flame {
  position: absolute;
  top: 32px;
  left: 50%;
  font-size: 2rem;
  transform: translateX(-50%);
}

.mission-copy {
  padding: 2rem 2.2rem;
}

.mission-copy h3 {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-photo {
  overflow: hidden;
  min-height: 520px;
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lined-heading {
  margin-bottom: 1.4rem;
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.lined-heading::after {
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 0.5rem;
  content: "";
  background: var(--red);
}

.about-copy blockquote {
  position: relative;
  margin: 1rem 0 1rem 0.65rem;
  padding-left: 1.25rem;
  color: var(--navy);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
}

.about-copy blockquote::before {
  position: absolute;
  top: -0.25rem;
  left: -0.5rem;
  color: var(--red);
  content: "“";
  font-size: 3rem;
  line-height: 1;
}

.cta-band {
  padding: 1.8rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.1), transparent 35%),
    linear-gradient(135deg, #082754, #0c376f);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.15rem);
}

.cta-band p {
  color: #d8e1ee;
  font-size: 1.05rem;
  font-weight: 600;
}

.cta-icon {
  display: grid;
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--red);
  font-size: 2.6rem;
  place-items: center;
}

.cta-button {
  min-width: 230px;
}

.phase-card {
  padding: 1.7rem;
  border: 1px solid #e2e6ec;
  border-radius: 0.3rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(13, 42, 85, 0.08);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.phase-icon {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 2.65rem;
}

.phase-icon.navy {
  color: var(--navy);
}

.phase-icon.red {
  color: var(--red);
}

.phase-card h3 {
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.phase-label {
  color: #55647a;
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
}

.check-list {
  display: inline-grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.check-list li::before {
  margin-right: 0.55rem;
  color: var(--red);
  content: "✓";
  font-weight: 800;
}

.stats-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr 1fr;
  border: 1px solid #e3e7ec;
  border-radius: 0.3rem;
  background: #fff;
  box-shadow: 0 7px 20px rgba(13, 42, 85, 0.06);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 104px;
  padding: 1.2rem 1.4rem;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item i {
  color: var(--navy);
  font-size: 2.2rem;
}

.stat-item:first-child i {
  color: var(--red);
}

.stat-item small,
.stat-item strong {
  display: block;
}

.stat-item small {
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stat-item strong {
  color: #27364f;
  font-size: 0.9rem;
}

.curriculum-accordion .accordion-item {
  margin-bottom: 0.45rem;
  border: 1px solid #e5e9ef;
  border-radius: 0.15rem;
  box-shadow: 0 5px 15px rgba(13, 42, 85, 0.05);
}

.curriculum-accordion .accordion-button {
  color: var(--navy);
  background: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.curriculum-accordion .accordion-button span {
  margin-left: 0.3rem;
  color: #65728a;
  font-size: 0.88em;
}

.curriculum-accordion .accordion-button::after {
  width: auto;
  height: auto;
  color: var(--red);
  background: none;
  content: "+";
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  transform: none;
}

.curriculum-accordion .accordion-button:not(.collapsed)::after {
  content: "−";
}

.curriculum-accordion .accordion-button:not(.collapsed) {
  color: var(--navy);
  background: #f8fafc;
  box-shadow: none;
}

.curriculum-accordion .accordion-button:focus {
  border-color: rgba(216, 25, 32, 0.35);
  box-shadow: 0 0 0 0.2rem rgba(216, 25, 32, 0.12);
}

.pricing-row > div {
  display: flex;
}

.price-card {
  width: 100%;
  padding: 1.25rem 0.9rem;
  border: 1px solid #dce2e9;
  border-radius: 0.25rem;
  background: #fff;
  box-shadow: 0 5px 15px rgba(13, 42, 85, 0.07);
  text-align: center;
}

.price-card h3 {
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card small {
  display: block;
  margin-bottom: 0.35rem;
  color: #8791a1;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card .price {
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  line-height: 1;
}

.price-card p {
  margin: 0.45rem 0 0;
  color: #606e82;
  font-size: 0.75rem;
}

.price-card.featured {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  transform: scale(1.035);
}

.price-card.featured h3,
.price-card.featured .price,
.price-card.featured p,
.price-card.featured small {
  color: #fff;
}

.scholarship-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid #e0e5eb;
  background: #fff;
  box-shadow: 0 6px 18px rgba(13, 42, 85, 0.06);
}

.scholarship-card i {
  color: var(--navy);
  font-size: 2.3rem;
}

.scholarship-card strong {
  display: block;
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.scholarship-card strong span {
  color: var(--red);
  font-family: cursive;
  font-style: italic;
  text-transform: none;
}

.scholarship-card p {
  color: #657185;
  font-size: 0.76rem;
  line-height: 1.45;
}

.journey-section {
  padding: 1rem 0 3.6rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  position: relative;
}

.journey-grid::before {
  position: absolute;
  z-index: 0;
  top: 41px;
  right: 7%;
  left: 7%;
  height: 2px;
  content: "";
  background: var(--navy);
}

.journey-step {
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.journey-circle {
  display: grid;
  width: 82px;
  height: 82px;
  margin-bottom: 0.65rem;
  border: 2px solid #aab6c7;
  border-radius: 50%;
  color: var(--navy);
  background: #fff;
  font-size: 2rem;
  place-items: center;
}

.red-step .journey-circle {
  color: var(--red);
}

.journey-step strong,
.journey-step span {
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.journey-step strong {
  font-weight: 700;
}

.journey-note {
  margin-top: 1.2rem;
  color: #68758a;
  font-size: 0.8rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: var(--navy-deep);
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(216, 25, 32, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-eyebrow {
  display: block;
  margin-bottom: 1rem;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-cta-heading {
  margin-bottom: 1.5rem;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.final-cta-sub {
  margin-bottom: 0.35rem;
  color: #bfcadd;
  font-size: 1.05rem;
}

.final-cta-sub strong {
  color: #fff;
}

.final-cta-btn-wrap {
  margin: 2.25rem 0 1.25rem;
}

.final-cta-btn-wrap .btn-brand {
  padding: 0.85rem 2.6rem;
  font-size: 1.1rem;
}

.final-cta-reg {
  color: #8fa0bc;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.final-cta-scripture {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8fa0bc;
  font-style: italic;
  font-size: 0.9rem;
}

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-section {
  background: #fff;
}

.faq-accordion {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(15, 36, 71, 0.08);
}

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

.faq-item:last-child {
  border-bottom: none;
}

.faq-btn {
  padding: 1.1rem 1.5rem;
  color: var(--navy);
  background: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: none !important;
}

.faq-btn:not(.collapsed) {
  color: var(--red);
  background: #fff;
}

.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d2a55'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-btn:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d81920'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-body {
  padding: 0.25rem 1.5rem 1.25rem;
  color: #4f5e72;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--soft);
  border-radius: 0.4rem;
}

.faq-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.faq-price-label {
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-price-amount {
  color: var(--red);
  font-weight: 700;
}

.faq-contact {
  color: var(--muted);
  font-size: 0.95rem;
}

.faq-contact-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-contact-link:hover,
.faq-contact-link:focus {
  color: var(--red);
}

/* ─── WHAT MAKES THIS SCHOOL DIFFERENT ──────────────────────────────────── */
.diff-section {
  background: var(--soft);
}

.diff-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
}

.diff-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.6rem 1.75rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px rgba(15, 36, 71, 0.07);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

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

.diff-icon-wrap {
  display: grid;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  place-items: center;
}

.diff-icon-wrap.navy {
  color: var(--navy);
  background: rgba(13, 42, 85, 0.1);
}

.diff-icon-wrap.red {
  color: var(--red);
  background: rgba(216, 25, 32, 0.1);
}

.diff-card-title {
  margin-bottom: 0.4rem;
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.diff-card-body {
  margin-bottom: 0;
  color: #4f5e72;
  font-size: 0.93rem;
}

.diff-footer {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.diff-footer-lead {
  max-width: 600px;
  margin: 0 auto 0.5rem;
  color: var(--ink);
  font-size: 1rem;
  font-style: italic;
}

.diff-footer-tagline {
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.diff-footer-sig {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ─── TERMS PAGE ─────────────────────────────────────────────────────────── */
.terms-hero {
  padding: 4rem 0 2.5rem;
  background: var(--navy-deep);
  color: #fff;
}

.terms-eyebrow {
  margin-bottom: 0.5rem;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terms-title {
  margin-bottom: 1.25rem;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.terms-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  justify-content: center;
  color: #bfcadd;
  font-size: 0.85rem;
}

.terms-meta-sep {
  opacity: 0.4;
}

.terms-preamble {
  margin-bottom: 1rem;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--navy);
  background: var(--soft);
  border-radius: 0 0.375rem 0.375rem 0;
  color: var(--ink);
  font-size: 0.95rem;
}

.terms-warning {
  margin-bottom: 2.5rem;
  padding: 0.85rem 1.25rem;
  border-left: 4px solid var(--red);
  background: #fff2f2;
  border-radius: 0 0.375rem 0.375rem 0;
  color: var(--red-dark);
  font-weight: 600;
}

.terms-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.terms-section:last-of-type {
  border-bottom: none;
}

.terms-section-heading {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  margin-bottom: 1rem;
  color: var(--navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.terms-num {
  color: var(--red);
}

.terms-list {
  padding-left: 1.4rem;
}

.terms-list li {
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.terms-signature {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--navy);
  text-align: center;
}

.terms-tagline {
  color: var(--muted);
  font-style: italic;
}

/* ─── SITE FOOTER ─────────────────────────────────────────────────────────── */
.site-footer {
  padding: 1.25rem 0;
  color: #fff;
  background: var(--navy-deep);
}

.footer-logo {
  width: 215px;
  padding: 0.25rem 0.5rem;
  border-radius: 0.15rem;
}

.site-footer p {
  font-weight: 700;
}

.site-footer small {
  color: #bfcadd;
}

.social-links {
  display: inline-flex;
  gap: 0.9rem;
}

.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--navy-deep);
  background: #fff;
  place-items: center;
  transition: transform 150ms ease, background 150ms ease;
}

.social-links a:hover,
.social-links a:focus {
  color: #fff;
  background: var(--red);
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .navbar-brand img {
    width: 215px;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem;
    border-top: 1px solid #e7eaf0;
    background: #fff;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .d-flex {
    justify-content: center;
  }

  .hero-photo-wrap::before {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-photo {
    object-position: 70% top;
  }

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

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .journey-grid {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 1.5rem;
  }

  .journey-grid::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 3.6rem 0;
  }

  .display-title {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .section-heading h2::before,
  .section-heading h2::after {
    width: 36px;
  }

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

  .mission-icon {
    min-height: 135px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mission-copy {
    padding: 1.5rem;
  }

  .about-photo {
    min-height: 390px;
  }

  .cta-band,
  .cta-band .text-lg-end {
    text-align: center;
  }

  .cta-band .d-flex {
    flex-direction: column;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stat-item,
  .stat-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .price-card.featured {
    transform: none;
  }

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

  .footer-logo {
    margin: 0 auto;
  }
}

@media (max-width: 420px) {
  .navbar-brand img {
    width: 178px;
  }

  .display-title {
    font-size: 3.25rem;
  }

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

  .journey-circle {
    width: 70px;
    height: 70px;
  }
}
