/* Routes Locations — home-aligned premium network + hub landings */
:host {
  display: block;
  width: 100%;
  min-height: 50vh;
  color: var(--rl-ink);
  font-family: var(--rl-sans);
  -webkit-font-smoothing: antialiased;
}

:host,
.rl-embed {
  --rl-brand: #132a8e;
  --rl-brand-deep: #0b1957;
  --rl-accent: #ff7a1a;
  --rl-accent-soft: #ff8c3a;
  --rl-ink: #0e1116;
  --rl-ink-soft: #3d4452;
  --rl-muted: #6b7280;
  --rl-line: #e7e9ee;
  --rl-surface: #f6f7f9;
  --rl-surface-2: #eef1f6;
  --rl-white: #ffffff;
  --rl-ink-band: #050b1f;
  --rl-display: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  --rl-sans: "DM Sans", system-ui, sans-serif;
  --rl-shadow-soft: 0 12px 40px -18px rgba(19, 42, 142, 0.28);
  --rl-shadow-lift: 0 28px 64px -24px rgba(19, 42, 142, 0.3);
}

[data-rl-host],
#routes-locations-host {
  display: block;
  width: 100%;
  min-height: 50vh;
}

.rl-embed {
  display: block;
  background: var(--rl-white);
}

.rl-shell {
  min-height: 0;
}

/* —— Type —— */
.rl-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rl-accent);
}

.rl-kicker--light {
  color: rgba(255, 140, 58, 0.95);
}

.rl-display {
  margin: 0;
  font-family: var(--rl-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-wrap: balance;
}

.rl-display--hero {
  font-size: clamp(2.15rem, 6.5vw, 4.5rem);
  max-width: 14ch;
}

.rl-display--section {
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--rl-ink);
}

.rl-display--band {
  font-size: clamp(1.65rem, 3.4vw, 2.65rem);
  color: #fff;
  max-width: 18ch;
  margin-inline: auto;
}

.rl-lead {
  margin: 0.9rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.55;
  color: var(--rl-ink-soft);
  max-width: 38ch;
}

.rl-lead--light {
  color: rgba(255, 255, 255, 0.78);
}

.rl-accent-word {
  color: var(--rl-accent);
}

/* —— Buttons —— */
.rl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-family: var(--rl-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rl-btn:active {
  transform: scale(0.98);
}

.rl-btn--accent {
  background: var(--rl-accent);
  color: #fff;
  box-shadow: 0 14px 36px -12px rgba(255, 122, 26, 0.55);
}

.rl-btn--accent:hover {
  background: var(--rl-accent-soft);
  transform: translateY(-1px);
}

.rl-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  ring: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.rl-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.rl-btn--ink {
  background: var(--rl-ink);
  color: #fff;
}

.rl-btn--line {
  background: #fff;
  color: var(--rl-brand);
  box-shadow: inset 0 0 0 1px var(--rl-line);
}

.rl-btn--line:hover {
  box-shadow: inset 0 0 0 1px rgba(19, 42, 142, 0.35);
}

.rl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* —— Hero —— */
.rl-hero {
  position: relative;
  min-height: clamp(420px, 72svh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--rl-ink-band);
}

.rl-hero--detail {
  min-height: clamp(380px, 62svh, 560px);
}

.rl-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: rlKen 18s ease-in-out infinite alternate;
  opacity: 0.88;
}

.rl-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 11, 31, 0.92) 0%, rgba(19, 42, 142, 0.45) 48%, rgba(5, 11, 31, 0.55) 100%),
    linear-gradient(0deg, rgba(5, 11, 31, 0.88) 0%, transparent 55%);
}

