/* ==========================================================================
   RoadTrips — Components Stylesheet
   Header, Hero, Cards, Grids, Route Strip, Lightbox & Footer
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Header & Navigation
   -------------------------------------------------------------------------- */
.rt-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--rt-z-header);
  padding: 24px 0;
  transition: background-color var(--rt-transition-normal),
              padding var(--rt-transition-normal),
              backdrop-filter var(--rt-transition-normal),
              border-color var(--rt-transition-normal);
}

.rt-header.is-scrolled {
  background-color: rgba(21, 23, 20, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
}

.rt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Wordmark */
.rt-logo {
  font-family: var(--rt-font-display);
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: var(--rt-text-light);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.rt-logo em {
  font-family: var(--rt-font-body);
  font-style: italic;
  font-weight: 300;
  color: #E28C67;
  font-size: 1.35rem;
}

/* Desktop Nav Links */
.rt-nav-desktop {
  display: none;
  align-items: center;
  gap: var(--rt-space-7);
}

@media (min-width: 900px) {
  .rt-nav-desktop {
    display: flex;
  }
}

.rt-nav-desktop ul {
  display: flex;
  align-items: center;
  gap: var(--rt-space-6);
  list-style: none;
}

.rt-nav-link {
  font-size: var(--rt-text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(244, 240, 232, 0.78);
  padding: 6px 0;
  position: relative;
  transition: color var(--rt-transition-fast);
}

.rt-nav-link:hover,
.rt-nav-link.is-active {
  color: var(--rt-text-light);
}

.rt-nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--rt-accent);
}

.rt-header-actions {
  display: flex;
  align-items: center;
  gap: var(--rt-space-4);
}

.rt-header-contact-btn {
  display: none;
  font-size: var(--rt-text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rt-text-light);
  padding: 8px 18px;
  border: 1px solid rgba(244, 240, 232, 0.28);
  border-radius: var(--rt-radius-sm);
  transition: all var(--rt-transition-fast);
}

@media (min-width: 768px) {
  .rt-header-contact-btn {
    display: inline-flex;
  }
}

.rt-header-contact-btn:hover {
  background-color: var(--rt-text-light);
  color: var(--rt-dark);
}

/* Mobile Menu Button */
.rt-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: var(--rt-z-drawer + 10);
}

@media (min-width: 900px) {
  .rt-menu-toggle {
    display: none;
  }
}

.rt-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--rt-text-light);
  transition: transform var(--rt-transition-normal), opacity var(--rt-transition-fast);
  transform-origin: center;
}

.rt-menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.rt-menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.rt-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 460px;
  height: 100vh;
  background-color: var(--rt-dark-elevated);
  z-index: var(--rt-z-drawer);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(32px, 6vw, 64px) clamp(24px, 6vw, 48px);
  transform: translateX(100%);
  transition: transform var(--rt-transition-slow);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(244, 240, 232, 0.08);
}

.rt-drawer.is-open {
  transform: translateX(0);
}

.rt-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: calc(var(--rt-z-drawer) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--rt-transition-normal);
}

.rt-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.rt-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--rt-space-8);
}

.rt-drawer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-5);
}

.rt-drawer-link {
  font-family: var(--rt-font-display);
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  color: var(--rt-text-light-secondary);
  transition: color var(--rt-transition-fast), transform var(--rt-transition-fast);
  display: inline-block;
}

.rt-drawer-link:hover,
.rt-drawer-link.is-active {
  color: var(--rt-text-light);
  transform: translateX(8px);
}

.rt-drawer-footer {
  margin-top: auto;
  padding-top: var(--rt-space-6);
  border-top: 1px solid rgba(244, 240, 232, 0.08);
}

.rt-drawer-status-label {
  font-size: var(--rt-text-meta);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #E28C67;
  font-weight: 600;
  margin-bottom: 4px;
}

.rt-drawer-status-value {
  font-size: var(--rt-text-sm);
  color: var(--rt-text-light-muted);
}

/* --------------------------------------------------------------------------
   02. Cinematic Hero Section
   -------------------------------------------------------------------------- */
