/* ============================================================
   CUSTOM PROPERTIES
============================================================ */
:root {
  --navy:      #2b2d42;
  --gold:      #c9a227; /* was #5c7a9e */
  --gold-dark: #a8841f; /* was #4a6585 */
  --cream:     #e8edf2;
  --white:     #ffffff;
  --text:      #2d2d2d;
  --muted:     #6b6b6b;
  --border:    #d0d8e0;

  --font-heading: 'Poppins', system-ui, sans-serif; /* was: 'Playfair Display', Georgia, serif */
  --font-body:    'Poppins', system-ui, sans-serif; /* was: 'Inter', system-ui, sans-serif */

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --nav-h: 64px;
  --radius: 8px;
  --max-width: 900px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { display: block; max-width: 100%; }
a   { color: inherit; }
ol, ul { list-style: none; }

/* ============================================================
   UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
}

.btn--primary {
  background: var(--white);
  color: var(--navy);
}
.btn--primary:hover { background: #f0ece4; transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--nav {
  background: var(--white);
  color: var(--navy);
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}
.btn--nav:hover { background: #f0ece4; }

.section { padding-block: var(--space-lg); }

.section__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-xs);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

/* ============================================================
   STICKY NAV
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--nav-h);
  background: rgba(43, 45, 66, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}

.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.3); }

.nav__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav__logo-img {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 10px rgba(255,255,255,0.12);
}

/* Route stops as links */
a.route__stop {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.route__stop:hover .route__node {
  background: var(--gold-dark);
  box-shadow: 0 0 0 2px var(--gold-dark);
}

.nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  height: calc(100dvh - var(--nav-h));
  width: 240px;
  background: var(--navy);
  padding: 1.75rem 1rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  box-shadow: 4px 0 24px rgba(0,0,0,0.35);
  z-index: 1099;
}

.nav__links.open { transform: translateX(0); }

.nav__link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 0.75rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  display: block;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  order: -1;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1829 0%, var(--navy) 50%, #2a3d6e 100%);
  padding-top: var(--nav-h);
}

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


.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-inline: var(--space-md);
  max-width: 700px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-sm);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-md);
  max-width: 520px;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   OVERVIEW
============================================================ */
.overview { background: var(--white); }

.overview__text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 700px;
  margin-bottom: var(--space-md);
}

.stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.25rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat__value {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat__label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how { background: var(--cream); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--space-sm);
  row-gap: 0.3rem;
  align-items: start;
}

.step__number { display: none; }

.step__icon {
  grid-row: 1 / 3;
  width: 3rem;
  height: 3rem;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.step__icon svg { width: 1.5rem; height: 1.5rem; }

.step__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  align-self: end;
}

.step__desc { color: var(--muted); font-size: 0.95rem; }

/* App store badges */
.app-badges {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.2s;
}
.app-badge:hover { transform: translateY(-2px); opacity: 0.9; }