.rl-hero__content {
  position: relative;
  z-index: 2;
  width: min(110rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(2.4rem, 5vw, 3.5rem);
}

.rl-crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.rl-crumbs a {
  color: inherit;
  text-decoration: none;
}

.rl-crumbs a:hover {
  color: #fff;
  text-decoration: underline;
}

/* —— Sections —— */
.rl-band {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.rl-band--surface {
  background: var(--rl-surface);
}

.rl-band--ink {
  background: var(--rl-ink-band);
  color: #fff;
}

.rl-band--brand {
  background: var(--rl-brand);
  color: #fff;
}

.rl-band--white {
  background: #fff;
}

.rl-wrap {
  width: min(110rem, calc(100% - 2rem));
  margin: 0 auto;
}

.rl-wrap--narrow {
  width: min(52rem, calc(100% - 2rem));
}

.rl-section-head {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.rl-section-head p {
  margin: 0.65rem 0 0;
  color: var(--rl-muted);
  line-height: 1.55;
  font-size: 1.02rem;
}

.rl-band--ink .rl-section-head p,
.rl-band--brand .rl-section-head p {
  color: rgba(255, 255, 255, 0.72);
}

/* —— Stats —— */
.rl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rl-stat {
  background: var(--rl-ink-band);
  padding: 1.35rem 1rem;
  text-align: center;
}

.rl-stat__value {
  font-family: var(--rl-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  color: #fff;
}

.rl-stat__label {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

/* —— Region chips —— */
.rl-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.rl-chip {
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  color: var(--rl-ink-soft);
  box-shadow: inset 0 0 0 1px var(--rl-line);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.rl-chip:hover {
  color: var(--rl-brand);
  box-shadow: inset 0 0 0 1px rgba(19, 42, 142, 0.35);
}

.rl-chip.is-active {
  background: var(--rl-brand);
  color: #fff;
  box-shadow: none;
}

.rl-chip--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.rl-chip--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

/* —— Featured region (single image strip) —— */
.rl-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  min-height: 360px;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--rl-ink-band);
  box-shadow: var(--rl-shadow-lift);
}

.rl-featured__media {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.rl-featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(5, 11, 31, 0.55));
}

.rl-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  color: #fff;
}

.rl-featured__meta {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.rl-featured__count {
  margin-top: 1.25rem;
  font-family: var(--rl-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--rl-accent);
  line-height: 1;
}

.rl-featured__count span {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--rl-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* —— Main destination list (no images) —— */
.rl-dest-list {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--rl-line);
}

.rl-dest {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--rl-line);
  transition: background 0.2s ease, padding-left 0.25s ease;
}

.rl-dest:last-child {
  border-bottom: 0;
}

.rl-dest:hover {
  background: var(--rl-surface);
  padding-left: 1.45rem;
}

.rl-dest__eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rl-muted);
}

.rl-dest__title {
  margin: 0.2rem 0 0;
  font-family: var(--rl-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--rl-ink);
}

.rl-dest__sub {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: var(--rl-muted);
  line-height: 1.45;
  max-width: 46ch;
}

.rl-dest__go {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--rl-surface-2);
  color: var(--rl-brand);
  font-size: 1.15rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rl-dest:hover .rl-dest__go {
  background: var(--rl-brand);
  color: #fff;
  transform: translateX(2px);
}

.rl-dest__hubs {
  margin-top: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rl-brand);
}

/* —— Search field —— */
.rl-find {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding: 0.55rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--rl-shadow-soft), inset 0 0 0 1px var(--rl-line);
}

.rl-find input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0.65rem 1rem;
  font: inherit;
  font-size: 1rem;
  color: var(--rl-ink);
  min-width: 0;
}

.rl-find .rl-btn {
  padding: 0.7rem 1.2rem;
}

/* —— Closing CTA —— */
.rl-close {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) 1rem;
  background: var(--rl-ink-band);
  color: #fff;
}

.rl-close__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
}

.rl-close__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 11, 31, 0.96), rgba(5, 11, 31, 0.78) 45%, rgba(5, 11, 31, 0.55));
}

.rl-close__inner {
  position: relative;
  z-index: 1;
  width: min(40rem, 100%);
  margin: 0 auto;
}

.rl-close__note {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* —— Detail: book panel —— */
.rl-book {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--rl-shadow-soft), inset 0 0 0 1px var(--rl-line);
}

.rl-book__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.rl-field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rl-muted);
  margin-bottom: 0.35rem;
}

.rl-field input {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid var(--rl-line);
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: var(--rl-surface);
  color: var(--rl-ink);
}

/* —— Prose / sections —— */
.rl-prose {
  color: var(--rl-ink-soft);
  line-height: 1.65;
  font-size: 1.02rem;
}

.rl-prose p {
  margin: 0 0 1rem;
}

.rl-prose strong {
  color: var(--rl-ink);
}

.rl-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.rl-pillar {
  padding: 1.25rem 1.3rem;
  border-radius: 1.25rem;
  background: var(--rl-surface);
  border: 1px solid var(--rl-line);
}

.rl-pillar h3 {
  margin: 0 0 0.45rem;
  font-family: var(--rl-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rl-brand);
}

.rl-pillar .rl-prose {
  font-size: 0.95rem;
}

.rl-pillar .rl-prose p {
  margin: 0;
}

/* —— Fleet —— */
.rl-fleet {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 260px);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.rl-fleet::-webkit-scrollbar {
  height: 6px;
}

.rl-fleet::-webkit-scrollbar-thumb {
  background: var(--rl-line);
  border-radius: 99px;
}

