:root {
  --ink: #13281d;
  --ink-deep: #0b1b12;
  --forest: #1d4330;
  --forest-light: #2f6647;
  --cream: #f4f0e6;
  --paper: #fffdf7;
  --lime: #d8ff45;
  --coral: #ff6b45;
  --sky: #a9d6e5;
  --white: #ffffff;
  --muted: #66736a;
  --line: rgba(19, 40, 29, 0.18);
  --heading: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 4.75rem);
  --radius-sm: 0.8rem;
  --radius-md: 1.4rem;
  --radius-lg: 2rem;
  --shadow: 0 24px 70px rgba(6, 20, 12, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink-deep);
  background: var(--lime);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.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;
  z-index: 2000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink-deep);
  background: var(--lime);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 1500;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--lime);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 6rem;
  padding: 0 var(--page-pad);
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: height 250ms ease, background-color 250ms ease, border-color 250ms ease,
    box-shadow 250ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  height: 4.9rem;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(11, 27, 18, 0.94);
  box-shadow: 0 8px 32px rgba(4, 13, 8, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 44px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--ink-deep);
  background: var(--lime);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.brand-mark svg {
  width: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--heading);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 0.35rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.2rem);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 0.75rem 0;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: var(--ink-deep);
  background: var(--lime);
  border-radius: 999px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.nav-cta svg,
.text-link svg,
.button svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.42rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  min-height: max(52rem, 100svh);
  padding: clamp(8rem, 13vh, 10.5rem) var(--page-pad) clamp(6rem, 9vh, 8rem);
  overflow: hidden;
  color: var(--cream);
  background: var(--ink-deep);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -15rem;
  width: min(50rem, 70vw);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(74, 154, 105, 0.36), transparent 68%);
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(216, 255, 69, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 5%;
  right: 17%;
  width: 42rem;
  height: 42rem;
}

.orbit-two {
  top: 18%;
  right: 9%;
  width: 30rem;
  height: 30rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 52rem);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  color: var(--forest-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--lime);
}

