@font-face {
  font-family: "Hanken Grotesk";
  src: url("../fonts/hanken-grotesk-latin.a6b899943e31.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.65850a373e25.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/jetbrains-mono-latin.570751c5f8b4.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --surface: #091324;
  --surface-lowest: #040e1f;
  --surface-low: #111c2d;
  --surface-mid: #162031;
  --surface-high: #202a3c;
  --text: #d9e3fb;
  --text-soft: #d0c6ab;
  --text-muted: #999077;
  --border: #273246;
  --border-strong: #4d5668;
  --yellow: #ffd500;
  --yellow-soft: #ffe174;
  --green: #22c55e;
  --header: rgba(4, 14, 31, 0.93);
  --shadow: rgba(0, 0, 0, 0.24);
  --grid: rgba(77, 86, 104, 0.17);
  --max: 1280px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --header-height: 4.5rem;
  --heading: "Hanken Grotesk", "Arial Narrow", sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

:root[data-theme="light"] {
  color-scheme: light;
  --surface: #f7f9fb;
  --surface-lowest: #fff;
  --surface-low: #f2f4f6;
  --surface-mid: #eceef0;
  --surface-high: #e0e3e5;
  --text: #0f172a;
  --text-soft: #4d4632;
  --text-muted: #6d6758;
  --border: #cbd5e1;
  --border-strong: #7f8ca0;
  --yellow: #ffd500;
  --yellow-soft: #705d00;
  --green: #16a34a;
  --header: rgba(247, 249, 251, 0.94);
  --shadow: rgba(15, 23, 42, 0.12);
  --grid: rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1rem); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--text);
  font: 400 1rem/1.55 var(--body);
  text-rendering: optimizeLegibility;
  transition: background-color 180ms ease, color 180ms ease;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a, input, select, textarea { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
::selection { background: var(--yellow); color: #091324; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: var(--heading);
  line-height: 1.08;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(3rem, 7.6vw, 7.5rem); }
h2 { font-size: clamp(2rem, 4vw, 4.25rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2.2rem); }

.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: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: #091324;
  transform: translateY(-150%);
  font-family: var(--mono);
}
.skip-link:focus { transform: translateY(0); }
.page-grid { width: min(100% - (var(--gutter) * 2), var(--max)); margin-inline: auto; }
.data-label, .eyebrow, .route-code, .journey-meta, .article-meta, .journey-location,
.filters label, .section-index, .link-disclosure, .footer-legal {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow { color: var(--yellow-soft); margin-bottom: 0.8rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--border);
  background: var(--header);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.7rem;
  color: var(--text);
  font-family: var(--heading);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand span span { color: var(--yellow); }
.brand img { width: 2.35rem; height: 2.35rem; }
.site-nav { display: flex; align-items: stretch; height: 100%; gap: clamp(1.5rem, 3vw, 3.5rem); }
.site-nav a {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--text-soft);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 180ms ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--yellow-soft); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; justify-self: end; gap: 0.5rem; }
.icon-button {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface-low);
  color: var(--text);
  cursor: pointer;
}
.icon-button:hover { border-color: var(--yellow); color: var(--yellow); }
.icon-button svg { width: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: square; stroke-width: 1.8; }
.menu-toggle { display: none; }
.theme-icon--moon { display: none; }
:root[data-theme="light"] .theme-icon--sun { display: none; }
:root[data-theme="light"] .theme-icon--moon { display: block; }