.rl-car {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rl-line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rl-car:hover {
  transform: translateY(-3px);
  box-shadow: var(--rl-shadow-soft);
}

.rl-car__img {
  height: 120px;
  background: linear-gradient(145deg, #eef1fb, #f8fafc);
  background-size: cover;
  background-position: center;
}

.rl-car__body {
  padding: 0.95rem 1rem 1.1rem;
  display: grid;
  gap: 0.25rem;
}

.rl-car__name {
  font-family: var(--rl-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rl-ink);
}

.rl-car__meta {
  font-size: 0.8rem;
  color: var(--rl-muted);
}

.rl-car__price {
  margin-top: 0.35rem;
  font-weight: 800;
  font-family: var(--rl-display);
  color: var(--rl-accent);
}

/* —— Inner hubs (sibling navigation) —— */
.rl-hubs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}

.rl-hub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.rl-hub:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.rl-hub__title {
  font-family: var(--rl-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.rl-hub__sub {
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.rl-hub__go {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--rl-accent);
  color: #fff;
  font-weight: 700;
}

/* —— FAQ —— */
.rl-faq details {
  border-bottom: 1px solid var(--rl-line);
  padding: 1rem 0;
}

.rl-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--rl-display);
  letter-spacing: -0.015em;
  color: var(--rl-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.rl-faq summary::-webkit-details-marker {
  display: none;
}

.rl-faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--rl-accent);
  font-weight: 500;
}

.rl-faq details[open] summary::after {
  content: "–";
}

.rl-faq p {
  margin: 0.65rem 0 0;
  color: var(--rl-muted);
  line-height: 1.55;
}

/* —— Motion —— */
.rl-rise {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.rl-rise.is-in {
  opacity: 1;
  transform: none;
}

.rl-empty,
.rl-loading {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--rl-muted);
}

@keyframes rlKen {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 900px) {
  .rl-featured {
    grid-template-columns: 1fr;
  }
  .rl-featured__media::after {
    background: linear-gradient(0deg, rgba(5, 11, 31, 0.75), transparent 55%);
  }
  .rl-stats {
    grid-template-columns: 1fr;
  }
  .rl-find {
    grid-template-columns: 1fr;
    border-radius: 1.15rem;
  }
}

@media (max-width: 640px) {
  .rl-hero {
    min-height: min(70svh, 520px);
  }
  .rl-dest {
    grid-template-columns: 1fr auto;
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rl-hero__media {
    animation: none;
  }
  .rl-rise {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* —— Routes Atlas (premium map-led locations) —— */
.rl-shell--atlas {
  background: #eef1f6;
}

.rl-atlas-hero {
  position: relative;
  min-height: clamp(520px, 78svh, 720px);
  overflow: hidden;
  background: #d8dee8;
}

.rl-atlas-hero[hidden] {
  display: none !important;
}

.rl-atlas-hero__map {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rl-atlas-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 16, 40, 0.18) 0%, rgba(10, 16, 40, 0.05) 35%, rgba(238, 241, 246, 0.55) 72%, #eef1f6 100%),
    linear-gradient(90deg, rgba(11, 25, 87, 0.55) 0%, rgba(11, 25, 87, 0.12) 42%, transparent 70%);
}

.rl-atlas-hero__content {
  position: relative;
  z-index: 2;
  width: min(42rem, calc(100% - 2.5rem));
  padding: clamp(4.5rem, 12vw, 7.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
  margin-left: max(1.25rem, calc((100% - 72rem) / 2 + 1.25rem));
  color: #fff;
}

.rl-atlas-brand {
  margin: 0 0 0.85rem;
  font-family: var(--rl-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.rl-atlas-title {
  margin: 0;
  font-family: var(--rl-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.95;
  font-size: clamp(3rem, 8vw, 5.25rem);
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(5, 11, 31, 0.35);
}

.rl-atlas-lead {
  margin: 1.1rem 0 0;
  max-width: 28rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

.rl-atlas-search {
  position: relative;
  margin-top: 1.75rem;
  max-width: 26rem;
}

.rl-atlas-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rl-brand);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.rl-atlas-search input {
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  border: 0;
  border-radius: 0.15rem;
  padding: 1rem 1.15rem 1rem 2.75rem;
  font: inherit;
  font-size: 1rem;
  color: var(--rl-ink);
  background: rgba(255, 255, 255, 0.94);
  outline: none;
  box-shadow: 0 20px 50px -28px rgba(5, 11, 31, 0.55);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.rl-atlas-search input:focus {
  background: #fff;
  box-shadow:
    0 0 0 2px var(--rl-accent),
    0 24px 56px -28px rgba(5, 11, 31, 0.5);
}

.rl-atlas-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.rl-atlas-stats strong {
  font-family: var(--rl-display);
  font-weight: 700;
  color: #fff;
}

.rl-atlas-stats__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.rl-atlas-main {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.5rem 0 3.5rem;
  position: relative;
  z-index: 2;
}

.rl-atlas-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rl-accent);
}

.rl-atlas-browse__head {
  margin-bottom: 2rem;
  max-width: 34rem;
}

.rl-atlas-browse__title {
  margin: 0;
  font-family: var(--rl-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--rl-ink);
}

.rl-atlas-browse__lead {
  margin: 0.65rem 0 0;
  color: var(--rl-muted);
  line-height: 1.55;
}

.rl-atlas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.25rem 2.75rem;
}

.rl-atlas-col__region {
  margin: 0 0 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(19, 42, 142, 0.18);
  font-family: var(--rl-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rl-brand);
}

.rl-atlas-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.rl-atlas-country {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(14, 17, 22, 0.06);
  color: var(--rl-ink);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.rl-atlas-country:hover {
  color: var(--rl-accent);
  padding-left: 0.25rem;
}

.rl-atlas-country__name {
  font-family: var(--rl-display);
  font-weight: 650;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.rl-atlas-country__meta {
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  color: var(--rl-muted);
}

.rl-atlas-country:hover .rl-atlas-country__meta {
  color: var(--rl-accent);
}

.rl-atlas-hits {
  margin-bottom: 2.5rem;
}

.rl-atlas-hitlist,
.rl-atlas-split__list {
  display: flex;
  flex-direction: column;
}

.rl-atlas-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.75rem 1.25rem;
  align-items: baseline;
  padding: 0.95rem 0.15rem;
  border-bottom: 1px solid rgba(14, 17, 22, 0.08);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.rl-atlas-row:hover,
.rl-atlas-row.is-hot {
  background: linear-gradient(90deg, rgba(255, 122, 26, 0.08), transparent 70%);
  padding-left: 0.5rem;
}

.rl-atlas-row__name {
  font-family: var(--rl-display);
  font-weight: 650;
  font-size: 1rem;
  letter-spacing: -0.015em;
  color: var(--rl-ink);
}

.rl-atlas-row__code {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rl-brand);
  font-variant-numeric: tabular-nums;
}

.rl-atlas-row__place {
  font-size: 0.8125rem;
  color: var(--rl-muted);
  min-width: 5.5rem;
  text-align: right;
}

.rl-atlas-country-view__head {
  margin-bottom: 1.5rem;
}

.rl-atlas-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--rl-brand);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
}

.rl-atlas-back:hover {
  color: var(--rl-accent);
}

.rl-atlas-country-view__title {
  margin: 0;
  font-family: var(--rl-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--rl-ink);
}

.rl-atlas-country-view__sub {
  margin: 0.55rem 0 0;
  color: var(--rl-muted);
  max-width: 36rem;
}

.rl-atlas-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  min-height: min(70svh, 640px);
  border: 1px solid rgba(19, 42, 142, 0.12);
  background: #fff;
  overflow: hidden;
}

.rl-atlas-split__map {
  min-height: 360px;
  background: #e4e9f0;
}

.rl-atlas-split__list {
  max-height: min(70svh, 640px);
  overflow: auto;
  padding: 0.35rem 1.15rem 1.25rem;
  border-left: 1px solid rgba(19, 42, 142, 0.1);
}

.rl-map-pin {
  background: transparent !important;
  border: 0 !important;
}

.rl-map-pin__dot {
  display: block;
  width: var(--size, 12px);
  height: var(--size, 12px);
  border-radius: 50%;
  background: var(--pin, #132a8e);
  box-shadow:
    0 0 0 2px #fff,
    0 8px 18px -6px rgba(11, 25, 87, 0.55);
  transition: transform 0.2s ease, background 0.2s ease;
}

.rl-map-pin__dot.is-world {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.95),
    0 0 0 6px rgba(19, 42, 142, 0.18),
    0 10px 22px -8px rgba(11, 25, 87, 0.5);
}

.rl-map-pin__dot.is-active {
  background: #ff7a1a;
  transform: scale(1.25);
}

.rl-map-tip {
  font-family: var(--rl-sans) !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  border: 0 !important;
  border-radius: 2px !important;
  background: #0b1957 !important;
  color: #fff !important;
  box-shadow: 0 12px 28px -14px rgba(5, 11, 31, 0.55) !important;
  padding: 0.35rem 0.55rem !important;
}

.rl-map-tip::before {
  border-top-color: #0b1957 !important;
}

.rl-shell--atlas .rl-close {
  margin-top: 1rem;
}

.rl-atlas-hero .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.7) !important;
  font-size: 9px !important;
}

@media (max-width: 960px) {
  .rl-atlas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rl-atlas-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .rl-atlas-split__map {
    min-height: 280px;
  }

  .rl-atlas-split__list {
    max-height: 50svh;
    border-left: 0;
    border-top: 1px solid rgba(19, 42, 142, 0.1);
  }
}

@media (max-width: 640px) {
  .rl-atlas-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .rl-atlas-hero__content {
    margin-left: 1.25rem;
  }

  .rl-atlas-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .rl-atlas-row__place {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rl-atlas-country,
  .rl-atlas-row,
  .rl-map-pin__dot {
    transition: none;
  }
}

/* —— Location / city landing (artistic detail) —— */
.rl-shell--landing {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(19, 42, 142, 0.06), transparent 55%),
    linear-gradient(180deg, #f8f9fc 0%, #fff 28%, #f4f6fa 100%);
}

.rl-land-hero {
  position: relative;
  min-height: min(92svh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.rl-land-hero__plane {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.04);
  animation: rl-land-ken 28s ease-in-out infinite alternate;
}

@keyframes rl-land-ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.rl-land-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 11, 31, 0.88) 0%, rgba(11, 25, 87, 0.55) 42%, rgba(5, 11, 31, 0.25) 72%, rgba(5, 11, 31, 0.55) 100%),
    linear-gradient(180deg, transparent 35%, rgba(5, 11, 31, 0.75) 100%);
}

