:root {
  --green: #123c34;
  --green-2: #1c594d;
  --mint: #c9e6dc;
  --orange: #f26a3d;
  --yellow: #f0b63e;
  --paper: #f5f2e9;
  --cream: #ebe6da;
  --ink: #16201d;
  --muted: #606964;
  --white: #fffdf8;
  --line: rgba(22, 32, 29, 0.15);
  --radius: 18px;
  --shell: min(1240px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.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: -100px;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: white;
  background: var(--green);
}
.skip-link:focus { top: 1rem; }
.announcement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 38px;
  padding: .45rem 1rem;
  color: var(--green);
  background: var(--yellow);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.announcement a { border-bottom: 1px solid currentColor; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 242, 233, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  min-height: 82px;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  color: var(--green);
  background: var(--yellow);
  border-radius: 50%;
}
.brand-mark svg { width: 26px; fill: currentColor; }
.brand-name {
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.brand-name b { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  margin-left: auto;
  font-size: .86rem;
  font-weight: 700;
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--orange); }
.phone-link {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: .9rem;
  font-weight: 800;
}
.phone-link span {
  display: block;
  margin-bottom: .08rem;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
  font-size: .66rem;
  font-weight: 600;
}
.menu-toggle { display: none; }
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: var(--green);
}
.hero-media, .hero-shade {
  position: absolute;
  inset: 0;
}
.hero-media img { height: 100%; object-fit: cover; object-position: center 62%; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 35, 30, .94) 0%, rgba(7, 35, 30, .78) 43%, rgba(7, 35, 30, .19) 76%),
    linear-gradient(0deg, rgba(7, 30, 26, .75), transparent 38%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
  min-height: 620px;
  padding: 6.25rem 0 7rem;
}
.kicker {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.15rem;
  color: var(--green-2);
  font-family: "Manrope", sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.kicker > span {
  width: 22px;
  height: 2px;
  background: var(--orange);
}
.kicker.light { color: var(--mint); }
.hero h1, h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero h1 { max-width: 850px; font-size: clamp(3.5rem, 7.2vw, 7.3rem); }
.hero h1 em { color: var(--yellow); font-family: Georgia, serif; font-weight: 400; }
.hero-lede {
  max-width: 640px;
  margin: 1.75rem 0 2rem;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}
.actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  min-height: 52px;
  padding: .8rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--green); background: var(--yellow); }