.app-badge--apple  { background: #000; color: #fff; }
.app-badge--google { background: #fff; color: #222; border: 1px solid #ddd; }

.app-badge__icon { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }

.app-badge__text { display: flex; flex-direction: column; line-height: 1.2; }

.app-badge__sub  { font-size: 0.65rem; opacity: 0.75; }
.app-badge__name { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }

/* ============================================================
   REVIEWS — carousel
============================================================ */
.reviews-wrap {
  padding: var(--space-sm) var(--space-md);
}

.reviews {
  background: var(--cream);
  padding-block: var(--space-md);
  max-width: var(--max-width);
  margin-inline: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.carousel {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.carousel__track-wrap {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius);
}

.carousel__track {
  display: flex;
  transition: transform 0.45s ease;
}

.review-card {
  min-width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-sizing: border-box;
}

.review-card__stars { color: #f5c842; font-size: 0.9rem; letter-spacing: 2px; }

.review-card__quote {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}

@media (min-width: 640px) {
  .review-card {
    padding: 2rem;
    gap: 1rem;
  }
  .review-card__quote { font-size: 1rem; line-height: 1.7; }
  .review-card__stars { font-size: 1rem; }
}

.review-card__author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.carousel__prev,
.carousel__next {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.carousel__prev:hover,
.carousel__next:hover { background: var(--border); }

@media (max-width: 639px) {
  .carousel__prev,
  .carousel__next { display: none; }
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.carousel__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.carousel__dot--active {
  background: var(--navy);
  transform: scale(1.35);
}

/* ============================================================
   ROUTE (horizontal stop diagram)
============================================================ */
.stops { background: var(--white); padding-block: var(--space-md); }

/* STOPS CAROUSEL */
.stops-carousel {
  margin-top: 2rem;
}

.stops-carousel__viewport {
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.stops-carousel__viewport::-webkit-scrollbar { display: none; }
.stops-carousel__viewport:active { cursor: grabbing; }

.stops-carousel__track {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0 1.5rem;
}

.stop-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.06);
}
.stop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.stop-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stop-card__num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.85;
}

.stop-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.stop-card__badge {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--gold);
}

.stop-card__name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.stop-card__desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin: 0.2rem 0 0;
}

.stops-carousel__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.stops-carousel__btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.stops-carousel__btn:hover:not(:disabled) {
  background: var(--navy);
  color: #fff;
}
.stops-carousel__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.stops-carousel__counter {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

/* ============================================================
   MAP
============================================================ */
.map-section { background: var(--navy); padding-top: var(--space-md); padding-bottom: 0; }
.map-section .container { padding-bottom: var(--space-sm); }
.map-section__title { color: var(--white); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

#map {
  width: calc(100% - 2rem);
  max-width: 860px;
  margin: 0 auto;
  height: 320px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.map-marker {
  height: 2rem;
  padding: 0 0.65rem;
  border-radius: 1rem;
  background: var(--navy);
  color: #e8edf2;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8edf2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  white-space: nowrap;
}
.map-marker--finish {
  background: var(--gold-dark);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--cream); }
.about .section__label { color: var(--gold-dark); }
.about .section__title { color: var(--navy); }

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__image-wrap { flex-shrink: 0; }
.about__text { min-width: 0; }

@media (max-width: 639px) {
  .about__photo,
  .about__image-placeholder {
    width: 60px;
    height: 75px;
    margin-inline: auto;
  }
  .about__photo-caption { max-width: 60px; margin-inline: auto; }
}

.about__image-placeholder {
  width: 220px;
  height: 280px;
  border-radius: var(--radius);
  background: rgba(43,45,66,0.06);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__placeholder-icon {
  width: 72px;
  height: 90px;
  color: var(--border);
}

.about__photo {
  width: 220px;
  height: 280px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius);
  display: block;
  filter: grayscale(15%) contrast(1.05);
}

.about__photo-caption {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
  max-width: 220px;
}

.about__bio {
  color: var(--muted);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.about__credentials {
  margin-top: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about__credentials li {
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 1.2rem;
  position: relative;
}

.about__credentials li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

.about__more-btn {
  margin-top: var(--space-md);
  border-color: var(--navy);
  color: var(--navy);
}
.about__more-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   INSTAGRAM
============================================================ */
.instagram { background: var(--cream); }

.instagram__intro {
  color: var(--muted);
  margin-bottom: var(--space-md);
  margin-top: calc(-1 * var(--space-sm));
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

.instagram__placeholder {
  aspect-ratio: 1;
  background: #d0d8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity 0.2s;
}

.instagram__placeholder:hover { opacity: 0.75; }

.instagram__follow { text-align: center; }

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--white); }

.faq__list { border-top: 1px solid var(--border); }

.faq__item { border-bottom: 1px solid var(--border); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-block: var(--space-sm);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
}

.faq__question:hover { color: var(--gold-dark); }

.faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  color: var(--gold);
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.faq__icon::before { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq__icon::after  { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }

.faq__question[aria-expanded="true"] .faq__icon::before {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  padding-bottom: var(--space-sm);
  color: var(--muted);
  font-size: 0.97rem;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding-block: var(--space-md);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.footer__email,
.footer__phone {
  display: block;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer__email:hover,
.footer__phone:hover { text-decoration: underline; }

.footer__social {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer__link {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__link:hover { color: var(--gold); }

.footer__voicemap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer__voicemap:hover { opacity: 1; }

.footer__voicemap-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

.footer__voicemap-logo { height: 1.5rem; width: auto; }

.footer__legal {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer__legal-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer__legal-link:hover { color: rgba(255,255,255,0.75); }

.footer__copy {
  font-size: 0.8rem;
}

/* ============================================================
   ABOUT PAGE — page hero
============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0d1829 0%, var(--navy) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: calc(var(--nav-h) + var(--space-lg));
  padding-bottom: var(--space-lg);
  padding-inline: var(--space-md);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,18,40,0.65) 0%, rgba(10,18,40,0.8) 100%);
  z-index: 0;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin-inline: auto;
}

.page-hero__back {
  display: inline-block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: var(--space-sm);
  transition: color 0.2s;
}
.page-hero__back:hover { color: var(--white); }

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.page-hero__subtitle {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

/* ABOUT PAGE — intro */
.about-full { background: var(--white); }

.about-full__intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-full__photo-wrap { flex-shrink: 0; }

.about-full__photo-placeholder {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background: var(--cream);
  border: 2px dashed var(--border);
}

.about-full__photo {
  display: block;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius);
  filter: grayscale(10%) contrast(1.05);
}

.about-full__photo-caption {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.about-full__intro-text p {
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

/* CAREER TIMELINE */
.career { background: var(--cream); }

.career-timeline {
  position: relative;
  padding-left: 9rem;
}

.career-timeline::before {
  content: '';
  position: absolute;
  left: 6.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--border);
}

.career-item {
  position: relative;
  padding-bottom: var(--space-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm);
}
.career-item:last-child { padding-bottom: 0; }

.career-item__year {
  position: absolute;
  left: -8rem;
  top: 0.05rem;
  width: 5rem;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.career-item__body::before {
  content: '';
  position: absolute;
  left: -2.6rem;
  top: 0.4rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 2px var(--navy);
}

.career-item__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.career-item__desc { color: var(--muted); font-size: 0.95rem; }

/* WHY THIS TOUR */
.why { background: var(--white); }

.why__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why__image-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: var(--cream);
  border: 2px dashed var(--border);
}

.why__text p {
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.why__quote {
  border-left: 3px solid var(--gold);
  padding-left: var(--space-sm);
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.6;
}

.why__quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--muted);
}

/* MEDIA */
.media { background: var(--cream); }

.media-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.media-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.media-card__image-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--navy);
  opacity: 0.3;
}

.media-card__body { padding: var(--space-md); }

.media-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 0.4rem;
}

.media-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.media-card__desc { color: var(--muted); font-size: 0.95rem; }

/* ABOUT PAGE CTA */
.about-cta { background: var(--navy); }

.about-cta__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.about-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.about-cta__sub {
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-md);
}

/* nav active state */
.nav__link[aria-current="page"] { color: var(--white); font-weight: 600; }

/* RESPONSIVE — about page */
@media (min-width: 640px) {
  .about-full__intro { flex-direction: row; align-items: flex-start; }
  .why__inner { flex-direction: row; align-items: flex-start; }
  .media-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PHOTO DIVIDER — full-width atmospheric image between sections
============================================================ */
.photo-divider {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.photo-divider--tall { height: 380px; }


@media (min-width: 640px) {
  .photo-divider { height: 380px; }
  .photo-divider--tall { height: 480px; }
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: opacity 0.3s, transform 0.2s;
}
.scroll-top:hover { transform: translateY(-3px); }

/* ============================================================
   RESPONSIVE — 640px
============================================================ */
@media (min-width: 640px) {
  #map { height: 400px; }

  .about__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "text image" "btn image";
    column-gap: 2rem;
    align-items: start;
  }
  .about__text { grid-area: text; }
  .about__image-wrap { grid-area: image; align-self: start; }
  .about__more-btn { grid-area: btn; width: fit-content; }

  .steps { grid-template-columns: repeat(3, 1fr); }
  .step {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    justify-items: center;
  }
  .step__icon { grid-row: auto; width: 4rem; height: 4rem; margin-bottom: 0.5rem; }
  .step__icon svg { width: 2rem; height: 2rem; }

  .instagram__grid { grid-template-columns: repeat(6, 1fr); }

  .footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    column-gap: var(--space-md);
  }
  .footer__copy { grid-column: 1 / -1; }
}

/* ============================================================
   OBSERVATION TESTS
============================================================ */
.observe { background: var(--navy); }
.observe .section__label { color: var(--gold); }
.observe .section__title { color: var(--white); }
.observe--light { background: var(--cream); }
.observe--light .section__label { color: var(--gold-dark); }
.observe--light .section__title { color: var(--navy); }

.observe__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.observe__text p {
  color: rgba(232, 237, 242, 0.82);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.observe__text p:last-child { margin-bottom: 0; }
.observe--light .observe__text p { color: var(--muted); }

.observe__list {
  margin: 1rem 0 0 1.1rem;
  padding: 0;
  color: rgba(232, 237, 242, 0.82);
  line-height: 2;
  font-size: 0.92rem;
}
.observe--light .observe__list { color: var(--muted); }

.observe__quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 0;
  align-self: center;
  flex-shrink: 0;
}

.observe__quote p {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
}
.observe--light .observe__quote p { color: var(--navy); }

.observe__quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-style: normal;
  color: var(--gold);
}

@media (min-width: 768px) {
  .observe__inner { flex-direction: row; align-items: flex-start; }
  .observe__text { flex: 1.3; }
  .observe__quote { max-width: 340px; }
}

/* ============================================================
   HOW IT DIFFERS
============================================================ */
.differs { background: var(--cream); }

.differs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: var(--space-md);
}

.differs-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  border-top: 3px solid var(--gold);
}

.differs-item__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.differs-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 640px) {
  .differs-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ABOUT-TOUR PAGE
============================================================ */
.tour-overview { background: var(--white); }

.tour-overview__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.tour-overview__text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.9rem;
}
.tour-overview__text p:last-child { margin-bottom: 0; }

.tour-overview__text ul {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 0.9rem 1.25rem;
  padding: 0;
}
.tour-overview__text ul li { margin-bottom: 0.4rem; }

.overview-toggle {
  margin-top: 0.75rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--gold-dark);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.overview-toggle:hover { text-decoration: underline; }

.tour-overview__stats {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}

/* Destinations */
.dest-section { background: var(--white); }

.dest-intro {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--border);
}

