/* ============================================================
   LUX EGYPT TRAVEL — Home Page (redesigned)
   ============================================================ */
@import url('assets/tokens.css');

*, *::before, *::after { box-sizing: border-box; }
body { overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
html { scroll-behavior: smooth; }

::selection { background: var(--color-accent); color: #fff; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ============================================================
   HEADER — editorial, floats over hero, turns solid on scroll
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background-color 320ms var(--ease-out),
              border-color 320ms var(--ease-out),
              backdrop-filter 320ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.over-dark { background: transparent; }
.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: var(--color-border);
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  transition: height var(--transition-base);
}
.site-header.is-scrolled .nav { height: var(--header-height-scrolled); }

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
  transition: height 240ms var(--ease-out);
}
.site-header.is-scrolled .brand-logo {
  height: 38px;
  filter: none;
}
.brand-logo-footer {
  height: 54px;
  filter: none;
  margin-bottom: 0.25rem;
}
.brand-mark {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  transition: color var(--transition-base);
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  color: var(--color-accent);
  padding-left: 0.6rem;
  border-left: 1px solid currentColor;
  align-self: center;
  line-height: 1;
}
.site-header.is-scrolled .brand-mark { color: var(--color-text-primary); }

.nav-links {
  display: none;
  gap: 2.25rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}
.site-header.is-scrolled .nav-link { color: var(--color-text-secondary); }
.nav-link::after {
  content: '';
  position: absolute;
  inset: auto 0 -4px 0;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}
.nav-link:hover { color: var(--color-accent); }
.site-header.is-scrolled .nav-link:hover { color: var(--color-accent); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text-light);
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  transition: all var(--transition-base);
}
.site-header.is-scrolled .nav-cta {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.nav-cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0.5rem;
  width: 2.75rem; height: 2.75rem;
  color: #fff;
}
.site-header.is-scrolled .menu-toggle { color: var(--color-text-primary); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 280ms var(--ease-out), opacity 200ms;
}
@media (min-width: 960px) { .menu-toggle { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  width: min(86vw, 360px);
  background: rgba(20, 20, 20, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.45);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 1rem) 2rem 2.5rem;
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.32, 0.72, 0, 1);
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-drawer .drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  border-radius: 999px;
}
.mobile-drawer .drawer-close:hover { background: rgba(255, 255, 255, 0.06); }
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}
.drawer-nav a {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 180ms ease;
}
.drawer-nav a:last-child { border-bottom: none; }
.drawer-nav a:hover { color: var(--color-accent); }
.drawer-brand {
  margin-top: auto;
  padding-top: 2rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.drawer-brand img {
  height: 2.25rem;
  width: auto;
  opacity: 0.85;
}

/* Mobile scrim — tap-to-close backdrop */
.mobile-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 85;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.mobile-scrim.open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   HERO — full-bleed cinematic with side index
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  max-height: 58rem;
  overflow: hidden;
  background: #000;
}
.hero-frame {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1400ms var(--ease-in-out);
}
.hero-slide.active { opacity: 1; }
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-slide.active .hero-img {
  animation: slow-zoom 12s var(--ease-out) forwards;
}
@keyframes slow-zoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.22) 30%, rgba(0,0,0,0.78) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(0,0,0,0.45), rgba(0,0,0,0.15) 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding-top: var(--header-height);
}

.hero-body {
  align-self: end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  max-width: 52rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 2.25rem;
  height: 1px;
  background: currentColor;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 7vw, 6.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 1.75rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}