.rl-land-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.rl-land-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 4.5rem;
}

.rl-crumbs--hero a { color: rgba(255,255,255,0.78); }
.rl-crumbs--hero span { color: rgba(255,255,255,0.45); }

.rl-land-brand {
  margin: 1.35rem 0 0.35rem;
  font-family: var(--rl-display);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
  color: #fff;
  text-shadow: 0 18px 50px rgba(0,0,0,0.35);
  animation: rl-land-fade-up 0.9s ease both;
}

.rl-land-title {
  margin: 0.15rem 0 0;
  max-width: 16ch;
  font-family: var(--rl-display);
  font-size: clamp(1.55rem, 3.6vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: rgba(255,255,255,0.94);
  animation: rl-land-fade-up 0.95s ease 0.08s both;
}

.rl-land-sub {
  margin: 1rem 0 0;
  max-width: 38rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  animation: rl-land-fade-up 1s ease 0.14s both;
}

.rl-land-place {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 140, 58, 0.95);
  letter-spacing: 0.01em;
  animation: rl-land-fade-up 1.05s ease 0.18s both;
}

.rl-land-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
  animation: rl-land-fade-up 1.1s ease 0.22s both;
}

@keyframes rl-land-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.rl-land-dock {
  width: min(1120px, calc(100% - 2rem));
  margin: -3.25rem auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}