.eyebrow::before,
.section-kicker::before {
  display: inline-block;
  width: 1.8rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.hero-title {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(6rem, 12vw, 12.5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.67;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title span:nth-child(2) {
  margin-left: clamp(1.5rem, 5vw, 5rem);
}

.hero-title span:nth-child(3) {
  margin-left: clamp(0.5rem, 2vw, 1.8rem);
}

.outline-word {
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
}

.accent-dot {
  display: inline !important;
  color: var(--coral);
}

.hero-intro {
  width: min(100%, 39rem);
  margin: clamp(2.5rem, 5vh, 4rem) 0 2rem;
  color: rgba(244, 240, 230, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.7;
}

.hero-intro strong {
  color: var(--cream);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.35rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease,
    color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink-deep);
  background: var(--lime);
  box-shadow: 0 10px 30px rgba(216, 255, 69, 0.16);
}

.button-primary:hover {
  background: var(--white);
  box-shadow: 0 14px 38px rgba(216, 255, 69, 0.22);
}

.button-ghost {
  color: var(--cream);
  border-color: rgba(244, 240, 230, 0.35);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover {
  color: var(--ink-deep);
  border-color: var(--cream);
  background: var(--cream);
}

.hero-visual {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 32rem);
  transform: rotate(2.5deg);
}

.route-poster {
  position: relative;
  padding: 1.3rem;
  color: var(--ink-deep);
  background: var(--lime);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 1.2rem 1.2rem 0 var(--coral), 0 34px 80px rgba(0, 0, 0, 0.35);
}

.route-poster::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(19, 40, 29, 0.17) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  content: "";
  opacity: 0.35;
  pointer-events: none;
}

.poster-topline,
.poster-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.poster-topline {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(19, 40, 29, 0.35);
}

.poster-route {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0.4rem 0;
  overflow: visible;
}

.poster-path-shadow,
.poster-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.poster-path-shadow {
  stroke: rgba(19, 40, 29, 0.12);
  stroke-width: 20;
}

.poster-path {
  stroke: var(--ink-deep);
  stroke-width: 5;
  stroke-dasharray: 2 13;
}

.poster-stop circle {
  fill: var(--cream);
  stroke: var(--ink-deep);
  stroke-width: 4;
}

.poster-stop text {
  fill: var(--ink-deep);
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 900;
  text-anchor: middle;
}

.poster-stop.stop-5 circle {
  fill: var(--coral);
}

.poster-label {
  fill: var(--ink-deep);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.poster-stamp {
  position: absolute;
  z-index: 2;
  right: 1.7rem;
  bottom: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 6.1rem;
  height: 6.1rem;
  color: var(--cream);
  background: var(--ink-deep);
  border-radius: 50%;
  line-height: 0.8;
  transform: rotate(8deg);
}

.poster-stamp strong {
  font-family: var(--heading);
  font-size: 2.45rem;
  font-weight: 900;
}

.poster-stamp span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-footer {
  justify-content: flex-start;
  gap: 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(19, 40, 29, 0.35);
}

.poster-footer i {
  width: 4px;
  height: 4px;
  background: var(--coral);
  border-radius: 50%;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
}

.hero-scroll i {
  position: relative;
  width: 1px;
  height: 2.7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.hero-scroll i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--lime);
  content: "";
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(200%);
  }
}

.section {
  position: relative;
  padding: clamp(6rem, 11vw, 10rem) var(--page-pad);
}

.section-index {
  position: absolute;
  top: 2rem;
  right: var(--page-pad);
  color: rgba(19, 40, 29, 0.08);
  font-family: var(--heading);
  font-size: clamp(6rem, 13vw, 12rem);
  font-weight: 900;
  line-height: 1;
}

.section-index-right {
  top: 1rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
  gap: 3rem clamp(3rem, 8vw, 9rem);
  background: var(--cream);
}

.intro-heading,
.intro-copy,
.facts {
  position: relative;
  z-index: 1;
}

.intro h2,
.map-section h2,
.stations h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(4rem, 7.2vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
}

h2 em {
  color: var(--coral);
  font-weight: 800;
}

.intro-copy {
  align-self: end;
  max-width: 38rem;
}

.intro-copy .lead {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.5;
}

.intro-copy > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.fact {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 14rem;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--paper);
}

.fact-number {
  font-family: var(--heading);
  font-size: clamp(4rem, 6vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.fact-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.fact-accent {
  background: var(--lime);
}

.fact-dark {
  color: var(--cream);
  background: var(--ink);
}

.fact-dark svg {
  width: 4.2rem;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.5;
}

.map-section {
  overflow: hidden;
  color: var(--cream);
  background: var(--forest);
}

.map-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 65%);
  opacity: 0.3;
  pointer-events: none;
}

.map-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.55fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-kicker-light {
  color: var(--lime);
}

.map-section h2 em,
.final-cta h2 em {
  color: var(--lime);
}

.map-heading-copy {
  max-width: 32rem;
  justify-self: end;
}

.map-heading-copy p {
  color: rgba(244, 240, 230, 0.7);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.2rem;
  color: var(--lime);
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link:hover svg {
  transform: translate(2px, -2px);
}

.text-link svg {
  transition: transform 180ms ease;
}

.route-explorer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(19rem, 0.72fr) minmax(0, 1.55fr);
  min-height: 42rem;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(4, 19, 10, 0.3);
}

.route-sidebar {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.4rem;
  border-right: 1px solid var(--line);
}

.route-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0.25rem 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-item {
  position: relative;
  display: flex;
  flex: 1;
  align-items: stretch;
  min-height: 5.6rem;
}

