: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: 250px;
  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;
  background:
    radial-gradient(circle at 45% 50%, rgba(220, 225, 232, 0.45), transparent 32%),
    linear-gradient(90deg, #fff 0%, #fff 44%, #edf1f6 100%);
}

.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 {
  align-self: stretch;
  min-height: 530px;
  position: relative;
}

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

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

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

.harvest-banner {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
    url("/images/hero-speaker.png") center 35% / cover no-repeat;
}

.harvest-message {
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.harvest-message strong {
  color: var(--red);
  font-size: 0.78em;
}

.harvest-banner small {
  color: var(--navy);
  font-weight: 600;
}

.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;
  background: #fff;
}

.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 {
    background: linear-gradient(180deg, #fff 0%, #fff 48%, #eef2f6 100%);
  }

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

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

  .hero-photo-wrap {
    min-height: auto;
  }

  .hero-photo-wrap::before {
    display: none;
  }

  .hero-photo {
    max-height: 620px;
    object-position: center 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;
  }
}