.hero-lede {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
  margin: 0 0 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Buttons (override slightly for brand feel) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
  line-height: 1;
}
.btn-primary { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn-primary:hover { background: var(--color-accent-hover); border-color: var(--color-accent-hover); color: #fff; }
.btn-outline-light {
  background: transparent; color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }
.btn-outline {
  background: var(--color-accent); color: #fff;
  border-color: var(--color-accent);
}
.btn-outline:hover { background: var(--color-accent-hover); color: #fff; border-color: var(--color-accent-hover); }
.btn-lg { padding: 1.05rem 2rem; font-size: 0.95rem; }
.btn-ghost-gold {
  color: var(--color-accent);
  padding: 0.55rem 0;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  position: relative;
  border: 0;
}
.btn-ghost-gold::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right 320ms var(--ease-out);
}
.btn-ghost-gold:hover::after { right: 0; }
.btn-ghost-gold .arr { transition: transform 320ms var(--ease-out); display: inline-block; margin-left: 0.4rem; }
.btn-ghost-gold:hover .arr { transform: translateX(4px); }

/* Hero side rail: slide pagination */
.hero-rail {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.5rem);
  bottom: clamp(3rem, 8vh, 6rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 3;
}
.hero-rail button {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  padding: 0.25rem 0;
  transition: color 280ms var(--ease-out);
}
.hero-rail button .tick {
  display: block;
  width: 1.75rem; height: 1px;
  background: currentColor;
  transition: width 320ms var(--ease-out), background 320ms;
}
.hero-rail button.active { color: var(--color-accent); }
.hero-rail button.active .tick { width: 3rem; }
.hero-rail button:hover { color: rgba(255, 255, 255, 0.85); }
.hero-rail button.active:hover { color: var(--color-accent); }

.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 3;
  pointer-events: none;
}
.hero-scroll-hint .bar {
  width: 1px; height: 2.25rem;
  background: linear-gradient(to bottom, transparent, var(--color-accent));
  animation: drop 2s var(--ease-in-out) infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   ALT HERO: "editorial split"
   ============================================================ */
.hero-editorial {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--color-bg-primary);
  padding-top: var(--header-height);
}
@media (min-width: 900px) {
  .hero-editorial { grid-template-columns: 1.05fr 1fr; min-height: 92vh; }
}
.hero-editorial-text {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 4vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-editorial-text::before {
  content: '';
  position: absolute;
  left: clamp(1.5rem, 4vw, 5rem);
  top: clamp(2rem, 4vw, 3rem);
  width: 3rem; height: 1px;
  background: var(--color-accent);
}
.hero-editorial .hero-eyebrow { color: var(--color-accent); margin-top: 2rem; }
.hero-editorial-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.018em;
  color: var(--color-text-primary);
  margin: 0 0 1.5rem;
}
.hero-editorial-title em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 500;
}
.hero-editorial-lede {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  max-width: 30rem;
  margin: 0 0 2.5rem;
}
.hero-editorial-image {
  position: relative;
  min-height: 60vh;
  background: #111;
  overflow: hidden;
}
.hero-editorial-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-editorial-caption {
  position: absolute;
  left: 1.5rem; bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  z-index: 2;
}

/* ============================================================
   MARQUEE — whispered values strip
   ============================================================ */
.whisper {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.55);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 1.25rem 0;
}
.whisper-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: slide-whisper 60s linear infinite;
  width: max-content;
}
.whisper span {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.whisper span::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-right: 2.5rem;
  vertical-align: middle;
  transform: translateY(-3px);
}
@keyframes slide-whisper {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding-block: var(--section-py); }
.section.soft { background: var(--color-bg-soft); }
.section.dark { background: var(--color-bg-dark); color: var(--color-text-light); }
.section.black { background: #0E0E0E; color: var(--color-text-light); }

.section-head {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 900px) {
  .section-head {
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
  }
}
.section-head .lede {
  max-width: 42rem;
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
  padding-top: 1.5rem;
}
.section.dark .section-head .lede { color: rgba(255, 255, 255, 0.7); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: inherit;
  text-wrap: balance;
  white-space: normal;
}
.section-title.no-wrap { white-space: nowrap; }
@media (max-width: 720px) { .section-title.no-wrap { white-space: normal; } }
.section-title em { font-style: italic; color: var(--color-accent); font-weight: 400; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--color-accent);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-eyebrow::before {
  content: ''; width: 2.5rem; height: 1px; background: currentColor;
}

.hairline { border: 0; height: 1px; background: var(--color-border); margin: 0; }
.section.dark .hairline { background: rgba(255,255,255,0.08); }

/* ============================================================
   JOURNEYS — editorial list
   ============================================================ */
.journeys-list {
  display: flex;
  flex-direction: column;
}
.journey-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  padding-block: 2.25rem;
  border-top: 1px solid var(--color-border);
  position: relative;
  transition: background 320ms var(--ease-out);
}
.journey-row:last-child { border-bottom: 1px solid var(--color-border); }
@media (min-width: 780px) {
  .journey-row {
    grid-template-columns: 1fr 1.4fr 11rem;
    gap: 3rem;
    padding-block: 3.5rem;
  }
}
.journey-row:hover { background: var(--color-accent-soft); }
.journey-row:hover .journey-image img { transform: scale(1.04); }
.journey-row:hover .journey-cta .arr { transform: translateX(6px); }