.route-item:not(:last-child)::before {
  position: absolute;
  z-index: 0;
  top: 3.4rem;
  bottom: -1rem;
  left: 1.45rem;
  width: 2px;
  background-image: linear-gradient(var(--line) 45%, transparent 45%);
  background-size: 2px 9px;
  content: "";
}

.route-button {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.65rem 0.3rem;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  cursor: pointer;
}

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

.route-number {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 900;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.route-name {
  display: block;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.25;
}

.route-place {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.route-arrow {
  color: var(--muted);
  font-size: 1.1rem;
  transition: color 180ms ease, transform 180ms ease;
}

.route-button:hover .route-number,
.route-button[aria-current="true"] .route-number {
  background: var(--lime);
  transform: scale(1.05);
}

.route-button:hover .route-arrow,
.route-button[aria-current="true"] .route-arrow {
  color: var(--ink);
  transform: translateX(3px);
}

.route-google-button {
  width: 100%;
  margin-top: 1rem;
}

.map-wrap {
  position: relative;
  min-width: 0;
  min-height: 42rem;
  overflow: hidden;
  background: #dce3d5;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 42rem;
  background: #dce3d5;
}

.map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-badge {
  position: absolute;
  z-index: 500;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.85rem;
  color: var(--ink-deep);
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid rgba(19, 40, 29, 0.12);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(19, 40, 29, 0.12);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.pulse-dot {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--forest-light);
  border-radius: 50%;
}

.pulse-dot::after {
  position: absolute;
  inset: -4px;
  border: 1px solid var(--forest-light);
  border-radius: 50%;
  content: "";
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  from {
    opacity: 0.8;
    transform: scale(0.7);
  }
  to {
    opacity: 0;
    transform: scale(1.7);
  }
}

.map-note {
  position: absolute;
  z-index: 500;
  right: 1rem;
  bottom: 0.7rem;
  max-width: calc(100% - 2rem);
  margin: 0;
  padding: 0.42rem 0.65rem;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.9);
  border-radius: 0.4rem;
  font-size: 0.6rem;
  font-weight: 600;
  line-height: 1.35;
  pointer-events: none;
}

.map-fallback {
  position: absolute;
  z-index: 600;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 2rem;
  color: var(--ink);
  background: var(--cream);
  text-align: center;
}

.leaflet-container {
  font-family: var(--body);
}

.leaflet-tile-pane {
  filter: saturate(0.58) sepia(0.08) contrast(0.93) brightness(1.06);
}

.leaflet-control-attribution {
  padding: 0.15rem 0.35rem !important;
  color: var(--muted) !important;
  background: rgba(255, 253, 247, 0.9) !important;
  font-size: 9px !important;
}

.leaflet-control-attribution a {
  color: var(--forest) !important;
}

.leaflet-control-zoom {
  overflow: hidden;
  border: 0 !important;
  border-radius: 0.7rem !important;
  box-shadow: 0 8px 24px rgba(19, 40, 29, 0.18) !important;
}

.leaflet-control-zoom a {
  color: var(--ink) !important;
  background: var(--paper) !important;
  border-color: var(--line) !important;
}

.route-marker-wrap {
  background: transparent;
  border: 0;
}

.route-marker {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  color: var(--ink-deep);
  background: var(--lime);
  border: 3px solid var(--ink-deep);
  border-radius: 50% 50% 50% 8%;
  box-shadow: 0 6px 16px rgba(11, 27, 18, 0.28);
  font-family: var(--heading);
  font-size: 1.25rem;
  font-weight: 900;
  transform: rotate(-45deg);
  transition: background-color 180ms ease, transform 180ms ease;
}

.route-marker span {
  transform: rotate(45deg);
}

.route-marker.is-active {
  background: var(--coral);
  transform: rotate(-45deg) scale(1.17);
}

.leaflet-popup-content-wrapper {
  color: var(--ink);
  background: var(--paper);
  border-radius: 0.9rem;
  box-shadow: 0 14px 44px rgba(11, 27, 18, 0.22);
}

.leaflet-popup-content {
  min-width: 12rem;
  margin: 1rem 1.1rem;
  line-height: 1.4;
}

.leaflet-popup-content strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 0.9rem;
}

