/* ============================================================
   Мөнх Тэнгэр — Munkh Tenger Travel
   Single shared stylesheet. See DESIGN.md for the system.
   ============================================================ */

:root {
  --bg: oklch(0.98 0 0);
  --surface: oklch(0.955 0.006 250);
  --ink: oklch(0.23 0.02 265);
  --ink-soft: oklch(0.44 0.02 262);
  --ink-faint: oklch(0.505 0.017 260);
  --line: oklch(0.885 0.008 255);
  --tenger: oklch(0.32 0.075 258);
  --tenger-deep: oklch(0.25 0.055 260);
  --khadag: oklch(0.52 0.15 253);
  --khadag-deep: oklch(0.45 0.14 255);
  --sky: oklch(0.78 0.075 245);
  --cinnabar: oklch(0.55 0.17 34);
  --gold: oklch(0.84 0.1 88);
  --white: oklch(0.985 0.002 250);
  --on-blue-soft: oklch(0.83 0.03 250);

  --font-display: "Prata", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-script: "Noto Sans Mongolian", sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --content: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --z-nav: 40;
  --z-menu: 50;
  --z-chat: 60;
}

/* ---------- base ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; max-width: 68ch; text-wrap: pretty; }

a { color: var(--khadag); text-decoration: none; }
a:hover { color: var(--khadag-deep); }

::selection { background: var(--khadag); color: var(--white); }

:focus-visible {
  outline: 2px solid var(--khadag);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- language switching ---------- */

html[data-lang="mn"] .en { display: none !important; }
html[data-lang="en"] .mn { display: none !important; }

/* ---------- utilities ---------- */

.wrap {
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  max-width: 22ch;
}

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
}

.hairline { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- buttons & links ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.7rem;
  font: 600 0.95rem/1 var(--font-body);
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 180ms var(--ease-out),
              color 180ms var(--ease-out),
              border-color 180ms var(--ease-out),
              transform 160ms var(--ease-out);
}
.btn:active { transform: scale(0.98); }

.btn-solid { background: var(--khadag); color: var(--white); }
.btn-solid:hover { background: var(--khadag-deep); color: var(--white); }

.btn-line { background: transparent; color: var(--ink); border-color: oklch(0.62 0.015 260); }
.btn-line:hover { border-color: var(--ink); color: var(--ink); }