.journey-num { display: none; }
.journey-image {
  grid-row: 1;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-bg-soft);
}
@media (min-width: 780px) {
  .journey-image {
    grid-row: auto;
    aspect-ratio: 4 / 3;
    min-height: 20rem;
  }
}
.journey-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
.journey-duration-line {
  font-family: var(--font-sans, var(--font-body));
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.journey-duration-line::before {
  content: ''; width: 1.75rem; height: 1px; background: currentColor;
}
.journey-meta { display: none; }
.journey-duration, .journey-duration-unit { display: none; }
.journey-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}
.journey-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 40rem;
  font-weight: 400;
}
.journey-cta {
  justify-self: start;
}
@media (min-width: 780px) { .journey-cta { justify-self: end; } }
.journey-cta .btn-ghost-gold { white-space: nowrap; }

/* ============================================================
   SIGNATURE — evening ceremony — full-bleed dark
   ============================================================ */
.ceremony {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding-block: clamp(5rem, 10vw, 10rem);
}
.ceremony::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/photos/gallery-chamber-light.jpg') center/cover;
}
.ceremony::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(0,0,0,0.35), rgba(0,0,0,0.85) 75%),
    linear-gradient(180deg, rgba(0,0,0,0.5), rgba(0,0,0,0.75));
}
.ceremony .container { position: relative; z-index: 2; }
.ceremony-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .ceremony-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
}
.ceremony-stamp {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: 0.02em;
}
.ceremony-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 1.75rem;
}
.ceremony-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.25rem;
  max-width: 36rem;
}
.ceremony-body p.pull {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  border-left: 1px solid var(--color-accent);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

/* Compact variant: used on tour pages where the section is text-only */
.ceremony.compact {
  min-height: 0;
  padding-block: clamp(3rem, 6vw, 5rem);
}
.ceremony.compact .ceremony-stamp {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}
.ceremony.compact .ceremony-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .ceremony.compact .ceremony-grid { gap: 4rem; }
}

/* ============================================================
   GUIDE — Mo introduction (editorial)
   ============================================================ */
.guide-section { padding-block: var(--section-py-lg); background: var(--color-bg-primary); }
.guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .guide-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.guide-frames {
  position: relative;
  min-height: 32rem;
}
.guide-frame-a, .guide-frame-b {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}
.guide-frame-a {
  width: 72%;
  top: 0; left: 0;
  aspect-ratio: 3 / 4;
  z-index: 2;
}
.guide-frame-b {
  width: 48%;
  bottom: 0; right: 0;
  aspect-ratio: 4 / 5;
  z-index: 1;
  border: 6px solid var(--color-bg-primary);
}
.guide-frames img { width: 100%; height: 100%; object-fit: cover; }
.guide-caption {
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-muted);
  z-index: 3;
}
.guide-text .section-eyebrow { margin-bottom: 1.5rem; }
.guide-text .section-title { margin-bottom: 2rem; }
.guide-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0 0 1.25rem;
}
.guide-body .pull {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-text-primary);
  line-height: 1.4;
  border-left: 1px solid var(--color-accent);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.guide-signature {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}
.guide-signature .name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1;
}
.guide-signature .role {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 0.25rem;
}

/* ============================================================
   VALUES (what you'll receive)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-cell {
  padding: 2.5rem 1.75rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
@media (min-width: 960px) {
  .value-cell { border-bottom: 0; }
  .value-cell:last-child { border-right: 0; }
}
.value-icon {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  display: inline-flex;
}
.value-cell h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 0.9rem;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.01em;
}
.value-cell p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-weight: 400;
}

/* ============================================================
   EXPERIENCES — offset cards
   ============================================================ */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 720px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .exp-grid { grid-template-columns: repeat(3, 1fr); } }