.leaflet-popup-content span {
  color: var(--muted);
  font-size: 0.72rem;
}

.leaflet-popup-tip {
  background: var(--paper);
}

.stations {
  overflow: hidden;
  background: var(--cream);
}

.stations-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
  gap: 2rem 5rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.stations-heading .section-kicker,
.stations-heading h2 {
  grid-column: 1;
}

.stations-heading h2 {
  grid-row: 2;
}

.stations-heading > p:last-child {
  grid-column: 2;
  grid-row: 2;
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
}

.station-swipe-hint {
  display: none;
}

.station-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 1rem;
  padding-bottom: 3.5rem;
}

.station-card {
  position: relative;
  grid-column: auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 30rem;
  padding: clamp(1.2rem, 1.6vw, 1.65rem);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.station-card:nth-child(even) {
  margin-top: 3.5rem;
}

.station-card:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-8px) rotate(-0.5deg);
}

.station-card-wide {
  grid-column: auto;
}

.station-card-dark {
  color: var(--cream);
  background: var(--ink);
}

.station-card-finish {
  background: var(--lime);
}

.station-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.station-no {
  font-family: var(--heading);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.station-tag {
  padding: 0.4rem 0.7rem;
  color: var(--ink-deep);
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.station-tag-coral {
  background: var(--coral);
}

.station-tag-light {
  background: var(--cream);
}

.station-tag-dark {
  color: var(--cream);
  background: var(--ink);
}

.station-icon {
  display: grid;
  place-items: center;
  width: clamp(6.6rem, 8vw, 8rem);
  height: clamp(6.6rem, 8vw, 8rem);
  margin: clamp(2rem, 3vw, 3rem) auto 2rem;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  transform: rotate(-4deg);
}

.station-icon svg {
  width: 54%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.station-icon-coral {
  background: var(--coral);
  transform: rotate(5deg);
}

.station-icon-light {
  color: var(--ink);
  background: var(--cream);
}

.station-icon-dark {
  color: var(--lime);
  background: var(--ink);
}

.station-content {
  margin-top: auto;
}

.station-place {
  margin-bottom: 0.55rem;
  color: var(--forest-light);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.station-card-dark .station-place {
  color: var(--lime);
}

.station-card-finish .station-place {
  color: var(--ink);
  opacity: 0.65;
}

.station-content h3 {
  margin-bottom: 0.55rem;
  font-family: var(--heading);
  font-size: clamp(1.75rem, 2.25vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.95;
  text-transform: uppercase;
}

.station-content > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.station-card-dark .station-content > p:last-child {
  color: rgba(244, 240, 230, 0.68);
}

.station-card-finish .station-content > p:last-child {
  color: rgba(19, 40, 29, 0.7);
}

.safety-strip {
  display: grid;
  grid-template-columns: auto minmax(20rem, 1.2fr) minmax(18rem, 0.8fr);
  align-items: center;
  gap: 2rem clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 5rem) var(--page-pad);
  color: var(--ink-deep);
  background: var(--coral);
}

.safety-icon {
  width: clamp(5rem, 8vw, 7.5rem);
}

.safety-icon svg {
  fill: none;
  stroke: var(--ink-deep);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.safety-strip .section-kicker {
  margin-bottom: 0.75rem;
  color: var(--ink-deep);
}

.safety-strip h2 {
  max-width: 54rem;
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2.3rem, 4.5vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.92;
  text-transform: uppercase;
}

.safety-strip ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.83rem;
  font-weight: 700;
}

.safety-strip li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.4rem;
  border-bottom: 1px solid rgba(19, 40, 29, 0.22);
}

.safety-strip li::before {
  position: absolute;
  top: 1.15rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--ink-deep);
  border-radius: 50%;
  content: "";
}

.final-cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 48rem;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink-deep);
  text-align: center;
}

