/* Cadet Horizons Website V8 — executive evolution of the approved V6.3 identity */
:root {
  --navy: #061724;
  --navy-deep: #020e17;
  --navy-soft: #0b2538;
  --gold: #c9a84d;
  --gold-pale: #efd481;
  --cream: #f3efe6;
  --paper: #fbfaf7;
  --ink: #132330;
  --muted: #66727c;
  --line: #d8d0c3;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}
body {
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
main {
  min-height: 70vh;
}
.topbar {
  padding: 0 3.5vw;
}
.topbar nav {
  gap: 16px;
}
.topbar nav a {
  font-size: 0.62rem;
}
.topbar nav a[aria-current="page"] {
  color: var(--gold-pale);
}
.topbar nav a:not(.pill) {
  position: relative;
  padding: 0.75rem 0;
}
.topbar nav a:not(.pill):after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.35rem;
  height: 1px;
  background: var(--gold);
  transition: right 0.2s ease;
}
.topbar nav a:not(.pill):hover:after,
.topbar nav a:not(.pill):focus-visible:after,
.topbar nav a[aria-current="page"]:after {
  right: 0;
}
.brand {
  flex-shrink: 0;
}
.brand img {
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn,
.pill {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}
.btn:hover,
.btn:focus-visible,
.pill:hover,
.pill:focus-visible {
  transform: translateY(-2px);
}
.btn.gold:hover,
.btn.gold:focus-visible,
.pill:hover,
.pill:focus-visible {
  box-shadow: 0 12px 28px rgba(201, 168, 77, 0.25);
}
.btn.ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn.ghost:hover {
  border-color: var(--navy);
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold-pale);
  outline-offset: 4px;
}

/* Shared editorial page architecture */
.page-hero {
  position: relative;
  min-height: 76vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(1, 12, 20, 0.92),
    rgba(1, 12, 20, 0.42) 62%,
    rgba(1, 12, 20, 0.12)
  );
}
.page-hero.short {
  min-height: 62vh;
}
.page-hero-copy {
  position: relative;
  z-index: 2;
  padding: 22vh 7vw 10vh;
  max-width: 1080px;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(4.3rem, 8vw, 8.8rem);
  font-weight: 400;
  line-height: 0.9;
  margin: 0.55rem 0 1.25rem;
}
.page-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.15rem;
  line-height: 1.72;
  color: #edf2f5;
}
.page-hero .actions {
  margin-top: 30px;
}
.page-hero.object-top > img {
  object-position: center 22%;
}
.page-hero.object-mid > img {
  object-position: center 48%;
}
.page-hero.object-low > img {
  object-position: center 68%;
}
.chapter-number {
  font-family: var(--serif);
  font-size: clamp(6rem, 13vw, 13rem);
  line-height: 0.75;
  color: var(--gold);
}
.editorial-intro {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 8vw;
  align-items: start;
  background: var(--cream);
}
.editorial-copy h2,
.statement h2,
.programme-copy h2,
.mission-feature h2,
.support-route h2 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.7vw, 6.4rem);
  font-weight: 400;
  line-height: 0.98;
  margin: 0.5rem 0 1.15rem;
}
.editorial-copy > p,
.programme-copy > p,
.mission-feature > p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 820px;
}
.lead {
  font-size: 1.2rem !important;
  color: var(--ink) !important;
}
.statement {
  padding: 115px 7vw;
  background: var(--navy);
  color: #fff;
}
.statement-inner {
  max-width: 1120px;
}
.statement h2 em {
  font-style: normal;
  color: var(--gold-pale);
}
.statement p {
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.78;
  color: #d4dde2;
}
.quiet-rule {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin: 28px 0;
}
.plain-list {
  padding-left: 1.15rem;
  line-height: 1.8;
}
.plain-list li + li {
  margin-top: 0.45rem;
}
.micro {
  font-size: 0.76rem;
  line-height: 1.65;
  color: var(--muted);
}
.micro.light {
  color: #bec9cf;
}
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  border: 1px solid var(--line);
  padding: 0.35rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.58rem;
  font-weight: 800;
}
.tag.gold {
  border-color: var(--gold);
  color: #8d6d24;
}
.tag.light {
  border-color: #ffffff55;
  color: var(--gold-pale);
}
.tag.forged {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.tag.international {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Why → How → What model */
.why-how-what {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 55px;
}
.why-how-what article {
  background: #fff;
  padding: 38px;
  min-height: 310px;
}
.why-how-what article:nth-child(2) {
  background: var(--navy);
  color: #fff;
}
.why-how-what span {
  display: block;
  color: #8d6d24;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  font-weight: 800;
}
.why-how-what article:nth-child(2) span {
  color: var(--gold-pale);
}
.why-how-what h3 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.05;
  margin: 1rem 0;
}
.why-how-what p {
  line-height: 1.75;
  color: var(--muted);
}
.why-how-what article:nth-child(2) p {
  color: #d4dde2;
}
.flow-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 58px;
  border-top: 1px solid #ffffff32;
  border-bottom: 1px solid #ffffff32;
}
.flow-line div {
  position: relative;
  padding: 30px 24px;
  min-height: 175px;
  border-right: 1px solid #ffffff32;
}
.flow-line div:last-child {
  border-right: 0;
}
.flow-line span {
  display: block;
  color: var(--gold-pale);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
}
.flow-line h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  margin: 0.7rem 0;
}
.flow-line p {
  font-size: 0.83rem;
  line-height: 1.6;
  color: #cad5db;
}