.exp-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 320ms var(--ease-out);
  height: 100%;
}
.exp-card p { flex: 1 1 auto; }
.exp-card:hover { transform: translateY(-4px); }
.exp-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--color-bg-soft);
}
.exp-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.exp-card:hover .exp-image img { transform: scale(1.05); }
.exp-num { display: none; }
.exp-dur {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--color-text-primary);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.exp-card h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}
.exp-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin: 0 0 1rem;
  font-weight: 400;
}
.exp-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem;
}
.exp-rating {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--color-accent);
  font-weight: 500;
}
.exp-rating .ct { color: var(--color-text-muted); font-weight: 400; }

/* ============================================================
   GALLERY — editorial mosaic
   ============================================================ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 10vw;
  gap: 0.5rem;
}
@media (max-width: 720px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 42vw; }
  .mosaic a:nth-child(n+7) { display: none; }
}
.mosaic a {
  overflow: hidden;
  display: block;
  position: relative;
  background: #111;
}
.mosaic a img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
.mosaic a:hover img { transform: scale(1.06); }
.mosaic a::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 320ms;
}
.mosaic a:hover::after { background: rgba(26,26,26,0.15); }

.m-tall { grid-row: span 3; grid-column: span 2; }
.m-wide { grid-row: span 2; grid-column: span 2; }
.m-sq   { grid-row: span 2; grid-column: span 2; }
.m-w-sm { grid-row: span 2; grid-column: span 2; }
.m-tall-2 { grid-row: span 3; grid-column: span 2; }

/* ============================================================
   GALLERY REEL — homepage slideshow (single row)
   ============================================================ */
.gallery-reel-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.reel-viewport {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  overflow: hidden;
}
@media (max-width: 640px) {
  .reel-viewport { grid-template-columns: 1fr; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .reel-viewport { grid-template-columns: repeat(2, 1fr); }
}
.reel-cell {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
  animation: reel-fade-in 380ms ease-out both;
}
.reel-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes reel-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reel-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: border-color 240ms, color 240ms, background 240ms;
}
.reel-arrow:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-soft);
}
.reel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
}
.reel-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background 240ms, transform 240ms;
  cursor: pointer;
}
.reel-dot.active {
  background: var(--color-accent);
  transform: scale(1.4);
}

/* ============================================================
   TESTIMONIAL — editorial quote
   ============================================================ */
.testimonial {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
}
.testimonial { position: relative; padding-top: 2rem; }
.testimonial-mark {
  position: absolute;
  color: var(--color-accent);
  opacity: 0.14;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  width: clamp(10rem, 18vw, 18rem);
  height: auto;
  line-height: 0;
}
.testimonial-mark svg { width: 100%; height: auto; display: block; }
.testimonial-mark-open {
  top: -1.5rem;
  left: -2rem;
}
.testimonial-mark-close {
  bottom: 1rem;
  right: -2rem;
}
@media (max-width: 768px) {
  .testimonial-mark { width: 7rem; opacity: 0.1; }
  .testimonial-mark-open { top: -0.5rem; left: -0.5rem; }
  .testimonial-mark-close { bottom: 0.5rem; right: -0.5rem; }
}
.testimonial > *:not(.testimonial-mark) { position: relative; z-index: 1; }
.testimonial-stars {
  display: inline-flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
  color: var(--color-accent);
}
.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.42;
  color: var(--color-text-primary);
  margin: 0 0 2rem;
  text-wrap: pretty;
}
.testimonial-text p + p { margin-top: 1rem; }
.testimonial-more-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.5rem 0;
  position: relative;
  border: 0;
  background: transparent;
  margin-top: 1rem;
}
.testimonial-more-btn::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.testimonial-extra {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  margin-top: 2rem;
  overflow: hidden;
  max-height: 0;
  transition: max-height 600ms var(--ease-out);
}
.testimonial-extra.open { max-height: 60rem; }
.testimonial-extra p + p { margin-top: 1rem; }
.testimonial-author {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}
.testimonial-author .name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--color-text-primary);
  font-weight: 500;
}
.testimonial-author .tour {
  font-size: 0.82rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
}