.final-cta::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(64rem, 90vw);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 255, 69, 0.12);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.final-cta-route {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.final-cta-route::before {
  position: absolute;
  top: 52%;
  left: 50%;
  width: min(48rem, 82vw);
  height: 11rem;
  border: 3px dashed rgba(216, 255, 69, 0.19);
  border-color: rgba(216, 255, 69, 0.19) transparent transparent;
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotate(-7deg);
}

.final-cta-route span {
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--lime);
  border-radius: 50%;
}

.final-cta-route span:nth-child(1) {
  top: 62%;
  left: 20%;
}

.final-cta-route span:nth-child(2) {
  top: 49%;
  left: 34%;
}

.final-cta-route span:nth-child(3) {
  top: 44%;
  left: 50%;
  background: var(--coral);
}

.final-cta-route span:nth-child(4) {
  top: 49%;
  left: 66%;
}

.final-cta-route span:nth-child(5) {
  top: 62%;
  left: 80%;
}

.final-cta > *:not(.final-cta-route) {
  position: relative;
  z-index: 1;
}

.final-cta .section-kicker {
  margin-top: auto;
}

.final-cta h2 {
  font-size: clamp(5rem, 10vw, 10rem);
}

.final-cta > p:not(.section-kicker) {
  max-width: 34rem;
  margin: 2rem auto 1.7rem;
  color: rgba(244, 240, 230, 0.68);
}

.button-large {
  min-height: 4rem;
  padding: 1rem 1.8rem;
  margin-bottom: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  align-items: center;
  gap: 1.5rem 3rem;
  padding: 2.2rem var(--page-pad);
  color: rgba(244, 240, 230, 0.68);
  background: #07120c;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.72rem;
}