main { min-height: 70vh; }
.coming-soon-page {
  background: #040e1f;
  color: #d9e3fb;
}
.coming-soon-page main { min-height: 100svh; }
.coming-soon {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #091324;
}
.coming-soon__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.08);
}
.coming-soon__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 14, 31, 0.97) 0%, rgba(4, 14, 31, 0.82) 46%, rgba(4, 14, 31, 0.25) 86%),
    linear-gradient(0deg, rgba(4, 14, 31, 0.94) 0%, transparent 48%, rgba(4, 14, 31, 0.5) 100%);
}
.coming-soon__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(217, 227, 251, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 227, 251, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}
.coming-soon__frame {
  display: grid;
  width: min(100% - (var(--gutter) * 2), var(--max));
  min-height: 100svh;
  margin-inline: auto;
  padding-block: clamp(1.25rem, 3vw, 2.75rem);
  grid-template-rows: auto 1fr auto;
}
.coming-soon__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand--coming-soon { color: #d9e3fb; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.brand--coming-soon img { width: clamp(2.5rem, 4vw, 3.25rem); height: auto; }
.coming-soon__status {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 0.65rem;
  color: #d0c6ab;
  font: 600 0.68rem/1.3 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.coming-soon__status span {
  width: 0.6rem;
  height: 0.6rem;
  border: 2px solid #22c55e;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.14);
}
.coming-soon__content {
  width: min(100%, 920px);
  padding-block: clamp(4rem, 12vh, 8rem);
  align-self: center;
}
.coming-soon__content .eyebrow { margin-bottom: 1rem; color: #ffe174; }
.coming-soon__content h1 {
  max-width: 900px;
  margin-bottom: 1.5rem;
  color: #f4f7ff;
  font-size: clamp(3.4rem, 8.5vw, 7.8rem);
  text-wrap: balance;
}
.coming-soon__content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 2rem;
  color: #d0c6ab;
  font-size: clamp(1.05rem, 1.65vw, 1.35rem);
}
.coming-soon__content .button { gap: 1rem; }
.coming-soon__route {
  position: relative;
  display: grid;
  padding-top: 0.1rem;
  grid-template-columns: repeat(4, 1fr);
  color: #d0c6ab;
}
.coming-soon__route::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  right: 0;
  left: 0;
  border-top: 1px dashed rgba(217, 227, 251, 0.42);
}
.coming-soon__route div { position: relative; display: grid; gap: 0.75rem; }
.coming-soon__route div:last-child { justify-items: end; text-align: right; }
.coming-soon__route div:nth-child(2), .coming-soon__route div:nth-child(3) { justify-items: center; text-align: center; }
.coming-soon__route span {
  position: relative;
  z-index: 1;
  width: 0.85rem;
  height: 0.85rem;
  border: 2px solid #ffd500;
  border-radius: 50%;
  background: #091324;
}
.coming-soon__route b {
  font: 600 0.66rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.home-hero, .article-hero {
  position: relative;
  min-height: min(860px, 88svh);
  overflow: hidden;
  background: var(--surface-lowest);
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 14, 31, 0.92) 0%, rgba(4, 14, 31, 0.69) 48%, rgba(4, 14, 31, 0.1) 78%),
              linear-gradient(0deg, rgba(4, 14, 31, 0.82), transparent 48%);
}
.home-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100% - (var(--gutter) * 2), var(--max));
  min-height: min(860px, 88svh);
  margin-inline: auto;
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.home-hero h1 { max-width: 920px; margin-bottom: 1.4rem; color: #f4f7ff; }
.hero-intro { max-width: 660px; margin-bottom: 2rem; color: #d0c6ab; font-size: clamp(1.05rem, 1.6vw, 1.35rem); }
.hero-actions { display: flex; width: min(100%, 780px); align-items: stretch; gap: 0.75rem; }
.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--yellow);
  border-radius: 2px;
  background: var(--yellow);
  color: #091324;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 rgba(255, 213, 0, 0.28); }
.button--outline { background: transparent; color: var(--text); border-color: var(--border-strong); }
.button--outline:hover { border-color: var(--yellow); box-shadow: none; color: var(--yellow-soft); }
.hero-search, .large-search {
  display: flex;
  flex: 1;
  min-width: 280px;
  align-items: center;
  border: 1px solid rgba(217, 227, 251, 0.34);
  border-radius: 2px;
  background: rgba(4, 14, 31, 0.72);
  color: var(--yellow);
}
.hero-search > span, .large-search > span { padding-left: 1rem; font: 600 0.8rem var(--mono); }
.hero-search input, .large-search input {
  width: 100%;
  min-width: 0;
  padding: 0.9rem 0.75rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: #f4f7ff;
  font-family: var(--mono);
  font-size: 0.76rem;
}
.hero-search input::placeholder, .large-search input::placeholder { color: #b7b09e; opacity: 1; }
.hero-search button { align-self: stretch; padding: 0 1rem; border: 0; border-left: 1px solid rgba(217, 227, 251, 0.28); background: transparent; color: #f4f7ff; font: 600 0.7rem var(--mono); text-transform: uppercase; cursor: pointer; }
.hero-search button:hover { color: var(--yellow); }
.hero-coordinate { position: absolute; z-index: 2; right: var(--gutter); bottom: 2rem; color: #d0c6ab; font: 500 0.65rem var(--mono); letter-spacing: 0.1em; }
.section-heading { max-width: 820px; margin-bottom: clamp(1.4rem, 3vw, 2.5rem); }
.section-heading h2 { margin-bottom: 0; }
.section-heading--compact { margin-bottom: 1.75rem; }
.section-heading--compact h2 { font-size: clamp(1.7rem, 2.6vw, 2.7rem); }
.experiences-section, .featured-section, .latest-section, .mode-section, .connections { padding-block: clamp(3rem, 6vw, 5.5rem); }
.featured-section, .latest-section, .mode-section, .connections { border-top: 1px solid var(--border); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.experience-tile { min-width: 0; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-lowest); }
.experience-image { display: block; aspect-ratio: 1.42; overflow: hidden; background: var(--surface-low); }
.experience-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.88) contrast(1.05); transition: transform 300ms ease, filter 200ms ease; }
.experience-tile:hover .experience-image img { transform: scale(1.025); filter: saturate(1) contrast(1.03); }
.experience-copy { padding: clamp(1rem, 2vw, 1.5rem); }
.experience-copy .journey-meta { min-height: 1rem; margin-bottom: 0.65rem; }
.experience-copy h3 { margin-bottom: 0.6rem; font-size: clamp(1.2rem, 2vw, 1.75rem); }
.experience-copy h3 a { text-decoration: none; }
.experience-copy h3 a:hover { color: var(--yellow-soft); }
.experience-copy .journey-location { margin-bottom: 0; }
.experiences-link { display: inline-block; margin-top: 1.5rem; }
.journey-list { border-top: 1px solid var(--border); }
.journey-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
  min-height: 320px;
  border-bottom: 1px solid var(--border);
}
.journey-image { position: relative; overflow: hidden; background: var(--surface-low); }
.journey-image::after { content: ""; position: absolute; inset: 0; border-right: 1px solid var(--border); pointer-events: none; }
.journey-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.86) contrast(1.06); transition: transform 800ms cubic-bezier(.2,.7,.1,1), filter 300ms ease; }
.journey-row:hover .journey-image img { transform: scale(1.035); filter: saturate(1) contrast(1.04); }
.journey-copy { display: flex; padding: clamp(1.35rem, 3vw, 2.5rem); flex-direction: column; justify-content: center; align-items: flex-start; background: var(--surface-lowest); }
.journey-meta { display: flex; margin-bottom: 1.15rem; color: var(--text-muted); gap: 1rem; flex-wrap: wrap; }
.journey-meta span:first-child { color: var(--yellow-soft); }
.journey-copy h3 { margin-bottom: 0.8rem; }
.journey-copy h3 a { text-decoration: none; }
.journey-copy h3 a:hover { color: var(--yellow-soft); }
.journey-copy > p:not(.journey-location) { max-width: 620px; color: var(--text-soft); }
.journey-location { margin-bottom: 1rem; color: var(--text-muted); }
.text-link { color: var(--yellow-soft); font: 600 0.73rem var(--mono); letter-spacing: 0.04em; text-decoration-line: underline; text-decoration-style: dotted; text-underline-offset: 0.35rem; text-transform: uppercase; }
.text-link span { display: inline-block; margin-left: 0.3rem; transition: transform 150ms ease; }
.text-link:hover span { transform: translateX(4px); }
.latest-section > .button { margin-top: 3rem; }
.mode-section { display: grid; grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr); gap: clamp(2rem, 5vw, 5rem); }
.mode-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.mode-grid a { display: grid; min-height: 150px; padding: 1.1rem; grid-template-columns: 1fr auto; grid-template-rows: 1fr auto; align-items: end; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface-lowest); font-family: var(--heading); font-size: clamp(1.05rem, 1.6vw, 1.45rem); text-decoration: none; }
.mode-icon { width: 2.4rem; height: 2.4rem; align-self: start; fill: none; stroke: var(--yellow-soft); stroke-width: 1.6; stroke-linecap: square; stroke-linejoin: miter; }
.mode-grid a > span { grid-column: 1; grid-row: 2; }
.mode-grid a b { grid-column: 2; grid-row: 2; color: var(--yellow); font-weight: 400; transition: transform 150ms ease; }
.mode-grid a:hover { background: var(--surface-low); color: var(--yellow-soft); }
.mode-grid a:hover b { transform: translateX(4px); }
.planning-cta { position: relative; overflow: hidden; padding-block: clamp(3rem, 7vw, 6rem); border-top: 1px solid var(--border); background: var(--surface-lowest); }
.planning-cta::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 24px 24px; }
.planning-cta .page-grid { position: relative; }
.planning-cta h2 { max-width: 850px; }
.planning-cta p:not(.eyebrow) { max-width: 650px; color: var(--text-soft); font-size: 1.15rem; }
.planning-cta .button { margin-top: 1rem; }

