:root {
  --ink: #20302a;
  --muted: #667169;
  --paper: #f4f0e7;
  --surface: #fffdf8;
  --forest: #173f32;
  --forest-deep: #0e2d24;
  --fern: #62806e;
  --sand: #e3d7c2;
  --gold: #e2b65c;
  --rust: #a85248;
  --blue: #5b8fb1;
  --line: #d8d1c4;
  --radius: 22px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::selection {
  background: var(--gold);
  color: var(--forest-deep);
}

a {
  color: inherit;
}

button {
  font: inherit;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 10px 30px;
  border-bottom: 1px solid rgb(32 48 42 / 10%);
  background: rgb(244 240 231 / 92%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 21px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 500;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  gap: 25px;
}

.site-header nav a {
  color: #445049;
  font-size: 13px;
  text-decoration: none;
}

.site-header nav a:hover {
  color: var(--forest);
}

.header-note {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
  min-height: 660px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgb(226 182 92 / 22%), transparent 24%),
    linear-gradient(130deg, var(--forest-deep), var(--forest));
  color: #f9f2e7;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  width: auto;
  padding: 80px 34px 80px clamp(34px, 7vw, 110px);
}

.eyebrow,
.panel-kicker {
  color: var(--fern);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow,
.program-section .eyebrow,
.interest-section .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 25px;
  font-size: clamp(48px, 4.5vw, 68px);
  line-height: 1;
}

.hero-intro {
  max-width: 620px;
  color: #d7e0d9;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: var(--forest-deep);
}

.button.secondary {
  border-color: rgb(255 255 255 / 30%);
  background: rgb(255 255 255 / 8%);
  color: #f7f0e5;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.hero-disclaimer {
  max-width: 590px;
  color: #aebeb4;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgb(4 25 18 / 52%)),
    radial-gradient(circle at 50% 50%, #39614e 0 8%, #254b3c 9% 35%, #173a2e 36% 58%, #112e25 59%);
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  border: 1px solid rgb(239 229 210 / 30%);
  border-radius: 50%;
  place-items: start center;
  transform: translate(-50%, -50%);
}

.hero-orbit span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--forest-deep);
  color: #c7d5cd;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.orbit-outer {
  width: 520px;
  height: 520px;
}

.orbit-middle {
  width: 335px;
  height: 335px;
}

.orbit-inner {
  width: 150px;
  height: 150px;
  border-color: var(--gold);
  background: rgb(226 182 92 / 7%);
}

.hero-stat {
  position: absolute;
  min-width: 112px;
  padding: 13px 15px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 15px;
  background: rgb(14 45 36 / 80%);
  box-shadow: 0 18px 42px rgb(0 0 0 / 14%);
  backdrop-filter: blur(8px);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
}

.hero-stat span {
  color: #b9c9c0;
  font-size: 10px;
}

.hero-stat-one {
  top: 18%;
  left: 8%;
}

.hero-stat-two {
  right: 8%;
  bottom: 20%;
}

.hero-stat-three {
  bottom: 9%;
  left: 22%;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 6px 25px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 3px;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 500;
}

.proof-strip span {
  color: var(--muted);
  font-size: 11px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 105px 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.65fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 15px;
}