.footer-brand {
  color: var(--cream);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-credit {
  grid-column: 2 / -1;
  justify-self: end;
  opacity: 0.55;
}

.reveal {
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title.reveal {
  transition-delay: 100ms;
}

.hero-intro.reveal {
  transition-delay: 180ms;
}

.hero-actions.reveal {
  transition-delay: 250ms;
}

.hero-visual.reveal {
  transform: translateY(2.4rem) rotate(2.5deg);
  transition-delay: 160ms;
}

.hero-visual.reveal.is-visible {
  transform: translateY(0) rotate(2.5deg);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.75fr);
  }

  .hero-title {
    font-size: clamp(5.2rem, 11.5vw, 8.2rem);
  }

  .route-poster {
    box-shadow: 0.8rem 0.8rem 0 var(--coral), 0 28px 65px rgba(0, 0, 0, 0.34);
  }

  .station-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: -1rem 0 1.25rem;
    color: var(--forest-light);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .station-swipe-hint span {
    color: var(--coral);
    font-size: 1.2rem;
  }

  .station-grid {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-inline: calc(var(--page-pad) * -1);
    padding: 0 var(--page-pad) 2rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--page-pad);
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--coral) transparent;
    scrollbar-width: thin;
  }

  .station-card,
  .station-card-wide,
  .station-card-finish {
    grid-column: auto;
    flex: 0 0 min(22rem, 74vw);
    min-height: 30rem;
    scroll-snap-align: center;
  }

  .station-card:nth-child(even) {
    margin-top: 1.75rem;
  }

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

  .safety-strip ul {
    grid-column: 2;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:first-of-type {
    display: none;
  }

  .footer-credit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 5.2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0.1rem;
    padding: 7.5rem var(--page-pad) 3rem;
    visibility: hidden;
    color: var(--cream);
    background: var(--ink-deep);
    opacity: 0;
    transform: translateY(-1rem);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav > a:not(.nav-cta) {
    width: 100%;
    padding: 0.35rem 0;
    font-family: var(--heading);
    font-size: clamp(3.4rem, 13vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 9rem;
    padding-bottom: 7rem;
  }

  .hero-content {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(5.7rem, 20vw, 10rem);
  }

  .hero-visual {
    justify-self: center;
    width: min(31rem, calc(100% - 1.3rem));
    margin-top: 1.5rem;
  }

  .orbit-one {
    top: 48%;
    right: -15rem;
  }

  .orbit-two {
    top: 52%;
    right: -7rem;
  }

  .hero-scroll {
    display: none;
  }

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

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

  .map-heading,
  .stations-heading {
    grid-template-columns: 1fr;
  }

  .map-heading-copy {
    justify-self: start;
  }

  .route-explorer {
    grid-template-columns: 1fr;
  }

  .route-sidebar {
    order: 2;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .map-wrap,
  #map {
    min-height: 31rem;
  }

  .stations-heading .section-kicker,
  .stations-heading h2,
  .stations-heading > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

}

@media (max-width: 640px) {
  :root {
    --page-pad: 1.15rem;
    --radius-lg: 1.35rem;
  }

  .brand-copy strong {
    font-size: 1.23rem;
  }

  .brand-copy small {
    font-size: 0.55rem;
  }

  .hero {
    gap: 2rem;
    padding-top: 7.8rem;
    padding-bottom: 5rem;
  }

  .eyebrow {
    max-width: 17rem;
    margin-bottom: 1rem;
    font-size: 0.63rem;
  }

  .hero-title {
    font-size: clamp(5.2rem, 26vw, 7.8rem);
    line-height: 0.7;
  }

  .hero-title span:nth-child(2) {
    margin-left: 1.2rem;
  }

  .hero-title span:nth-child(3) {
    margin-left: 0;
  }

  .outline-word {
    -webkit-text-stroke-width: 1.5px;
  }

  .hero-intro {
    margin-top: 2.4rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .route-poster {
    padding: 0.9rem;
    box-shadow: 0.55rem 0.55rem 0 var(--coral), 0 22px 50px rgba(0, 0, 0, 0.34);
  }

  .poster-stamp {
    right: 1.3rem;
    bottom: 3.7rem;
    width: 5rem;
    height: 5rem;
  }

  .poster-stamp strong {
    font-size: 2rem;
  }

  .poster-footer {
    gap: 0.35rem;
    font-size: 0.53rem;
    letter-spacing: 0.08em;
  }

  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .section-index {
    top: 1rem;
    font-size: 6.5rem;
  }

  .intro,
  .map-heading,
  .stations-heading {
    gap: 2rem;
  }

  .intro h2,
  .map-section h2,
  .stations h2 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }

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

  .fact {
    min-height: 10.5rem;
  }

  .route-explorer {
    border-radius: 1.1rem;
  }

  .route-sidebar {
    padding: 1rem;
  }

  .route-sidebar-head {
    font-size: 0.56rem;
  }

  .route-button {
    grid-template-columns: 3rem 1fr auto;
  }

  .map-wrap,
  #map {
    min-height: 26rem;
  }

  .map-note {
    right: 0.65rem;
    bottom: 1.5rem;
    max-width: calc(100% - 1.3rem);
  }

  .station-card,
  .station-card-wide,
  .station-card-finish {
    grid-column: auto;
    flex-basis: min(19rem, 84vw);
    min-height: 27rem;
  }

  .station-card:nth-child(even) {
    margin-top: 1.15rem;
  }

  .station-icon {
    width: 7.5rem;
    height: 7.5rem;
    margin-top: 2rem;
  }

  .safety-strip {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .safety-icon {
    width: 4.5rem;
  }

  .safety-strip ul {
    grid-column: 1;
  }

  .final-cta {
    min-height: 42rem;
  }

  .final-cta h2 {
    font-size: clamp(4.7rem, 22vw, 7rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-credit {
    grid-column: 1;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero-visual.reveal {
    opacity: 1;
    transform: none;
  }
}
