
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f5f0e8;
  --cream-deep: #ede5d6;
  --light: #f8f6f2;
  --tan: #b8935a;
  --tan-light: #d4b988;
  --tan-soft: #e8d9be;
  --green: #214f32;
  --green-deep: #163522;
  --dark: #1a1a1a;
  --text: #2c2c2c;
  --gray: #666;
  --rule: rgba(26,26,26,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
:root { --nav-h: 92px; }
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
  padding: 0 48px;
  background: transparent;
  transition: transform 0.25s cubic-bezier(.2,.7,.2,1), background 0.3s;
}
nav.scrolled {
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(8px);
}
nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-logo {
  display: flex; align-items: center;
  gap: 16px;
  height: 100%;
}
.nav-logo img {
  height: 100%;       /* full nav height — maximum size */
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}
.nav-logo:hover img { transform: scale(1.04); }
.nav-logo .brand-text {
  color: #fff; line-height: 1.1; white-space: nowrap;
}
.nav-logo .name {
  font-family: 'Playfair Display', serif;
  font-size: 32px; white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.nav-logo .sub {
  font-size: 12px;
  letter-spacing: 0.34em; white-space: nowrap;
  color: rgba(255,255,255,0.7);
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > a,
.nav-links .nav-trigger {
  color: #fff;
  font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.nav-links > a:hover,
.nav-links .nav-trigger:hover { opacity: 1; }

/* ── MEGA MENU (Experiences / Destinations) ── */
.nav-item.has-dropdown {
  position: static; /* dropdown is full-width relative to nav */
  display: inline-flex;
  align-items: stretch;
  height: var(--nav-h); /* fill the nav vertically so hover doesn't drop on the way to the menu */
}
.nav-trigger {
  display: inline-flex; align-items: center; gap: 7px;
  cursor: pointer;
  height: 100%;        /* fill the nav vertically */
  padding: 0;
  position: relative;
}
.nav-trigger .caret {
  width: 7px; height: 7px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s ease;
  opacity: 0.7;
}
.nav-item.has-dropdown:hover .nav-trigger .caret,
.nav-item.has-dropdown:focus-within .nav-trigger .caret {
  transform: rotate(-135deg) translate(-2px, -2px);
  opacity: 1;
}

.mega-menu {
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  z-index: 99;
  pointer-events: none;
}
/* Hover bridge — invisible strip that connects the trigger to the menu so the cursor
   never crosses an unhoverable gap between them */
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -16px;
  height: 16px;
  background: transparent;
}
.nav-item.has-dropdown:hover .mega-menu,
.nav-item.has-dropdown:focus-within .mega-menu,
.mega-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── .has-mini: nav items with compact dropdown (YurtaDa, About) ── */
.nav-item.has-mini {
  position: relative;   /* mini-drop positions relative to THIS item */
  display: inline-flex;
  align-items: stretch;
  height: var(--nav-h);
}
.nav-item.has-mini:hover .nav-trigger .caret,
.nav-item.has-mini:focus-within .nav-trigger .caret {
  transform: rotate(-135deg) translate(-2px, -2px);
  opacity: 1;
}

@media (max-width: 1100px) {
  .nav-item.has-mini .mini-drop { display: none; }
}


.mega-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 48px 56px;
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 56px;
  align-items: start;
}

.mega-intro {
  color: #fff;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-right: 48px;
}
.mega-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 16px;
}
.mega-title {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.mega-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--tan-light);
}
.mega-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.mega-all {
  display: inline-block;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--tan-light) !important;
  border-bottom: 1px solid var(--tan);
  padding-bottom: 4px;
  opacity: 1 !important;
  transition: color 0.2s, border-color 0.2s;
}
.mega-all:hover {
  color: #fff !important;
  border-color: #fff;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.mega-card {
  display: block;
  color: #fff !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: inherit !important;
  opacity: 1 !important;
  transition: transform 0.3s ease;
}
.mega-card:hover { transform: translateY(-3px); }
.mega-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
  transition: filter 0.3s ease;
}
.mega-card:hover .mega-thumb { filter: brightness(1.08); }
.mega-text { padding: 0 2px; }
.mega-meta {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 5px;
}
.mega-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.22;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: 0;
}
.mega-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(255,255,255,0.65);
}

/* When nav background is transparent (top of page), give mega-menu a stronger backing */
nav:not(.scrolled) .mega-menu {
  background: rgba(15, 15, 15, 0.94);
}

/* Hide mega menu on small screens — mobile menu handles it */
@media (max-width: 1100px) {
  .nav-item.has-dropdown .mega-menu { display: none; }
}

.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-right a {
  color: #fff;
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-right a:hover { opacity: 1; }

/* ── LANGUAGE SWITCHER (dropdown) ── */
.lang-switch {
  position: relative;
  display: inline-block;
}
.lang-current {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px 6px 6px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lang-current:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }
.lang-chevron {
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.25s ease;
  margin-left: 2px;
}
.lang-switch.open .lang-chevron {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 168px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.08);
  padding: 6px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 110;
}
.lang-switch.open .lang-menu {
  opacity: 1; pointer-events: auto; transform: none;
}
.lang-item {
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  padding: 10px 14px;
  border: none; background: transparent;
  border-radius: 7px;
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}
.lang-item:hover { background: rgba(0,0,0,0.04); }
.lang-item.active { background: var(--cream); color: var(--dark); }

/* Circular flags */
.flag {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
  background-size: cover; background-position: center;
}
/* US flag — circular, simplified stripes + canton */
.flag-en {
  background:
    linear-gradient(to right, #002868 0 45%, transparent 45%) 0 0 / 100% 50% no-repeat,
    repeating-linear-gradient(
      to bottom,
      #bf0a30 0 calc(100% / 13),
      #ffffff calc(100% / 13) calc(2 * 100% / 13)
    );
}
/* Russian flag — circular tricolour */
.flag-ru {
  background: linear-gradient(to bottom,
    #ffffff 0 33.3%,
    #0039a6 33.3% 66.6%,
    #d52b1e 66.6% 100%);
}

/* ── HERO (layered parallax) ── */
.hero {
  height: 100vh; min-height: 760px;
  position: relative; overflow: hidden;
  background: #0e1722; /* fallback sky tone */
  display: flex;
  align-items: flex-start;            /* H1 in the upper sky area */
  justify-content: center;
  padding-top: clamp(200px, 30vh, 340px);
  text-align: center;
}

/* BACK layer — sky + distant ridge. Anchored to top so the real sky
   stays at the top of the viewport. */
.hero-sky {
  position: absolute; inset: 0;
  background-image: url('/assets/hero/back.png');
  background-size: cover;
  background-position: center top;
  z-index: 1;
  will-change: transform;
  transform: translate3d(0, var(--sky-y, 0px), 0) scale(var(--sky-scale, 1));
  transform-origin: 50% 30%;
  transition: none;
}

/* Overlay — soft darkening for legibility, sits above sky but below text */
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.32) 0%,
      rgba(0,0,0,0.08) 22%,
      rgba(0,0,0,0.00) 50%,
      rgba(0,0,0,0.10) 100%);
}

/* TEXT — wrapper sits between sky and front mountains. Layout is
   full-width so the H1 stays perfectly horizontally centered.
   Each line gets its own transform (tagline flies up, H1 flies down). */
.hero-content {
  position: relative; z-index: 3;
  width: 100%;
  padding: 0 24px;
  text-align: center;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* FRONT layer — close mountains + foreground reflection.
   Pushed DOWN by extending past the bottom edge so the mountain
   horizon falls in the lower half of the viewport, leaving sky
   room above for the text. */
.hero-mountains {
  position: absolute;
  left: 0; right: 0;
  top: 0; bottom: clamp(-260px, -22vh, -160px);
  pointer-events: none;
  z-index: 4;
  background-image: url('/assets/hero/front.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  will-change: transform;
  transform: translate3d(0, var(--mtn-y, 0px), 0) scale(var(--mtn-scale, 1));
  transform-origin: 50% 100%;
  transition: none;
}
.hero-tagline {
  font-family: 'Playfair Display', serif;   /* same family as the H1 */
  font-size: clamp(14px, 1.4vw, 20px);
  font-style: normal;
  font-weight: 500;
  color: #fff;
  margin: 0 0 22px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  /* identical shadow stack to .hero-content h1 */
  text-shadow:
    0 2px 4px rgba(0,0,0,0.85),
    0 4px 18px rgba(0,0,0,0.75),
    0 0 60px rgba(0,0,0,0.45);
  will-change: transform;
  transform: translate3d(0, var(--tag-y, 0px), 0);
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.4vw, 38px);
  font-weight: 500; color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 0 auto;
  max-width: 1200px;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.85),
    0 4px 18px rgba(0,0,0,0.75),
    0 0 60px rgba(0,0,0,0.45);
  text-transform: uppercase;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.18em;
  will-change: transform;
  transform: translate3d(0, var(--h1-y, 0px), 0) scale(var(--h1-scale, 1));
}
.hero-content h1 .hl-line {
  display: block;
  white-space: normal;        /* allow natural wrap for long Russian lines */
}
.hero-content > p {
  font-size: 17px; color: rgba(255,255,255,0.88);
  font-weight: 300; line-height: 1.75;
  max-width: 640px; margin: 0 auto;
  letter-spacing: 0.01em;
}

/* ── SECTIONS ── */
section { padding: 96px 48px; }
.container { max-width: 1400px; margin: 0 auto; }