.rl-land-book {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(19, 42, 142, 0.1);
  padding: 1.35rem 1.4rem 1.25rem;
  box-shadow: var(--rl-shadow-lift);
}

.rl-land-book__title {
  margin: 0;
  font-family: var(--rl-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--rl-brand-deep);
}

.rl-land-book__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.rl-land-field {
  display: grid;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rl-muted);
}

.rl-land-field input[type="datetime-local"],
.rl-land-field input:not([type="checkbox"]) {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(19, 42, 142, 0.22);
  border-radius: 0;
  padding: 0.55rem 0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--rl-ink);
  background: transparent;
}

.rl-land-field--check {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rl-ink-soft);
}

.rl-land-field--check input { width: auto; accent-color: var(--rl-accent); }

.rl-land-book__go {
  margin-top: 1.15rem;
  width: 100%;
  justify-content: center;
}

.rl-land-book__meta {
  margin: 0.7rem 0 0;
  font-size: 0.8rem;
  color: var(--rl-muted);
}

.rl-land-promo {
  background: linear-gradient(160deg, #0b1957 0%, #132a8e 55%, #1a3aad 100%);
  color: #fff;
  padding: 1.4rem 1.35rem;
  display: grid;
  align-content: center;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
}

.rl-land-promo::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,26,0.45), transparent 70%);
  pointer-events: none;
}

.rl-land-promo__kicker {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,140,58,0.95);
  font-weight: 700;
}