.rt-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(48px, 8vw, 96px);
  padding-top: 120px;
  overflow: hidden;
  background-color: var(--rt-dark);
  color: var(--rt-text-light);
}

.rt-hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.rt-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transform: scale(1.04);
  transition: transform 12s ease-out;
}

.rt-hero:hover .rt-hero-video {
  transform: scale(1.0);
}

.rt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(21, 23, 20, 0.45) 0%,
    rgba(21, 23, 20, 0.2) 40%,
    rgba(21, 23, 20, 0.75) 80%,
    rgba(21, 23, 20, 0.95) 100%
  );
  z-index: 2;
}

.rt-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.rt-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rt-space-7);
}

@media (min-width: 900px) {
  .rt-hero-grid {
    grid-template-columns: 1.8fr 1fr;
    align-items: flex-end;
  }
}

.rt-hero-title {
  font-size: var(--rt-text-hero);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--rt-text-light);
  margin-bottom: var(--rt-space-4);
}

.rt-hero-title em {
  font-style: italic;
  color: #E28C67;
  font-weight: 300;
}

.rt-hero-subtitle {
  font-size: var(--rt-text-lead);
  color: var(--rt-text-light-secondary);
  max-width: 560px;
  margin-bottom: var(--rt-space-6);
  line-height: 1.6;
}

.rt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--rt-space-4);
}

.rt-hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: var(--rt-space-4);
}

@media (min-width: 900px) {
  .rt-hero-aside {
    align-items: flex-end;
    text-align: right;
  }
}

.rt-coordinates {
  font-family: var(--rt-font-mono);
  font-size: var(--rt-text-xs);
  letter-spacing: 0.12em;
  color: rgba(244, 240, 232, 0.6);
  border-left: 2px solid var(--rt-accent);
  padding-left: var(--rt-space-3);
}

@media (min-width: 900px) {
  .rt-coordinates {
    border-left: none;
    border-right: 2px solid var(--rt-accent);
    padding-left: 0;
    padding-right: var(--rt-space-3);
  }
}

.rt-scroll-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--rt-space-2);
  font-size: var(--rt-text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 240, 232, 0.6);
}

.rt-scroll-indicator svg {
  animation: rtBounce 2s infinite ease-in-out;
}

@keyframes rtBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --------------------------------------------------------------------------
   03. Featured Journey Section
   -------------------------------------------------------------------------- */
.rt-featured-journey-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (min-width: 992px) {
  .rt-featured-journey-wrap {
    grid-template-columns: 1.35fr 1fr;
  }
}

.rt-featured-media {
  position: relative;
  overflow: hidden;
  background-color: var(--rt-surface-warm);
}

.rt-featured-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform var(--rt-transition-slow);
}

.rt-featured-journey-wrap:hover .rt-featured-img {
  transform: scale(1.02);
}

.rt-featured-content {
  display: flex;
  flex-direction: column;
}

.rt-featured-number {
  font-family: var(--rt-font-mono);
  font-size: 0.9rem;
  color: var(--rt-accent);
  font-weight: 600;
  margin-bottom: var(--rt-space-2);
}

.rt-featured-route {
  font-size: var(--rt-text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rt-text-muted);
  margin-bottom: var(--rt-space-3);
}

.rt-featured-title {
  font-size: var(--rt-text-h2);
  margin-bottom: var(--rt-space-4);
  line-height: 1.15;
}

.rt-featured-summary {
  font-size: var(--rt-text-lead);
  line-height: 1.7;
  color: var(--rt-text-secondary);
  margin-bottom: var(--rt-space-6);
}

/* Metadata Strip / Grid */
.rt-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rt-space-4);
  padding: var(--rt-space-5) 0;
  border-top: 1px solid var(--rt-border);
  border-bottom: 1px solid var(--rt-border);
  margin-bottom: var(--rt-space-6);
}