.grid-surface { position: relative; overflow: hidden; }
.grid-surface::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 24px 24px; mask-image: linear-gradient(to bottom, black, transparent); }
.page-hero { width: 100%; max-width: none; padding: calc(var(--header-height) + clamp(2.5rem, 5vw, 4.5rem)) var(--gutter) clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--border); }
.page-hero > * { width: min(100%, var(--max)); margin-left: auto; margin-right: auto; }
.page-hero h1 { max-width: var(--max); margin-bottom: 1rem; font-size: clamp(3.2rem, 8vw, 7rem); }
.page-hero > p:not(.eyebrow) { max-width: min(var(--max), 780px); margin-left: max(var(--gutter), calc((100% - var(--max)) / 2)); color: var(--text-soft); font-size: clamp(1.05rem, 1.8vw, 1.35rem); }
.explore-layout, .search-results { padding-block: clamp(2rem, 4vw, 4rem); }
.filters { display: flex; padding-bottom: 2.5rem; align-items: end; gap: 1rem; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.filters > div { display: grid; min-width: min(100%, 220px); gap: 0.5rem; }
.filters label { color: var(--text-muted); }
select, input, textarea {
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  background: var(--surface-lowest);
  color: var(--text);
}
.filters select { min-height: 3.25rem; padding: 0.7rem 2.6rem 0.7rem 0.9rem; }
.results-summary { padding: 1.5rem 0; color: var(--text-muted); }
.large-search { width: min(100%, 860px); min-height: 4.1rem; margin-top: 2rem; background: var(--surface-lowest); border-color: var(--border-strong); }
.large-search input { color: var(--text); font-size: 0.9rem; }
.large-search input::placeholder { color: var(--text-muted); }
.large-search .button { margin-right: 0.4rem; }
.empty-state { padding: 2.5rem 0; color: var(--text-soft); }
.empty-state h2 { margin-bottom: 0.5rem; }
.pagination { display: flex; padding-top: 2rem; align-items: center; justify-content: space-between; gap: 1rem; color: var(--text-muted); font: 600 0.72rem var(--mono); text-transform: uppercase; }
.pagination a { color: var(--yellow-soft); text-underline-offset: 0.3rem; }

.article-hero { min-height: max(500px, 62svh); }
.article-hero__content { position: relative; z-index: 2; display: flex; min-height: max(500px, 62svh); padding-top: calc(var(--header-height) + 1.5rem); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); flex-direction: column; justify-content: flex-end; align-items: flex-start; }
.article-hero h1 { max-width: 900px; margin: 0.7rem 0; color: #fff4d9; font-size: clamp(2.6rem, 5.8vw, 5.4rem); }
.article-hero__content > p { max-width: 720px; margin-bottom: 1rem; color: #d0c6ab; font-size: clamp(1rem, 1.4vw, 1.2rem); }
.breadcrumbs { display: flex; margin-bottom: auto; color: #d0c6ab; gap: 0.65rem; font: 500 0.66rem var(--mono); text-transform: uppercase; }
.breadcrumbs a { text-underline-offset: 0.3rem; }
.article-flags { display: flex; gap: 0.5rem; align-items: center; }
.status-label, .route-code { display: inline-flex; min-height: 1.8rem; padding: 0.3rem 0.6rem; align-items: center; border: 1px solid rgba(217, 227, 251, 0.4); border-radius: 2px; background: rgba(4, 14, 31, 0.74); color: #d9e3fb; font: 600 0.66rem var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.status-label { border-color: var(--green); background: var(--green); color: #04140a; }
.article-meta { display: flex; color: #d0c6ab; gap: 1.5rem; flex-wrap: wrap; }
.article-meta span + span::before { content: "//"; margin-right: 1.5rem; color: var(--yellow); }
.article-layout { display: grid; padding-block: clamp(1.5rem, 3vw, 3rem); grid-template-columns: minmax(0, 2fr) minmax(270px, 0.8fr); gap: clamp(1.5rem, 3.5vw, 3.5rem); align-items: start; }
.article-main { min-width: 0; }
.fact-board, .route-schematic { padding: clamp(1rem, 1.8vw, 1.5rem); border: 1px solid var(--border); background: var(--surface-low); }
.fact-board .section-heading, .route-schematic .section-heading { margin-bottom: 1rem; }
.fact-board .section-heading h2, .route-schematic .section-heading h2 { font-size: clamp(1.45rem, 2vw, 2rem); }
.fact-board dl { display: grid; margin: 0; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.fact-board dl div { padding-left: 0.8rem; border-left: 2px solid var(--yellow); }
.fact-board dt, .logistics-panel dt { color: var(--text-muted); font: 600 0.63rem var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.fact-board dd { margin: 0.4rem 0 0; font: 500 clamp(0.9rem, 1.4vw, 1.1rem) var(--mono); }
.article-section { display: grid; padding-block: clamp(1.25rem, 2vw, 2rem); grid-template-columns: 2rem minmax(0, 1fr); border-bottom: 1px solid var(--border); gap: clamp(0.75rem, 1.5vw, 1.25rem); }
.article-section h2 { margin-bottom: 0.6rem; font-size: clamp(1.6rem, 2.5vw, 2.65rem); }
.section-index { padding-top: 0.3rem; color: var(--yellow-soft); }
.rich-text, .article-section .rich-text { max-width: 760px; color: var(--text-soft); }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text a { color: var(--yellow-soft); text-underline-offset: 0.2rem; }
.rich-text li + li { margin-top: 0.45rem; }
.destination-page .editorial-heading { margin: 2rem 0 0.75rem; font-size: clamp(1.6rem, 2.5vw, 2.65rem); }
.editorial-image { margin: 1.5rem 0; }
.editorial-image img { width: 100%; max-height: 680px; object-fit: cover; }
.editorial-image figcaption { padding-top: 0.7rem; color: var(--text-muted); font: 500 0.68rem var(--mono); }
.editorial-callout { margin: 1.5rem 0; padding: 1rem 1.25rem; border-left: 3px solid var(--yellow); background: var(--surface-low); }
.editorial-callout p:last-child { margin-bottom: 0; font-size: 1.08rem; }
.route-schematic { margin-top: clamp(1.5rem, 2.5vw, 2.5rem); }
.route-schematic ol { position: relative; margin: 0; padding: 0; list-style: none; }
.route-schematic ol::before { content: ""; position: absolute; top: 0.8rem; bottom: 0.8rem; left: 0.42rem; border-left: 2px dotted var(--border-strong); }
.route-schematic li { position: relative; display: grid; min-height: 3.75rem; padding-left: 2.25rem; grid-template-columns: 1fr auto; gap: 0.75rem; }
.route-node { position: absolute; top: 0.25rem; left: 0; width: 0.95rem; height: 0.95rem; border: 2px solid var(--border-strong); border-radius: 50%; background: var(--surface-low); transition: border-color 250ms ease, background-color 250ms ease, transform 250ms ease; }
.route-node.is-active { border-color: var(--green); transform: scale(1.08); }
.route-schematic .is-highlight .route-node { border-color: var(--yellow); }
.route-schematic .is-highlight .route-node.is-active { background: var(--yellow); }
.route-schematic h3 { margin-bottom: 0.25rem; font: 600 1rem var(--mono); letter-spacing: 0.02em; }
.route-schematic .is-highlight h3 { color: var(--yellow-soft); }
.route-schematic li p { color: var(--text-soft); font-size: 0.9rem; }
.article-sidebar { position: sticky; top: calc(var(--header-height) + 1rem); }
.logistics-panel { padding: clamp(1rem, 1.8vw, 1.5rem); border: 1px solid var(--border); background: var(--surface-high); }
.logistics-panel h2 { margin-bottom: 0; font-size: clamp(1.45rem, 2vw, 1.8rem); }
.logistics-panel dl { margin: 1rem 0; border-top: 1px solid var(--border); }
.logistics-panel dl div { display: grid; padding: 0.65rem 0; grid-template-columns: 0.8fr 1.2fr; gap: 0.65rem; border-bottom: 1px solid var(--border); }
.logistics-panel dd { margin: 0; text-align: right; font: 500 0.78rem var(--mono); }
.external-links { display: grid; gap: 0.75rem; }
.link-disclosure { margin: -0.35rem 0 0.3rem; color: var(--text-muted); }
.affiliate-note { margin: 1rem 0 0; color: var(--text-muted); font-size: 0.76rem; }
.connections { margin-top: 0.5rem; }
.destination-page .connections { padding-block: clamp(2rem, 4vw, 3.5rem); }

.prose-page { max-width: 920px; padding-block: clamp(2.5rem, 5vw, 5rem); }
.prose-page > .rich-text { font-size: 1.08rem; }
.prose-page .editorial-heading { margin-top: 4.5rem; }
.contact-layout { display: grid; padding-block: clamp(2.5rem, 5vw, 5rem); grid-template-columns: 0.8fr 1.2fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
.contact-intro h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.contact-intro > p:last-child { color: var(--text-soft); }
.contact-form { display: grid; gap: 1.3rem; }
.form-field { display: grid; gap: 0.45rem; }
.form-field > label { font: 600 0.72rem var(--mono); letter-spacing: 0.05em; text-transform: uppercase; }
.form-field input:not([type="checkbox"]), .form-field select, .form-field textarea { width: 100%; padding: 0.8rem 0.9rem; }
.form-field textarea { resize: vertical; }
.form-field--check { display: grid; grid-template-columns: auto 1fr; align-items: start; }
.form-field--check input { width: 1.2rem; height: 1.2rem; margin-top: 0.2rem; accent-color: var(--yellow); }
.form-field--check label { font-family: var(--body); font-size: 0.9rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.errorlist { margin: 0; padding: 0; color: #ffb4ab; font-size: 0.82rem; list-style: none; }
:root[data-theme="light"] .errorlist { color: #a31515; }
.form-errors { padding: 1rem; border-left: 3px solid #ffb4ab; background: var(--surface-low); }
.form-errors .errorlist { color: var(--text); }
.form-success { display: flex; padding: 2rem; border: 1px solid var(--green); background: var(--surface-low); gap: 1.5rem; }
.form-success > span { color: var(--green); font: 600 2rem var(--mono); }
.form-success h2 { margin-bottom: 0.5rem; }
.error-page { min-height: 75svh; padding-top: calc(var(--header-height) + 8rem); padding-bottom: 6rem; }
.error-page h1 { max-width: 900px; }
.error-page > p:not(.eyebrow) { max-width: 620px; color: var(--text-soft); }
.error-page .button { margin-top: 1rem; }

.site-footer {
  display: grid;
  padding: 2.75rem var(--gutter) 1.5rem;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
  background: var(--surface-lowest);
  gap: 2rem;
}
.footer-brand p { margin: 0.75rem 0 0; color: var(--text-soft); }
.site-footer nav { display: flex; justify-content: flex-end; align-content: flex-start; gap: 1rem 1.5rem; flex-wrap: wrap; }
.site-footer nav a { color: var(--text-soft); font: 600 0.68rem var(--mono); text-underline-offset: 0.3rem; text-transform: uppercase; }
.site-footer nav a:hover { color: var(--yellow-soft); }
.footer-legal { grid-column: 1 / -1; margin: 1rem 0 0; padding-top: 1.25rem; border-top: 1px solid var(--border); color: var(--text-muted); }

@media (max-width: 900px) {
  :root { --header-height: 4rem; }
  .site-header { grid-template-columns: minmax(0, 1fr) auto auto; }
  .brand { grid-column: 1; grid-row: 1; }
  .brand img { width: 2rem; height: 2rem; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    height: calc(100svh - var(--header-height));
    padding: 2rem var(--gutter);
    flex-direction: column;
    align-items: stretch;
    background: var(--surface-lowest);
    gap: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { display: flex; height: auto; padding: 1.3rem 0; justify-content: space-between; border-bottom: 1px solid var(--border); font-family: var(--heading); font-size: 1.6rem; text-transform: none; }
  .site-nav a::after { display: none; }
  .menu-toggle { display: grid; grid-column: 2; grid-row: 1; margin-left: auto; }
  .header-actions { grid-column: 3; grid-row: 1; margin-left: 0.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-search { min-height: 3.5rem; }
  .journey-row { grid-template-columns: 1fr; }
  .journey-image { min-height: 280px; }
  .journey-image::after { border-right: 0; border-bottom: 1px solid var(--border); }
  .mode-section, .contact-layout { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar, .contact-intro { position: static; }
  .fact-board dl { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  :root { --gutter: 1rem; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .brand > span { font-size: 1.15rem; }
  .brand--coming-soon > span { font-size: 1.45rem; }
  .coming-soon__frame { width: calc(100% - 2rem); padding-block: 1rem 1.5rem; }
  .coming-soon__header { align-items: flex-start; flex-direction: column; gap: 0.8rem; }
  .coming-soon__status { max-width: none; justify-content: flex-start; text-align: left; }
  .coming-soon__content { min-width: 0; padding-block: 3.5rem 2.5rem; }
  .coming-soon__content h1 { margin-bottom: 1.1rem; font-size: clamp(2.85rem, 14vw, 4.2rem); text-wrap: wrap; }
  .coming-soon__content .button { width: 100%; }
  .coming-soon__grid { background-size: 40px 40px; }
  .coming-soon__route b { font-size: 0.57rem; letter-spacing: 0.04em; }
  .header-actions .icon-button:first-child { display: none; }
  .home-hero__content { width: calc(100% - 2rem); max-width: calc(100% - 2rem); padding-top: calc(var(--header-height) + 4rem); }
  .hero-actions, .hero-search { width: 100%; min-width: 0; max-width: 100%; }
  .hero-search input { min-width: 0; }
  .hero-shade { background: linear-gradient(0deg, rgba(4, 14, 31, 0.92), rgba(4, 14, 31, 0.43) 85%); }
  .hero-coordinate { display: none; }
  .experience-grid { grid-template-columns: 1fr; }
  .mode-grid { grid-template-columns: 1fr 1fr; }
  .journey-image { min-height: 220px; }
  .journey-copy { padding: 1.5rem 1rem 2rem; }
  .page-hero { padding-left: 1rem; padding-right: 1rem; }
  .page-hero > p:not(.eyebrow) { margin-left: 0; }
  .filters { display: grid; }
  .filters > div { min-width: 100%; }
  .filters .button { width: 100%; }
  .large-search { display: grid; grid-template-columns: auto 1fr; padding: 0.35rem; }
  .large-search .button { grid-column: 1 / -1; margin: 0; }
  .article-hero, .article-hero__content { min-height: 540px; }
  .article-hero__content { padding-bottom: 1.5rem; }
  .breadcrumbs { margin-top: 1rem; overflow: hidden; white-space: nowrap; }
  .article-meta { gap: 0.6rem 1rem; }
  .article-meta span + span::before { margin-right: 1rem; }
  .fact-board dl { grid-template-columns: 1fr 1fr; }
  .article-section { grid-template-columns: 1fr; }
  .section-index { margin-bottom: -0.35rem; }
  .route-schematic li { grid-template-columns: 1fr; gap: 0; }
  .route-schematic li > .data-label { margin-top: 0.3rem; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: flex-start; }
  .footer-legal { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media print {
  .site-header, .site-footer, .article-sidebar { display: none; }
  body { background: #fff; color: #000; }
  main { padding: 0; }
  .article-hero { min-height: 420px; }
  .article-layout { display: block; }
}