.btn-line-light { background: transparent; color: var(--white); border-color: oklch(1 0 0 / 0.45); }
.btn-line-light:hover { border-color: var(--white); color: var(--white); background: oklch(1 0 0 / 0.08); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font: 600 0.95rem/1.2 var(--font-body);
  color: var(--khadag);
}
.arrow-link svg { transition: transform 200ms var(--ease-out); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- header ---------- */

.site-head {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-nav);
  background: transparent;
  transition: background-color 250ms var(--ease-out),
              border-color 250ms var(--ease-out),
              box-shadow 250ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-head.scrolled {
  background: oklch(0.98 0 0 / 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.head-inner {
  max-width: var(--content);
  margin-inline: auto;
  padding: 0 var(--gutter);
  height: 76px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  margin-right: auto;
}
.brand:hover { color: var(--ink); }

/* emblem: sky dome, sun, steppe horizon */
.brand-emblem {
  flex: none;
  width: 38px;
  height: 38px;
  display: block;
  color: inherit;
}
.brand-emblem svg { width: 100%; height: 100%; display: block; overflow: visible; }
.brand-emblem .ring {
  transform-origin: 50% 50%;
  transition: transform 700ms var(--ease-out), opacity 400ms var(--ease-out);
  opacity: 0.75;
}
.brand-emblem .sun {
  fill: var(--brand-sun, var(--cinnabar));
  transition: transform 520ms var(--ease-out);
  transform-origin: 50% 50%;
}
.brand-emblem .horizon { transition: transform 520ms var(--ease-out); transform-origin: 50% 50%; }
@media (hover: hover) and (pointer: fine) {
  .brand:hover .brand-emblem .ring { transform: rotate(28deg); opacity: 1; }
  .brand:hover .brand-emblem .sun { transform: translateY(-1.6px); }
  .brand:hover .brand-emblem .horizon { transform: translateY(0.9px); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-emblem .ring, .brand-emblem .sun, .brand-emblem .horizon { transition: none; }
  .brand:hover .brand-emblem .ring { transform: none; }
}

.brand-text { display: grid; gap: 1px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  letter-spacing: 0.015em;
  white-space: nowrap;
  line-height: 1.1;
}
.brand-sub {
  font: 500 0.6rem/1 var(--font-body);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
  transition: color 250ms var(--ease-out);
}

.site-nav { display: flex; gap: 1.9rem; }
.site-nav a {
  font: 500 0.95rem/1 var(--font-body);
  color: var(--ink-soft);
  padding-block: 0.4rem;
  position: relative;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--khadag);
  transition: right 220ms var(--ease-out);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--ink); }

.head-actions { display: flex; align-items: center; gap: 1.1rem; }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: transparent;
  cursor: pointer;
  gap: 2px;
}
.lang-toggle span {
  font: 600 0.78rem/1 var(--font-body);
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  color: var(--ink-faint);
  transition: background-color 180ms var(--ease-out), color 180ms var(--ease-out);
}
.lang-toggle span.on { background: var(--ink); color: var(--bg); }

/* header over dark hero */
.head-clear:not(.scrolled) { --line: oklch(1 0 0 / 0.25); --brand-sun: var(--gold); }
.head-clear:not(.scrolled) .brand-name,
.head-clear:not(.scrolled) .site-nav a:hover,
.head-clear:not(.scrolled) .site-nav a[aria-current="page"] { color: var(--white); }
.head-clear:not(.scrolled) .site-nav a { color: oklch(1 0 0 / 0.75); }
.head-clear:not(.scrolled) .brand { color: var(--white); }
.head-clear:not(.scrolled) .brand-sub { color: oklch(1 0 0 / 0.85); }
.head-clear:not(.scrolled) .lang-toggle { border-color: oklch(1 0 0 / 0.35); }
.head-clear:not(.scrolled) .lang-toggle span { color: oklch(1 0 0 / 0.7); }
.head-clear:not(.scrolled) .lang-toggle span.on { background: var(--white); color: var(--ink); }
.head-clear:not(.scrolled) .btn-cta { color: var(--white); border-color: oklch(1 0 0 / 0.45); }
.head-clear:not(.scrolled) .btn-cta:hover { border-color: var(--white); background: oklch(1 0 0 / 0.08); }
.head-clear:not(.scrolled) .burger span { background: var(--white); }

.btn-cta { padding: 0.72rem 1.35rem; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.burger span {
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform 220ms var(--ease-out), opacity 180ms var(--ease-out);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  background: var(--tenger-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms var(--ease-out), visibility 0s linear 260ms;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 260ms var(--ease-out);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  color: var(--white);
  padding-block: 0.55rem;
  border-bottom: 1px solid oklch(1 0 0 / 0.12);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 380ms var(--ease-out), opacity 380ms var(--ease-out);
}
.mobile-menu.open a { transform: none; opacity: 1; }
.mobile-menu.open a:nth-child(2) { transition-delay: 40ms; }
.mobile-menu.open a:nth-child(3) { transition-delay: 80ms; }
.mobile-menu.open a:nth-child(4) { transition-delay: 120ms; }
.mobile-menu.open a:nth-child(5) { transition-delay: 160ms; }
.mobile-menu .menu-contact {
  margin-top: 2.2rem;
  color: var(--on-blue-soft);
  font-size: 0.95rem;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: var(--gutter);
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.4rem;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(100svh, 980px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: -8% 0 -8%;      /* headroom so parallax never reveals an edge */
  will-change: transform;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-pos, 50% 50%);
}
/* two-stop scrim: deep at the base for copy, a soft top wash for the header */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      oklch(0.17 0.035 262 / 0.86) 0%,
      oklch(0.18 0.035 262 / 0.55) 28%,
      oklch(0.2 0.04 262 / 0.16) 62%,
      oklch(0.2 0.04 262 / 0.30) 100%);
}
/* a fine grain so large flat skies never band */
.hero-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: radial-gradient(oklch(1 0 0 / 0.10) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--content);
  margin-inline: auto;
  padding: 10rem var(--gutter) clamp(4rem, 8vw, 7rem);
}
.hero-title {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  max-width: 15ch;
  text-shadow: 0 2px 40px oklch(0.17 0.035 262 / 0.45);
}
.hero-lede {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.65;
  max-width: 46ch;
  color: oklch(0.95 0.008 250);
}
.hero-cta {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

/* scroll cue */
.hero-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: oklch(1 0 0 / 0.65);
  font: 500 0.68rem/1 var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-cue i {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, oklch(1 0 0 / 0.7), oklch(1 0 0 / 0));
}
@media (prefers-reduced-motion: no-preference) {
  .hero-cue i { animation: cue 2.4s var(--ease-in-out) infinite; transform-origin: top; }
  @keyframes cue {
    0%   { transform: scaleY(0.25); opacity: 0.2; }
    45%  { transform: scaleY(1);    opacity: 1; }
    100% { transform: scaleY(0.25); opacity: 0.2; }
  }
}