.dest-card__num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: #e8edf2;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.dest-card__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.dest-card__tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gold-dark);
}

.dest-card__desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Practical info */
.practical-section { background: var(--white); }

.practical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-sm);
}

.practical-item {
  padding: 1.25rem 1.5rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.practical-item__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.practical-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .practical-grid { grid-template-columns: 1fr 1fr; }
  .tour-overview__body { flex-direction: row; gap: var(--space-lg); }
  .tour-overview__text { flex: 1; }
  .tour-overview__stats { border-top: none; border-left: 1px solid var(--border); padding-top: 0; padding-left: var(--space-md); flex-direction: column; }
}

/* ============================================================
   RESPONSIVE — 1024px (desktop nav)
============================================================ */
@media (min-width: 1024px) {
  .section { padding-block: var(--space-xl); }
  #map { height: 480px; }

  .nav__toggle { display: none; order: 0; }

  .nav__links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
    position: static;
    background: none;
    padding: 0;
    overflow: visible;
    transform: none;
    width: auto;
    box-shadow: none;
  }
}

/* ============================================================
   SITE CTA
============================================================ */
.site-cta { background: var(--cream); }
.site-cta .btn--primary { background: var(--navy); color: var(--white); }
.site-cta .btn--primary:hover { background: #1e2035; }

.site-cta__inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.site-cta__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.site-cta__sub {
  color: var(--muted);
  margin-bottom: var(--space-md);
  font-size: 1rem;
  line-height: 1.75;
}

.cta-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.25rem;
  list-style: none;
  padding: 0;
}