/* ============================================================
   INCLUSIVE
   ============================================================ */
.inclusive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
@media (min-width: 780px) { .inclusive-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .inclusive-grid { grid-template-columns: repeat(6, 1fr); } }
.inc-cell {
  background: var(--color-bg-primary);
  padding: 2.25rem 1.75rem;
  display: flex; flex-direction: column;
  gap: 0.9rem;
  min-height: 13rem;
  transition: background 320ms, transform 320ms;
  position: relative;
}
.inc-cell::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2rem; height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}
.inc-cell:hover { background: #fff; }
.inc-cell:hover::before { transform: scaleX(1); }
.inc-icon {
  color: var(--color-accent);
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.5rem;
}
.inc-icon svg { width: 34px !important; height: 34px !important; }
.inc-cell strong {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.inc-cell span {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* ============================================================
   BOOKING NOTICE — min group, no solo
   ============================================================ */
.booking-notice {
  padding-block: var(--section-py);
  background: var(--color-bg-soft);
  border-block: 1px solid var(--color-border);
}
.notice-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 60rem;
  margin-inline: auto;
}
@media (max-width: 600px) {
  .notice-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.notice-stat { text-align: center; }
.notice-stat .lc { color: var(--color-accent); margin-bottom: 1rem; display:inline-flex;}
.notice-stat .num {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.notice-stat .label {
  font-size: 1rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}
.notice-stat p {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--color-text-primary);
  max-width: 26rem;
  margin: 0 auto;
  font-weight: 500;
}
.notice-divider {
  width: 1px; background: var(--color-border);
  align-self: stretch;
  min-height: 10rem;
}
@media (max-width: 600px) {
  .notice-divider { width: auto; height: 1px; min-height: 0; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */

.final-cta {
  position: relative;
  padding-block: clamp(5rem, 10vw, 9rem);
  background: #0E0E0E;
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('assets/photos/hero-pyramids.jpg') center/cover;
  opacity: 0.28;
}
.final-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, #0E0E0E 90%);
}
.final-cta .container { position: relative; z-index: 2; max-width: 48rem; }
.final-cta .section-eyebrow { color: var(--color-accent); justify-content: center; }
.final-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin: 0 0 1.5rem;
  color: #fff;
}
.final-cta p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  max-width: 34rem;
  margin: 0 auto 2.5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 780px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand .brand-mark { color: #fff; font-size: 1.6rem; }
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  max-width: 20rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1.25rem;
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--color-accent); }
.footer-contact-label {
  font-size: 0.7rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.2rem;
}
.footer-contact-value {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}
.footer-bottom {
  padding-top: 1.75rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom p { margin: 0; }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
  align-items: center;
}
.footer-legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-legal a:hover { color: var(--color-accent); }

/* ============================================================
   WHATSAPP WIDGET
   ============================================================ */
.wa-widget {
  position: fixed;
  right: 1.5rem; bottom: 1.5rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-accent);
  color: #fff;
  padding: 0.85rem 1.3rem 0.85rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.12);
  transition: all var(--transition-base);
}
.wa-widget:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}
.wa-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--color-accent);
  opacity: 0.3;
  z-index: -1;
  animation: wa-pulse 2.8s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.3; }
  80%, 100% { transform: scale(1.4); opacity: 0; }
}
@media (max-width: 720px) {
  .wa-widget { right: 1rem; bottom: 1rem; padding: 0.85rem; }
  .wa-widget span { display: none; }
}