.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--tan);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500; color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--gray);
  font-weight: 300; line-height: 1.7;
  max-width: 600px;
}
.section-header { margin-bottom: 56px; }

/* ── ABOUT INTRO ── */
.intro {
  background: #fff;
  padding: 80px 48px;
  text-align: center;
}
.intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.8;
  color: var(--gray);
  font-weight: 300;
  max-width: 760px; margin: 0 auto;
  font-style: italic;
}
.intro p strong {
  font-style: normal;
  color: var(--dark);
  font-weight: 400;
}

/* ── FEATURED JOURNEYS ── */
.featured { background: var(--light); }
.featured .section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px;
}

.trips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trip-card {
  position: relative; overflow: hidden;
  border-radius: 2px;
  background: #111;
  cursor: pointer;
}
.trip-card .img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.trip-card .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease, opacity 0.4s;
  opacity: 0.88;
}
.trip-card:hover .ph { transform: scale(1.06); opacity: 0.75; }

.ph-1 { background: linear-gradient(160deg, #4a5a3a 0%, #2a3220 100%), repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px); }
.ph-2 { background: linear-gradient(160deg, #6b5436 0%, #3a2a18 100%), repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px); }
.ph-3 { background: linear-gradient(160deg, #8a7548 0%, #4a3a20 100%), repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px); }
.ph-4 { background: linear-gradient(160deg, #5e4d2e 0%, #2e2418 100%), repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px); }
.ph-5 { background: linear-gradient(160deg, #4d5a3a 0%, #2a3520 100%), repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px); }
.ph-6 { background: linear-gradient(160deg, #7a6648 0%, #3e3220 100%), repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px); }

.ph-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 12px;
  z-index: 1;
  font-family: 'Jost', sans-serif;
  pointer-events: none;
}

.trip-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  white-space: nowrap;
  background: var(--tan); color: #fff;
  font-size: 10px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 11px; border-radius: 1px;
}
.trip-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 22px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  z-index: 2;
}
.trip-meta {
  font-size: 11px; color: rgba(255,255,255,0.65);
  font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 8px;
}
.trip-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; color: #fff; font-weight: 500;
  line-height: 1.25; margin-bottom: 10px;
}
.trip-price {
  font-size: 13px; color: var(--tan-soft);
  font-weight: 500; letter-spacing: 0.04em;
}

/* ── HOW WE TRAVEL ── */
.how-we-travel { background: #fff; }
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 48px;
}
.how-card {
  position: relative; overflow: hidden; border-radius: 2px;
  cursor: pointer;
}
.how-card .img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.how-card .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.how-card:hover .ph { transform: scale(1.05); }
.how-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.05) 60%);
  display: flex; align-items: flex-end;
  padding: 36px 32px;
  transition: background 0.3s;
  z-index: 2;
}
.how-card:hover .how-card-overlay { background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.1) 60%); }
.how-card-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 30px; color: #fff; font-weight: 500;
  margin-bottom: 12px;
}
.how-card-text p {
  font-size: 14px; color: rgba(255,255,255,0.82);
  font-weight: 300; line-height: 1.65;
  margin-bottom: 18px;
  max-width: 480px;
}
.how-card-link {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--tan-soft);
  border-bottom: 1px solid rgba(232,217,190,0.5);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.how-card:hover .how-card-link { color: #fff; border-color: rgba(255,255,255,0.6); }

/* ── TRAVEL STYLE (How We Travel) ── */
.travel-style { background: var(--cream); padding: 96px 0 0; }
.travel-style-header {
  text-align: center;
  padding: 0 48px 56px;
  max-width: 760px; margin: 0 auto;
}
.travel-style-header .section-label { color: var(--tan); }
.travel-style-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500; color: var(--dark);
  line-height: 1.15; margin-bottom: 18px;
}
.travel-style-header p {
  font-size: 16px; color: var(--gray);
  font-weight: 300; line-height: 1.7;
  max-width: 560px; margin: 0 auto;
}
.travel-style-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.travel-card {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  isolation: isolate;
}
.travel-card .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s ease;
  z-index: 0;
}
.travel-card:hover .ph { transform: scale(1.05); }
.travel-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0) 75%);
  transition: background 0.4s ease;
}
.travel-card:hover .travel-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.05) 80%);
}
.travel-card-text {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 56px clamp(28px, 5vw, 64px) 56px;
  color: #fff; text-align: center;
}
.travel-card-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 500; line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.travel-card-text p {
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.86);
  font-weight: 300;
  max-width: 420px; margin: 0 auto 24px;
}
.travel-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.travel-card:hover .travel-card-link {
  color: var(--tan-light); border-color: var(--tan-light);
}

/* Photo placeholder gradients for the travel cards */
.ph-group { background: linear-gradient(155deg, #3a3024 0%, #1a1410 100%), repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px); }
.ph-custom { background: linear-gradient(155deg, #4a3a26 0%, #2a1f12 100%), repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 14px, rgba(255,255,255,0.08) 14px 28px); }

/* ── BY INTEREST ── */
.by-interest { background: var(--cream); }
.interest-scroll {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.interest-card {
  position: relative; overflow: hidden; border-radius: 2px;
  cursor: pointer; aspect-ratio: 3/4;
  background: #111;
}
.interest-card .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
  opacity: 0.82;
}
.interest-card:hover .ph { transform: scale(1.08); opacity: 0.65; }
.interest-card-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 40px 14px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: #fff; font-weight: 500;
  line-height: 1.2;
}

/* ── PHILOSOPHY · TRUST / TEAM / SUSTAINABILITY (sticky scrollytelling) ── */
.scrolly {
  position: relative;
  background: var(--dark);
  padding: 0;
  /* total scroll length comes from the trigger blocks (3 × 100vh) */
}
.scrolly-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Image stack — full screen, crossfading + scroll-driven parallax */
.scrolly .img-stack { position: absolute; inset: 0; }
.scrolly .img-stack figure {
  position: absolute; inset: 0; margin: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}
.scrolly .img-stack figure.active { opacity: 1; }
.scrolly .img-stack img {
  /* extra height = slack for parallax drift + Ken Burns zoom (≤ +8%);
     overflow hidden on the figure clips anything that pokes past */
  position: absolute;
  top: -7.5%; left: 0;
  width: 100%; height: 115%;
  object-fit: cover;
  display: block;
  transform-origin: 50% 50%;
  will-change: transform;
}
/* Dark gradient so text stays readable */
.scrolly .img-stack::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.6) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%);
  pointer-events: none;
  z-index: 1;
}

/* Text overlay */
.scrolly .text-stack {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 0 6vw 12vh;
}
.scrolly .text-slide {
  position: absolute;
  bottom: 12vh; left: 6vw; right: 6vw;
  max-width: 640px;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.scrolly .text-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scrolly .text-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 11px; font-weight: 600;
  color: var(--tan-light);
  margin-bottom: 18px;
  display: flex; align-items: center;
  gap: 14px;
}
.scrolly .text-label::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--tan-light);
}
.scrolly .text-slide h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: #fff;
  margin: 0 0 18px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.scrolly .text-slide p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  margin: 0 0 28px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}
.scrolly .scrolly-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid #fff;
  transition: gap 0.4s ease, color 0.3s ease, border-color 0.3s ease;
}
.scrolly .scrolly-link::after {
  content: "→";
  transition: transform 0.4s ease;
}
.scrolly .scrolly-link:hover {
  gap: 16px;
  color: var(--tan-light);
  border-color: var(--tan-light);
}
.scrolly .scrolly-link:hover::after { transform: translateX(4px); }

/* HUD — counter + progress */
.scrolly .hud {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  padding: 3rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.scrolly .hud-counter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.05em;
}
.scrolly .hud-counter .curr {
  font-style: italic;
  color: var(--tan-light);
  font-size: 17px;
}
.scrolly .progress-line {
  display: flex;
  gap: 8px;
  width: 200px;
}
.scrolly .progress-line .seg {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}
.scrolly .progress-line .seg::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--tan-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.scrolly .progress-line .seg.done::after { transform: scaleX(1); }
.scrolly .progress-line .seg.active::after { transform: scaleX(0.5); }

/* Invisible scroll triggers — each block defines when one slide is active */
.scrolly .scrolly-triggers {
  position: relative;
  z-index: -1;
}
.scrolly .scrolly-trigger { height: 100vh; }

/* ── QUOTE ── */
.quote-section {
  background: var(--dark);
  padding: 110px 48px;
  text-align: center;
}
.quote-section .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 96px; color: var(--tan);
  line-height: 0.5; display: block;
  margin-bottom: 28px; opacity: 0.6;
}
.quote-section blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
  max-width: 860px; margin: 0 auto 36px;
  font-weight: 300;
}
.quote-attr {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--tan);
  margin-bottom: 6px;
}
.quote-role {
  font-size: 12px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── WANDERLUST ── */
.wanderlust { background: var(--light); }
.wanderlust .section-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 20px;
}
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card { cursor: pointer; }
.blog-card .img-wrap {
  aspect-ratio: 3/2;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 22px;
}
.blog-card .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: opacity 0.3s;
}
.blog-card:hover .ph { opacity: 0.85; }
.blog-author {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--tan);
  margin-bottom: 12px;
}
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--dark);
  font-weight: 500; line-height: 1.3;
}

