:root {
  --ink: #18201d;
  --ink-soft: #303b36;
  --muted: #66706c;
  --line: #ded8cc;
  --paper: #fffdf8;
  --wash: #f5f0e2;
  --accent: #0f7c68;
  --accent-2: #d9643a;
  --blue: #315f9b;
  --gold: #c99a42;
  --radius: 8px;
  --shadow: 0 20px 52px rgba(24, 32, 29, 0.16);
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(222, 216, 204, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius);
  font-weight: 850;
}

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

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a,
.text-link,
.site-footer a {
  transition: color var(--ease);
}

.site-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--accent);
}

.header-cta,
.button,
.quote-card button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition:
    transform var(--ease),
    background var(--ease),
    border-color var(--ease);
}

.header-cta {
  padding: 10px 18px;
  color: #fff;
  background: var(--ink);
}

.header-cta:hover,
.button:hover,
.quote-card button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
  gap: clamp(22px, 5vw, 64px);
  overflow: hidden;
  padding: clamp(92px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(36px, 6vw, 72px);
}

.hero-route {
  min-height: 640px;
  grid-template-columns: 1fr;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 25, 22, 0.82), rgba(17, 25, 22, 0.32) 58%, rgba(17, 25, 22, 0.58)),
    linear-gradient(0deg, rgba(17, 25, 22, 0.76), rgba(17, 25, 22, 0.02) 45%);
}

.hero-content,
.quote-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 860px;
  color: #fff;
}

.hero-content.narrow {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 880;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd9b7;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.97;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
}