@media (min-width: 600px) {
  .rt-meta-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rt-meta-item {
  display: flex;
  flex-direction: column;
}

.rt-meta-label {
  font-size: var(--rt-text-meta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rt-text-muted);
  margin-bottom: 2px;
}

.rt-meta-value {
  font-size: var(--rt-text-sm);
  font-weight: 600;
  color: var(--rt-text);
}

/* --------------------------------------------------------------------------
   04. Selected Journeys Editorial Grid
   -------------------------------------------------------------------------- */
.rt-section-header {
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-2);
  margin-bottom: clamp(32px, 5vw, 64px);
}

@media (min-width: 768px) {
  .rt-section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.rt-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
}

@media (min-width: 768px) {
  .rt-editorial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Asymmetric sizing for editorial rhythm */
  .rt-editorial-grid .rt-journey-card:nth-child(1) {
    grid-column: span 1;
  }
  .rt-editorial-grid .rt-journey-card:nth-child(2) {
    grid-column: span 1;
  }
}

.rt-journey-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--rt-surface);
  border: 1px solid var(--rt-border-subtle);
  overflow: hidden;
  transition: transform var(--rt-transition-normal), box-shadow var(--rt-transition-normal);
}

.rt-journey-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rt-shadow-md);
}

.rt-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--rt-surface-warm);
}

.rt-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--rt-transition-slow);
}

.rt-journey-card:hover .rt-card-img {
  transform: scale(1.04);
}

.rt-card-body {
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rt-card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--rt-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rt-accent);
  margin-bottom: var(--rt-space-2);
}

.rt-card-title {
  font-size: var(--rt-text-h3);
  margin-bottom: var(--rt-space-2);
  line-height: 1.25;
}

.rt-card-desc {
  font-size: var(--rt-text-sm);
  color: var(--rt-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--rt-space-4);
  flex-grow: 1;
}

.rt-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--rt-space-4);
  border-top: 1px solid var(--rt-border-subtle);
  font-size: var(--rt-text-xs);
  color: var(--rt-text-muted);
}

/* --------------------------------------------------------------------------
   05. The Road Log — Statistics Strip
   -------------------------------------------------------------------------- */
.rt-road-log {
  background-color: var(--rt-dark);
  color: var(--rt-text-light);
  border-top: 1px solid rgba(244, 240, 232, 0.08);
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
  padding: clamp(48px, 6vw, 72px) 0;
}

.rt-log-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rt-space-6);
}

@media (min-width: 900px) {
  .rt-log-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rt-log-item {
  display: flex;
  flex-direction: column;
  border-left: 1.5px solid var(--rt-accent);
  padding-left: var(--rt-space-4);
}

.rt-log-metric {
  font-family: var(--rt-font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--rt-text-light);
  margin-bottom: var(--rt-space-1);
}

.rt-log-unit {
  font-size: 0.95rem;
  font-family: var(--rt-font-body);
  font-weight: 300;
  color: #E28C67;
}

.rt-log-desc {
  font-size: var(--rt-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rt-text-light-muted);
}

/* --------------------------------------------------------------------------
   06. Latest Stories Section
   -------------------------------------------------------------------------- */
.rt-stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
}

@media (min-width: 900px) {
  .rt-stories-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.rt-story-card-large {
  display: flex;
  flex-direction: column;
  background-color: var(--rt-surface);
  border: 1px solid var(--rt-border-subtle);
  overflow: hidden;
}

.rt-story-card-large .rt-card-media {
  aspect-ratio: 16 / 10;
}

.rt-story-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 32px);
}

.rt-story-item-horizontal {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rt-space-4);
  background-color: var(--rt-surface);
  border: 1px solid var(--rt-border-subtle);
  padding: var(--rt-space-4);
}

@media (min-width: 600px) {
  .rt-story-item-horizontal {
    grid-template-columns: 140px 1fr;
    align-items: center;
  }
}

.rt-story-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rt-story-pill {
  display: inline-block;
  font-size: var(--rt-text-meta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rt-accent);
  margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   07. Featured Photo Essay (Full-Bleed)
   -------------------------------------------------------------------------- */
.rt-photo-essay-feature {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--rt-text-light);
  overflow: hidden;
  background-color: var(--rt-dark);
}