/* ── FEATURED IN ── */
.featured-in { background: #fff; padding: 72px 48px; }
.featured-in h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--gray);
  font-weight: 400; text-align: center;
  margin-bottom: 48px; letter-spacing: 0.04em;
}
.logos-row {
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.logos-row span {
  font-family: 'Playfair Display', serif;
  font-size: 19px; color: #999;
  letter-spacing: 0.05em; font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
  font-style: italic;
}
.logos-row span:hover { color: var(--dark); }

/* ── CTA ── */
.cta-section {
  position: relative; overflow: hidden;
  min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, #4a5a3a 0%, #1f2a1d 80%);
}
.cta-mountain {
  position: absolute; left: 0; right: 0; bottom: 0; height: 60%;
  pointer-events: none;
}
.cta-mountain svg { width: 100%; height: 100%; }
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5);
}
.cta-content {
  position: relative; z-index: 2;
  padding: 0 24px;
  max-width: 760px;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  color: #fff; font-weight: 500;
  margin-bottom: 20px; letter-spacing: 0.02em;
  line-height: 1.1;
}
.cta-content p {
  font-size: 17px; color: rgba(255,255,255,0.82);
  font-weight: 300; margin-bottom: 40px;
  line-height: 1.7;
}
.btn {
  display: inline-block;
  white-space: nowrap;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}
.btn:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--dark);
  padding: 90px 48px;
  text-align: center;
}
.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: #fff;
  font-weight: 500; margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.newsletter-form {
  display: flex; gap: 0;
  max-width: 480px; margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.25);
}
.newsletter-form input {
  flex: 1; padding: 16px 20px;
  background: transparent; border: none;
  color: #fff; font-size: 14px; font-family: 'Jost', sans-serif;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.42); }
.newsletter-form button {
  padding: 16px 32px;
  background: var(--tan); border: none;
  color: #fff; font-size: 11px;
  font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #a07d49; }

/* ── FOOTER ── */
footer {
  background: #111;
  padding: 64px 48px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .fb-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.footer-brand .fb-logo img {
  width: 48px; height: 48px;
  border-radius: 50%; object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}
.footer-brand .fb-logo .name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.footer-brand .fb-logo .sub {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.75; font-weight: 300;
  max-width: 320px;
}
.footer-contact {
  margin-top: 22px;
}
.footer-contact a {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-hours {
  font-size: 12px; color: rgba(255,255,255,0.35);
  margin-top: 4px;
}
.footer-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 22px;
}
.footer-col a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px; font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p {
  font-size: 12px; color: rgba(255,255,255,0.28);
  font-weight: 300;
}
.footer-legal {
  display: flex; gap: 24px;
}
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,0.32);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── VIEW MORE LINK ── */
.view-more {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dark); white-space: nowrap;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.view-more:hover { color: var(--tan); border-color: var(--tan); }

/* ── UNIFIED PLAN CTA (site-wide pill button to /plan/) ── */
.plan-cta {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--dark);
  color: var(--dark);
  background: transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.plan-cta:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.plan-cta--light,
.journey-cta .plan-cta,
section[style*="background:#0e1722"] .plan-cta,
section[style*="background: #0e1722"] .plan-cta {
  border-color: #fff !important;
  color: #fff !important;
  background: transparent !important;
}
.plan-cta--light:hover,
.journey-cta .plan-cta:hover,
section[style*="background:#0e1722"] .plan-cta:hover,
section[style*="background: #0e1722"] .plan-cta:hover {
  background: #fff !important;
  color: var(--dark) !important;
  border-color: #fff !important;
}

/* ── MOBILE NAV (hamburger + drawer) ── */
.menu-toggle {
  display: none;
  background: transparent; border: none;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 10px;
  align-items: center; justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  position: relative;
  transition: transform 0.3s ease, top 0.3s ease, background 0.3s ease;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: ''; position: absolute; left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,15,15,0.97);
  backdrop-filter: blur(10px);
  z-index: 99;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 28px;
  opacity: 0; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 40px 24px;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}
.mobile-menu .mobile-cta {
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: 13px; letter-spacing: 0.16em;
}
.mobile-menu .mobile-phone {
  font-family: 'Jost', sans-serif;
  font-size: 14px; letter-spacing: 0.06em;
  text-transform: none;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 1100px) {
  .trips-grid { grid-template-columns: repeat(2, 1fr); }
  .interest-scroll { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-right { gap: 14px; }
  .nav-right > a[href^="tel:"] { display: none; }
  .nav-cta { padding: 8px 14px !important; font-size: 12px; }
  .formats-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .yurtada-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .travel-style-grid { grid-template-columns: 1fr; }
  .travel-card { aspect-ratio: 4/3; }
}
@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  section { padding: 72px 24px; }
  nav { padding: 0 18px; }
  .nav-logo { gap: 10px; }
  .nav-logo .name { font-size: 22px; letter-spacing: 0.1em; }
  .nav-logo .sub { font-size: 9px; letter-spacing: 0.26em; margin-top: 3px; }
  .lang-current { padding: 5px 10px 5px 5px; font-size: 11px; gap: 6px; }
  .lang-current .flag { width: 20px; height: 20px; }
  .lang-menu { min-width: 152px; }
  .lang-item { font-size: 13px; padding: 9px 12px; }

  .hero { min-height: 560px; }
  .hero-content h1 { font-size: clamp(28px, 8.5vw, 44px); white-space: normal; }

  .travel-style { padding-top: 72px; }
  .travel-style-header { padding: 0 24px 40px; }
  .travel-card-text { padding: 36px 24px 36px; }
  .travel-card-text h3 { font-size: 28px; }
  .travel-card-text p { font-size: 14px; }

  .trips-grid { grid-template-columns: 1fr; }
  .how-grid, .blog-grid { grid-template-columns: 1fr; }
  /* Sticky scrolly: tighten paddings + hide HUD on small screens */
  .scrolly .text-stack { padding: 0 5vw 14vh; }
  .scrolly .text-slide { left: 5vw; right: 5vw; bottom: 14vh; }
  .scrolly .text-slide h2 { font-size: clamp(26px, 6.5vw, 36px); }
  .scrolly .text-slide p { font-size: 15px; line-height: 1.7; }
  .scrolly .hud { padding: 1.75rem 5vw; }
  .scrolly .progress-line { width: 120px; }
  .interest-scroll { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .logos-row { gap: 32px; }
  .newsletter, .newsletter h2 { padding-left: 24px; padding-right: 24px; }
  .newsletter h2 { font-size: 26px; }
  .newsletter-form { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .formats-grid { grid-template-columns: 1fr !important; }
  .yurtada-grid { grid-template-columns: 1fr !important; }
  .contact-form { grid-template-columns: 1fr !important; }
  .quote-section { padding: 80px 24px; }
  footer { padding: 56px 24px 32px; }
  #contact { padding: 80px 24px !important; }
}
@media (max-width: 420px) {
  .nav-logo .brand-text { display: none; }
  .nav-cta { display: none !important; }
  .lang-current { padding: 4px 8px 4px 4px; }
}

/* ── YurtaDa click-to-play intro video ── */
.yd-video {
  padding: 80px 48px;
  background: var(--cream);
}
.yd-video-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.yd-video-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.25;
  margin: 0 0 36px;
}
.yd-video-frame {
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 48px rgba(0,0,0,0.18);
  cursor: pointer;
}
.yd-video-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.yd-video-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.yd-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
  padding-left: 6px;
}
.yd-video-play:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.06);
}
.yd-video-el {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
@media (max-width: 600px) {
  .yd-video { padding: 56px 24px; }
  .yd-video-frame { max-width: 320px; }
  .yd-video-play { width: 68px; height: 68px; }
}

/* ── Journal article (long-form) ── */
.journal-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 32px 40px;
  font-family: 'Jost', sans-serif;
}
.journal-article .lead {
  font-family: 'Jost', sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--dark);
  line-height: 1.7;
  font-weight: 400;
  margin: 0 0 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.journal-article .lead strong { font-weight: 600; }
.journal-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  margin: 44px 0 16px;
}
.journal-article p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.85;
  margin: 0 0 20px;
}
.journal-article .kicker {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--dark);
  line-height: 1.4;
  text-align: center;
}

/* In-article video block */
.article-video {
  margin: 56px auto;
  max-width: 480px;
  text-align: center;
}

/* Camp cards on article page */
.article-camp-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.article-camp-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.article-camp-card span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
}
.article-camp-card:hover { transform: translateY(-4px); }
@media (max-width: 900px) {
  section[class] > div > div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .journal-article { padding: 56px 24px 24px; }
}

/* ── YurtaDa click-to-play intro video ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}
@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }
}

/* Footer social icons */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-icon:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

/* ════════════════════════════════════════════════════════════════════ */
/* JOURNEY PAGES — individual experience template + All Journeys index   */
/* ════════════════════════════════════════════════════════════════════ */