/* The two-programme model */
.programme-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 62px;
}
.programme-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.programme-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.programme-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(2, 14, 23, 0.96),
    rgba(2, 14, 23, 0.17) 68%
  );
}
.programme-card:hover > img {
  transform: scale(1.025);
}
.programme-card-copy {
  position: relative;
  z-index: 2;
  padding: 42px;
  max-width: 690px;
}
.programme-card h3 {
  font-family: var(--serif);
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  font-weight: 400;
  line-height: 0.96;
  margin: 0.9rem 0;
}
.programme-card p {
  line-height: 1.72;
  color: #e2e9ed;
}
.programme-card .programme-rule {
  border-top: 1px solid #ffffff42;
  margin-top: 24px;
  padding-top: 20px;
  font-size: 0.77rem;
  color: var(--gold-pale);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.programme-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.programme-panel .programme-image {
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.programme-panel .programme-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.programme-panel .programme-copy {
  padding: 110px 7vw;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.programme-panel.reverse .programme-image {
  order: 2;
}
.programme-panel.dark .programme-copy {
  background: var(--navy);
  color: #fff;
}
.programme-panel.dark .programme-copy > p {
  color: #d3dde2;
}
.programme-panel.dark .plain-list {
  color: #d3dde2;
}
.programme-panel.dark .micro {
  color: #bdc9cf;
}
.event-journey-intro {
  max-width: 640px;
  margin: 0.4rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}
.event-journey {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}
.event-journey article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.event-journey article > span {
  padding-top: 0.2rem;
  color: #8d6d24;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.event-journey h3 {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.18;
}
.event-journey p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
}
.money-route {
  margin-top: 28px;
  padding: 26px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
}
.programme-panel.dark .money-route {
  background: #ffffff0c;
}
.money-route span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  color: #8d6d24;
}
.programme-panel.dark .money-route span {
  color: var(--gold-pale);
}
.money-route strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0.55rem 0;
}
.money-route p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}
.programme-panel.dark .money-route p {
  color: #cbd5da;
}
.discipline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 55px;
}
.discipline-intro {
  margin-top: 1.5rem;
}
.discipline-card {
  background: var(--paper);
  color: var(--ink);
  padding: 28px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.discipline-card > span {
  color: #8d6d24;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.discipline-card h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.08;
  margin: auto 0 0.8rem;
}
.statement .discipline-card p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Mission Control */
.mission-control-preview {
  position: relative;
  padding: 115px 7vw;
  background:
    linear-gradient(90deg, rgba(3, 18, 29, 0.97), rgba(3, 18, 29, 0.8)),
    url("../images/ridge.jpg") center/cover;
  color: #fff;
}
.mission-control-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
}
.mission-control-preview h2 {
  font-family: var(--serif);
  font-size: clamp(3.8rem, 6.5vw, 7.2rem);
  font-weight: 400;
  line-height: 0.94;
  margin: 0.5rem 0;
}
.mission-control-preview p {
  line-height: 1.75;
  color: #d7e0e5;
  max-width: 760px;
}
.control-readout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #ffffff29;
}
.control-readout div {
  padding: 24px;
  background: rgba(3, 18, 29, 0.84);
}
.control-readout span {
  display: block;
  color: var(--gold-pale);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.control-readout strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-top: 0.55rem;
}
.mission-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 58px;
}
.mission-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mission-card-image {
  height: 360px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.mission-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.mission-card:hover .mission-card-image img {
  transform: scale(1.025);
}
.mission-card-status {
  position: absolute;
  left: 22px;
  top: 22px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mission-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mission-card h3 {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  margin: 0.6rem 0;
}
.mission-card p {
  line-height: 1.7;
  color: var(--muted);
}
.mission-card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  margin: 18px 0 28px;
}
.mission-card-meta div {
  background: var(--paper);
  padding: 16px;
}
.mission-card-meta span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8d6d24;
}
.mission-card-meta strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.86rem;
}
.mission-card .actions {
  margin-top: auto;
}
.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-indicator:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 168, 77, 0.16);
}
.status-indicator.is-live:before {
  background: #c84338;
  box-shadow: 0 0 0 5px rgba(200, 67, 56, 0.18);
}
.garmin-shell {
  height: 610px;
  margin-top: 26px;
  background: #e6e1d8;
  overflow: hidden;
  border: 1px solid var(--line);
}
.garmin-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.garmin-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: linear-gradient(135deg, #ece7de, #ddd4c5);
}
.garmin-placeholder h3 {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  margin: 0.5rem 0;
}
.garmin-placeholder p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.7;
}
.section > .timeline {
  padding: 45px 0 0;
}