.rl-land-promo__headline {
  margin: 0;
  font-family: var(--rl-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.rl-land-promo__valid {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 1;
}

.rl-land-promo__code {
  position: relative;
  z-index: 1;
  margin-top: 0.55rem;
  justify-self: start;
  border: 1px dashed rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font: 800 1.05rem var(--rl-display);
  letter-spacing: 0.12em;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.rl-land-promo__code:hover { background: rgba(255,122,26,0.25); transform: translateY(-1px); }
.rl-land-promo__code.is-copied { background: rgba(255,122,26,0.45); border-style: solid; }

.rl-land-story {
  width: min(1120px, calc(100% - 2rem));
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
}

.rl-prose--land { font-size: 1.05rem; line-height: 1.7; color: var(--rl-ink-soft); }
.rl-prose--land p { margin: 0 0 1rem; }

.rl-land-arrival {
  margin: 1.5rem 0 0;
  padding: 1.1rem 0 1.1rem 1.1rem;
  border-left: 3px solid var(--rl-accent);
  background: linear-gradient(90deg, rgba(255,122,26,0.08), transparent);
}

.rl-land-arrival p:last-child { margin: 0.35rem 0 0; color: var(--rl-ink); font-weight: 550; }

.rl-land-pillars {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}

.rl-land-pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 42, 142, 0.12);
}

.rl-land-pillar__n {
  grid-row: span 2;
  font-family: var(--rl-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(19, 42, 142, 0.25);
  letter-spacing: -0.04em;
  line-height: 1;
}

.rl-land-pillar h3 {
  margin: 0;
  font-family: var(--rl-display);
  font-size: 1.1rem;
  color: var(--rl-brand-deep);
}

.rl-land-story__map {
  position: sticky;
  top: 1rem;
}

.rl-land-map {
  height: min(520px, 70svh);
  background: #dfe5ef;
  border: 1px solid rgba(19, 42, 142, 0.12);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 94% 100%, 0 100%);
}

.rl-land-map__link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--rl-brand);
  text-decoration: none;
}

.rl-land-contact {
  margin-top: 4rem;
  padding: 3rem 0;
  background:
    linear-gradient(180deg, transparent, rgba(19, 42, 142, 0.04)),
    repeating-linear-gradient(-12deg, transparent, transparent 18px, rgba(19, 42, 142, 0.03) 18px, rgba(19, 42, 142, 0.03) 19px);
}

.rl-land-contact__grid {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.rl-land-contact__addr {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--rl-ink-soft);
}

.rl-land-contact__list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.rl-land-contact__list li {
  display: grid;
  gap: 0.15rem;
}

.rl-land-contact__list span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rl-muted);
}

.rl-land-contact__list a {
  color: var(--rl-brand);
  font-weight: 650;
  text-decoration: none;
  font-size: 1.05rem;
}

.rl-hours {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
}

.rl-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(19, 42, 142, 0.1);
  font-size: 0.95rem;
  color: var(--rl-ink-soft);
}

.rl-hours__row.is-today {
  color: var(--rl-brand-deep);
  font-weight: 700;
  border-bottom-color: rgba(255, 122, 26, 0.45);
}

.rl-land-fleet {
  width: min(1200px, calc(100% - 0rem));
  margin: 3.5rem auto 0;
  padding: 0 0 1rem;
}

.rl-land-fleet__head {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1.25rem;
}

.rl-land-fleet__rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.5rem max(1rem, calc((100% - 1120px) / 2)) 1.25rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.rl-land-car {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 0;
  box-shadow: none;
  display: grid;
  transition: transform 0.25s ease;
}

.rl-land-car:hover { transform: translateY(-4px); }

.rl-land-car__img {
  aspect-ratio: 16 / 10;
  background: #eef1f6 center/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}

.rl-land-car__meta { padding: 0.85rem 0.15rem 0.35rem; }

.rl-land-car__name {
  font-family: var(--rl-display);
  font-weight: 750;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--rl-brand-deep);
}

.rl-land-car__spec { margin-top: 0.25rem; font-size: 0.82rem; color: var(--rl-muted); }

.rl-land-car__price {
  margin-top: 0.55rem;
  font-family: var(--rl-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--rl-accent);
}

.rl-land-car__price span { font-size: 0.75rem; font-weight: 600; color: var(--rl-muted); }

.rl-land-policy {
  width: min(900px, calc(100% - 2rem));
  margin: 4rem auto 0;
}

.rl-land-policy__intro { margin-bottom: 1.5rem; }

.rl-land-pol {
  border-top: 1px solid rgba(19, 42, 142, 0.14);
  padding: 0;
}