/* ============================================================
   REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-slide.active .hero-img, .wa-widget::before, .whisper-track { animation: none; }
}

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 70;
  width: 18rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 2px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
  font-family: var(--font-body);
  overflow: hidden;
  display: none;
}
.tweaks-panel.open { display: block; }
@media (max-width: 640px) {
  .tweaks-panel { width: calc(100vw - 2rem); right: 1rem; }
}
.tweaks-panel header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}
.tweaks-panel header strong {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  font-weight: 500;
}
.tweaks-panel header button {
  color: var(--color-text-muted);
  padding: 0.25rem;
}
.tweaks-panel-body { padding: 1rem; max-height: 60vh; overflow-y: auto; }
.tweak-group { margin-bottom: 1.25rem; }
.tweak-group:last-child { margin-bottom: 0; }
.tweak-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.6rem;
}
.tweak-radio-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tweak-radio-row button {
  flex: 1 1 auto;
  padding: 0.55rem 0.75rem;
  font-size: 0.78rem;
  color: var(--color-text-secondary);
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  transition: all var(--transition-fast);
  text-align: center;
}
.tweak-radio-row button.active {
  background: var(--color-text-primary);
  color: #fff;
  border-color: var(--color-text-primary);
}
.tweak-swatches { display: flex; gap: 0.5rem; }
.tweak-swatches button {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 280ms;
  padding: 0;
}
.tweak-swatches button.active { border-color: var(--color-text-primary); }

/* Accent tone variants */
body[data-accent="sun"] { --color-accent: #C9A84C; --color-accent-hover: #B89840; }
body[data-accent="copper"] { --color-accent: #B4804A; --color-accent-hover: #9B6E3E; }
body[data-accent="sand"] { --color-accent: #D4B678; --color-accent-hover: #B99857; }
body[data-accent="terracotta"] { --color-accent: #B56A4D; --color-accent-hover: #995A40; }
body[data-accent="sun"] { --color-accent-light: rgba(201, 168, 76, 0.12); --color-accent-soft: rgba(201, 168, 76, 0.06); }
body[data-accent="copper"] { --color-accent-light: rgba(180, 128, 74, 0.12); --color-accent-soft: rgba(180, 128, 74, 0.06); }
body[data-accent="sand"] { --color-accent-light: rgba(212, 182, 120, 0.14); --color-accent-soft: rgba(212, 182, 120, 0.07); }
body[data-accent="terracotta"] { --color-accent-light: rgba(181, 106, 77, 0.12); --color-accent-soft: rgba(181, 106, 77, 0.06); }

/* Hero variant display control */
body[data-hero="cinematic"] .hero-editorial { display: none; }
body[data-hero="editorial"] .hero { display: none; }

/* Density */
body[data-density="airy"] { --section-py: clamp(5rem, 9vw, 9rem); }
body[data-density="compact"] { --section-py: clamp(3rem, 5vw, 5rem); }

/* ============================================================
   Centered variants for tour pages
   ============================================================ */
.section-head.center {
  display: block;
  text-align: center;
}
.section-head.center > div { display: block; }
.section-head.center .lede {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  padding-top: 0;
}

.tour-list.center {
  max-width: 44rem;
  margin-inline: auto;
}
.tour-list.center li { padding-left: 0; text-align: center; }
.tour-list.center li::before { display: none; }

.tour-summary-list.center {
  max-width: 44rem;
  margin-inline: auto;
}
.tour-summary-list.center li { padding-left: 0; text-align: center; font-size: 1.05rem; }
.tour-summary-list.center li::before {
  content: counter(sumcount, decimal-leading-zero) "  ·  ";
  position: static;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Larger leading dashes inside the "Is This Journey For You?" fit-cards */
.fit-grid .fit-card li {
  padding-left: 2rem;
}
.fit-grid .fit-card li::before {
  width: 1.25rem;
  height: 2px;
  top: 0.78rem;
}

/* Larger Day-N eyebrows above each day-card */
.day-card .day-eyebrow {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

/* ============================================================
   MOBILE UI OVERHAUL — hide noisy header/hero pieces
   ============================================================ */
@media (max-width: 960px) {
  .nav-cta { display: none; }
}
@media (max-width: 720px) {
  .hero-rail { display: none; }
}
@media (max-width: 640px) {
  .hero-scroll-hint { display: none; }
}

/* Tour page-hero — tighten top padding on mobile.
   Original rules live in inline <style> blocks per page,
   so !important is required to override. */
@media (max-width: 640px) {
  .page-hero {
    min-height: 50vh !important;
    padding-top: calc(var(--header-height) + 1.5rem) !important;
    padding-bottom: 2.5rem !important;
  }
}
