:root {
  --ink: #10232b;
  --ink-soft: #334a53;
  --paper: #f5f0e7;
  --paper-bright: #fffdf8;
  --line: #c8c2b7;
  --coral: #e84f2f;
  --coral-dark: #b42f18;
  --mint: #b6e2d3;
  --sky: #9dc8e6;
  --yellow: #f0c85a;
  --focus: #2457c5;
  --shadow: 0 18px 40px rgb(16 35 43 / 10%);
  --radius: 1.1rem;
  --max: 72rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgb(16 35 43 / 4%) 50%, transparent 50.2%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--coral-dark);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0.2rem solid var(--focus);
  outline-offset: 0.2rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 0.4rem;
}

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

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgb(245 240 231 / 94%);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 5.2rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.24rem solid var(--ink);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--coral);
}

.brand-mark::after {
  position: absolute;
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  background: var(--paper-bright);
}

.nav-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem 1.2rem;
  list-style: none;
}

.nav-list a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 720;
  text-decoration: none;
}

.nav-list a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.35rem;
}

main:focus {
  outline: none;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero {
  min-height: clamp(44rem, 80vh, 54rem);
  color: white;
  background: var(--ink);
}

.hero::before,
.page-hero::before {
  position: absolute;
  content: "";
  width: 27rem;
  height: 27rem;
  top: -10rem;
  right: -5rem;
  border: 1.2rem solid var(--coral);
  border-radius: 50%;
  opacity: 0.88;
}

.hero::after,
.page-hero::after {
  position: absolute;
  content: "";
  width: 65%;
  height: 0.35rem;
  right: -8%;
  bottom: 22%;
  background: var(--mint);
  transform: rotate(-9deg);
  transform-origin: right;
}

.hero-shell,
.page-hero-shell,
.content-shell,
.footer-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.hero-shell {
  min-height: clamp(44rem, 80vh, 54rem);
  padding-block: 6.5rem 5.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.72fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--coral-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint);
}

h1,
h2,
h3 {
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  letter-spacing: -0.07em;
}

.page-hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.8rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -0.05em;
}

h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.hero-copy,
.page-intro {
  max-width: 48rem;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero-copy {
  max-width: 43rem;
  margin: 1.5rem 0 2.2rem;
  color: #e8f2f2;
}

.route-board {
  align-self: center;
  padding: 0.75rem;
  color: var(--ink);
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 1.25rem;
  background: rgb(255 253 248 / 94%);
  box-shadow: 0 1.5rem 4rem rgb(0 0 0 / 28%);
  backdrop-filter: blur(18px);
}

.route-row {
  padding: 0.8rem 0.7rem;
  display: grid;
  grid-template-columns: 3.4rem 1fr auto;
  gap: 0.7rem;
  align-items: center;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.route-row:hover {
  color: var(--coral-dark);
  background: rgb(232 79 47 / 7%);
}

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

.route-code {
  color: var(--coral-dark);
  font-variant-numeric: tabular-nums;
}

.route-dot {
  width: 0.75rem;
  height: 0.75rem;
  border: 0.18rem solid var(--ink);
  border-radius: 50%;
  background: var(--mint);
}

.landing-hero::before {
  z-index: 1;
  width: auto;
  height: auto;
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgb(7 25 32 / 98%) 0%, rgb(7 25 32 / 90%) 43%, rgb(7 25 32 / 48%) 73%, rgb(7 25 32 / 24%) 100%),
    linear-gradient(0deg, rgb(7 25 32 / 55%) 0%, transparent 35%);
  opacity: 1;
}

.landing-hero::after {
  z-index: 1;
  width: 100%;
  height: 8rem;
  inset: auto 0 0;
  background: linear-gradient(0deg, rgb(7 25 32 / 52%), transparent);
  transform: none;
}

.hero-media {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
}

.landing-hero .hero-shell {
  z-index: 2;
}

.hero-copy-block {
  max-width: 48rem;
}

.landing-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #d4f3e8;
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0.28rem rgb(232 79 47 / 20%);
}

.landing-hero h1 {
  max-width: 9.5ch;
  font-size: clamp(3.8rem, 7vw, 7.1rem);
}