.rl-land-pol:last-child { border-bottom: 1px solid rgba(19, 42, 142, 0.14); }

.rl-land-pol summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0;
  font-family: var(--rl-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--rl-brand-deep);
}

.rl-land-pol summary::-webkit-details-marker { display: none; }

.rl-land-pol__n {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--rl-accent);
}

.rl-land-pol__chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--rl-brand);
  border-bottom: 2px solid var(--rl-brand);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.rl-land-pol[open] .rl-land-pol__chev { transform: rotate(-135deg); }

.rl-prose--policy {
  padding: 0 0 1.35rem;
  color: var(--rl-ink-soft);
  line-height: 1.65;
}

.rl-prose--policy p { margin: 0 0 0.85rem; }

.rl-land-more {
  margin-top: 4rem;
  padding: 3rem 0;
  background: var(--rl-ink-band);
  color: #fff;
}

.rl-land-more__head {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto 1.25rem;
}

.rl-land-more .rl-display--section { color: #fff; }

.rl-land-more__rail {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.rl-land-chip {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.05);
  border-bottom: 2px solid transparent;
  min-width: min(220px, 100%);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.rl-land-chip:hover {
  background: rgba(255,122,26,0.12);
  border-bottom-color: var(--rl-accent);
}

.rl-land-chip strong {
  font-family: var(--rl-display);
  font-size: 0.98rem;
}

.rl-land-chip span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.rl-land-more__back {
  display: inline-block;
  width: min(1120px, calc(100% - 2rem));
  margin: 1.5rem auto 0;
  color: rgba(255,140,58,0.95);
  font-weight: 700;
  text-decoration: none;
}

.rl-land-faq {
  padding: 3.5rem 0 1rem;
}

.rl-land-faq__inner {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
}

@media (max-width: 960px) {
  .rl-land-dock,
  .rl-land-story,
  .rl-land-contact__grid {
    grid-template-columns: 1fr;
  }

  .rl-land-story__map { position: static; }
  .rl-land-map { height: 320px; clip-path: none; }
  .rl-land-hero { min-height: min(78svh, 680px); }
  .rl-land-book__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .rl-land-hero__plane,
  .rl-land-brand,
  .rl-land-title,
  .rl-land-sub,
  .rl-land-place,
  .rl-land-hero__cta {
    animation: none !important;
  }
}

/* —— Homepage-aligned location landing —— */
.rl-sitebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19, 42, 142, 0.1);
  position: sticky;
  top: 0;
  z-index: 30;
}

.rl-sitebar__brand {
  font-family: var(--rl-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--rl-brand);
  text-decoration: none;
}

.rl-sitebar__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
}

.rl-sitebar__nav a {
  color: var(--rl-ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.rl-sitebar__nav a:hover { color: var(--rl-brand); }

.rl-home-hero {
  position: relative;
  min-height: min(72svh, 640px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.rl-home-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.rl-home-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5,11,31,0.88) 0%, rgba(11,25,87,0.55) 50%, rgba(5,11,31,0.3) 100%),
    linear-gradient(180deg, transparent 38%, rgba(5,11,31,0.8) 100%);
}

.rl-home-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 2.25rem;
}

.rl-home-hero__title {
  margin: 0.25rem 0 0;
  max-width: 16ch;
  font-family: var(--rl-display);
  font-size: clamp(1.85rem, 4.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
}

.rl-home-hero__sub {
  margin: 0.85rem 0 0;
  max-width: 38rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Legacy sitebar removed — use global SPA header/footer */
.rl-sitebar { display: none !important; }
.rl-home-hero__brand { display: none !important; }

/* Single homepage-style search bar */
.rl-home-search {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: 0 28px 60px -28px rgba(5, 11, 31, 0.55);
  color: var(--rl-ink);
}

.rl-home-search__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 0;
}

.rl-home-search__field {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 1rem;
  border-right: 1px solid rgba(19, 42, 142, 0.1);
  min-width: 0;
}

.rl-home-search__field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rl-muted);
}

.rl-home-search__field input {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rl-ink);
  outline: none;
}