/* hero load sequence */
@media (prefers-reduced-motion: no-preference) {
  html.js .hero-inner > * {
    opacity: 0;
    transform: translateY(22px);
    animation: hero-in 1000ms var(--ease-out) forwards;
  }
  html.js .hero-inner > *:nth-child(1) { animation-delay: 160ms; }
  html.js .hero-inner > *:nth-child(2) { animation-delay: 300ms; }
  html.js .hero-inner > *:nth-child(3) { animation-delay: 420ms; }
  html.js .hero-inner > *:nth-child(4) { animation-delay: 520ms; }
  @keyframes hero-in { to { opacity: 1; transform: none; } }
}
.hero-rail {
  position: absolute;
  right: calc(var(--gutter) * 0.75);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-script);
  writing-mode: vertical-lr;
  font-size: 1.05rem;
  letter-spacing: 0.5em;
  color: oklch(1 0 0 / 0.5);
  user-select: none;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.js .hero-media img {
    animation: hero-drift 22s var(--ease-out) forwards;
    transform-origin: 50% 55%;
  }
  @keyframes hero-drift {
    from { transform: scale(1.09); }
    to { transform: scale(1); }
  }
}

/* inner-page heroes: still cinematic, just shorter than the home hero */
.page-hero {
  position: relative;
  min-height: min(74svh, 720px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.page-hero .hero-inner { padding-top: 9rem; }
.page-hero .hero-title { font-size: clamp(2.3rem, 5.2vw, 4.1rem); }
.jhero { min-height: min(82svh, 820px); }

/* ---------- reveals ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
html.js .reveal.in { opacity: 1; transform: none; }
/* bypass: content must never stay hidden when the transition cannot run
   (background/hidden tabs, no IntersectionObserver, reduced motion) */
html.js.reveal-off .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { transform: none; transition: opacity 300ms ease; }
  html { scroll-behavior: auto; }
}

/* ---------- home: intro ---------- */

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.intro-copy .section-title { margin-bottom: 1.4rem; }
.intro-copy p + p { margin-top: 1.1rem; }
.intro-copy .body-soft { color: var(--ink-soft); }
.intro-figures {
  margin-top: 2.4rem;
  display: flex;
  gap: 2.4rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.figure b {
  display: block;
  font: 400 1.9rem/1.2 var(--font-display);
  color: var(--ink);
}
.figure span { font-size: 0.88rem; color: var(--ink-faint); }
.intro-media { position: relative; }
.intro-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.intro-media figcaption {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

/* ---------- home: featured journeys (editorial rows) ---------- */

.feat-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.feat {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2.2rem, 4.5vw, 3.6rem);
  border-top: 1px solid var(--line);
}
.feat:last-of-type { border-bottom: 1px solid var(--line); }
.feat.flip .feat-media { order: 2; }

.feat-media { position: relative; overflow: hidden; }
.feat-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .feat:hover .feat-media img { transform: scale(1.035); }
}
.feat-tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: oklch(0.98 0 0 / 0.92);
  color: var(--ink);
  font: 600 0.8rem/1 var(--font-body);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}

.feat-body h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}
.feat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin: 0.9rem 0 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-faint);
}
.feat-meta b { color: var(--ink-soft); font-weight: 600; }
.feat-body p { color: var(--ink-soft); }
.feat-body .arrow-link { margin-top: 1.4rem; }

/* ---------- home: blue band (why us) ---------- */

.band {
  background: var(--tenger);
  color: var(--white);
}
.band .section-title { color: var(--white); }
.band-lede { color: var(--on-blue-soft); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.why div { border-top: 1px solid oklch(1 0 0 / 0.18); padding-top: 1.4rem; }
.why h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.why p { color: var(--on-blue-soft); font-size: 0.98rem; }
.why .why-mark {
  display: inline-block;
  width: 34px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.1rem;
}

/* ---------- home: mosaic band ---------- */

.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(120px, 16vw, 220px);
  gap: 12px;
}
.mosaic a { position: relative; overflow: hidden; display: block; }
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .mosaic a:hover img { transform: scale(1.04); }
}
.mosaic .tile-label {
  position: absolute;
  left: 0.9rem;
  bottom: 0.8rem;
  color: var(--white);
  font: 600 0.9rem/1.3 var(--font-body);
  text-shadow: 0 1px 14px oklch(0.2 0.04 262 / 0.8);
  z-index: 1;
}
.mosaic a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.2 0.04 262 / 0.5), transparent 45%);
}
.m-a { grid-column: span 7; grid-row: span 2; }
.m-b { grid-column: span 5; }
.m-c { grid-column: span 5; }
.m-d { grid-column: span 4; }
.m-e { grid-column: span 4; }
.m-f { grid-column: span 4; }

/* ---------- home: testimonial ---------- */