/* Hero — full-bleed image, eyebrow / H1 / italic subtitle / meta strip */
.journey-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: var(--dark);
}
.journey-hero .jh-image {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.journey-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.journey-hero .jh-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px 80px;
}
.journey-hero .jh-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--tan-light);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 14px;
}
.journey-hero .jh-eyebrow::before {
  content: ""; display: inline-block;
  width: 32px; height: 1px; background: var(--tan-light);
}
.journey-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  max-width: 18ch;
  margin: 0 0 18px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.45);
}
.journey-hero .jh-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: rgba(255,255,255,0.85);
  max-width: 30ch;
  margin: 0 0 36px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.45);
}
.journey-hero .jh-meta {
  display: flex; flex-wrap: wrap;
  gap: 36px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.journey-hero .jh-meta span {
  display: inline-flex; align-items: center; gap: 10px;
}
.journey-hero .jh-meta strong {
  color: #fff; font-weight: 500;
}

/* Breadcrumb back-bar above each page */
.journey-back {
  background: var(--cream);
  padding: 22px 48px;
  border-bottom: 1px solid var(--rule);
}
.journey-back a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dark);
  display: inline-flex; align-items: center; gap: 10px;
  transition: color 0.2s, gap 0.3s;
}
.journey-back a::before { content: "←"; transition: transform 0.3s; }
.journey-back a:hover { color: var(--tan); gap: 14px; }
.journey-back a:hover::before { transform: translateX(-3px); }

/* Quick facts strip — duration / distance / season / fitness */
.journey-facts {
  background: var(--cream);
  padding: 0 0 0;
}
.journey-facts .jf-grid {
  max-width: 1400px; margin: 0 auto;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.journey-facts .jf-item {
  padding: 0 28px;
  border-left: 1px solid var(--rule);
}
.journey-facts .jf-item:first-child { border-left: none; padding-left: 0; }
.journey-facts .jf-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--tan);
  margin-bottom: 10px;
}
.journey-facts .jf-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500;
  color: var(--dark); line-height: 1.25;
}
.journey-facts .jf-value em {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-weight: 400; color: var(--tan);
}

/* Overview — section-label + headline + 1-2 paragraphs */
.journey-overview { padding: 96px 48px; background: #fff; }
.journey-overview .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.journey-overview h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500; color: var(--dark);
  line-height: 1.2;
  max-width: 14ch;
  margin: 14px 0 0;
}
.journey-overview p {
  font-size: 16px; color: var(--gray);
  line-height: 1.85; font-weight: 300;
  margin-bottom: 22px;
}
.journey-overview p:last-child { margin-bottom: 0; }

/* Highlights — 3 cards with image + heading + body */
.journey-highlights { padding: 96px 48px; background: var(--cream); }
.journey-highlights .container { max-width: 1400px; margin: 0 auto; }
.journey-highlights .jh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.journey-highlights .jh-card .img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 22px;
}
.journey-highlights .jh-card .img-wrap .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.journey-highlights .jh-card:hover .img-wrap .ph { transform: scale(1.05); }
.journey-highlights .jh-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500;
  color: var(--dark); line-height: 1.25;
  margin-bottom: 10px;
}
.journey-highlights .jh-card p {
  font-size: 15px; color: var(--gray);
  line-height: 1.75; font-weight: 300;
}

/* Itinerary — vertical day-by-day timeline */
.journey-itinerary { padding: 96px 48px; background: #fff; }
.journey-itinerary .container {
  max-width: 980px; margin: 0 auto;
}
.journey-itinerary .day {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.journey-itinerary .day:last-child { border-bottom: 1px solid var(--rule); }
.journey-itinerary .day-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px; font-weight: 400;
  color: var(--tan); line-height: 1;
}
.journey-itinerary .day-num small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--gray);
  margin-bottom: 6px;
}
.journey-itinerary .day-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500;
  color: var(--dark); line-height: 1.3;
  margin-bottom: 8px;
}
.journey-itinerary .day-body p {
  font-size: 15px; color: var(--gray);
  line-height: 1.75; font-weight: 300;
}

/* Included / Not included — two-column list */
.journey-included { padding: 96px 48px; background: var(--cream-deep); }
.journey-included .container {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.journey-included h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 500;
  color: var(--dark); margin-bottom: 24px;
}
.journey-included ul {
  list-style: none;
  padding: 0; margin: 0;
}
.journey-included li {
  font-size: 15px; color: var(--gray);
  line-height: 1.7; font-weight: 300;
  padding: 12px 0 12px 26px;
  position: relative;
  border-top: 1px solid var(--rule);
}
.journey-included li:last-child { border-bottom: 1px solid var(--rule); }
.journey-included .yes li::before {
  content: "✓"; position: absolute; left: 0; top: 12px;
  color: var(--tan); font-weight: 600;
}
.journey-included .no li::before {
  content: "—"; position: absolute; left: 0; top: 12px;
  color: var(--gray); opacity: 0.5;
}

/* Day-by-day breakdown — sub-bullets inside .day-body */
.journey-itinerary .day-points {
  list-style: none;
  padding: 0; margin: 14px 0 0;
}
.journey-itinerary .day-points li {
  font-size: 15px; color: var(--gray);
  line-height: 1.7; font-weight: 300;
  padding: 8px 0 8px 18px;
  position: relative;
  border-top: 1px dashed rgba(0,0,0,0.08);
}
.journey-itinerary .day-points li:first-child { border-top: none; padding-top: 4px; }
.journey-itinerary .day-points li::before {
  content: ""; position: absolute; left: 0; top: 17px;
  width: 6px; height: 1px; background: var(--tan);
}
.journey-itinerary .day-points strong {
  color: var(--dark); font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 4px;
}

/* Pricing cards — three tiers, side by side */
.pricing-section { background: var(--cream); }
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--rule);
  padding: 28px 24px;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s;
}
.price-card:hover { border-color: var(--tan); transform: translateY(-2px); }
.price-card .pc-tier {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--tan);
  margin-bottom: 14px;
}
.price-card .pc-amount {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 500;
  color: var(--dark); line-height: 1;
  margin-bottom: 12px;
}
.price-card .pc-note {
  font-size: 14px; color: var(--gray);
  line-height: 1.55; font-weight: 300;
  margin: 0;
}
.price-card.pc-featured {
  background: var(--dark); border-color: var(--dark);
}
.price-card.pc-featured .pc-tier { color: var(--tan-light); }
.price-card.pc-featured .pc-amount { color: #fff; }
.price-card.pc-featured .pc-note { color: rgba(255,255,255,0.7); }

/* Two-column Included / Not Included variant */
.journey-included.incl-split .container {
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.journey-included.incl-split h3 {
  margin-top: 6px; margin-bottom: 18px;
}

@media (max-width: 900px) {
  .price-cards { grid-template-columns: 1fr; gap: 14px; }
  .journey-included.incl-split .container { grid-template-columns: 1fr; gap: 36px; }
}

/* ══════════════════════════════════════════════════════════════
   KARGALY ESCAPE — strong design components (kg-*)
   ══════════════════════════════════════════════════════════════ */

/* Hero stats — 3 big numbers band */
.kg-stats {
  background: var(--dark);
  color: #fff;
  padding: 96px 48px;
}
.kg-stats-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.kg-stat {
  padding: 0 48px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.kg-stat:first-child { border-left: none; padding-left: 0; }
.kg-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 7vw, 96px);
  font-weight: 500; line-height: 1; color: #fff;
  margin-bottom: 14px;
}
.kg-stat-num .kg-unit {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.35em; font-weight: 400;
  color: var(--tan-light);
  margin-left: 10px;
  vertical-align: middle;
}
.kg-stat-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--tan-light);
  margin-bottom: 14px;
}
.kg-stat-note {
  font-size: 15px; color: rgba(255,255,255,0.7);
  line-height: 1.7; font-weight: 300;
  max-width: 36ch;
}

/* Split — text + image, equal weight */
.kg-split {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 640px;
}
.kg-split-text {
  padding: 110px 64px 110px 96px;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 720px;
}
.kg-split-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500; line-height: 1.2; color: var(--dark);
  margin: 8px 0 28px;
  max-width: 18ch;
}
.kg-split-text p {
  font-size: 16px; color: var(--gray);
  line-height: 1.85; font-weight: 300;
  margin-bottom: 18px;
}
.kg-split-text p em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--dark); font-weight: 400;
}
.kg-split-image {
  background-size: cover;
  background-position: center;
}

/* Compact split — STACKED layout: text full width on top, image full width below */
.kg-split.kg-split-compact {
  display: block;
  grid-template-columns: none;
  min-height: auto;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 48px;
}
.kg-split.kg-split-compact .kg-split-text {
  padding: 0;
  max-width: 980px;
  margin: 0 auto 56px;
  width: 100%;
}
.kg-split.kg-split-compact .kg-split-text h2 {
  max-width: 26ch;
}
.kg-split.kg-split-compact .kg-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.kg-split.kg-split-compact .kg-pillars li {
  display: block;
  border-top: 1px solid var(--rule);
  border-bottom: none;
  padding: 20px 0 0;
}
.kg-split.kg-split-compact .kg-pillars li:last-child { border-bottom: none; }
.kg-split.kg-split-compact .kg-pillars li span {
  display: block;
  margin-bottom: 10px;
}
.kg-split.kg-split-compact .kg-split-image {
  width: 100%;
  min-height: 420px;
  border-radius: 4px;
  margin: 0;
}
@media (max-width: 900px) {
  .kg-split.kg-split-compact { padding: 72px 24px; }
  .kg-split.kg-split-compact .kg-pillars {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .kg-split.kg-split-compact .kg-pillars li {
    border-top: 1px solid var(--rule);
    padding: 16px 0;
  }
  .kg-split.kg-split-compact .kg-split-image { min-height: 280px; }
}

/* Pillars list — numbered key principles */
.kg-pillars {
  list-style: none;
  padding: 0; margin: 16px 0 0;
}
.kg-pillars li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px; line-height: 1.7;
  color: var(--gray); font-weight: 300;
}
.kg-pillars li:last-child { border-bottom: 1px solid var(--rule); }
.kg-pillars li span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px; color: var(--tan);
  line-height: 1.2;
}
.kg-pillars li strong {
  color: var(--dark); font-weight: 600; letter-spacing: 0.01em;
}