.button.primary {
  color: #fff;
  background: var(--accent-2);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.quote-card {
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}

.quote-card p {
  color: var(--muted);
}

.quote-card form {
  display: grid;
  gap: 14px;
}

.quote-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-card input,
.quote-card select {
  min-height: 44px;
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-card button {
  color: #fff;
  background: var(--accent);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-inline: clamp(18px, 5vw, 72px);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mobile-quick-actions,
.mobile-quote-card,
.mobile-route-tabs,
.mobile-city-hub,
.mobile-action,
.mobile-bottom-bar {
  display: none;
}

.trust-strip article {
  padding: 24px;
  background: var(--paper);
}

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

.trust-strip strong {
  margin-bottom: 6px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 72px clamp(18px, 5vw, 72px);
}

.section-kicker {
  max-width: 790px;
  margin-bottom: 28px;
}

.section-kicker h2,
.split h2,
.planner h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-kicker p:not(.eyebrow),
.muted {
  color: var(--muted);
}

.destinations,
.process,
.planner {
  background: var(--wash);
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.12fr repeat(3, minmax(0, 0.86fr));
  gap: 16px;
}

.destination-card,
.route-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.destination-card img,
.route-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.feature-card {
  grid-row: span 2;
}

.feature-card img {
  aspect-ratio: 16 / 15;
}

.destination-card div,
.route-card div {
  padding: 18px;
}

.destination-card h3,
.route-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.destination-card p,
.route-card p {
  color: var(--muted);
}

.card-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 8px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.text-link {
  color: var(--accent);
  font-weight: 820;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.fleet-list {
  display: grid;
  gap: 12px;
}

.fleet-list article {
  display: grid;
  grid-template-columns: 70px 170px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.fleet-list span {
  color: var(--accent-2);
  font-weight: 880;
}

.fleet-list h3,
.fleet-list p {
  margin-bottom: 0;
}

.fleet-list p {
  color: var(--muted);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}

.process-rail article {
  min-height: 184px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.process-rail article:last-child {
  border-right: 0;
}

.process-rail strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.process-rail p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 18px 20px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  font-weight: 820;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.route-intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 180px)) 1fr;
  gap: 16px;
  align-items: center;
  background: var(--paper);
}

.route-intro p {
  margin-bottom: 0;
  color: var(--muted);
}

.intro-stat {
  padding: 18px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.intro-stat strong {
  font-size: 2rem;
  line-height: 1;
}

.intro-stat span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.route-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.planner {
  display: grid;
  grid-template-columns: minmax(240px, 0.88fr) 1.12fr;
  gap: clamp(28px, 5vw, 64px);
}

.planner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.planner-grid article {
  min-height: 164px;
  padding: 20px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.planner-grid article:nth-child(2) {
  background: var(--accent);
}

.planner-grid article:nth-child(3) {
  background: var(--blue);
}

.planner-grid article:nth-child(4) {
  background: #6b4e32;
}

.planner-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

:focus-visible {
  outline: 3px solid rgba(217, 100, 58, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .hero,
  .split,
  .planner {
    grid-template-columns: 1fr;
  }

  .quote-card {
    max-width: 520px;
  }

  .trust-strip,
  .process-rail,
  .route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .feature-card {
    grid-row: auto;
  }

  .route-intro {
    grid-template-columns: repeat(3, 1fr);
  }

  .route-intro p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 64px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 10px 14px;
  }

  .site-nav {
    display: none;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 88px 18px 34px;
  }

  .hero-home {
    display: block;
  }

  .hero-home .quote-card {
    display: none;
  }

  .hero-route {
    display: block;
    min-height: 520px;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.7rem;
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    flex: 1 1 148px;
    padding-inline: 12px;
  }

  .route-page .desktop-action {
    display: none;
  }

  .route-page .mobile-action {
    display: inline-flex;
  }

  .mobile-quick-actions {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(168px, 1fr);
    gap: 10px;
    overflow-x: auto;
    padding: 14px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    scroll-snap-type: x mandatory;
  }

  .mobile-quick-actions a {
    min-height: 92px;
    padding: 14px;
    background: var(--wash);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    scroll-snap-align: start;
  }

  .mobile-quick-actions strong,
  .mobile-quick-actions span {
    display: block;
  }

  .mobile-quick-actions span {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.88rem;
  }

  .mobile-quote-card {
    display: block;
    margin: 18px;
    padding: 18px;
    background: var(--ink);
    border-radius: var(--radius);
    color: #fff;
  }

  .mobile-quote-card h2 {
    margin-bottom: 14px;
    font-size: 1.5rem;
  }

  .mobile-quote-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }

  .mobile-quote-grid span {
    display: grid;
    min-height: 54px;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    font-weight: 800;
  }

  .mobile-route-tabs {
    position: sticky;
    top: 63px;
    z-index: 10;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 18px;
    background: rgba(255, 253, 248, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-route-tabs a {
    flex: 0 0 auto;
    padding: 8px 12px;
    background: var(--wash);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
  }

  .mobile-city-hub {
    display: block;
    padding: 22px 14px 18px;
    background: linear-gradient(180deg, rgba(238, 248, 252, 0.96), rgba(245, 240, 226, 0.94));
  }

  .mobile-city-hero {
    display: none;
  }

  .mobile-city-head {
    margin-bottom: 12px;
    text-align: center;
  }

  .mobile-city-head h2 {
    max-width: 11ch;
    margin: 0 auto 8px;
    color: #073c61;
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .mobile-city-head p:not(.eyebrow) {
    max-width: 30ch;
    margin-inline: auto;
    margin-bottom: 0;
    color: #40606c;
    font-size: 0.96rem;
  }

  .mobile-city-head .eyebrow {
    color: var(--accent);
  }

  .mobile-service-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
  }

  .mobile-service-pills span {
    padding: 6px 10px;
    color: #0b5f72;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 124, 104, 0.2);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 850;
  }

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

  .mobile-city-card {
    overflow: hidden;
    padding: 0 0 12px;
    color: var(--ink);
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(151, 180, 184, 0.5);
    border-radius: var(--radius);
    box-shadow: 0 14px 28px rgba(7, 60, 97, 0.12);
  }

  .mobile-city-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .mobile-city-card span,
  .mobile-city-card strong,
  .mobile-city-card small,
  .mobile-city-card b {
    display: block;
  }

  .mobile-city-card span {
    margin: 10px 12px 0;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
  }

  .mobile-city-card strong {
    margin: 2px 12px;
    color: #073c61;
    font-size: 1.08rem;
    line-height: 1.1;
  }

  .mobile-city-card small {
    margin: 0 12px;
    color: var(--muted);
    line-height: 1.35;
  }

  .mobile-city-card b {
    margin: 8px 12px 0;
    color: var(--accent-2);
    font-size: 0.9rem;
  }

  .mobile-quote-box {
    margin-top: 12px;
    padding: 14px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(151, 180, 184, 0.52);
    border-radius: var(--radius);
    box-shadow: 0 14px 28px rgba(7, 60, 97, 0.12);
  }

  .mobile-quote-box h3 {
    margin-bottom: 10px;
    color: #073c61;
    font-size: 1.1rem;
  }

  .mobile-quote-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .mobile-quote-fields span {
    min-height: 40px;
    padding: 9px 10px;
    color: var(--muted);
    background: #f6f8f7;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-size: 0.88rem;
  }

  .mobile-quote-box a {
    display: grid;
    min-height: 44px;
    margin-top: 10px;
    place-items: center;
    color: #fff;
    background: var(--accent);
    border-radius: 6px;
    font-weight: 880;
  }

  .mobile-chip-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 14px;
    padding: 12px;
    background: rgba(255, 253, 248, 0.76);
    border: 1px solid rgba(151, 180, 184, 0.42);
    border-radius: var(--radius);
  }

  .mobile-chip-group strong {
    grid-column: 1 / -1;
    color: #073c61;
    font-size: 0.96rem;
  }

  .mobile-chip-group a {
    display: grid;
    min-height: 34px;
    place-items: center;
    padding: 7px 8px;
    color: #274952;
    background: var(--paper);
    border: 1px solid rgba(49, 95, 155, 0.18);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    text-align: center;
  }

  .mobile-route-stack {
    display: grid;
    gap: 10px;
    margin-top: 16px;
  }

  .mobile-route-stack article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 14px;
    background: rgba(255, 253, 248, 0.95);
    border: 1px solid rgba(151, 180, 184, 0.5);
    border-radius: var(--radius);
  }

  .mobile-route-stack span {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--accent-2);
    font-size: 0.76rem;
    font-weight: 880;
  }

  .mobile-route-stack h3 {
    margin-bottom: 4px;
    font-size: 1.05rem;
  }

  .mobile-route-stack p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .mobile-route-stack article > strong {
    display: grid;
    min-width: 54px;
    min-height: 54px;
    place-items: center;
    color: #fff;
    background: var(--accent);
    border-radius: 999px;
    font-size: 0.86rem;
  }

  .mobile-assurance-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    margin-top: 12px;
    background: rgba(49, 95, 155, 0.18);
    border: 1px solid rgba(49, 95, 155, 0.18);
    border-radius: var(--radius);
  }

  .mobile-assurance-strip span {
    display: grid;
    min-height: 54px;
    place-items: center;
    padding: 8px 6px;
    color: #073c61;
    background: rgba(255, 253, 248, 0.9);
    font-size: 0.76rem;
    font-weight: 850;
    text-align: center;
  }

  .mobile-hub-cta {
    display: grid;
    min-height: 48px;
    margin-top: 16px;
    place-items: center;
    color: #fff;
    background: var(--accent-2);
    border-radius: var(--radius);
    font-weight: 880;
  }

  .mobile-bottom-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    background: rgba(24, 32, 29, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .mobile-bottom-bar a {
    display: grid;
    min-height: 42px;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-weight: 850;
  }

  .mobile-bottom-bar a:nth-child(2) {
    background: var(--accent-2);
  }

  .mobile-fleet-block,
  .mobile-faq-panel {
    display: none;
  }

  .trust-strip,
  .destination-grid,
  .process-rail,
  .route-intro,
  .route-grid,
  .planner-grid {
    grid-template-columns: 1fr;
  }

  .route-page .route-intro,
  .route-page .routes-section,
  .route-page .planner,
  .route-page .faq,
  .route-page .site-footer {
    display: none;
  }

  .route-page .hero-route {
    display: none;
  }

  .route-page .site-header {
    display: none;
  }

  .route-page .mobile-city-hub {
    min-height: 100vh;
    padding: 0 10px 76px;
    background: linear-gradient(180deg, #eef8ff 0, #f8fbff 36%, #ffffff 100%);
  }

  .route-page .mobile-city-hero {
    display: block;
    min-height: 184px;
    margin: 0 -10px 0;
    padding: 18px 16px 18px;
    color: #fff;
    background:
      linear-gradient(180deg, rgba(27, 151, 217, 0.78), rgba(27, 151, 217, 0.28)),
      url("assets/mobile-city/hero-bg.png") center bottom / cover;
  }

  .route-page .mobile-city-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .route-page .mobile-city-nav button,
  .route-page .mobile-city-nav a {
    min-height: 32px;
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-weight: 850;
  }

  .route-page .mobile-city-nav button {
    width: 34px;
    padding: 0;
    font-size: 1.2rem;
  }

  .route-page .mobile-city-nav a {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .route-page .mobile-city-head {
    margin: 22px 0 0;
    text-align: center;
  }

  .route-page .mobile-city-head h2 {
    max-width: none;
    margin: 0 0 4px;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.12;
    text-shadow: 0 2px 10px rgba(0, 52, 91, 0.24);
  }

  .route-page .mobile-city-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.86rem;
  }

  .route-page .mobile-city-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin-top: -30px;
  }

  .route-page .mobile-city-card {
    padding: 0 0 8px;
    background: #fff;
    border-color: #e5edf4;
    box-shadow: 0 7px 18px rgba(21, 93, 143, 0.14);
  }

  .route-page .mobile-city-card img {
    aspect-ratio: 1.22 / 1;
  }

  .route-page .mobile-city-card span {
    display: none;
  }

  .route-page .mobile-city-card strong {
    margin: 7px 8px 0;
    color: #26353d;
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .route-page .mobile-city-card small {
    margin: 1px 8px 0;
    color: #7a8790;
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .route-page .mobile-city-card b {
    display: none;
  }

  .route-page .mobile-city-card::after {
    float: right;
    margin: -24px 7px 0 0;
    color: #74838b;
    content: "›";
    font-size: 1.25rem;
    font-weight: 700;
  }

  .route-page .mobile-quote-box,
  .route-page .mobile-route-stack,
  .route-page .mobile-assurance-strip,
  .route-page .mobile-hub-cta {
    display: none;
  }

  .route-page .mobile-chip-group {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 14px;
    padding: 0 0 4px;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .route-page .mobile-chip-group strong {
    flex: 0 0 100%;
    color: #26353d;
    font-size: 1rem;
  }

  .route-page .mobile-chip-group a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 7px 12px;
    color: #58646b;
    background: #fff;
    border: 1px solid #e2e8ee;
    border-radius: 999px;
    font-size: 0.78rem;
    box-shadow: 0 5px 12px rgba(21, 93, 143, 0.06);
  }

  .route-page .mobile-fleet-block {
    display: block;
    margin-top: 12px;
  }

  .route-page .mobile-fleet-block h3,
  .route-page .mobile-faq-panel h3 {
    margin: 0 0 8px;
    color: #26353d;
    font-size: 1rem;
  }

  .route-page .mobile-fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
  }

  .route-page .mobile-fleet-grid article {
    overflow: hidden;
    min-height: 128px;
    padding: 8px 7px 7px;
    background: #fff;
    border: 1px solid #e5edf4;
    border-radius: 7px;
    box-shadow: 0 6px 14px rgba(21, 93, 143, 0.08);
  }

  .route-page .mobile-fleet-grid strong,
  .route-page .mobile-fleet-grid span,
  .route-page .mobile-fleet-grid b {
    display: block;
  }

  .route-page .mobile-fleet-grid strong {
    color: #26353d;
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .route-page .mobile-fleet-grid span {
    margin-top: 2px;
    color: #667782;
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .route-page .mobile-fleet-grid img {
    width: 100%;
    height: 48px;
    margin-top: 5px;
    object-fit: contain;
    border-radius: 5px;
  }

  .route-page .mobile-fleet-grid b {
    margin-top: 4px;
    color: var(--accent-2);
    font-size: 0.76rem;
  }

  .route-page .mobile-faq-panel {
    display: block;
    margin-top: 12px;
  }

  .route-page .mobile-faq-panel details {
    padding: 0;
    background: #fff;
    border: 1px solid #e5edf4;
    border-radius: 0;
    box-shadow: none;
  }

  .route-page .mobile-faq-panel details:first-of-type {
    border-radius: 7px 7px 0 0;
  }

  .route-page .mobile-faq-panel details:last-of-type {
    border-radius: 0 0 7px 7px;
  }

  .route-page .mobile-faq-panel summary {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    color: #33434b;
    font-size: 0.78rem;
  }

  .route-page .mobile-faq-panel summary::after {
    color: #7b8790;
    content: "+";
    font-size: 1rem;
  }

  .route-page .mobile-faq-panel p {
    margin: 0;
    padding: 0 10px 9px;
    color: var(--muted);
    font-size: 0.76rem;
  }

  .route-page .route-consult-bar {
    right: 0;
    bottom: 0;
    left: 0;
    grid-template-columns: 1fr 1.1fr;
    gap: 10px;
    padding: 10px 14px;
    background: #0372c8;
    border: 0;
    border-radius: 0;
    box-shadow: 0 -8px 24px rgba(0, 58, 111, 0.2);
  }

  .route-page .route-consult-bar a {
    min-height: 44px;
    background: transparent;
    border-radius: 999px;
  }

  .route-page .route-chat {
    display: block;
    padding-left: 4px;
    text-align: left;
  }

  .route-page .route-chat strong,
  .route-page .route-chat span {
    display: block;
  }

  .route-page .route-chat strong {
    font-size: 0.92rem;
    line-height: 1.15;
  }

  .route-page .route-chat span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
  }

  .route-page .route-inquire {
    color: #0867bb;
    background: #fff !important;
    font-size: 1rem;
  }

  .route-page .mobile-route-tabs {
    top: 63px;
    background: rgba(238, 248, 252, 0.96);
    border-bottom-color: rgba(49, 95, 155, 0.16);
  }

  .route-page .mobile-city-hub {
    min-height: calc(100vh - 63px);
  }

  .fleet-list article {
    grid-template-columns: 54px 1fr;
  }

  .fleet-list p {
    grid-column: 2;
  }

  .process-rail article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-rail article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    display: block;
  }

  .site-footer a {
    display: inline-block;
    margin-top: 16px;
  }
}

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

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