.quote-wrap {
  max-width: 60rem;
  margin-inline: auto;
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.6;
  color: var(--cinnabar);
  display: block;
  margin-bottom: 1.6rem;
}
blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.5;
}
.quote-by {
  margin-top: 1.8rem;
  font-size: 0.92rem;
  color: var(--ink-faint);
}
.quote-by b { color: var(--ink-soft); font-weight: 600; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  color: var(--white);
  overflow: hidden;
}
.cta-band .band-media {
  position: absolute;
  inset: 0;
}
.cta-band .band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band .band-scrim {
  position: absolute;
  inset: 0;
  background: oklch(0.22 0.05 262 / 0.68);
}
.cta-inner {
  position: relative;
  text-align: center;
  padding-block: clamp(5rem, 10vw, 8rem);
}
.cta-inner h2 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--white);
  margin-inline: auto;
}
.cta-inner p {
  margin: 1.2rem auto 2.2rem;
  color: oklch(0.92 0.01 250);
  max-width: 46ch;
}

/* ---------- journeys index page ---------- */

.jindex { border-top: 1px solid var(--line); }
.jrow {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 230px 250px;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: center;
  padding-block: 1.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background-color 220ms var(--ease-out);
}
.jrow:hover { color: var(--ink); background: var(--surface); }
.jrow-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-faint);
}
.jrow-title h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  transition: color 200ms var(--ease-out);
}
.jrow:hover .jrow-title h3 { color: var(--khadag); }
.jrow-title p { margin-top: 0.4rem; color: var(--ink-soft); font-size: 0.95rem; }
.jrow-meta {
  font-size: 0.9rem;
  color: var(--ink-faint);
  display: grid;
  gap: 0.3rem;
}
.jrow-meta b { color: var(--ink-soft); font-weight: 600; }
.jrow-media { overflow: hidden; }
.jrow-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .jrow:hover .jrow-media img { transform: scale(1.05); }
}

/* ---------- journey detail ---------- */

.jhero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin-top: 1.3rem;
  font-size: 0.95rem;
  color: oklch(0.93 0.01 250);
}
.jhero-meta b { font-weight: 600; color: var(--white); }

.facts {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.facts-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.fact {
  padding: 1.5rem 1.2rem 1.5rem 0;
  border-left: 1px solid var(--line);
  padding-left: 1.4rem;
}
.fact:first-child { border-left: 0; padding-left: 0; }
.fact span { display: block; font-size: 0.82rem; color: var(--ink-faint); margin-bottom: 0.2rem; }
.fact b { font-weight: 600; font-size: 1.02rem; }

.jintro-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.jintro-grid img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.jintro-grid .section-title { margin-bottom: 1.3rem; }
.jintro-grid p { color: var(--ink-soft); }
.jintro-grid p + p { margin-top: 1rem; }

/* route (itinerary) */
.route-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.route-head .section-title { margin-bottom: 0.9rem; }
.route-head p { color: var(--ink-soft); }

.route { position: relative; max-width: 56rem; }
.route::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--line);
}
.day {
  position: relative;
  padding-left: clamp(2.2rem, 5vw, 3.4rem);
  padding-bottom: clamp(2.4rem, 5vw, 3.6rem);
}
.day:last-child { padding-bottom: 0; }
.day::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--khadag);
  outline: 4px solid var(--bg);
}
.day .day-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--khadag);
  text-transform: uppercase;
  max-width: none;
}
.day h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin: 0.4rem 0 0.7rem;
}
.day p { color: var(--ink-soft); max-width: 60ch; }
.day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
}
.day-meta b { font-weight: 600; color: var(--ink-soft); }
.day-photo {
  margin-top: 1.4rem;
  max-width: 40rem;
}
.day-photo img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.day-photo figcaption { font-size: 0.84rem; color: var(--ink-faint); margin-top: 0.55rem; }

/* gallery mosaic on journey pages */
.jgallery .mosaic { margin-top: clamp(2rem, 4vw, 3rem); }

/* practical info */
.jinfo { background: var(--surface); }
.jinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}
.jinfo-col h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.jinfo-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.jinfo-col li {
  padding: 0.55rem 0 0.55rem 1.4rem;
  position: relative;
  border-bottom: 1px solid oklch(0.88 0.01 255 / 0.7);
}
.jinfo-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--khadag);
}
.jinfo-col li.no::before { background: oklch(0.7 0.01 260); }

/* journey CTA */
.jcta {
  background: var(--tenger);
  color: var(--white);
}
.jcta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.jcta h2 { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.4rem); max-width: 20ch; }
.jcta .price { margin-top: 1rem; color: var(--on-blue-soft); }
.jcta .price b {
  color: var(--white);
  font: 400 1.6rem/1.2 var(--font-display);
}
.jcta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* prev / next journey */
.jnext { border-top: 1px solid var(--line); }
.jnext-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}
.jnext a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  display: grid;
  gap: 0.3rem;
  max-width: 44%;
}
.jnext a b {
  font: 400 1.25rem/1.3 var(--font-display);
  color: var(--ink);
  transition: color 180ms var(--ease-out);
}
.jnext a:hover b { color: var(--khadag); }
.jnext a.next { text-align: right; margin-left: auto; }