/* Quote band — atmospheric italic on cream */
.kg-quote {
  background: var(--cream);
  padding: 110px 48px;
  text-align: center;
}
.kg-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.4;
  color: var(--dark);
  max-width: 28ch;
  margin: 0 auto;
  position: relative;
  padding: 0 32px;
}
.kg-quote blockquote::before,
.kg-quote blockquote::after {
  content: "";
  position: absolute;
  top: 50%; width: 36px; height: 1px;
  background: var(--tan);
}
.kg-quote blockquote::before { left: -8px; }
.kg-quote blockquote::after  { right: -8px; }
.kg-quote-attr {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--tan);
  margin-top: 36px;
}

/* Full-bleed atmospheric image break */
.kg-bleed {
  position: relative;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.kg-bleed::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,18,12,0.15) 0%, rgba(8,18,12,0.55) 65%, rgba(8,18,12,0.85) 100%);
}
.kg-bleed-caption {
  position: relative; z-index: 2;
  padding: 80px 64px;
  max-width: 880px;
}
.kg-bleed-line {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500; color: #fff;
  line-height: 1.25;
  max-width: 20ch;
  margin: 0;
}

/* How it runs — practical info, 4 cards */
.kg-runs {
  background: #fff;
  padding: 110px 48px;
}
.kg-runs-inner { max-width: 1280px; margin: 0 auto; }
.kg-runs-head { max-width: 680px; margin-bottom: 64px; }
.kg-runs-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500; line-height: 1.2; color: var(--dark);
  margin: 8px 0 18px;
}
.kg-runs-sub {
  font-size: 16px; color: var(--gray);
  line-height: 1.8; font-weight: 300;
}
.kg-runs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.kg-run-card {
  padding: 40px 32px 40px;
  border-left: 1px solid var(--rule);
}
.kg-run-card:first-child { border-left: none; }
.kg-run-icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; color: var(--tan);
  line-height: 1; margin-bottom: 22px;
}
.kg-run-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 19px; font-weight: 500;
  color: var(--dark); line-height: 1.3;
  margin-bottom: 12px;
}
.kg-run-card p {
  font-size: 14px; color: var(--gray);
  line-height: 1.7; font-weight: 300;
}

/* Strong CTA — full-bleed photo, dark overlay, two buttons + trust strip */
.kg-cta {
  position: relative;
  padding: 140px 48px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.kg-cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.kg-cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,18,12,0.65) 0%, rgba(8,18,12,0.82) 100%);
  z-index: 1;
}
.kg-cta-inner {
  position: relative; z-index: 2;
  max-width: 880px; margin: 0 auto;
}
.kg-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500; line-height: 1.15; color: #fff;
  margin-bottom: 22px;
  max-width: 22ch;
  margin-left: auto; margin-right: auto;
}
.kg-cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 auto 40px;
}
.kg-cta-actions {
  display: inline-flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin-bottom: 48px;
}
.kg-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 36px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, border-color 0.25s, gap 0.25s;
}
.kg-btn-primary {
  background: var(--tan); color: #fff;
  border: 1px solid var(--tan);
}
.kg-btn-primary:hover {
  background: #fff; color: var(--dark); border-color: #fff;
  gap: 14px;
}
.kg-btn-ghost {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.kg-btn-ghost:hover {
  border-color: #fff; background: rgba(255,255,255,0.06);
}
.kg-cta-meta {
  display: inline-flex; flex-wrap: wrap; gap: 36px;
  justify-content: center;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 13px; color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.kg-cta-meta strong {
  color: var(--tan-light); font-weight: 600;
  margin-right: 6px;
}

/* Responsive — kg components */
@media (max-width: 1100px) {
  .kg-stats { padding: 72px 32px; }
  .kg-stats-grid { grid-template-columns: 1fr; gap: 48px; }
  .kg-stat { padding: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 36px; }
  .kg-stat:first-child { border-top: none; padding-top: 0; }
  .kg-split { grid-template-columns: 1fr; min-height: auto; }
  .kg-split-text { padding: 72px 32px; max-width: none; }
  .kg-split-image { min-height: 380px; }
  .kg-runs-grid { grid-template-columns: repeat(2, 1fr); }
  .kg-run-card:nth-child(3) { border-left: none; border-top: 1px solid var(--rule); }
  .kg-run-card:nth-child(4) { border-top: 1px solid var(--rule); }
}
@media (max-width: 768px) {
  .kg-runs-grid { grid-template-columns: 1fr; }
  .kg-run-card { border-left: none; border-top: 1px solid var(--rule); padding: 32px 24px; }
  .kg-run-card:first-child { border-top: none; }
  .kg-bleed { min-height: 380px; }
  .kg-bleed-caption { padding: 48px 24px; }
  .kg-cta { padding: 96px 24px; }
  .kg-cta-meta { flex-direction: column; gap: 16px; }
  .kg-quote { padding: 72px 24px; }
  .kg-quote blockquote::before,
  .kg-quote blockquote::after { display: none; }
  .kg-runs { padding: 72px 24px; }
}

/* CTA — dark band, headline + buttons */
.journey-cta {
  background: var(--dark);
  color: #fff;
  padding: 110px 48px;
  text-align: center;
}
.journey-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500; line-height: 1.2;
  max-width: 18ch; margin: 0 auto 18px;
}
.journey-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px; color: rgba(255,255,255,0.7);
  max-width: 56ch; margin: 0 auto 36px;
  line-height: 1.6;
}
.journey-cta .jc-actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.journey-cta .jc-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--tan); color: #fff;
  border: 1px solid var(--tan);
  transition: background 0.25s, color 0.25s, border-color 0.25s, gap 0.25s;
}
.journey-cta .jc-btn:hover {
  background: transparent; color: var(--tan-light);
  border-color: var(--tan-light);
  gap: 18px;
}
.journey-cta .jc-btn.secondary {
  background: transparent; border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.journey-cta .jc-btn.secondary:hover {
  border-color: #fff; background: rgba(255,255,255,0.06);
}

/* All Journeys index — bigger feature cards */
.experiences-index { padding: 96px 48px; background: var(--cream); }
.experiences-index .container { max-width: 1400px; margin: 0 auto; }
.experiences-index .ex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 56px;
}
/* Roomier 4-column variant for the 10-destinations index */
.experiences-index .ex-grid.ex-grid-5col {
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1400px;
}
@media (max-width: 1280px) {
  .experiences-index .ex-grid.ex-grid-5col { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}
@media (max-width: 900px) {
  .experiences-index .ex-grid.ex-grid-5col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .experiences-index .ex-grid.ex-grid-5col { grid-template-columns: 1fr; }
}
.experiences-index .ex-card {
  display: block;
  background: #fff;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.experiences-index .ex-card:hover { transform: translateY(-6px); }
.experiences-index .ex-card .img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.experiences-index .ex-card .img-wrap .ph {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
}
.experiences-index .ex-card:hover .img-wrap .ph { transform: scale(1.06); }
.experiences-index .ex-card .ex-body {
  padding: 32px 36px 36px;
}
.experiences-index .ex-meta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--tan);
  margin-bottom: 12px;
}
.experiences-index .ex-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500; color: var(--dark);
  line-height: 1.2; margin-bottom: 12px;
}
.experiences-index .ex-card p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px; color: var(--gray);
  line-height: 1.5;
  margin-bottom: 20px;
}
.experiences-index .ex-card .ex-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dark);
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--dark);
  transition: color 0.2s, border-color 0.2s, gap 0.25s ease;
}
.experiences-index .ex-card:hover .ex-link {
  color: var(--tan);
  border-color: var(--tan);
  gap: 14px;
}

/* Typography adjustment for the denser 4-column layout */
.experiences-index .ex-grid.ex-grid-5col .ex-card .ex-body { padding: 24px 24px 28px; }
.experiences-index .ex-grid.ex-grid-5col .ex-card .img-wrap { aspect-ratio: 4 / 3; }
.experiences-index .ex-grid.ex-grid-5col .ex-card h3 { font-size: 22px; margin-bottom: 10px; }
.experiences-index .ex-grid.ex-grid-5col .ex-card p { font-size: 15px; line-height: 1.5; margin-bottom: 18px; }
.experiences-index .ex-grid.ex-grid-5col .ex-meta { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 8px; }
.experiences-index .ex-grid.ex-grid-5col .ex-card .ex-link {
  font-size: 11px;
  letter-spacing: 0.16em;
  gap: 8px;
}
.experiences-index .ex-grid.ex-grid-5col .ex-card:hover .ex-link { gap: 12px; }