.rt-essay-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 8s ease-out;
}

.rt-photo-essay-feature:hover .rt-essay-backdrop {
  transform: scale(1.03);
}

.rt-essay-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(21, 23, 20, 0.4) 0%, rgba(21, 23, 20, 0.85) 100%);
}

.rt-essay-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: var(--rt-space-6);
}

.rt-essay-title {
  font-size: var(--rt-text-h1);
  margin-bottom: var(--rt-space-3);
}

.rt-essay-deck {
  font-size: var(--rt-text-lead);
  color: var(--rt-text-light-secondary);
  margin-bottom: var(--rt-space-6);
}

/* --------------------------------------------------------------------------
   08. Geographic Route Strip
   -------------------------------------------------------------------------- */
.rt-route-strip-wrap {
  padding: var(--rt-space-7) 0;
  border-top: 1px solid var(--rt-border);
  border-bottom: 1px solid var(--rt-border);
}

.rt-route-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-5);
  margin: var(--rt-space-6) 0;
}

@media (min-width: 768px) {
  .rt-route-timeline {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.rt-waypoint {
  display: flex;
  align-items: center;
  gap: var(--rt-space-3);
}

.rt-waypoint-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--rt-accent);
  box-shadow: 0 0 0 4px rgba(184, 98, 59, 0.2);
  flex-shrink: 0;
}

.rt-waypoint-name {
  font-family: var(--rt-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rt-route-leg {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  padding: 0 var(--rt-space-3);
}

.rt-route-leg-line {
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--rt-accent),
    var(--rt-accent) 6px,
    transparent 6px,
    transparent 12px
  );
  margin: var(--rt-space-2) 0;
}

.rt-route-leg-dist {
  font-family: var(--rt-font-mono);
  font-size: var(--rt-text-xs);
  color: var(--rt-text-muted);
}

/* --------------------------------------------------------------------------
   09. About Preview Section
   -------------------------------------------------------------------------- */
.rt-about-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

@media (min-width: 900px) {
  .rt-about-preview-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.rt-about-media-stack {
  position: relative;
}

.rt-about-primary-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rt-about-caption-box {
  margin-top: var(--rt-space-3);
  font-family: var(--rt-font-mono);
  font-size: var(--rt-text-xs);
  color: var(--rt-text-muted);
  border-left: 2px solid var(--rt-accent);
  padding-left: var(--rt-space-3);
}

/* --------------------------------------------------------------------------
   10. Recent Photographic Frames Strip
   -------------------------------------------------------------------------- */
.rt-frames-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--rt-space-3);
}

@media (min-width: 640px) {
  .rt-frames-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .rt-frames-strip {
    grid-template-columns: repeat(6, 1fr);
  }
}

.rt-frame-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--rt-dark);
}

.rt-frame-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--rt-transition-normal), opacity var(--rt-transition-fast);
}

.rt-frame-item:hover img {
  transform: scale(1.08);
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   11. Closing CTA Section
   -------------------------------------------------------------------------- */
.rt-closing-cta {
  background-color: var(--rt-deep-green);
  color: var(--rt-text-light);
  text-align: center;
  padding: clamp(72px, 9vw, 140px) 0;
}

.rt-closing-cta h2 {
  font-size: var(--rt-text-h1);
  color: var(--rt-text-light);
  margin-bottom: var(--rt-space-3);
}

.rt-closing-cta p {
  color: var(--rt-text-light-secondary);
  font-size: var(--rt-text-lead);
  max-width: 520px;
  margin: 0 auto var(--rt-space-6);
}

/* --------------------------------------------------------------------------
   12. Editorial Footer
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   12. Luxury Editorial Footer Overhaul
   -------------------------------------------------------------------------- */
.rt-footer {
  background-color: #0F110E;
  color: var(--rt-text-light-secondary);
  padding: 0 0 48px;
  border-top: 1px solid rgba(244, 240, 232, 0.1);
  position: relative;
  overflow: hidden;
}

/* Telemetry & Road Dispatch Ticker */
.rt-footer-ticker {
  background-color: #171A16;
  border-bottom: 1px solid rgba(244, 240, 232, 0.08);
  padding: 12px 0;
  font-family: var(--rt-font-mono);
  font-size: var(--rt-text-xs);
  letter-spacing: 0.06em;
  color: var(--rt-text-light-muted);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.rt-ticker-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.rt-ticker-inner > div {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  line-height: 1.5;
}

.rt-ticker-text {
  font-size: 0.76rem;
  color: var(--rt-text-light-muted);
}

@media (max-width: 860px) {
  .rt-footer-ticker {
    padding: 10px 0;
  }
  .rt-ticker-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .rt-ticker-text {
    font-size: 0.72rem;
  }
}

.rt-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E28C67;
  font-weight: 600;
  text-transform: uppercase;
  flex-shrink: 0;
}

.rt-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4CAF50;
  box-shadow: 0 0 10px #4CAF50;
  animation: rtPulse 2s infinite;
  flex-shrink: 0;
}