/* ---------- about ---------- */

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
}
.story-grid .section-title { position: sticky; top: 108px; }
.story-copy p { color: var(--ink-soft); }
.story-copy p + p { margin-top: 1.1rem; }
.story-copy .first {
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.65;
}

.team-list {
  list-style: none;
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.team-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.monogram {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--tenger);
  color: var(--gold);
  display: grid;
  place-items: center;
  font: 400 1.1rem/1 var(--font-display);
}
.team-list b { font-weight: 600; display: block; }
.team-list span { color: var(--ink-faint); font-size: 0.92rem; }
.team-role { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  padding-block: 1.05rem;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.15rem;
}
.contact-list span { font-size: 0.84rem; color: var(--ink-faint); }
.contact-list b, .contact-list a { font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.contact-list a:hover { color: var(--khadag); }

.form {
  display: grid;
  gap: 1.15rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font: 600 0.88rem/1.3 var(--font-body); }
.field input, .field select, .field textarea {
  font: 400 1rem/1.5 var(--font-body);
  color: var(--ink);
  background: var(--bg);
  border: 1px solid oklch(0.78 0.012 258);
  border-radius: 6px;
  padding: 0.8rem 0.95rem;
  width: 100%;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--khadag);
  box-shadow: 0 0 0 3px oklch(0.52 0.15 253 / 0.18);
}
.field ::placeholder { color: oklch(0.52 0.015 260); }
.form-note { font-size: 0.88rem; color: var(--ink-faint); }
.form-success {
  border: 1px solid var(--khadag);
  border-radius: 6px;
  padding: 1.1rem 1.3rem;
  color: var(--ink);
  background: oklch(0.52 0.15 253 / 0.07);
}

/* ---------- footer ---------- */

.site-foot {
  background: var(--tenger-deep);
  color: var(--on-blue-soft);
  position: relative;
  overflow: hidden;
}
.foot-script {
  position: absolute;
  right: clamp(1rem, 4vw, 3.5rem);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-script);
  writing-mode: vertical-lr;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  color: oklch(1 0 0 / 0.05);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.foot-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2.4fr));
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.foot-brand .brand-name { color: var(--white); font-size: 1.5rem; }
.foot-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 30ch;
}
.foot-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.foot-col a { color: var(--on-blue-soft); font-size: 0.95rem; }
.foot-col a:hover { color: var(--white); }
.foot-col li { font-size: 0.95rem; }

.foot-bottom {
  position: relative;
  border-top: 1px solid oklch(1 0 0 / 0.12);
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem 2rem;
  font-size: 0.85rem;
  color: oklch(0.72 0.02 252);
}
.foot-bottom a { color: oklch(0.85 0.04 250); font-weight: 600; }
.foot-bottom a:hover { color: var(--white); }
.foot-credit b { color: var(--gold); font-weight: 600; }

/* ---------- chatbot ---------- */

.chat-fab {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: var(--z-chat);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: var(--khadag);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px oklch(0.3 0.08 258 / 0.35);
  transition: background-color 180ms var(--ease-out), transform 160ms var(--ease-out);
}
.chat-fab:hover { background: var(--khadag-deep); }
.chat-fab:active { transform: scale(0.94); }
.chat-fab svg { width: 26px; height: 26px; }

.chat-panel {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: calc(clamp(1rem, 3vw, 1.8rem) + 72px);
  z-index: var(--z-chat);
  width: min(376px, calc(100vw - 2rem));
  height: min(560px, calc(100dvh - 140px));
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px oklch(0.25 0.04 260 / 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  visibility: hidden;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out),
              visibility 0s linear 220ms;
}
.chat-panel.open {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.chat-head {
  background: var(--tenger);
  color: var(--white);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.chat-head .chat-ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.14);
  color: var(--gold);
  display: grid;
  place-items: center;
  font: 400 1rem/1 var(--font-display);
}
.chat-head b { font-size: 0.98rem; display: block; }
.chat-head span { font-size: 0.8rem; color: var(--on-blue-soft); display: block; }
.chat-close {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.3rem;
  opacity: 0.8;
}
.chat-close:hover { opacity: 1; }

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  scrollbar-width: thin;
}
.msg {
  max-width: 85%;
  padding: 0.68rem 0.95rem;
  border-radius: 14px;
  font-size: 0.94rem;
  line-height: 1.55;
}
.msg.bot {
  background: var(--surface);
  color: var(--ink);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.msg.user {
  background: var(--khadag);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.msg a { font-weight: 600; }
.msg.bot a { color: var(--khadag); }
.msg.user a { color: var(--white); text-decoration: underline; }

html.js .msg {
  animation: msg-in 260ms var(--ease-out);
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
}
@media (prefers-reduced-motion: reduce) {
  html.js .msg { animation: none; }
}

.typing {
  display: inline-flex;
  gap: 4px;
  padding: 0.85rem 0.95rem;
}
.typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink-faint);
  animation: typing-b 1s infinite;
}
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-b {
  0%, 60%, 100% { transform: none; opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0 1.1rem 0.8rem;
}
.chat-chips button {
  font: 500 0.82rem/1 var(--font-body);
  color: var(--khadag);
  background: transparent;
  border: 1px solid oklch(0.52 0.15 253 / 0.4);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out);
}
.chat-chips button:hover { background: var(--khadag); color: var(--white); }