/* Journey-page responsive */
@media (max-width: 1100px) {
  .journey-overview .container { grid-template-columns: 1fr; gap: 24px; }
  .journey-included .container { grid-template-columns: 1fr; gap: 36px; }
  .journey-highlights .jh-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-facts .jf-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .journey-facts .jf-item { padding: 0; border-left: none; }
  .experiences-index .ex-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .journey-hero { min-height: 70vh; }
  .journey-hero .jh-inner { padding: 0 24px 56px; }
  .journey-hero .jh-meta { gap: 18px; font-size: 11px; }
  .journey-back { padding: 18px 24px; }
  .journey-overview, .journey-highlights, .journey-itinerary, .journey-included { padding: 72px 24px; }
  .journey-cta { padding: 80px 24px; }
  .journey-itinerary .day { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .journey-highlights .jh-grid { grid-template-columns: 1fr; gap: 36px; }
  .journey-facts .jf-grid { grid-template-columns: 1fr 1fr; padding: 36px 24px; gap: 24px; }
  .experiences-index { padding: 72px 24px; }
}

/* ── Expedition category cards (mega-menu) ── */
.mega-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-content: start;
}
.mega-cat-card {
  display: block;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 28px 24px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: inherit !important;
  opacity: 1 !important;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.mega-cat-card:hover {
  border-color: var(--tan);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.mega-cat-tag {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 10px;
}
.mega-cat-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0;
}
.mega-cat-card .mega-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ── Mini dropdown (YurtaDa Camps, About) ── */
.mini-drop {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: auto;
  min-width: 230px;
  background: rgba(18,18,18,0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 2px solid var(--tan);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  z-index: 200;
  padding: 8px 0;
  border-radius: 0 0 4px 4px;
  animation: none;
}
.mini-drop::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -16px;
  height: 16px;
  background: transparent;
}
.nav-item.has-mini:hover .mini-drop,
.nav-item.has-mini:focus-within .mini-drop {
  display: block;
  animation: miniDropIn 0.2s ease forwards;
}
@keyframes miniDropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mini-drop-item {
  display: block;
  color: rgba(255,255,255,0.78) !important;
  font-size: 13px !important;
  font-weight: 400;
  letter-spacing: 0.06em !important;
  text-transform: none !important;
  padding: 11px 22px;
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
  border-bottom: none !important;
}
.mini-drop-item:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.05);
  padding-left: 28px;
}
.mini-drop-sep {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
}
@media (max-width: 1100px) {
  .nav-item.has-dropdown .mini-drop { display: none; }
}

/* ── Lazy rendering for off-screen sections ─────────────────────────────────
   Applies content-visibility: auto to most sections so the browser skips
   rendering and image decoding for content below the fold until it is
   nearly visible. Excludes hero/intro and nav, which must paint immediately. */
section:not(.intro):not(:first-of-type),
.featured,
.experiences-index,
.journey-highlights,
.journey-included,
.journey-itinerary,
.journey-cta,
footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}


/* ── Default nav background (non-home pages) ─────────────────────────────
   On the home page the hero behind the nav supplies the dark backdrop.
   On every other page we need an explicit dark nav so the white nav-links
   remain readable. */
body:not(.home) nav {
  background: rgba(245, 240, 232, 0.94);   /* warm cream */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 147, 90, 0.18);
}
body:not(.home) nav.scrolled {
  background: rgba(245, 240, 232, 0.97);
}
/* Dark text on the cream nav (non-home pages) */
body:not(.home) .nav-links > a,
body:not(.home) .nav-links .nav-trigger,
body:not(.home) .nav-right > a {
  color: var(--dark);
}
body:not(.home) .nav-links .nav-trigger .caret {
  border-color: var(--dark);
}
body:not(.home) .nav-cta {
  border-color: rgba(26,26,26,0.55) !important;
  color: var(--dark) !important;
}
body:not(.home) .nav-cta:hover {
  background: var(--dark);
  color: #fff !important;
  border-color: var(--dark) !important;
}
body:not(.home) .menu-toggle span,
body:not(.home) .menu-toggle span::before,
body:not(.home) .menu-toggle span::after {
  background: var(--dark);
}
body:not(.home) .lang-current { color: var(--dark); }

/* Slightly larger logo without changing nav-bar height */
.nav-logo img {
  transform: scale(1.18);
  transform-origin: left center;
}
/* Inner-hero pages: don't double-pad above the breadcrumb on these pages. */

/* ════════════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS — applied below 768px (and tweaks below 480px)
   ════════════════════════════════════════════════════════════════════════ */

/* The mobile-only hero background image — desktop hides it, mobile shows it. */
.hero-mobile-bg {
  display: none;
  position: absolute; inset: 0;
  background-image: url('/assets/hero/home-mobile.jpg');
  background-size: cover; background-position: center;
  z-index: 1;
}

@media (max-width: 768px) {
  /* ── HERO: switch from parallax PNG layers to a single photo ────── */
  .hero-sky, .hero-mountains, .hero-overlay { display: none !important; }
  .hero-mobile-bg { display: block; }
  .hero-mobile-bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 70%, rgba(0,0,0,0.65) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 24px;
  }
  #heroHeading {
    font-size: clamp(36px, 9vw, 56px) !important;
    line-height: 1.1 !important;
  }

  /* ── Universal section padding compaction ──────────────────────── */
  section[style*="padding"]:not(.journey-hero):not(.inner-hero) {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  /* Heavy vertical padding (80px+) → tighten on mobile */
  section[style*="padding:96px"],
  section[style*="padding:80px"],
  section[style*="padding:120px"] {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  /* ── Inner hero pages (about/*, plan/, escapes/, expeditions/long/, journeys/) ─ */
  .inner-hero,
  section[style*="calc(var(--nav-h) + 80px)"] {
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-top: calc(var(--nav-h) + 40px) !important;
    padding-bottom: 48px !important;
  }
  .inner-hero h1,
  section[style*="calc(var(--nav-h) + 80px)"] h1 {
    font-size: clamp(32px, 8vw, 48px) !important;
  }

  /* ── Section-title & big headings ─────────────────────────────── */
  .section-title,
  h2[style*="clamp(40px"],
  h2[style*="clamp(32px"],
  h2[style*="clamp(28px"] {
    font-size: clamp(28px, 7vw, 38px) !important;
    max-width: none !important;
  }

  /* ── Page-level section-header (label + title + sub) ─────────── */
  .section-header { flex-direction: column; align-items: flex-start; gap: 18px; }
  .section-header .view-more { align-self: flex-start; }

  /* ── Trip cards / Featured destinations ───────────────────────── */
  .trips-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .trip-card .img-wrap { aspect-ratio: 4 / 3; }
  .trip-card h3 { font-size: 18px; }
  .trip-card .trip-meta { font-size: 10px; }

  /* ── Destinations index 5-col grid → 1 col on phone ───────────── */
  .experiences-index .ex-grid.ex-grid-5col { grid-template-columns: 1fr !important; gap: 24px !important; }

  /* ── Inline grid columns inside sections (key-facts, hubs, etc.) ─ */
  div[style*="grid-template-columns:160px 1fr"],
  div[style*="grid-template-columns: 160px 1fr"],
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 1.4fr"],
  div[style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* ── Long quote pulls ─────────────────────────────────────────── */
  p[style*="font-size:clamp(28px"],
  p[style*="font-size:clamp(32px"] {
    font-size: clamp(20px, 6vw, 28px) !important;
  }

  /* ── WhatsApp float button — give the form room above it ─────── */
  .whatsapp-float { width: 52px !important; height: 52px !important; }
  form#planForm { padding-bottom: 90px; }

  /* ── Footer columns stack ─────────────────────────────────────── */
  .footer-top { grid-template-columns: 1fr !important; gap: 36px !important; }
  footer .container { padding: 0 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start !important; }

  /* ── Inner-section paddings 80px / 96px → 48px on mobile ───── */
  div[style*="padding:80px 48px"],
  section[style*="padding:80px 48px"] {
    padding: 48px 24px !important;
  }
  div[style*="padding:96px 48px"],
  section[style*="padding:96px 48px"] {
    padding: 56px 24px !important;
  }

  /* ── Quick links / inline link bars ─────────────────────────── */
  div[style*="display:grid; grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  /* On very narrow phones, force single-column trip grid */
  .trips-grid { grid-template-columns: 1fr !important; }

  /* Hero tagline smaller still */
  .hero-tagline { font-size: 12px !important; letter-spacing: 0.2em !important; }

  /* Plan form — slightly more breathing room above keyboard area */
  form#planForm { padding-bottom: 110px; }

  /* WhatsApp float — tuck into corner */
  .whatsapp-float {
    right: 16px !important; bottom: 16px !important;
  }
}

/* Lock hero parallax on mobile — text and image stay still. */
@media (max-width: 768px) {
  .hero-tagline,
  #heroHeading,
  .hero-mountains,
  .hero-sky {
    transform: none !important;
  }
}

/* ── Tour catalogue cards (escapes / journeys / expeditions/long) ── */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}
.tour-card {
  display: block;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.tour-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a;
}
.tour-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.45) 100%);
}
.tour-thumb .tour-num {
  position: absolute; top: 18px; left: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  z-index: 1;
}
.tour-thumb .tour-pill {
  position: absolute; bottom: 18px; right: 18px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.tour-body { padding: 28px 32px 32px; }
.tour-meta {
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--tan);
  margin-bottom: 10px;
}
.tour-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 500; color: var(--dark);
  margin-bottom: 10px; line-height: 1.2;
}
.tour-blurb {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px; color: var(--gray);
  line-height: 1.55; margin-bottom: 18px;
}
.tour-features {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12px; color: var(--gray);
}
.tour-features span {
  background: var(--cream);
  padding: 5px 11px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.tour-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid var(--dark);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.tour-card:hover .tour-link { color: var(--tan); border-color: var(--tan); }
@media (max-width: 900px) {
  .tour-grid { grid-template-columns: 1fr; gap: 24px; }
  .tour-body { padding: 22px 24px 26px; }
  .tour-card h3 { font-size: 22px; }
}

/* Section between hero and grid (intro lockup) */
.tours-intro {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 48px 48px;
}
.tours-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 24px;
}
.tours-intro p {
  font-size: 17px; line-height: 1.85; color: var(--gray);
  max-width: 720px; margin: 0 auto;
}
@media (max-width: 768px) {
  .tours-intro { padding: 56px 24px 32px; }
}