@keyframes rtPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.rt-footer-main {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(48px, 6vw, 80px);
  position: relative;
  z-index: 2;
}

.rt-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 64px);
  margin-bottom: clamp(48px, 6vw, 80px);
}

@media (min-width: 900px) {
  .rt-footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  }
}

.rt-footer-brand-title {
  font-family: var(--rt-font-display);
  font-size: 2.2rem;
  color: var(--rt-text-light);
  margin-bottom: var(--rt-space-3);
  letter-spacing: -0.01em;
}

.rt-footer-tagline {
  font-size: var(--rt-text-sm);
  line-height: 1.7;
  max-width: 360px;
  color: var(--rt-text-light-secondary);
  margin-bottom: var(--rt-space-5);
}

.rt-footer-heading {
  font-family: var(--rt-font-body);
  font-size: var(--rt-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rt-text-light);
  margin-bottom: var(--rt-space-4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rt-footer-heading::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: var(--rt-accent);
}

.rt-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-3);
}

.rt-footer-link {
  font-size: var(--rt-text-sm);
  color: var(--rt-text-light-muted);
  transition: all var(--rt-transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rt-footer-link:hover {
  color: var(--rt-text-light);
  transform: translateX(4px);
}

.rt-footer-badge {
  font-family: var(--rt-font-mono);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 2px;
  background: rgba(184, 98, 59, 0.2);
  color: #E28C67;
  border: 1px solid rgba(184, 98, 59, 0.4);
}

/* Dispatch Newsletter Box */
.rt-dispatch-box {
  background: rgba(244, 240, 232, 0.04);
  border: 1px solid rgba(244, 240, 232, 0.1);
  padding: var(--rt-space-5);
  border-radius: var(--rt-radius-sm);
}

.rt-dispatch-title {
  font-family: var(--rt-font-display);
  font-size: 1.25rem;
  color: var(--rt-text-light);
  margin-bottom: 6px;
}

.rt-dispatch-desc {
  font-size: 0.82rem;
  color: var(--rt-text-light-muted);
  line-height: 1.55;
  margin-bottom: var(--rt-space-4);
}

.rt-dispatch-form {
  display: flex;
  gap: 8px;
}

.rt-dispatch-input {
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(244, 240, 232, 0.15);
  color: var(--rt-text-light);
  font-family: var(--rt-font-body);
  font-size: 0.82rem;
  padding: 10px 12px;
  border-radius: var(--rt-radius-sm);
}

.rt-dispatch-input:focus {
  outline: none;
  border-color: var(--rt-accent);
}

.rt-dispatch-btn {
  background: var(--rt-accent);
  border: none;
  color: #FFFFFF;
  padding: 0 16px;
  border-radius: var(--rt-radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
  transition: background var(--rt-transition-fast);
  white-space: nowrap;
}

.rt-dispatch-btn:hover {
  background: var(--rt-accent-hover);
}

/* Large Background Watermark */
.rt-footer-watermark {
  font-family: var(--rt-font-display);
  font-size: clamp(3rem, 12vw, 12rem);
  line-height: 0.85;
  color: rgba(244, 240, 232, 0.02);
  text-align: center;
  letter-spacing: 0.08em;
  user-select: none;
  pointer-events: none;
  margin-bottom: var(--rt-space-6);
  text-transform: uppercase;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.rt-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-4);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--rt-space-6);
  border-top: 1px solid rgba(244, 240, 232, 0.08);
  font-size: var(--rt-text-xs);
  color: var(--rt-text-light-muted);
}

@media (min-width: 768px) {
  .rt-footer-bottom {
    flex-direction: row;
  }
}

/* --------------------------------------------------------------------------
   13. Contact Modal / Dialog
   -------------------------------------------------------------------------- */
.rt-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: var(--rt-z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--rt-transition-normal);
}