.cta-chip {
  font-size: 0.8rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  white-space: nowrap;
}

.cta-voicemap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  opacity: 0.55;
}

.cta-voicemap__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.cta-voicemap__logo { height: 1.25rem; width: auto; filter: brightness(0); }

/* ============================================================
   DID YOU KNOW STRIP
============================================================ */
.dyk-wrap {
  padding: var(--space-sm) var(--space-md);
}

.dyk-strip {
  background: var(--navy);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: nowrap;
  text-align: center;
  max-width: var(--max-width);
  margin-inline: auto;
  border-radius: var(--radius);
  min-height: 3.5rem;
}

.dyk-strip__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.dyk-strip__fact {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  transition: opacity 0.4s ease;
  margin: 0;
  flex: 1;
  min-width: 0;
}

.dyk-strip__fact.fade { opacity: 0; }

/* ============================================================
   APP SECTION
============================================================ */
.app-section { background: var(--cream); }

.app-section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.app-section__text { max-width: 480px; }

.app-section__text p {
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.app-features {
  margin: var(--space-sm) 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-features li {
  color: var(--muted);
  font-size: 0.92rem;
  padding-left: 1.4rem;
  position: relative;
}

.app-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.app-section__phone-wrap {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.phone-frame {
  width: 220px;
  height: 430px;
  background: var(--navy);
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}

.phone-frame__notch {
  width: 72px;
  height: 18px;
  background: var(--navy);
  border-radius: 0 0 10px 10px;
  margin: 0 auto 6px;
}

.phone-frame__screen {
  background: #0d1829;
  border-radius: 22px;
  overflow: hidden;
  height: calc(100% - 26px);
  display: flex;
  flex-direction: column;
}

.phone-screen__header {
  background: var(--navy);
  padding: 0.55rem 0.8rem;
  display: flex;
  align-items: center;
}

.phone-screen__logo { height: 16px; width: auto; }

.phone-screen__map-placeholder {
  flex: 1;
  background: linear-gradient(160deg, #1a2f4a 0%, #0d1829 100%);
  position: relative;
}

.phone-screen__map-placeholder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(92,122,158,0.25);
}

.phone-screen__card {
  background: var(--navy);
  padding: 0.7rem 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.phone-screen__stop {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.phone-screen__title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.1rem;
}

.phone-screen__sub {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.55rem;
}

.phone-screen__play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

@media (min-width: 768px) {
  .app-section__inner { flex-direction: row; justify-content: space-between; }
  .app-section__text { flex: 1; }
}

/* ============================================================
   STORY TEASERS
============================================================ */
.teasers { background: var(--white); }

.teasers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.teaser-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s;
}

.teaser-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.1); }

.teaser-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.teaser-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.teaser-card:hover .teaser-card__img { transform: scale(1.04); }

.teaser-card__stop {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(43,45,66,0.85);
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

.teaser-card__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.teaser-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
}

.teaser-card__hook {
  font-size: 0.91rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-sm);
}