.button-ghost { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.button-dark { color: white; background: var(--green); }
.route-card {
  align-self: end;
  padding: 1.5rem;
  color: var(--ink);
  background: rgba(255, 253, 248, .94);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}
.route-label {
  margin: 0 0 1.15rem;
  color: var(--orange);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.route-row { display: grid; grid-template-columns: 36px 1fr auto; gap: .7rem; align-items: center; }
.route-dot {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: white;
  background: var(--green-2);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
}
.route-dot.coral { background: var(--orange); }
.route-row strong, .route-row span { display: block; }
.route-row strong { color: var(--green); font-size: .9rem; }
.route-row div span { color: var(--muted); font-size: .72rem; }
.route-row .arrow { color: var(--green-2); }
.route-line { height: 28px; margin-left: 15px; border-left: 2px dotted #aab6b1; }
.route-card > a {
  display: flex;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--green);
  font-size: .8rem;
  font-weight: 800;
}
.hero-stats {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255,255,255,.24);
}
.hero-stats div { padding: 0 1.5rem; border-left: 1px solid rgba(255,255,255,.2); }
.hero-stats div:first-child { padding-left: 0; border-left: 0; }
.hero-stats strong {
  display: block;
  color: var(--yellow);
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  line-height: 1.1;
}
.hero-stats span { color: rgba(255,255,255,.7); font-size: .72rem; }
.trust-strip { color: var(--green); background: var(--mint); }
.trust-strip .shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.trust-strip span::before { content: "●"; margin-right: .65rem; color: var(--orange); font-size: .5rem; }
.section { padding: 8rem 0; }
.intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: start; }
h2 { font-size: clamp(2.8rem, 5.3vw, 5.5rem); }
.intro h2 { max-width: 720px; }
.intro-copy { padding-top: 2.1rem; }
.intro-copy p { color: var(--muted); }
.intro-copy .large-copy { color: var(--ink); font-size: 1.35rem; font-weight: 600; line-height: 1.4; }
.text-link {
  display: inline-flex;
  gap: 2rem;
  margin-top: 1rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--ink);
  font-size: .85rem;
  font-weight: 800;
}
.text-link span { color: var(--orange); }
.feature-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1rem;
  padding-bottom: 8rem;
}
.feature-card { position: relative; overflow: hidden; border-radius: var(--radius); }
.feature-photo { min-height: 620px; grid-row: span 2; }
.feature-photo::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(8, 32, 27, .85));
}
.feature-photo img { height: 100%; object-fit: cover; }
.photo-caption { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; left: 2rem; color: white; }
.photo-caption span, .card-number {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.photo-caption h3 { max-width: 500px; margin: .65rem 0 0; font: 700 clamp(2rem, 3.6vw, 3.7rem)/1.02 "Manrope", sans-serif; letter-spacing: -.045em; }
.tech-card, .times-card { min-height: 300px; padding: 2rem; }
.tech-card { display: flex; flex-direction: column; justify-content: space-between; color: white; background: var(--green); }
.icon-tile { display: grid; place-items: center; width: 56px; height: 56px; background: var(--yellow); border-radius: 50%; }
.icon-tile svg { width: 30px; fill: none; stroke: var(--green); stroke-width: 2; }
.tech-card .card-number { color: var(--mint); }
.feature-card h3 { margin: .6rem 0; font: 700 1.75rem/1.1 "Manrope", sans-serif; letter-spacing: -.035em; }
.feature-card p { margin: 0; color: rgba(255,255,255,.7); font-size: .88rem; }
.signal { position: absolute; top: 1.8rem; right: 1.8rem; display: flex; align-items: end; gap: 3px; height: 23px; }
.signal i { display: block; width: 4px; background: var(--mint); border-radius: 5px; }
.signal i:nth-child(1) { height: 6px; }.signal i:nth-child(2) { height: 11px; }.signal i:nth-child(3) { height: 17px; }.signal i:nth-child(4) { height: 23px; }
.times-card { background: var(--yellow); }
.times-card p { color: rgba(22,32,29,.68); }
.time-pills { display: flex; gap: .45rem; margin-top: 2rem; }
.time-pills span { padding: .5rem .75rem; border: 1px solid rgba(18,60,52,.28); border-radius: 999px; color: var(--green); font-size: .75rem; font-weight: 800; }
.enroll-section { padding: 7.5rem 0; color: white; background: var(--green); }
.enroll-section > .shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; }
.enroll-heading h2 { font-size: clamp(3rem, 5.2vw, 5.2rem); }
.enroll-heading > p:last-child { max-width: 460px; margin-top: 1.6rem; color: rgba(255,255,255,.66); }
.application-list { border-top: 1px solid rgba(255,255,255,.25); }
.application-list a {
  display: grid;
  grid-template-columns: 48px 1fr 180px 35px;
  gap: 1rem;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid rgba(255,255,255,.25);
  transition: padding .2s ease, background .2s ease;
}
.application-list a:hover { padding-inline: 1rem; background: rgba(255,255,255,.05); }
.app-index { color: var(--mint); font-size: .7rem; }
.app-title { font: 700 clamp(1.75rem, 3vw, 2.8rem)/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.app-meta { color: rgba(255,255,255,.58); font-size: .78rem; }
.app-arrow { display: grid; place-items: center; width: 35px; height: 35px; color: var(--green); background: var(--yellow); border-radius: 50%; }
.safety-section { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; padding-top: 8rem; padding-bottom: 8rem; }
.safety-image { position: relative; }
.safety-image img { height: 650px; object-fit: cover; border-radius: var(--radius); }
.safety-badge {
  position: absolute;
  right: -2.5rem;
  bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 1.1rem 1.25rem;
  color: white;
  background: var(--orange);
  border-radius: 12px;
  box-shadow: 0 14px 35px rgba(57, 32, 22, .22);
}
.safety-badge svg { width: 34px; fill: none; stroke: white; stroke-width: 2; }
.safety-badge span { font-size: .72rem; }
.safety-badge strong { display: block; font-size: .95rem; }
.safety-copy h2 { font-size: clamp(2.8rem, 4.8vw, 4.8rem); }
.safety-copy > p { color: var(--muted); }
.check-list { margin-top: 2.1rem; border-top: 1px solid var(--line); }
.check-list > div { display: grid; grid-template-columns: 32px 1fr; gap: .8rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.check-list > div > span { display: grid; place-items: center; width: 24px; height: 24px; color: white; background: var(--green-2); border-radius: 50%; font-size: .7rem; }
.check-list p { margin: 0; color: var(--muted); font-size: .83rem; }
.check-list strong { display: block; color: var(--ink); font-size: .95rem; }
.testimonial-section { padding: 7.5rem 0; background: var(--cream); }
.testimonial-section .shell { position: relative; max-width: 980px; }
.quote-mark { position: absolute; top: 2rem; right: 0; color: var(--orange); font: 9rem/1 Georgia, serif; opacity: .25; }
blockquote { margin: 3.5rem 0 2.5rem; font: 500 clamp(2rem, 4.1vw, 4rem)/1.2 "Manrope", sans-serif; letter-spacing: -.04em; }
.quote-footer { display: flex; align-items: center; justify-content: space-between; }
.quote-footer cite { color: var(--muted); font-size: .78rem; font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.quote-controls { display: flex; align-items: center; gap: 1rem; color: var(--muted); font-size: .72rem; }
.quote-controls button { width: 36px; height: 36px; color: var(--green); background: transparent; border: 1px solid var(--line); border-radius: 50%; }
.charter-section { display: grid; grid-template-columns: 1.1fr .8fr auto; gap: 5vw; align-items: end; padding-top: 6.5rem; padding-bottom: 6.5rem; }
.charter-section h2 { font-size: clamp(2.8rem, 4.8vw, 4.8rem); }
.charter-section > p { margin: 0; color: var(--muted); }
.footer { padding-top: 5.5rem; color: white; background: #0b2924; }
.footer-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr .7fr; gap: 4rem; padding-bottom: 4rem; }
.footer-brand .brand-name { color: white; }
.footer-main > div:first-child > p { margin-top: 1.4rem; color: rgba(255,255,255,.55); font-size: .85rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; font-size: .85rem; }
.footer-column > span { margin-bottom: .7rem; color: var(--yellow); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-column p { margin: 0; color: rgba(255,255,255,.62); }
.footer-column a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.42); font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; }

@media (max-width: 1050px) {
  .phone-link { display: none; }
  .hero-content { grid-template-columns: 1fr 300px; gap: 2rem; }
  .charter-section { grid-template-columns: 1fr 1fr; }
  .charter-section .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 800px) {
  :root { --shell: min(100% - 32px, 680px); }
  .announcement { justify-content: space-between; font-size: .62rem; }
  .nav { min-height: 70px; }
  .menu-toggle {
    display: grid;
    gap: 6px;
    margin-left: auto;
    padding: .6rem;
    background: transparent;
    border: 0;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; background: var(--green); transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .nav-links {
    position: fixed;
    top: 108px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 2rem 24px;
    color: white;
    background: var(--green);
    transform: translateX(100%);
    transition: transform .25s ease;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,.18); font: 700 1.6rem "Manrope", sans-serif; }
  .hero { min-height: 840px; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,35,30,.96) 5%, rgba(7,35,30,.7) 70%, rgba(7,35,30,.25)); }
  .hero-content { grid-template-columns: 1fr; align-content: end; min-height: 690px; padding: 4rem 0 2rem; }
  .hero h1 { font-size: clamp(3.2rem, 14vw, 5.7rem); }
  .route-card { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem 0; padding-block: 1rem; }
  .hero-stats div:nth-child(3) { padding-left: 0; border-left: 0; }
  .trust-strip .shell { flex-wrap: wrap; justify-content: flex-start; }
  .trust-strip span { width: calc(50% - .5rem); }
  .section { padding: 5.5rem 0; }
  .intro, .enroll-section > .shell, .safety-section { grid-template-columns: 1fr; gap: 3rem; }
  .intro-copy { padding-top: 0; }
  .feature-grid { grid-template-columns: 1fr; padding-bottom: 5.5rem; }
  .feature-photo { min-height: 520px; grid-row: auto; }
  .feature-card h3 { font-size: 1.6rem; }
  .enroll-section { padding: 5.5rem 0; }
  .safety-section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .safety-image img { height: 520px; }
  .safety-badge { right: 1rem; bottom: 1rem; }
  .testimonial-section { padding: 5.5rem 0; }
  .charter-section { grid-template-columns: 1fr; gap: 1.5rem; padding-top: 5rem; padding-bottom: 5rem; }
  .charter-section .button { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem 2rem; }
}

@media (max-width: 520px) {
  .announcement span { display: none; }
  .announcement { justify-content: center; }
  .brand-name { font-size: .86rem; }
  .hero { min-height: 790px; }
  .hero-content { min-height: 630px; }
  .hero-lede { margin-top: 1.25rem; }
  .actions { align-items: stretch; flex-direction: column; }
  .hero-stats strong { font-size: 1.15rem; }
  .hero-stats span { font-size: .62rem; }
  .hero-stats div { padding-inline: .8rem; }
  .trust-strip span { width: 100%; }
  h2 { font-size: 2.75rem; }
  .feature-photo { min-height: 440px; }
  .photo-caption { right: 1.25rem; bottom: 1.25rem; left: 1.25rem; }
  .photo-caption h3 { font-size: 2rem; }
  .application-list a { grid-template-columns: 30px 1fr 35px; min-height: 96px; }
  .app-meta { display: none; }
  .safety-image img { height: 430px; }
  .quote-mark { display: none; }
  blockquote { margin-top: 2.5rem; }
  .quote-controls { display: none; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .4rem; }
}

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