.rt-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.rt-modal-dialog {
  background-color: var(--rt-surface);
  color: var(--rt-text);
  width: 100%;
  max-width: 580px;
  border-radius: var(--rt-radius-md);
  box-shadow: var(--rt-shadow-lg);
  padding: clamp(28px, 5vw, 44px);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--rt-transition-normal);
}

.rt-modal.is-open .rt-modal-dialog {
  transform: translateY(0);
}

.rt-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--rt-text-muted);
  transition: color var(--rt-transition-fast);
}

.rt-modal-close:hover {
  color: var(--rt-text);
}

.rt-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--rt-space-4);
}

.rt-form-label {
  font-size: var(--rt-text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rt-text);
}

.rt-form-input,
.rt-form-select,
.rt-form-textarea {
  font-family: var(--rt-font-body);
  font-size: var(--rt-text-sm);
  padding: 12px 16px;
  background-color: #FFFFFF;
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-sm);
  color: var(--rt-text);
  transition: border-color var(--rt-transition-fast), box-shadow var(--rt-transition-fast);
}

.rt-form-input:focus,
.rt-form-select:focus,
.rt-form-textarea:focus {
  outline: none;
  border-color: var(--rt-accent);
  box-shadow: 0 0 0 3px rgba(184, 98, 59, 0.15);
}

.rt-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.rt-form-feedback {
  display: none;
  padding: 12px 16px;
  border-radius: var(--rt-radius-sm);
  font-size: var(--rt-text-sm);
  margin-top: var(--rt-space-4);
}

.rt-form-feedback.is-success {
  display: block;
  background-color: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #C8E6C9;
}

/* --------------------------------------------------------------------------
   14. Subpage Headers & Eyebrows
   -------------------------------------------------------------------------- */
.rt-page-header {
  padding-top: clamp(120px, 14vw, 180px);
  padding-bottom: clamp(48px, 6vw, 80px);
  background-color: var(--rt-dark);
  color: var(--rt-text-light);
  position: relative;
  overflow: hidden;
}

.rt-page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(184, 98, 59, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.rt-page-header-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.rt-page-header-title {
  font-size: var(--rt-text-h1);
  color: var(--rt-text-light);
  margin-bottom: var(--rt-space-3);
  line-height: 1.1;
}

.rt-page-header-lead {
  font-size: var(--rt-text-lead);
  color: var(--rt-text-light-secondary);
  line-height: 1.65;
}

/* Breadcrumbs */
.rt-breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--rt-space-2);
  font-size: var(--rt-text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rt-text-light-muted);
  margin-bottom: var(--rt-space-3);
}

.rt-breadcrumbs a {
  color: var(--rt-text-light-muted);
}

.rt-breadcrumbs a:hover {
  color: var(--rt-text-light);
}

/* --------------------------------------------------------------------------
   15. Filter Bars & Chips
   -------------------------------------------------------------------------- */
.rt-filter-bar {
  display: flex;
  align-items: center;
  gap: var(--rt-space-2);
  flex-wrap: wrap;
  padding: var(--rt-space-5) 0;
  border-bottom: 1px solid var(--rt-border);
  margin-bottom: clamp(32px, 5vw, 64px);
}

.rt-filter-btn {
  font-family: var(--rt-font-body);
  font-size: var(--rt-text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 18px;
  background-color: transparent;
  color: var(--rt-text-muted);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-pill);
  cursor: pointer;
  transition: all var(--rt-transition-fast);
}