.concept-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.concept-switch button {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgb(255 253 248 / 55%);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.concept-switch button.active {
  border-color: var(--forest);
  background: var(--forest);
  color: #fffaf0;
  box-shadow: 0 12px 35px rgb(23 63 50 / 16%);
}

.concept-switch small {
  color: var(--fern);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.concept-switch button.active small,
.concept-switch button.active span {
  color: #b9cabf;
}

.concept-switch strong {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.concept-switch span {
  color: var(--muted);
  font-size: 12px;
}

.concept-layout,
.reach-layout {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 70px rgb(44 54 48 / 9%);
}

.concept-story,
.reach-story {
  padding: 30px;
}

.concept-story h3 {
  margin-bottom: 12px;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
}

.concept-story > p:not(.panel-kicker) {
  color: var(--muted);
  font-size: 13px;
}

.concept-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin: 22px 0;
}

.concept-metrics div {
  padding: 13px;
  border-radius: 13px;
  background: #f1ece2;
}

.concept-metrics strong,
.concept-metrics span {
  display: block;
}

.concept-metrics strong {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

.concept-metrics span {
  color: var(--muted);
  font-size: 9px;
}

.concept-tradeoffs {
  display: grid;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.concept-tradeoffs strong {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concept-tradeoffs ul {
  margin: 7px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 11px;
}

.grading-callout,
.airspace-note {
  padding: 15px;
  border-left: 3px solid var(--gold);
  background: #f5eddb;
  font-size: 11px;
}

.grading-callout p,
.airspace-note p {
  margin: 5px 0 0;
  color: var(--muted);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 9px;
}

.map-legend span {
  display: flex;
  gap: 5px;
  align-items: center;
}

.swatch {
  width: 17px;
  height: 9px;
  border-radius: 2px;
}

.swatch.parcel {
  border: 2px solid #d8c8ab;
  background: transparent;
}

.swatch.wetland {
  background: #4a8f78;
}

.swatch.trail {
  height: 3px;
  background: var(--gold);
}

.swatch.platform {
  border: 1px dashed #be8b25;
  background: #f0c66a55;
}

.swatch.cut {
  background: var(--rust);
}

.swatch.fill {
  background: var(--blue);
}

.swatch.building {
  background: #564c43;
}

.map-shell {
  position: relative;
  min-width: 0;
  background: #d8ddd7;
}

#site-map {
  min-height: 710px;
}

#reach-map {
  min-height: 610px;
}

.map-status {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 500;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 9px;
  background: rgb(14 45 36 / 88%);
  color: #f8f1e6;
  font-size: 10px;
  pointer-events: none;
}

.reach-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: #e9e3d7;
}

.reach-layout {
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.65fr);
}

.reach-map-shell {
  order: 0;
}

.reach-story {
  order: 1;
}

.range-key {
  display: grid;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.range-key span {
  display: grid;
  grid-template-columns: 15px 54px 1fr;
  align-items: center;
  color: var(--muted);
  font-size: 10px;
}

.range-key i {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ring);
  border-radius: 50%;
}

.range-key strong {
  color: var(--ink);
}

.destination-cards {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.destination-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.destination-card > div {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.destination-card > div span {
  color: var(--muted);
  font-size: 10px;
}

.destination-card b {
  display: block;
  margin-top: 7px;
  color: var(--forest);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.destination-card.future b {
  color: var(--rust);
}

.destination-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.program-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--forest-deep);
  color: #f3ecdf;
}

.section-heading.light h2 {
  color: #f3ecdf;
}

.section-heading.light > p {
  color: #acbeb4;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 17%);
  border-left: 1px solid rgb(255 255 255 / 17%);
}

.program-card {
  min-height: 215px;
  padding: 25px;
  border-right: 1px solid rgb(255 255 255 / 17%);
  border-bottom: 1px solid rgb(255 255 255 / 17%);
}

.program-card > span {
  color: var(--gold);
  font-size: 11px;
}

.program-card h3 {
  margin: 35px 0 10px;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 500;
}

.program-card p {
  margin-bottom: 0;
  color: #aabdb2;
  font-size: 12px;
}

.power-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
  border-radius: 16px;
  background: var(--gold);
  color: var(--forest-deep);
}

.power-ribbon div {
  padding: 18px 22px;
  border-right: 1px solid rgb(14 45 36 / 20%);
}

.power-ribbon div:last-child {
  border-right: 0;
}

.power-ribbon strong,
.power-ribbon span {
  display: block;
}

.power-ribbon strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.power-ribbon span {
  font-size: 10px;
}

.aircraft-group {
  margin-top: 55px;
}

.aircraft-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.aircraft-group-heading h3 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 500;
}