.chat-input {
  display: flex;
  gap: 0.6rem;
  border-top: 1px solid var(--line);
  padding: 0.8rem;
}
.chat-input input {
  flex: 1;
  font: 400 0.95rem/1.4 var(--font-body);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 1rem;
  background: var(--bg);
  color: var(--ink);
}
.chat-input input:focus {
  outline: none;
  border-color: var(--khadag);
}
.chat-input button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: var(--khadag);
  color: var(--white);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background-color 160ms var(--ease-out), transform 140ms var(--ease-out);
}
.chat-input button:hover { background: var(--khadag-deep); }
.chat-input button:active { transform: scale(0.94); }

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .burger { display: flex; }
  .btn-cta { display: none; }
  .facts-inner { grid-template-columns: repeat(2, 1fr); }
  .fact { border-left: 0; padding-left: 0; }
  .fact:nth-child(even) { border-left: 1px solid var(--line); padding-left: 1.4rem; }
  .jrow { grid-template-columns: 60px minmax(0, 1fr) 200px; }
  .jrow-media { display: none; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .story-grid .section-title { position: static; }
}

@media (max-width: 768px) {
  .intro-grid, .jintro-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .feat, .feat.flip { grid-template-columns: 1fr; gap: 1.4rem; }
  .feat.flip .feat-media { order: 0; }
  .why-grid { grid-template-columns: 1fr; }
  .jinfo-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .mosaic { grid-auto-rows: clamp(110px, 24vw, 180px); }
  .m-a { grid-column: span 12; grid-row: span 2; }
  .m-b, .m-c { grid-column: span 6; }
  .m-d, .m-e { grid-column: span 6; }
  .m-f { grid-column: span 12; }
  .jrow { grid-template-columns: 48px minmax(0, 1fr); }
  .jrow-meta { display: none; }
  .hero-rail { display: none; }
  .intro-figures { flex-wrap: wrap; gap: 1.4rem 2.2rem; }
  .jnext a { max-width: 48%; }
}

@media (max-width: 560px) {
  .head-inner { height: 64px; }
  .hero { min-height: 88vh; }
  .hero-inner { padding-top: 7rem; }
  .foot-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .facts-inner { grid-template-columns: 1fr; }
  .fact:nth-child(even) { border-left: 0; padding-left: 0; }
  .fact { border-top: 1px solid var(--line); padding-block: 1rem; }
  .fact:first-child { border-top: 0; }
  .chat-panel {
    right: 0.75rem;
    left: 0.75rem;
    width: auto;
  }
}

/* ============================================================
   Enhancement components (added in the enrichment pass)
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- section intro (shared heading + lede row) ---------- */
.sec-head { max-width: 60rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .lede { margin-top: 1rem; }
.sec-head.center .lede { margin-inline: auto; }

/* ---------- seasonal calendar ---------- */
.season { overflow-x: auto; }
.season-grid {
  min-width: 720px;
  width: 100%;
  border-collapse: collapse;
}
.season-grid th, .season-grid td { text-align: center; padding: 0; }
.season-grid thead th {
  font: 600 0.8rem/1 var(--font-body);
  color: var(--ink-faint);
  padding-bottom: 1rem;
}
.season-grid thead th:first-child { text-align: left; }
.season-grid tbody th {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink);
  padding: 0.9rem 1.4rem 0.9rem 0;
  white-space: nowrap;
  border-top: 1px solid var(--line);
}
.season-grid tbody td {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0.3rem;
}
.season-cell {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  vertical-align: middle;
}
.season-cell.prime { background: var(--khadag); }
.season-cell.open { background: transparent; box-shadow: inset 0 0 0 1.5px oklch(0.62 0.09 253); }
.season-cell.closed { background: oklch(0.9 0.006 255); }
.season-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 1.8rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.season-legend span { display: inline-flex; align-items: center; gap: 0.5rem; }
.season-legend .season-cell { width: 13px; height: 13px; }