.landing-hero h1 em {
  display: block;
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.route-board-head {
  padding: 0.3rem 0.7rem 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-board-note {
  margin: 0;
  padding: 0.85rem 0.7rem 0.25rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-proof {
  margin: 2.8rem 0 0;
  padding: 1.25rem 0 0;
  display: flex;
  gap: clamp(1.2rem, 4vw, 2.5rem);
  border-top: 1px solid rgb(255 255 255 / 25%);
  list-style: none;
}

.hero-proof li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: center;
}

.hero-proof strong {
  color: var(--paper-bright);
  font-size: 1.4rem;
  line-height: 1;
}

.hero-proof span {
  max-width: 7rem;
  color: #c6d5d7;
  font-size: 0.75rem;
  line-height: 1.25;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.7rem 1.15rem;
  border: 0.13rem solid var(--ink);
  gap: 0.45rem;
  color: white;
  background: var(--coral-dark);
  box-shadow: 0.3rem 0.3rem 0 var(--ink);
  font-weight: 820;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  color: white;
  transform: translate(0.15rem, 0.15rem);
  box-shadow: 0.15rem 0.15rem 0 var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--paper-bright);
}

.button-light:hover {
  color: var(--ink);
}

.button-secondary {
  color: var(--ink);
  background: var(--mint);
}

.button-secondary:hover {
  color: var(--ink);
}

.button-coral {
  border-color: var(--coral);
  background: var(--coral);
  box-shadow: none;
}

.button-coral:hover {
  color: white;
  background: var(--coral-dark);
  box-shadow: none;
}

.button-glass {
  border-color: rgb(255 255 255 / 45%);
  color: white;
  background: rgb(255 255 255 / 8%);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button-glass:hover {
  color: white;
  background: rgb(255 255 255 / 16%);
  box-shadow: none;
}

.page-hero {
  padding-block: 5.5rem 3.8rem;
  background: var(--paper-bright);
}

.page-intro {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
}

.hero-meta {
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
}

.hero-meta li {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 720;
}

.content-shell {
  padding-block: 5rem;
}

.content-shell-compact {
  padding-block: 4rem;
}

.section-heading-row {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  max-width: 30rem;
  margin: 0 0 0.35rem;
  color: var(--ink-soft);
}

.coverage-section {
  border-bottom: 1px solid var(--line);
  background: var(--paper-bright);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.city-card {
  min-width: 0;
  padding: 1.25rem 1.15rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  color: var(--ink);
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: color 170ms ease, background 170ms ease;
}

.city-card:last-child {
  border-right: 0;
}

.city-card:hover {
  color: var(--paper-bright);
  background: var(--ink);
}

.city-index {
  align-self: start;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 900;
}

.city-card-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.city-card-copy strong {
  font-size: 1.05rem;
}

.city-card-copy small {
  margin-top: 0.35rem;
  color: var(--ink-soft);
}

.city-card:hover .city-card-copy small {
  color: #c6d5d7;
}

.city-card .city-code-large {
  grid-column: 1 / -1;
  color: currentColor;
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  line-height: 0.9;
  opacity: 0.18;
}

.landing-method {
  padding-block: clamp(5rem, 9vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.method-intro {
  position: sticky;
  top: 8rem;
}

.method-intro h2 {
  max-width: 12ch;
}

.text-link-large {
  display: inline-flex;
  gap: 0.5rem;
  font-weight: 850;
}

.feature-stack {
  border-top: 1px solid var(--line);
}

.feature-stack .feature {
  min-height: 0;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.feature-stack .number {
  margin: 0;
}

.feature-stack h3 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.feature-stack p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.trust-marquee {
  overflow: hidden;
  color: white;
  background: var(--coral-dark);
}

.trust-marquee > div {
  width: min(calc(100% - 2rem), var(--max));
  min-height: 4.4rem;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem 1.2rem;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-marquee [aria-hidden="true"] {
  color: var(--mint);
}

.featured-section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card-kicker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.card-kicker > span {
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.featured-card {
  position: relative;
  overflow: hidden;
  min-height: 21rem;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.featured-card::after {
  position: absolute;
  content: "";
  width: 7rem;
  height: 7rem;
  right: -3.5rem;
  bottom: -3.5rem;
  border: 1rem solid var(--mint);
  border-radius: 50%;
  opacity: 0.75;
}

.featured-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: var(--shadow);
}

.featured-card .text-link {
  position: relative;
  z-index: 1;
}

.planning-section {
  border-block: 1px solid var(--line);
  background: #dcebe5;
}

.planning-card {
  box-shadow: none;
}

.planning-card:nth-child(2) {
  transform: translateY(1rem);
}

.final-cta-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4.8rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  color: white;
  border-radius: calc(var(--radius) * 1.4);
  background: var(--ink);
}

.final-cta::after {
  position: absolute;
  content: "";
  width: 18rem;
  height: 18rem;
  top: -10rem;
  right: 16%;
  border: 2rem solid var(--coral);
  border-radius: 50%;
  opacity: 0.6;
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 17ch;
}

.final-cta p:not(.eyebrow) {
  max-width: 44rem;
  margin-bottom: 0;
  color: #c9d8da;
}

.section-lead {
  max-width: 48rem;
  margin-bottom: 2.4rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.city-section + .city-section,
.editorial-section + .editorial-section {
  margin-top: 5.5rem;
  padding-top: 5rem;
  border-top: 1px solid var(--line);
}

.city-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.city-code-large {
  color: var(--coral-dark);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
}

.card-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.guide-card,
.feature {
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-bright);
}

.guide-card {
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.guide-card p {
  color: var(--ink-soft);
}

.guide-card .text-link {
  margin-top: auto;
  font-weight: 820;
}

.number {
  margin: 0 0 2rem;
  color: var(--coral-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trust-strip,
.notice,
.disclosure-box {
  padding: 1.35rem 1.5rem;
  border-left: 0.45rem solid var(--coral);
  background: #fff6df;
}

.trust-strip {
  margin-top: 4rem;
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18rem;
  gap: 4rem;
  align-items: start;
}

.article-body {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
}

.article-body section + section {
  margin-top: 4rem;
}

.article-body p,
.article-body li {
  max-width: 70ch;
}

.article-body ul,
.check-list {
  padding-left: 1.25rem;
}

.article-body li + li,
.check-list li + li {
  margin-top: 0.65rem;
}

.side-rail {
  position: sticky;
  grid-column: 2;
  grid-row: 1;
  top: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--ink);
  background: var(--mint);
  box-shadow: 0.45rem 0.45rem 0 var(--ink);
}

.side-rail ol {
  margin: 0;
  padding-left: 1.2rem;
}

.side-rail li + li {
  margin-top: 0.55rem;
}

.side-rail a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 720;
}

.ticket-panel {
  margin-top: 4.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: white;
  background: var(--ink);
  border-radius: var(--radius);
}

.event-panel {
  margin-top: 4.5rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-bright);
  box-shadow: 0.45rem 0.45rem 0 var(--ink);
}

.event-panel > p:not(.eyebrow, .event-source) {
  color: var(--ink-soft);
}

.event-list {
  margin-top: 1.7rem;
  border-top: 1px solid var(--line);
}

.event-card {
  padding-block: 1.25rem;
  display: grid;
  grid-template-columns: minmax(8rem, 0.34fr) minmax(0, 1fr);
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.event-date time {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-variant-numeric: tabular-nums;
}

.event-date span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.event-copy h3 {
  margin-block: 0.55rem 0.7rem;
  overflow-wrap: anywhere;
}

.event-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.event-badge {
  padding: 0.18rem 0.5rem;
  color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--mint);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.event-status-postponed,
.event-status-cancelled,
.event-status-rescheduled,
.event-status-relocated,
.event-status-relocatedandrescheduled {
  background: #fff0c7;
}

.event-empty,
.event-sandbox {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-left: 0.4rem solid var(--coral);
  background: #fff6df;
}

.event-empty p {
  margin-bottom: 0;
}

.event-sandbox {
  border-color: var(--focus);
  background: #edf3ff;
}

.event-source {
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.ticket-panel h2 {
  max-width: 16ch;
}

.ticket-panel p {
  color: #d8e4e5;
}

.disclosure-box {
  margin-top: 1.5rem;
  color: var(--ink);
  background: var(--paper-bright);
  font-size: 0.93rem;
}

.source-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.source-list a::after,
.external::after {
  content: " ↗";
  font-size: 0.8em;
}

.status-line {
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.legal-copy {
  max-width: 52rem;
}

.legal-copy h2 {
  margin-top: 3.5rem;
  font-size: 2rem;
}

.contact-direct {
  position: relative;
  margin-block: 2rem;
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-bright);
  box-shadow: 0.4rem 0.4rem 0 var(--ink);
}

.contact-direct .button {
  margin-top: 1.5rem;
}

.contact-direct .status-line {
  margin-bottom: 0;
}

.launch-gate {
  margin-block: 2rem;
  padding: 1.5rem;
  border: 2px solid var(--coral-dark);
  background: #fff3ed;
}

.site-footer {
  color: white;
  background: var(--ink);
}

.footer-shell {
  padding-block: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.footer-tagline {
  max-width: 28rem;
  color: #c9d8da;
}

.footer-nav {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
  list-style: none;
}

.footer-nav a {
  color: white;
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid #4a5d64;
  color: #b9c9cb;
  font-size: 0.86rem;
}

@media (max-width: 70rem) {
  .landing-hero::before {
    background:
      linear-gradient(90deg, rgb(7 25 32 / 98%) 0%, rgb(7 25 32 / 90%) 54%, rgb(7 25 32 / 52%) 100%),
      linear-gradient(0deg, rgb(7 25 32 / 58%) 0%, transparent 40%);
  }

  .landing-hero .hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.65fr);
    gap: 2.5rem;
  }

  .city-grid,
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-card:nth-child(2) {
    border-right: 0;
  }

  .city-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 52rem) {
  .nav-shell {
    padding-block: 1rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .nav-list {
    justify-content: flex-start;
  }

  .hero-shell,
  .venue-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding-block: 4.5rem;
  }

  .landing-hero,
  .landing-hero .hero-shell {
    min-height: auto;
  }

  .landing-hero .hero-shell {
    padding-block: 5rem 4rem;
    grid-template-columns: 1fr;
  }

  .landing-hero::before {
    background: linear-gradient(90deg, rgb(7 25 32 / 97%), rgb(7 25 32 / 72%));
  }

  .hero-media {
    object-position: 67% center;
  }

  .landing-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.6rem, 14vw, 6rem);
  }

  .route-board {
    width: min(100%, 30rem);
    max-width: none;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-method {
    grid-template-columns: 1fr;
  }

  .method-intro {
    position: static;
  }

  .final-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .side-rail {
    position: static;
    grid-column: 1;
    grid-row: 1;
  }

  .article-body {
    grid-column: 1;
    grid-row: 2;
  }

  .planning-card:nth-child(2) {
    transform: none;
  }
}

@media (max-width: 34rem) {
  .nav-list {
    gap: 0.45rem 0.8rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .event-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero,
  .hero-shell {
    min-height: auto;
  }

  .landing-hero .hero-shell {
    padding-block: 4.2rem 3.2rem;
  }

  .landing-hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.5rem);
  }

  .hero-proof {
    gap: 0.8rem;
  }

  .hero-proof li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .hero-proof span {
    font-size: 0.68rem;
  }

  .city-grid,
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .city-card,
  .city-card:nth-child(2) {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .city-card:last-child {
    border-bottom: 0;
  }

  .city-card .city-code-large {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    font-size: 2.6rem;
  }

  .city-card-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .city-index {
    grid-column: 1;
    grid-row: 1;
  }

  .feature-stack .feature {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .trust-marquee > div {
    padding-block: 1.2rem;
    justify-content: center;
  }

  .trust-marquee [aria-hidden="true"] {
    display: none;
  }

  .hero::before,
  .page-hero::before {
    width: 16rem;
    height: 16rem;
  }

  .content-shell {
    padding-block: 3.6rem;
  }

  .city-heading {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
}

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

@media print {
  .site-header,
  .side-rail,
  .button-row,
  .site-footer {
    display: none;
  }

  body {
    background: white;
  }

  .content-shell {
    padding: 1rem 0;
  }
}