/* Partners and support */
.partner-disciplines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 58px;
}
.partner-discipline {
  background: #fff;
  padding: 36px;
  min-height: 280px;
}
.partner-discipline:nth-child(2),
.partner-discipline:nth-child(5) {
  background: var(--navy);
  color: #fff;
}
.partner-discipline span {
  color: #8d6d24;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
}
.partner-discipline:nth-child(2) span,
.partner-discipline:nth-child(5) span {
  color: var(--gold-pale);
}
.partner-discipline h3 {
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 400;
  margin: 0.9rem 0;
}
.partner-discipline p {
  line-height: 1.7;
  color: var(--muted);
}
.partner-discipline:nth-child(2) p,
.partner-discipline:nth-child(5) p {
  color: #d2dce1;
}
.support-routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.support-route {
  padding: 38px;
  background: #fff;
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
  min-height: 520px;
}
.support-route:nth-child(2) {
  background: var(--navy);
  color: #fff;
}
.support-route h2 {
  font-size: 3.15rem;
}
.support-route p {
  line-height: 1.7;
  color: var(--muted);
}
.support-route:nth-child(2) p {
  color: #d3dde2;
}
.support-route .route {
  margin: 20px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.support-route:nth-child(2) .route {
  border-color: #ffffff32;
  color: var(--gold-pale);
}
.support-route .actions {
  margin-top: auto;
}
.distinction-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 55px;
  background: #fff;
}
.distinction-table th,
.distinction-table td {
  padding: 22px;
  text-align: left;
  border: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.6;
}
.distinction-table th {
  background: var(--navy);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
}
.distinction-table td:first-child {
  font-family: var(--serif);
  font-size: 1.5rem;
}