/* ---------- process (how it works) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--khadag);
}
.step::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 3.4rem;
  right: -1.2rem;
  height: 1px;
  background: var(--line);
}
.step:last-child::after { display: none; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- testimonials (three quotes) ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
}
.quote-card {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 1.6rem;
  border-top: 2px solid var(--khadag);
}
.quote-card p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
}
.quote-card .who {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}
.quote-card .monogram { width: 44px; height: 44px; font-size: 1rem; }
.quote-card .who b { display: block; font-weight: 600; font-size: 0.98rem; }
.quote-card .who span { font-size: 0.88rem; color: var(--ink-faint); }

/* ---------- trust / featured strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  padding-block: 2rem;
}
.trust-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}
.trust-names {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem 2.6rem;
}
.trust-names span {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  color: var(--ink-soft);
  white-space: nowrap;
}

/* ---------- FAQ accordion ---------- */
.faq { max-width: 52rem; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 1.35rem 0;
  font: 400 clamp(1.1rem, 1.7vw, 1.35rem)/1.35 var(--font-display);
  color: var(--ink);
}
.faq-icon {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--khadag);
  transition: transform 260ms var(--ease-out), opacity 200ms var(--ease-out);
}
.faq-icon::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq-icon::after { left: 10px; top: 2px; bottom: 2px; width: 2px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 320ms var(--ease-out);
}
.faq-a-inner { padding: 0 0 1.4rem; color: var(--ink-soft); }
.faq-a-inner p { max-width: 60ch; }
@media (prefers-reduced-motion: reduce) {
  .faq-a { transition: none; }
}

/* ---------- newsletter (footer) ---------- */
.foot-news { margin-top: 1.6rem; }
.foot-news h4 {
  font: 600 0.85rem/1.3 var(--font-body);
  color: var(--white);
  margin-bottom: 0.8rem;
}
.news-form { display: flex; gap: 0.5rem; max-width: 340px; }
.news-form input {
  flex: 1;
  min-width: 0;
  font: 400 0.92rem/1.4 var(--font-body);
  color: var(--white);
  background: oklch(1 0 0 / 0.06);
  border: 1px solid oklch(1 0 0 / 0.2);
  border-radius: 999px;
  padding: 0.6rem 1rem;
}
.news-form input::placeholder { color: oklch(0.78 0.02 250); }
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-form button {
  flex: none;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: oklch(0.25 0.055 260);
  font: 600 0.88rem/1 var(--font-body);
  padding: 0 1.1rem;
  cursor: pointer;
  transition: background-color 160ms var(--ease-out), transform 140ms var(--ease-out);
}
.news-form button:hover { background: oklch(0.88 0.11 88); }
.news-form button:active { transform: scale(0.96); }
.news-done { margin-top: 0.7rem; font-size: 0.88rem; color: var(--gold); }
.news-done[hidden] { display: none; }

/* ---------- back to top ---------- */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: calc(clamp(1rem, 3vw, 1.8rem) + 72px);
  z-index: var(--z-chat);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: oklch(0.98 0 0 / 0.9);
  backdrop-filter: blur(8px);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out), visibility 0s linear 240ms;
}
.to-top.show { opacity: 1; transform: none; visibility: visible; transition: opacity 240ms var(--ease-out), transform 240ms var(--ease-out); }
.to-top:hover { border-color: var(--khadag); color: var(--khadag); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- journey finder (quiz) ---------- */
.finder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.8rem, 4vw, 3rem);
  max-width: 60rem;
  margin-inline: auto;
}
.finder-q { font-size: clamp(1.3rem, 2.4vw, 1.8rem); margin-bottom: 0.6rem; }
.finder-sub { color: var(--ink-soft); margin-bottom: 1.8rem; }
.finder-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.9rem;
}
.finder-opt {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  transition: border-color 180ms var(--ease-out), transform 160ms var(--ease-out), background-color 180ms var(--ease-out);
}
.finder-opt:hover { border-color: var(--khadag); transform: translateY(-2px); }
.finder-opt b { display: block; font-weight: 600; margin-bottom: 0.25rem; color: var(--ink); }
.finder-opt span { font-size: 0.9rem; color: var(--ink-faint); }
.finder-result { display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 2rem; align-items: center; }
.finder-result img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 10px; }
.finder-result h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.7rem; }
.finder-result p { color: var(--ink-soft); margin-bottom: 1.3rem; }
.finder-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.finder-restart {
  background: transparent; border: 0; color: var(--khadag);
  font: 600 0.9rem/1 var(--font-body); cursor: pointer; padding: 0.4rem 0;
}

/* ---------- chat: recommender quick options inside a message ---------- */
.chat-opts { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }
.chat-opts button {
  font: 500 0.8rem/1 var(--font-body);
  color: var(--khadag);
  background: var(--bg);
  border: 1px solid oklch(0.52 0.15 253 / 0.4);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  transition: background-color 150ms var(--ease-out), color 150ms var(--ease-out);
}
.chat-opts button:hover { background: var(--khadag); color: var(--white); }