.rt-filter-btn:hover {
  color: var(--rt-text);
  border-color: var(--rt-text);
}

.rt-filter-btn.is-active {
  background-color: var(--rt-dark);
  color: var(--rt-text-light);
  border-color: var(--rt-dark);
}

/* --------------------------------------------------------------------------
   16. Photography Gallery & Lightbox
   -------------------------------------------------------------------------- */
.rt-gallery-grid {
  columns: 1;
  column-gap: clamp(16px, 2.5vw, 28px);
}

@media (min-width: 600px) {
  .rt-gallery-grid {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .rt-gallery-grid {
    columns: 3;
  }
}

.rt-gallery-item {
  break-inside: avoid;
  margin-bottom: clamp(16px, 2.5vw, 28px);
  position: relative;
  overflow: hidden;
  background-color: var(--rt-surface-warm);
  cursor: pointer;
}

.rt-gallery-thumb {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--rt-transition-normal), filter var(--rt-transition-fast);
}

.rt-gallery-item:hover .rt-gallery-thumb {
  transform: scale(1.03);
}

.rt-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(21, 23, 20, 0.85) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--rt-space-4);
  color: var(--rt-text-light);
  transition: opacity var(--rt-transition-fast);
}

.rt-gallery-item:hover .rt-gallery-item-overlay {
  opacity: 1;
}

.rt-gallery-item-title {
  font-family: var(--rt-font-display);
  font-size: 1.15rem;
  color: var(--rt-text-light);
  line-height: 1.2;
}

.rt-gallery-item-meta {
  font-size: var(--rt-text-xs);
  color: var(--rt-text-light-muted);
}

/* Modern Accessible Lightbox Modal */
.rt-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 11, 9, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: var(--rt-z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--rt-transition-normal);
}

.rt-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.rt-lightbox-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.rt-lightbox-figure {
  max-height: calc(90vh - 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rt-lightbox-img {
  max-width: 100%;
  max-height: calc(85vh - 120px);
  object-fit: contain;
  box-shadow: var(--rt-shadow-lg);
}

.rt-lightbox-caption {
  margin-top: var(--rt-space-4);
  text-align: center;
  color: var(--rt-text-light);
  max-width: 600px;
}

.rt-lightbox-title {
  font-family: var(--rt-font-display);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.rt-lightbox-details {
  font-size: var(--rt-text-xs);
  color: var(--rt-text-light-muted);
}

.rt-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--rt-text-light);
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

.rt-lightbox-prev,
.rt-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(244, 240, 232, 0.1);
  border: 1px solid rgba(244, 240, 232, 0.2);
  color: var(--rt-text-light);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--rt-transition-fast);
  z-index: 10;
}

.rt-lightbox-prev:hover,
.rt-lightbox-next:hover {
  background: rgba(244, 240, 232, 0.3);
  color: #FFFFFF;
}

.rt-lightbox-prev { left: 24px; }
.rt-lightbox-next { right: 24px; }

/* --------------------------------------------------------------------------
   17. Story & Journey Detail Reader Page
   -------------------------------------------------------------------------- */
.rt-article-header {
  padding-top: clamp(140px, 15vw, 200px);
  padding-bottom: clamp(48px, 6vw, 72px);
  background-color: var(--rt-surface);
  border-bottom: 1px solid var(--rt-border);
}

.rt-article-hero-img-wrap {
  width: 100%;
  max-width: var(--rt-wide-media);
  margin: calc(var(--rt-space-7) * -1) auto var(--rt-space-8);
  box-shadow: var(--rt-shadow-md);
}

.rt-article-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.rt-prose {
  max-width: var(--rt-reading-width);
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--rt-text);
}

.rt-prose p {
  margin-bottom: 1.75em;
  color: #2D302C;
}

.rt-prose h2 {
  font-size: var(--rt-text-h2);
  margin-top: 2em;
  margin-bottom: 0.75em;
  line-height: 1.2;
}