/* Badge and funding routes */
.badge-system-section {
  background: var(--paper);
}
.badge-guide {
  margin: 58px 0 0;
  background: var(--navy-deep);
  border: 1px solid rgba(201, 168, 77, 0.6);
  box-shadow: 0 28px 70px rgba(3, 18, 29, 0.15);
}
.badge-guide img {
  display: block;
  width: 100%;
  height: auto;
}
.badge-guide figcaption {
  padding: 14px 18px;
  color: #cbd5da;
  font-size: 0.72rem;
  line-height: 1.6;
  border-top: 1px solid #ffffff20;
}
.badge-distinction {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 34px;
}
.badge-rule {
  background: #fff;
  padding: 34px;
  min-height: 290px;
}
.badge-rule.accent {
  background: var(--navy);
  color: #fff;
}
.badge-rule span,
.partner-levels span,
.support-choice > span {
  display: block;
  color: #8d6d24;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
}
.badge-rule.accent span {
  color: var(--gold-pale);
}
.badge-rule h3,
.support-choice h3 {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.04;
  margin: 0.85rem 0;
}
.badge-rule p,
.support-choice p {
  line-height: 1.72;
  color: var(--muted);
}
.badge-rule.accent p {
  color: #d2dce1;
}
.partner-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 34px;
  padding: 0;
  list-style: none;
}
.partner-level-title {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  margin: 42px 0 -18px;
}
.partner-levels li {
  background: #fff;
  padding: 27px;
  min-height: 230px;
}
.partner-levels li:last-child {
  background: var(--navy);
  color: #fff;
}
.partner-levels li:last-child span {
  color: var(--gold-pale);
}
.partner-levels strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0.6rem 0;
}
.partner-levels p {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--muted);
}
.partner-levels li:last-child p {
  color: #d2dce1;
}
.badge-note {
  max-width: 900px;
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.7;
}
.forged-rules {
  grid-template-columns: repeat(4, 1fr);
}
.forged-badge-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding: 28px;
  border-left: 3px solid var(--gold);
  background: #fff;
}
.forged-badge-cta p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}
.support-choice-section {
  background: var(--cream);
}
.support-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 54px;
}
.support-choice {
  padding: 42px;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 4px solid var(--gold);
  background: #fff;
}
.support-choice.mission-fund {
  background: var(--navy);
  color: #fff;
}
.support-choice.mission-fund > span {
  color: var(--gold-pale);
}
.support-choice.mission-fund p {
  color: #d2dce1;
}
.support-choice .btn {
  margin-top: auto;
}

/* Founders, contact and calls to action */
.founder-editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 760px;
  background: #fff;
}
.founder-editorial.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.founder-editorial.reverse .founder-photo {
  order: 2;
}
.founder-photo {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--navy);
}
.founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-photo.portrait img {
  object-position: center 22%;
}
.founder-copy {
  padding: 110px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.founder-copy h2 {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.96;
  margin: 0.55rem 0;
}
.founder-copy p {
  line-height: 1.78;
  color: var(--muted);
}
.founder-quote {
  font-family: var(--serif);
  font-size: 2rem !important;
  line-height: 1.25 !important;
  color: var(--ink) !important;
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin-top: 22px;
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  margin-top: 55px;
}
.contact-option {
  background: #fff;
  padding: 34px;
  min-height: 260px;
}
.contact-option h3 {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  margin: 0.8rem 0;
}
.contact-option p {
  line-height: 1.7;
  color: var(--muted);
}
.contact-option a {
  font-weight: 800;
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta-band {
  padding: 95px 7vw;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 6vw;
  align-items: end;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 1;
  margin: 0.4rem 0;
}
.cta-band p {
  max-width: 760px;
  line-height: 1.72;
}
.cta-band .actions {
  justify-content: flex-end;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 6vw;
  background: var(--navy-deep);
  padding: 70px 7vw;
  color: #fff;
}
.site-footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 22px;
}
.site-footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid #ffffff4d;
}
.site-footer-brand b {
  display: block;
  letter-spacing: 0.15em;
  font-size: 0.82rem;
}
.site-footer-brand span span {
  display: block;
  margin-top: 5px;
  color: #b9c6cd;
  font-size: 0.72rem;
}
.site-footer p {
  color: #aebdc5;
  line-height: 1.7;
  max-width: 490px;
  font-size: 0.88rem;
}
.site-footer h2 {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-pale);
  margin: 0 0 18px;
}
.site-footer nav {
  display: grid;
  gap: 11px;
}
.site-footer nav a {
  text-decoration: none;
  color: #dbe3e7;
  font-size: 0.87rem;
}
.site-footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid #ffffff24;
  margin-top: 20px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: #8fa0aa;
}