/* CTA strip at bottom of catalogue pages */
.tours-cta {
  background: var(--cream);
  padding: 80px 48px;
  text-align: center;
  margin-top: 80px;
}
.tours-cta p { font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tan); margin-bottom: 16px; }
.tours-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 2.6vw, 34px); font-weight: 500;
  color: var(--dark); margin-bottom: 24px; line-height: 1.3;
}
.tours-cta a {
  display: inline-block;
  padding: 16px 36px;
  background: var(--dark);
  color: #fff;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: 999px;
}
.tours-cta a:hover { background: var(--tan); }

/* ── New HERO: single photo + slow scroll-driven zoom ─────────────────── */
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('/assets/hero/home.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(var(--hero-scale, 1.05));
  transform-origin: center center;
  transition: transform 0.05s linear;
  z-index: 1;
  will-change: transform;
}
.hero-photo-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 28%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.20) 55%, rgba(0,0,0,0) 80%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.10) 55%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}
.hero .hero-content {
  position: relative; z-index: 3;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .hero-photo {
    background-image: url('/assets/hero/home-mobile.jpg');
    transform: none !important;  /* no scroll-zoom on mobile */
  }
}

/* ── Hero: shift image up so foreground meadow is lower in frame ──── */
.hero-photo {
  background-position: center 30% !important;
}

/* ── Home nav: subtle dark backdrop so the menu is readable on bright hero */
body.home nav {
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.05));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.home nav.scrolled {
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ── Dropdowns (mega-menu + mini-drop): cream theme with dark text ── */
.mega-menu {
  background: rgba(245, 240, 232, 0.97) !important;   /* warm cream */
  border-top: 1px solid rgba(184, 147, 90, 0.25) !important;
  box-shadow: 0 24px 48px rgba(0,0,0,0.18);
}
nav:not(.scrolled) .mega-menu {
  background: rgba(245, 240, 232, 0.97) !important;
}
.mega-eyebrow,
.mega-meta,
.mega-cat-tag {
  color: var(--tan) !important;
}
.mega-title,
.mega-card h5,
.mega-cat-card h5 {
  color: var(--dark) !important;
}
.mega-sub,
.mega-desc,
.mega-cat-card .mega-desc {
  color: var(--gray) !important;
}
.mega-all {
  color: var(--dark) !important;
  border-color: var(--tan) !important;
}
.mega-all:hover {
  color: var(--tan) !important;
  border-color: var(--tan) !important;
}
.mega-cat-card {
  border-color: rgba(26,26,26,0.10) !important;
  color: var(--dark) !important;
}
.mega-cat-card:hover {
  border-color: var(--tan) !important;
  background: rgba(184, 147, 90, 0.06) !important;
}

/* mini-drop (YurtaDa / About) — cream */
.mini-drop {
  background: rgba(245, 240, 232, 0.98) !important;
  border-top: 2px solid var(--tan) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.20) !important;
}
.mini-drop-item {
  color: var(--dark) !important;
}
.mini-drop-item:hover {
  background: rgba(184, 147, 90, 0.10) !important;
  color: var(--dark) !important;
}
.mini-drop-sep {
  background: rgba(26,26,26,0.10) !important;
}

/* ═════════════ Sky-toned nav + hero refinement ═════════════ */

/* Home page nav — soft slate/sky gradient instead of flat black */
body.home nav {
  background: linear-gradient(180deg,
    rgba(20, 28, 42, 0.78) 0%,      /* deep slate-blue at the top */
    rgba(38, 52, 70, 0.52) 40%,     /* mid steel */
    rgba(58, 78, 100, 0.18) 90%,    /* fade to almost nothing */
    rgba(58, 78, 100, 0.00) 100%
  ) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border-bottom: none !important;
  box-shadow: 0 2px 24px rgba(20, 28, 42, 0.10);
}
body.home nav.scrolled {
  background: linear-gradient(180deg,
    rgba(20, 28, 42, 0.92),
    rgba(38, 52, 70, 0.88)
  ) !important;
  backdrop-filter: blur(12px) !important;
}

/* Hero overlay — lighter, with a cool sky undertone instead of pure black */
.hero-photo-overlay {
  background: linear-gradient(180deg,
    rgba(50, 70, 95, 0.22) 0%,     /* cool blue-grey haze at top */
    rgba(40, 55, 80, 0.08) 30%,    /* almost clear in the middle */
    rgba(20, 28, 42, 0.55) 100%    /* slate at the bottom for legibility */
  );
}

/* Soft glow behind the hero title for better legibility on bright skies */
.hero .hero-content {
  text-shadow:
    0 2px 24px rgba(20, 28, 42, 0.35),
    0 1px 4px rgba(0, 0, 0, 0.25);
}

/* Smoothen the boundary between cream "All Journeys" and the next dark/photo
   section on /expeditions/ — soft fade-out at the bottom of the section */
body:not(.home) .featured + section,
.featured + section {
  position: relative;
}
.featured {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 92%, rgba(245,240,232,0) 100%);
}

/* ═════════════ Unified cream nav across the whole site ═════════════ */
/* Override all earlier nav-background rules for the home page so the nav
   matches the dropdowns and the non-home pages. */
body.home nav {
  background: rgba(245, 240, 232, 0.94) !important;   /* warm cream */
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(184, 147, 90, 0.18) !important;
  box-shadow: none;
}
body.home nav.scrolled {
  background: rgba(245, 240, 232, 0.97) !important;
}

/* Dark text in the cream nav on the home page too */
body.home .nav-links > a,
body.home .nav-links .nav-trigger,
body.home .nav-right > a,
body.home .lang-current {
  color: var(--dark) !important;
}
body.home .nav-links .nav-trigger .caret {
  border-color: var(--dark);
}
body.home .nav-cta {
  border-color: rgba(26,26,26,0.55) !important;
  color: var(--dark) !important;
}
body.home .nav-cta:hover {
  background: var(--dark);
  color: #fff !important;
  border-color: var(--dark) !important;
}
body.home .menu-toggle span,
body.home .menu-toggle span::before,
body.home .menu-toggle span::after {
  background: var(--dark);
}

/* Hero text — drop the heavy glow now that nav is light and the photo is bright */
.hero .hero-content {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.35),
    0 1px 3px rgba(0, 0, 0, 0.25);
}

/* Hero overlay — keep a moderate slate fade at the bottom for legibility */
.hero-photo-overlay {
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.12) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* Remove the dark fade over the hero photo — show the image clean.
   Legibility of the title is preserved via stronger text-shadow only. */
.hero-photo-overlay {
  background: transparent !important;
}
.hero .hero-content {
  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.55),
    0 1px 4px rgba(0, 0, 0, 0.45),
    0 0 1px rgba(0, 0, 0, 0.6);
}

/* Strip all visual modifications from the hero photo — show it raw. */
.hero-photo {
  filter: none !important;
  -webkit-filter: none !important;
  transform: none !important;
  background-position: center center !important;
}
.hero-photo-overlay {
  display: none !important;
}

/* ═════════════ Home nav: transparent at top, cream when dropdown opens ═════════════ */

/* DEFAULT (top of page, no dropdown open): fully transparent, white text */
body.home nav {
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}
body.home .nav-links > a,
body.home .nav-links .nav-trigger,
body.home .nav-right > a,
body.home .lang-current {
  color: #fff !important;
}
body.home .nav-links .nav-trigger .caret {
  border-color: #fff !important;
}
body.home .nav-cta {
  color: #fff !important;
  border-color: rgba(255,255,255,0.55) !important;
}
body.home .nav-cta:hover {
  background: #fff;
  color: var(--dark) !important;
  border-color: #fff !important;
}
body.home .menu-toggle span,
body.home .menu-toggle span::before,
body.home .menu-toggle span::after {
  background: #fff !important;
}

/* WHEN A DROPDOWN IS OPEN (hover or focus on any nav-item with dropdown):
   nav turns cream to match the dropdown panel — text switches to dark. */
body.home nav:has(.nav-item.has-dropdown:hover, .nav-item.has-dropdown:focus-within,
                  .nav-item.has-mini:hover,    .nav-item.has-mini:focus-within) {
  background: rgba(245, 240, 232, 0.97) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(184, 147, 90, 0.18) !important;
}
body.home nav:has(.nav-item.has-dropdown:hover, .nav-item.has-dropdown:focus-within,
                  .nav-item.has-mini:hover,    .nav-item.has-mini:focus-within) .nav-links > a,
body.home nav:has(.nav-item.has-dropdown:hover, .nav-item.has-dropdown:focus-within,
                  .nav-item.has-mini:hover,    .nav-item.has-mini:focus-within) .nav-links .nav-trigger,
body.home nav:has(.nav-item.has-dropdown:hover, .nav-item.has-dropdown:focus-within,
                  .nav-item.has-mini:hover,    .nav-item.has-mini:focus-within) .nav-right > a,