.rl-home-search__btn {
  border: 0;
  background: var(--rl-accent);
  color: #fff;
  font-family: var(--rl-display);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0 1.35rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.rl-home-search__btn:hover { background: #ff8c3a; }

.rl-home-diff {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.rl-home-diff--in {
  margin: 0;
  padding: 0.65rem 1rem 0.85rem;
  color: var(--rl-ink-soft);
  border-top: 1px solid rgba(19, 42, 142, 0.08);
  background: #fafbfe;
}

.rl-home-diff input { accent-color: var(--rl-accent); }

.rl-home-promo {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.rl-home-promo__k {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,140,58,0.95);
  font-weight: 700;
}

.rl-home-promo__h {
  margin: 0.2rem 0 0;
  font-family: var(--rl-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.rl-home-promo__v {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

.rl-home-promo__code {
  border: 1px dashed rgba(255,255,255,0.5);
  background: rgba(255,122,26,0.2);
  color: #fff;
  font: 800 1rem var(--rl-display);
  letter-spacing: 0.12em;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.rl-home-promo__code.is-copied { background: rgba(255,122,26,0.5); }

.rl-home-strip {
  padding: 2.75rem 0;
  background: linear-gradient(180deg, #f7f8fc, #fff);
}

.rl-home-strip__grid {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.1fr;
  gap: 1.75rem 2rem;
}

.rl-home-strip__title {
  margin: 0;
  font-family: var(--rl-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--rl-brand-deep);
}

.rl-home-strip__addr {
  margin: 0.65rem 0 0;
  color: var(--rl-ink-soft);
  line-height: 1.5;
}

.rl-home-strip__contact {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.rl-home-strip__contact span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rl-muted);
}

.rl-home-strip__contact a {
  color: var(--rl-brand);
  font-weight: 650;
  text-decoration: none;
}

.rl-home-strip__arrival {
  margin: 1rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(19,42,142,0.12);
  color: var(--rl-ink-soft);
  line-height: 1.5;
  font-size: 0.95rem;
}

.rl-home-map {
  height: 240px;
  margin-top: 0.75rem;
  background: #e4e9f0;
  border: 1px solid rgba(19,42,142,0.1);
}

.rl-home-map__go {
  display: inline-block;
  margin-top: 0.55rem;
  font-weight: 700;
  color: var(--rl-brand);
  text-decoration: none;
}

.rl-home-fleet {
  width: min(1100px, calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 2rem 0 1rem;
}

.rl-home-fleet__head { margin-bottom: 1.25rem; }

.rl-home-fleet__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}

.rl-home-car {
  text-decoration: none;
  color: inherit;
  display: grid;
  background: #fff;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.rl-home-car:hover {
  border-bottom-color: var(--rl-accent);
  transform: translateY(-2px);
}

.rl-home-car__img {
  aspect-ratio: 16 / 10;
  background: #eef1f6 center/cover no-repeat;
}

.rl-home-car__body { padding: 0.75rem 0.1rem 0.5rem; }

.rl-home-car__name {
  font-family: var(--rl-display);
  font-weight: 750;
  font-size: 1.05rem;
  color: var(--rl-brand-deep);
}

.rl-home-car__meta { margin-top: 0.2rem; font-size: 0.8rem; color: var(--rl-muted); }

.rl-home-car__price {
  margin-top: 0.45rem;
  font-family: var(--rl-display);
  font-weight: 800;
  color: var(--rl-accent);
}

.rl-home-car__price span { font-size: 0.72rem; color: var(--rl-muted); font-weight: 600; }

.rl-home-about {
  padding: 2.5rem 0;
  background: #f7f8fc;
}

.rl-home-about__inner {
  width: min(760px, calc(100% - 2rem));
  margin: 0 auto;
}

.rl-home-policy {
  padding: 3rem 0 2rem;
  background: #fff;
}

.rl-home-policy__inner {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
}

.rl-home-policy__lead {
  margin: 0.65rem 0 1.5rem;
  color: var(--rl-ink-soft);
}

.rl-home-pol {
  border-top: 1px solid rgba(19, 42, 142, 0.14);
}

.rl-home-pol:last-child { border-bottom: 1px solid rgba(19, 42, 142, 0.14); }

.rl-home-pol summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1.05rem 0;
  font-family: var(--rl-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--rl-brand-deep);
}

.rl-home-pol summary::-webkit-details-marker { display: none; }

.rl-home-pol__n {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--rl-accent);
}

.rl-home-pol .rl-prose--policy {
  padding: 0 0 1.15rem;
  color: var(--rl-ink-soft);
  line-height: 1.65;
}

.rl-home-pol .rl-prose--policy p { margin: 0 0 0.75rem; }

/* Rise: never leave content invisible */
.rl-shell--landing .rl-rise { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .rl-home-search__row {
    grid-template-columns: 1fr;
  }
  .rl-home-search__field { border-right: 0; border-bottom: 1px solid rgba(19,42,142,0.1); }
  .rl-home-search__btn { padding: 1rem; }
  .rl-home-strip__grid { grid-template-columns: 1fr; }
  .rl-sitebar__nav { display: none; }
}