/* V8 home page */
.hero.v8-home:after {
  background: linear-gradient(
    90deg,
    rgba(1, 12, 20, 0.92),
    rgba(1, 12, 20, 0.25) 68%,
    rgba(1, 12, 20, 0.06)
  );
}
.hero.v8-home .hero-copy {
  max-width: 1060px;
}
.hero.v8-home h1 {
  font-size: clamp(4.5rem, 8.3vw, 9rem);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-kicker:before {
  content: "";
  width: 45px;
  height: 1px;
  background: var(--gold);
}
.purpose-lockup {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  line-height: 1.05;
  margin: 35px 0;
  color: var(--ink);
}
.purpose-lockup em {
  display: block;
  font-style: normal;
  color: #8d6d24;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: #fff;
}
.trust-strip div {
  padding: 27px;
  border-right: 1px solid #ffffff20;
}
.trust-strip div:last-child {
  border-right: 0;
}
.trust-strip span {
  display: block;
  color: var(--gold-pale);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.57rem;
}
.trust-strip strong {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 400;
}

@media (max-width: 1280px) {
  .topbar nav {
    gap: 11px;
  }
  .topbar nav a {
    font-size: 0.56rem;
  }
  .brand small {
    display: none;
  }
}
@media (max-width: 1040px) {
  .topbar {
    padding: 0 24px;
  }
  .topbar nav {
    display: none;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    height: calc(100vh - 86px);
    overflow: auto;
    background: var(--navy);
    padding: 35px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .topbar nav.open {
    display: flex;
  }
  .topbar nav a {
    width: 100%;
    padding: 13px 0 !important;
    font-size: 0.76rem;
    border-bottom: 1px solid #ffffff1d;
  }
  .topbar nav a:after {
    display: none;
  }
  .topbar nav .pill {
    width: auto;
    margin-top: 10px;
  }
  .nav-toggle {
    display: block;
  }
  .editorial-intro,
  .mission-control-preview-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }
  .programme-panel,
  .founder-editorial,
  .founder-editorial.reverse {
    grid-template-columns: 1fr;
  }
  .programme-panel.reverse .programme-image,
  .founder-editorial.reverse .founder-photo {
    order: 0;
  }
  .programme-panel .programme-copy,
  .founder-copy {
    padding: 90px 7vw;
  }
  .programme-grid,
  .mission-list {
    grid-template-columns: 1fr;
  }
  .programme-card {
    min-height: 600px;
  }
  .why-how-what,
  .support-routes,
  .support-choice-grid {
    grid-template-columns: 1fr;
  }
  .why-how-what article,
  .support-route,
  .support-choice {
    min-height: auto;
  }
  .flow-line {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-line div:nth-child(2n) {
    border-right: 0;
  }
  .flow-line div:last-child {
    grid-column: span 2;
  }
  .partner-disciplines,
  .contact-options {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer > div:first-child {
    grid-column: 1/-1;
  }
  .cta-band .actions {
    justify-content: flex-start;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip div:nth-child(2) {
    border-right: 0;
  }
  .discipline-grid {
    grid-template-columns: 1fr 1fr;
  }
  .discipline-card {
    min-height: 210px;
  }
  .badge-distinction,
  .forged-rules,
  .partner-levels {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .brand span {
    display: grid;
  }
  .brand small {
    display: none;
  }
  .brand b {
    font-size: 0.68rem;
  }
  .brand img {
    width: 50px;
    height: 50px;
  }
  .hero-copy,
  .page-hero-copy {
    padding-left: 20px;
    padding-right: 20px;
  }
  .page-hero {
    min-height: 78vh;
  }
  .page-hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }
  .section,
  .statement,
  .mission-control-preview,
  .programme-panel .programme-copy,
  .founder-copy,
  .cta-band {
    padding-left: 20px;
    padding-right: 20px;
  }
  .editorial-intro {
    display: block;
  }
  .chapter-number {
    margin-bottom: 45px;
  }
  .programme-card {
    min-height: 560px;
  }
  .programme-card-copy {
    padding: 28px;
  }
  .programme-card h3 {
    font-size: 3.2rem;
  }
  .flow-line {
    grid-template-columns: 1fr;
  }
  .flow-line div,
  .flow-line div:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid #ffffff32;
  }
  .flow-line div:last-child {
    grid-column: auto;
    border-bottom: 0;
  }
  .partner-disciplines,
  .contact-options {
    grid-template-columns: 1fr;
  }
  .discipline-grid {
    grid-template-columns: 1fr;
  }
  .mission-card-image {
    height: 280px;
  }
  .mission-card-body {
    padding: 24px;
  }
  .mission-card-meta {
    grid-template-columns: 1fr;
  }
  .garmin-shell {
    height: 520px;
  }
  .garmin-placeholder {
    padding: 28px;
  }
  .garmin-placeholder h3 {
    font-size: 2.3rem;
  }
  .badge-distinction,
  .forged-rules,
  .partner-levels {
    grid-template-columns: 1fr;
  }
  .badge-rule,
  .partner-levels li {
    min-height: auto;
    padding: 26px;
  }
  .forged-badge-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .support-choice {
    padding: 30px;
  }
  .badge-guide {
    margin-top: 36px;
  }
  .badge-guide figcaption {
    font-size: 0.66rem;
  }
  .distinction-table,
  .distinction-table tbody,
  .distinction-table tr,
  .distinction-table th,
  .distinction-table td {
    display: block;
  }
  .distinction-table thead {
    display: none;
  }
  .distinction-table tr {
    border: 1px solid var(--line);
    margin-bottom: 15px;
  }
  .distinction-table td {
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .distinction-table td:before {
    content: attr(data-label);
    display: block;
    color: #8d6d24;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 800;
    margin-bottom: 0.4rem;
  }
  .site-footer {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }
  .site-footer > div:first-child {
    grid-column: auto;
  }
  .site-footer-bottom {
    grid-column: auto;
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid #ffffff20;
  }
  .trust-strip div:last-child {
    border-bottom: 0;
  }
  .control-readout {
    grid-template-columns: 1fr;
  }
  .support-route {
    padding: 30px;
  }
  .support-route h2 {
    font-size: 2.8rem;
  }
  .founder-photo {
    min-height: 520px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .programme-card > img,
  .mission-card-image img,
  .btn,
  .pill {
    transition: none !important;
    transform: none !important;
  }
}

/* Interactive Mission Map */
.mission-map-section {
  background: var(--cream);
}
.mission-map-section .map-grid {
  align-items: stretch;
}
.mission-map-section .map-copy {
  align-self: center;
}
.mission-map-section #mission-map {
  min-height: 650px;
  border: 1px solid rgba(4, 19, 31, 0.14);
  box-shadow: 0 28px 70px rgba(4, 19, 31, 0.13);
  background: #dfe3df;
  z-index: 1;
}
.mission-map-section .map-note {
  max-width: 38rem;
  margin-top: 1.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  line-height: 1.65;
  color: var(--muted);
}
.map-loading,
.map-unavailable > div {
  display: grid;
  place-content: center;
  height: 100%;
  min-height: 650px;
  margin: 0;
  padding: 3rem;
  text-align: center;
  color: var(--navy);
}
.map-unavailable strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}
.map-unavailable p {
  margin: 0.65rem 0 0;
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  color: var(--navy);
}
.leaflet-popup-content {
  font-family: var(--sans);
  line-height: 1.55;
}
.leaflet-popup-content strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}
.leaflet-popup-content a {
  color: #8d6d24;
  font-weight: 700;
}
@media (max-width: 980px) {
  .mission-map-section #mission-map,
  .map-loading,
  .map-unavailable > div {
    min-height: 560px;
  }
}
@media (max-width: 620px) {
  .mission-map-section #mission-map,
  .map-loading,
  .map-unavailable > div {
    min-height: 500px;
    height: 500px;
  }
}