body.home nav:has(.nav-item.has-dropdown:hover, .nav-item.has-dropdown:focus-within,
                  .nav-item.has-mini:hover,    .nav-item.has-mini:focus-within) .lang-current {
  color: var(--dark) !important;
}
body.home nav:has(.nav-item.has-dropdown:hover, .nav-item.has-dropdown:focus-within,
                  .nav-item.has-mini:hover,    .nav-item.has-mini:focus-within) .nav-links .nav-trigger .caret {
  border-color: var(--dark) !important;
}
body.home nav:has(.nav-item.has-dropdown:hover, .nav-item.has-dropdown:focus-within,
                  .nav-item.has-mini:hover,    .nav-item.has-mini:focus-within) .nav-cta {
  color: var(--dark) !important;
  border-color: rgba(26,26,26,0.55) !important;
}
body.home nav:has(.nav-item.has-dropdown:hover, .nav-item.has-dropdown:focus-within,
                  .nav-item.has-mini:hover,    .nav-item.has-mini:focus-within) .menu-toggle span,
body.home nav:has(.nav-item.has-dropdown:hover, .nav-item.has-dropdown:focus-within,
                  .nav-item.has-mini:hover,    .nav-item.has-mini:focus-within) .menu-toggle span::before,
body.home nav:has(.nav-item.has-dropdown:hover, .nav-item.has-dropdown:focus-within,
                  .nav-item.has-mini:hover,    .nav-item.has-mini:focus-within) .menu-toggle span::after {
  background: var(--dark) !important;
}

/* SCROLLED state on home: cream + dark text (same as when dropdown is open) */
body.home nav.scrolled {
  background: rgba(245, 240, 232, 0.97) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(184, 147, 90, 0.18) !important;
}
body.home nav.scrolled .nav-links > a,
body.home nav.scrolled .nav-links .nav-trigger,
body.home nav.scrolled .nav-right > a,
body.home nav.scrolled .lang-current {
  color: var(--dark) !important;
}
body.home nav.scrolled .nav-links .nav-trigger .caret { border-color: var(--dark) !important; }

/* ═════════════ Home nav: cream/white at top too (match scrolled look) ═════════════ */
/* Override the transparent-at-top behavior above so the nav looks the same
   at the top of the page as it does when scrolled / when a dropdown is open. */
body.home nav {
  background: rgba(245, 240, 232, 0.94) !important;   /* warm cream */
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(184, 147, 90, 0.18) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
}

/* Dark text in the nav on the home page at all times */
body.home .nav-links > a,
body.home .nav-links .nav-trigger,
body.home .nav-right > a,
body.home .lang-current {
  color: var(--dark) !important;
}
body.home .nav-links .nav-trigger .caret {
  border-color: var(--dark) !important;
}
body.home .nav-cta {
  color: var(--dark) !important;
  border-color: rgba(26,26,26,0.55) !important;
}
body.home .nav-cta:hover {
  background: var(--dark) !important;
  color: #fff !important;
  border-color: var(--dark) !important;
}
body.home .menu-toggle span,
body.home .menu-toggle span::before,
body.home .menu-toggle span::after {
  background: var(--dark) !important;
}

/* Brand text under the logo — make "DALA ARBA" + "EXPEDITIONS" readable on cream */
body.home .nav-logo .brand-text,
body.home .nav-logo .name {
  color: var(--dark) !important;
}
body.home .nav-logo .sub {
  color: var(--tan) !important;   /* warm accent for the EXPEDITIONS subtitle */
  opacity: 1 !important;
}

body.home nav.scrolled .nav-cta {
  color: var(--dark) !important;
  border-color: rgba(26,26,26,0.55) !important;
}
body.home nav.scrolled .menu-toggle span,
body.home nav.scrolled .menu-toggle span::before,
body.home nav.scrolled .menu-toggle span::after {
  background: var(--dark) !important;
}

/* — Contacts page — */
.contacts-page {
  padding: 80px 48px 100px;
  max-width: 1100px;
  margin: 0 auto;
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contacts-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}
.contacts-item p,
.contacts-item a {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
}
.contacts-item a {
  color: var(--dark);
  border-bottom: 1px solid var(--tan);
  display: inline-block;
}
.contacts-item a:hover {
  color: var(--tan);
}
.contacts-item--social {
  margin-top: 8px;
}
.contacts-social-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.contacts-social-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #fff;
  color: var(--dark);
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.contacts-social-icon svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.contacts-social-icon span {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.contacts-social-icon:hover {
  border-color: var(--tan);
  background: var(--cream);
  color: var(--dark);
}
.contacts-qr {
  text-align: center;
  padding: 32px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #fff;
}
.contacts-qr img {
  width: 220px;
  height: 220px;
  display: block;
  margin: 0 auto 16px;
}
.contacts-qr p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}
.contacts-qr a.contacts-qr-link {
  font-size: 13px;
  color: var(--tan);
  border-bottom: none;
  margin-top: 12px;
  display: inline-block;
}
@media (max-width: 768px) {
  .contacts-page { padding: 60px 24px 80px; }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Home hero title position: lower (under the vehicle) on desktop */
@media (min-width: 769px) {
  body.home .hero .hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    transform: none;
  }
}

/* ═════════════ Nomadic Heritage page — editorial feature blocks ═════════════ */

/* Page intro (under hero) */
.nh-intro {
  padding: 110px 48px 80px;
  text-align: center;
  background: #fff;
}
.nh-intro .nh-intro-inner { max-width: 820px; margin: 0 auto; }
.nh-intro .nh-eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 24px; font-weight: 500;
}
.nh-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.4vw, 46px); font-weight: 500;
  color: var(--dark); line-height: 1.25; margin: 0 0 32px;
}
.nh-intro p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(19px, 1.7vw, 23px); color: #2c2c2c;
  line-height: 1.7; margin: 0; font-weight: 400;
}

/* Editorial feature: image + text in two columns */
.nh-feature { padding: 110px 48px; background: #fff; }
.nh-feature.alt { background: var(--cream); }
.nh-feature .nh-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nh-feature.image-right .nh-image { order: 2; }
.nh-feature .nh-image {
  width: 100%; aspect-ratio: 4/5;
  background-size: cover; background-position: center;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(8,18,12,0.12);
}
.nh-feature .nh-text .nh-eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--tan); margin: 0 0 18px; font-weight: 500;
}
.nh-feature .nh-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px); font-weight: 500;
  color: var(--dark); line-height: 1.2;
  margin: 0 0 26px; max-width: 16ch;
}
.nh-feature .nh-text .nh-lead {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(21px, 1.8vw, 26px); color: var(--dark);
  line-height: 1.5; margin: 0 0 28px; font-weight: 500;
}
.nh-feature .nh-text p {
  font-size: 17px; color: #2c2c2c;
  line-height: 1.8; font-weight: 400;
  margin: 0 0 20px;
}
.nh-feature .nh-text p:last-child { margin-bottom: 0; }

/* Full-bleed dramatic break (Petroglyphs) */
.nh-fullbleed {
  position: relative; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  color: #fff; text-align: center;
  padding: 140px 48px;
}
.nh-fullbleed::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,12,16,0.30) 0%, rgba(8,12,16,0.65) 70%, rgba(8,12,16,0.78) 100%);
}
.nh-fullbleed .nh-fb-inner {
  position: relative; max-width: 880px;
}
.nh-fullbleed .nh-eyebrow {
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--tan-light); margin: 0 0 22px; font-weight: 500;
}
.nh-fullbleed h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 56px); font-weight: 500;
  line-height: 1.18; margin: 0 0 28px;
}
.nh-fullbleed p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.6; color: rgba(255,255,255,0.92);
  margin: 0;
}

/* On-page anchor strip — quiet jump-links above the editorial blocks */
.nh-themes-strip {
  background: #fafaf7;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 48px;
}
.nh-themes-strip .nh-strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 8px 36px;
  justify-content: center; align-items: center;
}
.nh-themes-strip a {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray); text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nh-themes-strip a:hover { color: var(--dark); border-bottom-color: var(--tan); }

/* Mobile */
@media (max-width: 960px) {
  .nh-intro { padding: 72px 24px 56px; }
  .nh-feature { padding: 72px 24px; }
  .nh-feature .nh-inner { grid-template-columns: 1fr; gap: 40px; }
  .nh-feature.image-right .nh-image { order: 0; }
  .nh-feature .nh-image { aspect-ratio: 4/3; }
  .nh-feature .nh-text h2 { max-width: none; }
  .nh-fullbleed { padding: 100px 24px; min-height: 480px; }
  .nh-themes-strip { padding: 16px 24px; }
  .nh-themes-strip .nh-strip-inner { gap: 6px 20px; }
}

/* Nomadic Heritage — fact strip below each editorial block */
.nh-feature .nh-facts {
  max-width: 1280px;
  margin: 80px auto 0;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.nh-feature.alt .nh-facts { border-top-color: rgba(0,0,0,0.08); }
.nh-feature .nh-fact .nh-fact-meta {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--tan); margin: 0 0 12px; font-weight: 500;
}
.nh-feature .nh-fact h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500;
  color: var(--dark); margin: 0 0 12px;
  line-height: 1.3;
}
.nh-feature .nh-fact p {
  font-size: 15px; color: #2c2c2c;
  line-height: 1.7; font-weight: 400;
  margin: 0;
}
@media (max-width: 960px) {
  .nh-feature .nh-facts {
    grid-template-columns: 1fr;
    margin-top: 48px;
    padding-top: 40px;
    gap: 28px;
  }
}