/* ---------- on the road: what a day actually holds ---------- */
.road {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.road figure { margin: 0; }
.road .road-media { overflow: hidden; border-radius: 3px; }
.road img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .road figure:hover img { transform: scale(1.045); }
}
.road figcaption { padding-top: 0.9rem; }
.road b {
  display: block;
  font: 400 1.18rem/1.25 var(--font-display);
  margin-bottom: 0.35rem;
}
.road p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- field notes ---------- */
.notes { border-top: 1px solid var(--line); }
.note {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 280px;
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
  padding-block: clamp(1.8rem, 3.5vw, 2.6rem);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background-color 260ms var(--ease-out);
}
.note:hover { background: var(--surface); color: var(--ink); }
.note-meta { display: grid; gap: 0.25rem; }
.note-place {
  font: 600 0.78rem/1.2 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--khadag);
}
.note-date { font-size: 0.85rem; color: var(--ink-faint); }
.note-body h3 {
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  margin-bottom: 0.5rem;
  transition: color 220ms var(--ease-out);
}
.note:hover .note-body h3 { color: var(--khadag); }
.note-body p { color: var(--ink-soft); font-size: 0.98rem; }
.note-media { overflow: hidden; border-radius: 3px; }
.note-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .note:hover .note-media img { transform: scale(1.05); }
}

@media (max-width: 900px) {
  .road { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .note { grid-template-columns: 120px minmax(0, 1fr); }
  .note-media { display: none; }
}
@media (max-width: 560px) {
  .road { grid-template-columns: 1fr 1fr; }
  .note { grid-template-columns: 1fr; gap: 0.5rem; }
  .note-meta { display: flex; gap: 0.9rem; align-items: baseline; }
}

/* ============================================================
   Motion and microdetail layer
   ============================================================ */

/* image mask reveal: the photo wipes up behind a clip, then settles */
html.js .mask { overflow: hidden; }
html.js .mask > img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.08);
  transition: clip-path 1100ms var(--ease-out), transform 1400ms var(--ease-out);
}
html.js .mask.in > img { clip-path: inset(0 0 0 0); transform: scale(1); }
html.js.reveal-off .mask > img { clip-path: none !important; transform: none !important; transition: none !important; }

/* staggered children inside a revealed container */
html.js .stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease-out), transform 620ms var(--ease-out);
}
html.js .stagger.in > * { opacity: 1; transform: none; }
html.js .stagger.in > *:nth-child(1) { transition-delay: 0ms; }
html.js .stagger.in > *:nth-child(2) { transition-delay: 70ms; }
html.js .stagger.in > *:nth-child(3) { transition-delay: 140ms; }
html.js .stagger.in > *:nth-child(4) { transition-delay: 210ms; }
html.js .stagger.in > *:nth-child(5) { transition-delay: 280ms; }
html.js .stagger.in > *:nth-child(6) { transition-delay: 350ms; }
html.js.reveal-off .stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }

/* counters hold their box while ticking so nothing reflows */
.count { font-variant-numeric: tabular-nums; }

/* a hairline that draws itself in when its section arrives */
html.js .rule-draw {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms var(--ease-out);
}
html.js .rule-draw.in { transform: scaleX(1); }
html.js.reveal-off .rule-draw { transform: none !important; transition: none !important; }

/* microdetail: links in prose get an underline that grows from the left */
.prose-link {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 320ms var(--ease-out), color 200ms var(--ease-out);
}
.prose-link:hover { background-size: 100% 1px; color: var(--khadag); }

/* microdetail: solid buttons lift a hair and deepen on hover */
.btn-solid {
  box-shadow: 0 1px 2px oklch(0.3 0.08 258 / 0.18);
}
@media (hover: hover) and (pointer: fine) {
  .btn-solid:hover { transform: translateY(-1px); box-shadow: 0 4px 14px oklch(0.3 0.08 258 / 0.26); }
  .btn-solid:active { transform: translateY(0) scale(0.985); }
}

/* microdetail: journey rows nudge their number and arrow on hover */
.jrow-num { transition: color 240ms var(--ease-out), transform 320ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .jrow:hover .jrow-num { color: var(--khadag); transform: translateY(-2px); }
}

/* focus: one consistent, visible ring everywhere */
:focus-visible {
  outline: 2px solid var(--khadag);
  outline-offset: 3px;
  border-radius: 3px;
}
.hero :focus-visible,
.band :focus-visible,
.cta-band :focus-visible,
.site-foot :focus-visible,
.jcta :focus-visible { outline-color: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  html.js .mask > img,
  html.js .stagger > *,
  html.js .rule-draw { transition: none; }
  .btn-solid:hover { transform: none; }
}

/* enhancement responsive */
@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .step:nth-child(2)::after { display: none; }
  .quotes { grid-template-columns: 1fr; max-width: 40rem; }
}
@media (max-width: 640px) {
  .process { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .finder-result { grid-template-columns: 1fr; }
  .finder-result img { order: -1; }
  .trust-inner { flex-direction: column; align-items: flex-start; }
}