.teaser-card__link {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.2s, letter-spacing 0.2s;
}

.teaser-card__link:hover { color: var(--navy); letter-spacing: 0.01em; }

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

/* ============================================================
   HISTORY TIMELINE
============================================================ */
.hist-section { background: var(--navy); }
.hist-section .section__label { color: var(--gold); }
.hist-section .section__title { color: var(--white); }

.hist-timeline {
  position: relative;
  margin-top: var(--space-md);
  padding-left: 6rem;
}

.hist-timeline::before {
  content: '';
  position: absolute;
  left: 3.75rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: rgba(92,122,158,0.35);
}

.hist-item {
  position: relative;
  padding-bottom: var(--space-md);
}

.hist-item:last-child { padding-bottom: 0; }

.hist-item__year {
  position: absolute;
  left: -5.5rem;
  top: 0.05rem;
  width: 4rem;
  text-align: right;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
}

.hist-item__body { position: relative; }

.hist-item__body::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 0.45rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(92,122,158,0.2);
}

.hist-item__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.hist-item__desc {
  font-size: 0.9rem;
  color: rgba(232,237,242,0.65);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-section { background: var(--cream); }

.gallery-section .container { margin-bottom: var(--space-md); }

.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gallery-header__btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding-inline: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--border);
  display: block;
}

.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

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

.gallery-item--hidden {
  display: none;
}

.gallery-load-more {
  text-align: center;
  padding: var(--space-md) 0 0;
}

.gallery-load-more__btn {
  min-width: 200px;
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.lightbox[hidden] { display: none; }

.lightbox__figure {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lightbox__caption {
  display: none;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.2); }

.lightbox__close {
  top: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.6rem;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
}

.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }

/* ============================================================
   MOBILE CENTERING
============================================================ */
@media (max-width: 639px) {
  .section__label,
  .section__title,
  .dest-intro,
  .tour-overview__text p,
  .observe__text p,
  .practical-item,
  .hero__eyebrow {
    text-align: center;
  }

  .page-hero__content {
    text-align: center;
  }

  .page-hero__back {
    display: block;
    text-align: center;
  }

  .stops-carousel__controls {
    justify-content: center;
  }

  .footer__inner {
    align-items: center;
    text-align: center;
  }

  .footer__social,
  .footer__legal {
    justify-content: center;
  }

  .footer__voicemap {
    justify-content: center;
  }

  .observe__list {
    text-align: left;
    max-width: 320px;
    margin-inline: auto;
  }

  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .tour-overview__text {
    text-align: center;
  }

  .app-badges {
    justify-content: center;
  }

  .about__more-btn {
    display: block;
    text-align: center;
    margin-inline: auto;
    width: fit-content;
  }

  .gallery-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gallery-header__btn {
    align-self: center;
  }

  .overview .container > .btn {
    display: block;
    width: fit-content;
    margin-inline: auto;
  }

  .career-timeline {
    padding-left: 1rem;
  }
  .career-timeline::before {
    left: 0;
  }
  .career-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
  .career-item__year {
    position: static;
    width: auto;
    text-align: left;
    font-size: 0.78rem;
  }
  .career-item__body::before {
    left: -1.45rem;
  }
}