.aircraft-group-heading span {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.aircraft-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.aircraft-card {
  display: grid;
  grid-template-columns: 43% minmax(0, 1fr);
  min-height: 275px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.aircraft-photo {
  min-height: 100%;
  overflow: hidden;
  background: #dce1db;
}

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

.aircraft-placeholder {
  display: grid;
  height: 100%;
  place-items: center;
  background: linear-gradient(145deg, #d9ded8, #b9c8be);
}

.aircraft-placeholder span {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgb(23 63 50 / 30%);
  border-radius: 50%;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 34px;
}

.aircraft-copy {
  padding: 20px;
}

.aircraft-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.aircraft-labels span {
  padding: 4px 7px;
  border-radius: 999px;
  background: #ece7dd;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.aircraft-labels .confidence {
  background: #dce8df;
  color: var(--forest);
}

.aircraft-copy h4 {
  margin: 17px 0 0;
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.maker {
  color: var(--muted);
  font-size: 10px;
}

.aircraft-specs {
  display: flex;
  gap: 18px;
  margin: 16px 0;
}

.aircraft-specs span {
  color: var(--muted);
  font-size: 9px;
}

.aircraft-specs strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.aircraft-status {
  color: var(--muted);
  font-size: 10px;
}

.aircraft-copy a,
.source-missing {
  color: var(--forest);
  font-size: 10px;
  font-weight: 700;
}

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

.path-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.path-item {
  position: relative;
  min-height: 190px;
  padding: 20px 15px;
  border-top: 2px solid var(--forest);
}

.path-item::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--forest);
  content: "";
}

.path-index {
  margin-bottom: 42px;
  color: var(--fern);
  font-size: 10px;
}

.path-item h3 {
  margin-bottom: 7px;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 500;
}

.path-item p {
  color: var(--muted);
  font-size: 9px;
}

.market-window {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 40px;
  margin-top: 45px;
  padding: 30px;
  border-radius: var(--radius);
  background: #e8e0d1;
}

.market-window-copy h3 {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.market-window-copy p {
  color: var(--muted);
  font-size: 11px;
}

.market-years {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.market-years span {
  padding: 10px;
  border-radius: 10px;
  background: rgb(255 253 248 / 62%);
  color: var(--muted);
  font-size: 9px;
}

.market-years strong {
  display: block;
  color: var(--forest);
  font-size: 11px;
}

.interest-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 85px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: var(--forest);
  color: #f5eddf;
}

.interest-section h2 {
  max-width: 800px;
  margin-bottom: 15px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
}

.interest-section p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: #b8c8be;
}

.sources-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 65px;
}

.sources-section h2 {
  color: var(--forest);
  font-size: 40px;
  line-height: 1.08;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.source-grid article {
  padding: 18px;
  border-left: 2px solid var(--line);
}

.source-grid h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 500;
}

.source-grid p,
.legal-copy {
  color: var(--muted);
  font-size: 10px;
}

.legal-copy {
  grid-column: 2;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 25px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  background: #ded6c8;
  color: var(--muted);
  font-size: 10px;
}

.leaflet-container {
  font: 11px Inter, sans-serif;
}

.leaflet-control-layers {
  border: 0 !important;
  border-radius: 10px !important;
  box-shadow: 0 7px 25px rgb(0 0 0 / 13%) !important;
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: var(--forest-deep);
  color: #f8f1e5;
}

.leaflet-popup-content span {
  color: #b8c8be;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .header-note {
    grid-column: 2;
  }

  .hero {
    grid-template-columns: 1fr 0.75fr;
  }

  .hero-copy {
    padding-left: 35px;
  }

  .orbit-outer {
    width: 420px;
    height: 420px;
  }

  .concept-layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .reach-layout {
    grid-template-columns: minmax(0, 1.25fr) 330px;
  }

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

  .aircraft-photo {
    height: 210px;
  }

  .path-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 0;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 64px;
    padding: 9px 16px;
  }

  .header-note {
    display: none;
  }

  .hero {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    padding: 75px 23px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 16px;
  }

  .proof-strip div {
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .section {
    padding: 75px 17px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading h2 {
    font-size: 43px;
  }

  .concept-switch {
    grid-template-columns: 1fr;
  }

  .concept-layout,
  .reach-layout {
    grid-template-columns: 1fr;
  }

  .map-shell {
    order: 0;
  }

  .concept-story,
  .reach-story {
    order: 1;
  }

  #site-map,
  #reach-map {
    min-height: 520px;
  }

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

  .power-ribbon {
    grid-template-columns: 1fr;
  }

  .power-ribbon div {
    border-right: 0;
    border-bottom: 1px solid rgb(14 45 36 / 20%);
  }

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

  .aircraft-card {
    grid-template-columns: 38% minmax(0, 1fr);
  }

  .aircraft-photo {
    height: auto;
  }

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

  .market-window,
  .sources-section {
    grid-template-columns: 1fr;
  }

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

  .legal-copy {
    grid-column: 1;
  }

  .interest-section {
    grid-template-columns: 1fr;
    padding-right: 23px;
    padding-left: 23px;
  }

  footer {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 500px) {
  .hero h1 {
    font-size: 45px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 380px;
  }

  .orbit-outer {
    width: 360px;
    height: 360px;
  }

  .orbit-middle {
    width: 245px;
    height: 245px;
  }

  .concept-metrics {
    grid-template-columns: 1fr;
  }

  #site-map,
  #reach-map {
    min-height: 440px;
  }

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

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

  .aircraft-photo {
    height: 220px;
  }

  .path-list {
    grid-template-columns: 1fr;
  }

  .path-item {
    min-height: 130px;
  }

  .path-index {
    margin-bottom: 20px;
  }

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