.rt-prose h3 {
  font-size: var(--rt-text-h3);
  margin-top: 1.75em;
  margin-bottom: 0.6em;
}

/* Pull Quote */
.rt-pull-quote {
  font-family: var(--rt-font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.35;
  color: var(--rt-text);
  border-left: 3px solid var(--rt-accent);
  padding-left: clamp(20px, 3vw, 36px);
  margin: 2.25em 0;
  font-style: italic;
}

/* 2-Image Spread */
.rt-image-spread {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rt-space-4);
  margin: 2.5em 0;
}

@media (min-width: 600px) {
  .rt-image-spread {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rt-caption {
  font-family: var(--rt-font-mono);
  font-size: var(--rt-text-xs);
  color: var(--rt-text-muted);
  margin-top: var(--rt-space-2);
}

/* Route Breakdown Card */
.rt-route-card {
  background-color: var(--rt-surface);
  border: 1px solid var(--rt-border);
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--rt-radius-sm);
  margin: 2.5em 0;
}

.rt-route-card-title {
  font-size: 1.25rem;
  margin-bottom: var(--rt-space-4);
}

.rt-route-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-3);
}

.rt-route-step {
  display: flex;
  align-items: center;
  gap: var(--rt-space-3);
  font-size: 0.95rem;
}

.rt-route-step-dist {
  font-family: var(--rt-font-mono);
  font-size: var(--rt-text-xs);
  color: var(--rt-accent);
  margin-left: 24px;
}

/* Prev / Next Navigation */
.rt-prev-next-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rt-space-5);
  border-top: 1px solid var(--rt-border);
  border-bottom: 1px solid var(--rt-border);
  padding: var(--rt-space-7) 0;
  margin-top: var(--rt-space-9);
}

@media (min-width: 600px) {
  .rt-prev-next-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rt-prev-next-item {
  display: flex;
  flex-direction: column;
}

.rt-prev-next-label {
  font-size: var(--rt-text-meta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rt-text-muted);
  font-weight: 600;
  margin-bottom: 4px;
}

.rt-prev-next-title {
  font-family: var(--rt-font-display);
  font-size: 1.25rem;
  color: var(--rt-text);
}

.rt-prev-next-title:hover {
  color: var(--rt-accent);
}

/* --------------------------------------------------------------------------
   18. About Page Components
   -------------------------------------------------------------------------- */
.rt-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  margin-top: var(--rt-space-7);
}

@media (min-width: 768px) {
  .rt-philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rt-philosophy-card {
  border-top: 2px solid var(--rt-accent);
  padding-top: var(--rt-space-4);
}

.rt-philosophy-num {
  font-family: var(--rt-font-mono);
  font-size: var(--rt-text-xs);
  color: var(--rt-accent);
  font-weight: 600;
  margin-bottom: var(--rt-space-2);
}

.rt-philosophy-title {
  font-size: 1.35rem;
  margin-bottom: var(--rt-space-3);
  line-height: 1.2;
}

/* Timeline */
.rt-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--rt-space-5);
  margin-top: var(--rt-space-6);
  border-left: 2px solid var(--rt-border);
  padding-left: var(--rt-space-5);
}

.rt-timeline-item {
  position: relative;
}

.rt-timeline-item::before {
  content: "";
  position: absolute;
  left: calc(var(--rt-space-5) * -1 - 6px);
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--rt-accent);
}

.rt-timeline-year {
  font-family: var(--rt-font-mono);
  font-size: var(--rt-text-xs);
  color: var(--rt-accent);
  font-weight: 600;
}

.rt-timeline-title {
  font-family: var(--rt-font-display);
  font-size: 1.2rem;
  margin: 2px 0 4px;
}

/* Road Kit List */
.rt-kit-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--rt-space-3);
  margin-top: var(--rt-space-5);
}

@media (min-width: 600px) {
  .rt-kit-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rt-kit-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px dashed var(--rt-border);
  padding-bottom: 6px;
}

.rt-kit-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.rt-kit-note {
  font-size: var(--rt-text-xs);
  color: var(--rt-text-muted);
}

