/* ==========================================================
   YATRI MONIL — vibrant travel site
   Palette: Sunshine / Cream / Crisp Carrot / Tomato Burst / Forest Green / Kiwi
   ========================================================== */

:root {
  --sun: #ffc926;
  --cream: #f3e8cc;
  --paper: #fbf5e6;
  --carrot: #f96015;
  --tomato: #d52518;
  --forest: #18542a;
  --kiwi: #9abc05;
  --ink: #1b1510;
  --ink-2: #2a221b;
  --night: #0f1f15;

  --f-display: "Anton", "Impact", sans-serif;
  --f-body: "Bricolage Grotesque", system-ui, sans-serif;
  --f-serif: "Instrument Serif", Georgia, serif;

  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 12px;
  --gutter: clamp(16px, 3vw, 40px);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.76, 0, .24, 1);
  --header-h: 76px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
/* scrollbar-gutter: the loader hides the scrollbar (overflow: hidden); reserving its
   space keeps the hero from jumping ~15px when it reappears after load */
html { -webkit-text-size-adjust: 100%; scrollbar-gutter: stable; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
main, .footer { overflow-x: clip; }
.about { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--carrot); color: var(--cream); }
:focus-visible { outline: 3px solid var(--carrot); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter); }
.serif { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
em.serif { text-transform: none; }

.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 96px);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin: 0;
}
.h2 em.serif { font-size: 1.08em; line-height: .8; color: var(--carrot); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--carrot); }
.eyebrow--sun { color: var(--sun); } .eyebrow--sun::before { background: var(--sun); }
.eyebrow--ink::before { background: var(--ink); }
.eyebrow--cream { color: var(--cream); } .eyebrow--cream::before { background: var(--sun); }

.section-head { margin-bottom: clamp(40px, 6vw, 80px); max-width: 1100px; }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; max-width: none; }
.section-head--split > div { max-width: 860px; }
.section-head__aside { max-width: 360px; font-size: 17px; opacity: .8; margin: 0; }

/* split-text helpers */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding: .08em .12em .32em 0; margin: -.08em -.12em -.32em 0; }
.split .w > span { display: inline-block; will-change: transform; }

/* ---------------- Buttons ---------------- */
.btn {
  --bg: var(--ink); --fg: var(--cream);
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  height: 56px; padding: 0 10px 0 26px;
  border-radius: 999px; background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: 16px; letter-spacing: .01em;
  overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: color .5s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit;
  background: var(--hover, var(--carrot));
  transform: translateY(101%); transition: transform .55s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--hover-fg, var(--cream)); }
.btn > span { position: relative; }
.btn__arrow, .btn__dot {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--fg); color: var(--bg); font-style: normal; font-size: 18px;
  transition: transform .5s var(--ease), background .5s, color .5s;
}
.btn__dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--bg); transition: transform .5s var(--ease); }
.btn:hover .btn__arrow { transform: rotate(-45deg); }
.btn:hover .btn__dot::after { transform: scale(2.2); }
.btn--sm { height: 46px; padding-left: 20px; font-size: 15px; }
.btn--sm .btn__dot { width: 30px; height: 30px; }
.btn--dark, .btn--ink { --bg: var(--ink); --fg: var(--cream); --hover: var(--carrot); }
.btn--cream { --bg: var(--cream); --fg: var(--ink); --hover: var(--sun); --hover-fg: var(--ink); }
.btn--sun { --bg: var(--sun); --fg: var(--ink); --hover: var(--cream); --hover-fg: var(--ink); }
.btn--tomato { --bg: var(--tomato); --fg: var(--cream); --hover: var(--ink); }
.btn--block { width: 100%; justify-content: space-between; height: 64px; font-size: 17px; }

.icon-btn {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid var(--ink); transition: background .4s var(--ease), color .4s;
}
.icon-btn svg { width: 22px; height: 22px; fill: currentColor; }
.icon-btn--yt:hover { background: var(--tomato); border-color: var(--tomato); color: var(--cream); }
.icon-btn--ig:hover { background: var(--carrot); border-color: var(--carrot); color: var(--cream); }

.link-arrow { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; border-bottom: 2px solid currentColor; padding-bottom: 4px; }
.link-arrow i { font-style: normal; transition: transform .4s var(--ease); }
.link-arrow:hover i { transform: translateY(4px); }
.link-arrow--cream { color: var(--cream); }

.chip {
  display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 14px;
  border-radius: 999px; font-size: 13px; font-weight: 700;
}
.chip--cream { background: var(--cream); color: var(--ink); }
.chip--glass { background: rgba(27, 21, 16, .45); color: var(--cream); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--kiwi); display: inline-block; }
.dot--live { box-shadow: 0 0 0 0 rgba(154, 188, 5, .7); animation: live 1.8s infinite; }
@keyframes live { 70% { box-shadow: 0 0 0 10px rgba(154, 188, 5, 0); } 100% { box-shadow: 0 0 0 0 rgba(154, 188, 5, 0); } }

/* ---------------- Preloader ---------------- */
.loader { position: fixed; inset: 0; z-index: 1000; display: flex; pointer-events: none; }
.loader__panel { flex: 1; background: var(--c); transform-origin: top; }
.loader__inner {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--gutter) + 8px) var(--gutter); color: var(--cream);
}
.loader__word { display: flex; flex-wrap: wrap; gap: .25em; font-family: var(--f-display); font-size: clamp(40px, 7vw, 110px); text-transform: uppercase; line-height: 1; overflow: hidden; }
.loader__word span { display: inline-block; }
.loader__count { align-self: flex-end; font-family: var(--f-display); font-size: clamp(90px, 18vw, 280px); line-height: .8; color: var(--cream); }

/* ---------------- Cursor ---------------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 999; pointer-events: none;
  width: 14px; height: 14px; margin: -7px 0 0 -7px; border-radius: 50%;
  background: var(--carrot); mix-blend-mode: normal;
  display: grid; place-items: center;
  transition: width .4s var(--ease), height .4s var(--ease), margin .4s var(--ease), background .3s;
}
.cursor__label { font-size: 13px; font-weight: 800; color: var(--ink); opacity: 0; transition: opacity .2s; white-space: nowrap; }
.cursor.is-hover { width: 56px; height: 56px; margin: -28px 0 0 -28px; background: rgba(249, 96, 21, .25); }
.cursor.has-label { width: 92px; height: 92px; margin: -46px 0 0 -46px; background: var(--sun); }
.cursor.has-label .cursor__label { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------------- Header ---------------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 calc(var(--gutter) + 18px);
  transition: transform .6s var(--ease), top .4s var(--ease);
}
.header.is-hidden { transform: translateY(-120%); }
.header::before {
  content: ""; position: absolute; inset: 10px calc(var(--gutter) - 4px); z-index: -1; border-radius: 999px;
  background: rgba(251, 245, 230, .82); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 10px 40px -20px rgba(27, 21, 16, .35);
  opacity: 0; transform: scale(.96); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.header.is-scrolled::before { opacity: 1; transform: none; }
.logo { display: inline-flex; align-items: center; gap: 10px; justify-self: start; }
.logo__mark svg { width: 38px; height: 38px; transition: transform .8s var(--ease); }
.logo:hover .logo__mark svg { transform: rotate(180deg); }
.logo__text { font-family: var(--f-display); font-size: 24px; text-transform: uppercase; letter-spacing: .01em; }
.logo__text b { font-weight: 400; color: var(--carrot); margin-left: 4px; }

.nav { position: relative; display: flex; gap: 4px; padding: 5px; border-radius: 999px; background: rgba(27, 21, 16, .06); }
.nav__link { position: relative; z-index: 1; padding: 9px 18px; border-radius: 999px; font-size: 15px; font-weight: 600; transition: color .4s var(--ease); }
.nav__link.is-active { color: var(--cream); }
.nav__pill { position: absolute; top: 5px; left: 0; height: calc(100% - 10px); border-radius: 999px; background: var(--ink); transition: transform .6s var(--ease), width .6s var(--ease), opacity .3s; }
.header__end { justify-self: end; display: flex; align-items: center; gap: 10px; }

/* language menu: the native <select> sits invisibly on top of a styled label */
.lang { position: relative; display: inline-flex; align-items: center; height: 46px; padding: 0 30px 0 14px; gap: 7px; border-radius: 999px; background: rgba(27, 21, 16, .06); font-size: 14px; font-weight: 700; cursor: pointer; transition: background .3s; white-space: nowrap; }
.lang::after { content: ""; position: absolute; right: 14px; top: 50%; width: 6px; height: 6px; margin-top: -5px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); pointer-events: none; }
.lang:hover { background: rgba(27, 21, 16, .12); }
.lang__icon { font-size: 16px; line-height: 1; }
.lang__code { display: none; }
.lang__select { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; font: inherit; border: 0; }
.lang:focus-within { outline: 3px solid var(--carrot); outline-offset: 2px; }
html[dir="rtl"] .lang { padding: 0 14px 0 30px; }
html[dir="rtl"] .lang::after { right: auto; left: 14px; }

/* translated labels can be much longer than the English ones — let buttons wrap */
html:not([lang="en"]) .btn { white-space: normal; height: auto; min-height: 56px; padding-top: 9px; padding-bottom: 9px; line-height: 1.25; }
html:not([lang="en"]) .btn--sm { min-height: 46px; padding-top: 6px; padding-bottom: 6px; }
html:not([lang="en"]) .btn--block { min-height: 64px; }
html:not([lang="en"]) .btn__arrow, html:not([lang="en"]) .btn__dot { flex: 0 0 auto; }
.burger { display: none; justify-self: end; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); position: relative; z-index: 2; }
.burger span { position: absolute; left: 14px; right: 14px; height: 2px; background: var(--cream); transition: transform .5s var(--ease); }
.burger span:first-child { top: 20px; } .burger span:last-child { top: 27px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 90; background: var(--carrot); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center; padding: 100px 24px 40px;
  clip-path: circle(0% at calc(100% - 44px) 38px); transition: clip-path .8s var(--ease-in-out);
}
.menu.is-open { clip-path: circle(150% at calc(100% - 44px) 38px); }
.menu__nav { display: flex; flex-direction: column; }
.menu__nav a { font-family: var(--f-display); font-size: clamp(44px, 12vw, 80px); text-transform: uppercase; line-height: 1.05; }
.menu__nav a:hover { color: var(--sun); }
.menu__socials { display: flex; gap: 24px; margin-top: 40px; font-weight: 700; }

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: calc(var(--header-h) + 8px) var(--gutter) 0; background: var(--paper); }
.hero__frame {
  position: relative; border: 2px solid var(--ink); border-radius: calc(var(--r-lg) + 8px);
  padding: clamp(14px, 2vw, 26px);
  background:
    radial-gradient(circle at 1px 1px, rgba(27,21,16,.14) 1px, transparent 0) 0 0 / 22px 22px,
    var(--cream);
}
.hero__grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: clamp(14px, 2vw, 26px); min-height: min(78vh, 820px); }
.hero-card { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.hero-card--about {
  background: var(--sun); padding: clamp(22px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 18px;
  border: 2px solid var(--ink);
}
.hero-card__top { display: flex; justify-content: space-between; align-items: center; }
.hero-card__num { font-family: var(--f-serif); font-style: italic; font-size: 22px; }
.hero__title {
  font-family: var(--f-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(84px, 13.4vw, 228px); line-height: .84; letter-spacing: -.01em; margin: 6px 0 0;
  color: var(--ink);
}
.hero__title .line { display: block; overflow: hidden; padding: .04em 0 .1em; margin-bottom: -.1em; }
.hero__title .line:nth-child(2) .word { color: var(--tomato); -webkit-text-stroke: 0; }
.hero__title .word { display: inline-flex; align-items: center; gap: .08em; }
.hero__plane { width: .42em; height: .42em; transform: rotate(8deg); }
.hero__roles { margin: 0; display: flex; align-items: baseline; gap: 12px; font-size: clamp(22px, 2.2vw, 32px); font-weight: 700; }
.hero__roles .serif { font-size: 1.15em; }
.roles { position: relative; display: inline-grid; height: 1.3em; overflow: hidden; background: var(--ink); border-radius: 8px; padding: 0 .35em; box-sizing: content-box; }
.roles span { grid-area: 1 / 1; justify-self: start; color: var(--sun); white-space: nowrap; line-height: 1.3; }
.roles span + span { visibility: hidden; } /* until JS takes over */
.hero__lede { margin: 0; max-width: 520px; font-size: clamp(16px, 1.15vw, 18px); }
.hero__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.hero-card__foot { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 2px dashed rgba(27,21,16,.35); }
.hero-card__foot p { margin: 0; font-size: 14px; line-height: 1.35; }
.avatar-stack { display: flex; }
.avatar-stack > * { width: 44px; height: 44px; border-radius: 50%; border: 3px solid var(--sun); margin-left: -12px; display: grid; place-items: center; background: var(--c, var(--cream)); font-size: 20px; object-fit: cover; }
.avatar-stack > *:first-child { margin-left: 0; }

.hero-card--media { background: var(--ink); border: 2px solid var(--ink); min-height: 420px; }
.deck { position: absolute; inset: 0; }
.deck__slide { position: absolute; inset: 0; margin: 0; overflow: hidden; clip-path: inset(0 0 0 100%); }
.deck__slide.is-active { clip-path: inset(0 0 0 0); z-index: 2; }
.deck__slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.deck__ui { position: absolute; left: 0; right: 0; bottom: 0; z-index: 5; padding: 22px; display: flex; align-items: center; gap: 16px; background: linear-gradient(transparent, rgba(0,0,0,.45)); }
.deck__progress { flex: 1; height: 3px; background: rgba(243,232,204,.3); border-radius: 3px; overflow: hidden; }
.deck__progress i { display: block; height: 100%; width: 100%; background: var(--sun); transform-origin: left; transform: scaleX(0); }
.deck__count { color: var(--cream); font-weight: 700; font-size: 14px; font-variant-numeric: tabular-nums; }
.badge-spin { position: absolute; top: 20px; right: 20px; z-index: 5; width: 118px; height: 118px; display: grid; place-items: center; }
.badge-spin svg { position: absolute; inset: 0; animation: spin 14s linear infinite; }
.badge-spin text { font-family: var(--f-body); font-weight: 800; font-size: 12px; letter-spacing: .1em; fill: var(--ink); }
.badge-spin::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--sun); border: 2px solid var(--ink); }
.badge-spin > span { position: relative; width: 48px; height: 48px; border-radius: 50%; background: var(--tomato); color: var(--cream); display: grid; place-items: center; font-size: 22px; }
@keyframes spin { to { transform: rotate(360deg); } }

.sticker { position: absolute; z-index: 6; font-size: clamp(34px, 3.4vw, 52px); width: 1.7em; height: 1.7em; display: grid; place-items: center; border-radius: 50%; background: var(--paper); border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); pointer-events: none; }
.sticker--2 { left: -18px; bottom: 5%; transform: rotate(10deg); background: var(--kiwi); }
.sticker--3 { right: -14px; top: 44%; background: var(--carrot); }

.marquee { overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; will-change: transform; }
.marquee__track span { display: inline-block; }
.marquee--hero { margin: 26px calc(var(--gutter) * -1) 0; padding: 18px 0; background: var(--ink); color: var(--sun); font-family: var(--f-display); font-size: clamp(26px, 3vw, 44px); text-transform: uppercase; transform: rotate(-1.2deg); }

/* ---------------- Travel reveal ---------------- */
.reveal { position: relative; height: 260vh; background: var(--paper); margin-top: -10px; }
.reveal__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; place-items: center; }
.reveal__media { position: absolute; inset: 0; clip-path: inset(22% 30% 22% 30% round 32px); will-change: clip-path; }
.reveal__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.35); will-change: transform; }
.reveal__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.05) 40%, rgba(0,0,0,.45)); }
.reveal__content { position: relative; z-index: 2; text-align: center; color: var(--cream); display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 0 20px; }
.reveal__word { margin: 0; font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: clamp(110px, 26vw, 440px); line-height: .8; display: flex; letter-spacing: -.01em; }
.reveal__word span { display: inline-block; will-change: transform; }
.reveal__sub { margin: 0; font-size: clamp(20px, 2vw, 28px); font-weight: 700; line-height: 1.25; }

/* ---------------- Stats ---------------- */
.stats { background: var(--sun); padding: clamp(90px, 12vw, 160px) 0; border-radius: 48px 48px 0 0; position: relative; z-index: 2; margin-top: -48px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { position: relative; padding: 30px 28px 26px; border-radius: var(--r-lg); color: var(--cream); min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 2px solid var(--ink); }
.stat:nth-child(2) { transform: translateY(40px); } .stat:nth-child(4) { transform: translateY(40px); }
.stat--tomato { background: var(--tomato); } .stat--forest { background: var(--forest); }
.stat--carrot { background: var(--carrot); } .stat--kiwi { background: var(--kiwi); color: var(--ink); }
.stat__num { font-family: var(--f-display); font-size: clamp(64px, 7vw, 120px); line-height: .9; }
.stat__label { margin: 8px 0 0; font-weight: 700; font-size: 17px; }
.stat__icon { position: absolute; top: 22px; right: 24px; width: 54px; height: 54px; border-radius: 50%; border: 2px solid currentColor; display: grid; place-items: center; font-size: 20px; transition: transform .6s var(--ease); }
.stat:hover .stat__icon { transform: rotate(90deg) scale(1.1); }

/* ---------------- About ---------------- */
.about { padding: clamp(100px, 14vw, 200px) 0; background: var(--paper); }
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 7vw, 120px); align-items: center; }
.about__media { position: relative; }
.about__photo { border-radius: 240px 240px var(--r-lg) var(--r-lg); overflow: hidden; border: 2px solid var(--ink); aspect-ratio: 4 / 5; background: var(--sun); }
.about__photo img { width: 100%; height: 115%; object-fit: cover; }
.about__polaroid { position: absolute; width: 46%; background: var(--paper); padding: 10px 10px 12px; border: 2px solid var(--ink); border-radius: 14px; box-shadow: 6px 6px 0 var(--ink); font-size: 13px; font-weight: 700; }
.about__polaroid img { aspect-ratio: 16/11; object-fit: cover; border-radius: 8px; margin-bottom: 8px; width: 100%; }
.about__polaroid--1 { right: -12%; top: 12%; transform: rotate(6deg); }
.about__polaroid--2 { left: -10%; bottom: 6%; transform: rotate(-7deg); }
.about__statement { font-size: clamp(28px, 3.1vw, 50px); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; margin: 0 0 40px; }
.fill-text .ch { color: rgba(27, 21, 16, .16); transition: none; }
.about__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; font-size: 16px; opacity: .85; }
.about__cols p { margin: 0; }
.about__sign { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--ink); }
.about__sign .serif { font-size: 30px; }

/* ---------------- Map ---------------- */
.map { background: var(--forest); color: var(--cream); position: relative; }
.map__pin { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: calc(var(--header-h) + 10px) 0 30px; overflow: hidden; }
.map__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.map__title em.serif { color: var(--sun); }
.map__intro { max-width: 320px; margin: 0; opacity: .8; font-size: 15px; }
.map__stage { position: relative; width: 100%; max-width: 1500px; margin: 10px auto 0; padding: 0 var(--gutter); }
.map__svg { width: 100%; height: auto; max-height: 62vh; display: block; overflow: hidden; }
.map__land { fill: none; stroke: rgba(243, 232, 204, .28); stroke-linecap: round; }
.map__visited path { fill: none; stroke-linecap: round; }
.map__arcs path { fill: none; stroke: var(--sun); stroke-linecap: round; opacity: .8; }
.marker { cursor: pointer; }
.marker__pulse { transform-box: fill-box; transform-origin: center; animation: pulse 2.4s var(--ease) infinite; }
.marker:nth-child(3n) .marker__pulse { animation-delay: .8s; } .marker:nth-child(3n+1) .marker__pulse { animation-delay: 1.6s; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(3.4); opacity: 0; } }
.marker__core { stroke: var(--cream); transition: transform .3s var(--ease); transform-box: fill-box; transform-origin: center; }
.marker:hover .marker__core, .marker.is-hot .marker__core { transform: scale(1.8); }
.marker.is-dim { opacity: .18; }
.marker--home .marker__core { fill: #fff; stroke: var(--tomato); stroke-width: 1.6; }
.map__tip {
  position: absolute; left: 0; top: 0; z-index: 5; pointer-events: none;
  background: var(--sun); color: var(--ink); border: 2px solid var(--ink); border-radius: 14px; padding: 8px 14px;
  box-shadow: 4px 4px 0 var(--ink); font-size: 13px; line-height: 1.3; max-width: 240px;
  opacity: 0; transform: translate(-50%, calc(-100% - 18px)) scale(.9); transition: opacity .25s, transform .3s var(--ease);
}
.map__tip.is-on { opacity: 1; transform: translate(-50%, calc(-100% - 18px)) scale(1); }
.map__tip b { display: block; font-size: 16px; }
.map__legend { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 18px; }
.map__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.map-chip { display: inline-flex; align-items: center; gap: 8px; height: 38px; padding: 0 14px 0 8px; border-radius: 999px; border: 1.5px solid rgba(243,232,204,.3); font-size: 14px; font-weight: 600; transition: background .3s, color .3s, border-color .3s; }
.map-chip i { width: 24px; height: 24px; border-radius: 50%; background: var(--c); display: grid; place-items: center; font-style: normal; font-size: 13px; }
.map-chip:hover, .map-chip.is-on { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.map-chip small { opacity: .6; font-weight: 700; }
.map__key { display: flex; gap: 18px; font-size: 13px; opacity: .85; flex-wrap: wrap; }
.map__key span { display: inline-flex; align-items: center; gap: 8px; }
.k { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.k--pkg { background: var(--tomato); box-shadow: 0 0 0 2px var(--cream); }
.k--cov { background: var(--ink); box-shadow: 0 0 0 2px var(--cream); }
.k--home { background: #fff; box-shadow: 0 0 0 2px var(--tomato); }

/* ---------------- Services / packages ---------------- */
.services { padding: clamp(100px, 13vw, 180px) 0; background: var(--paper); }
.tabs { position: relative; display: inline-flex; flex-wrap: wrap; gap: 4px; padding: 6px; border-radius: 999px; background: var(--cream); border: 2px solid var(--ink); margin-bottom: 40px; }
.tab { position: relative; z-index: 1; height: 44px; padding: 0 18px; border-radius: 999px; font-weight: 700; font-size: 15px; transition: color .4s var(--ease); }
.tab sup { font-size: 11px; opacity: .6; margin-left: 2px; }
.tab.is-active { color: var(--cream); }
.tab__pill { position: absolute; top: 6px; left: 0; height: 44px; border-radius: 999px; background: var(--tomato); transition: transform .6s var(--ease), width .6s var(--ease), height .6s var(--ease), top .6s var(--ease); }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pkg {
  position: relative; display: flex; flex-direction: column; background: var(--cream); border: 2px solid var(--ink);
  border-radius: var(--r-lg); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.pkg:hover { transform: translate(-4px, -4px); box-shadow: 8px 8px 0 var(--ink); }
.pkg.is-hidden { display: none; }
.pkg__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; margin: 10px 10px 0; border-radius: 20px; }
.pkg__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.pkg:hover .pkg__media img { transform: scale(1.08); }
.pkg__flag { position: absolute; top: 12px; left: 12px; height: 32px; padding: 0 12px; border-radius: 999px; background: var(--paper); border: 2px solid var(--ink); font-size: 13px; font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }
.pkg__days { position: absolute; top: 12px; right: 12px; height: 32px; padding: 0 12px; border-radius: 999px; background: var(--c); color: var(--ink); border: 2px solid var(--ink); font-size: 13px; font-weight: 800; display: inline-flex; align-items: center; }
.pkg__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg__title { font-family: var(--f-display); font-weight: 400; font-size: 36px; line-height: 1; text-transform: uppercase; margin: 0; }
.pkg__blurb { margin: 0; font-size: 15px; opacity: .8; }
.pkg__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.pkg__tags span { font-size: 12px; font-weight: 700; padding: 5px 10px; border-radius: 999px; border: 1.5px solid rgba(27,21,16,.35); }
.pkg__foot { margin-top: auto; padding-top: 14px; border-top: 2px dashed rgba(27,21,16,.25); display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.pkg__price { font-size: 13px; line-height: 1.2; }
.pkg__price b { display: block; font-size: 16px; }
.pkg__btn { height: 44px; padding: 0 8px 0 18px; font-size: 14px; }
.pkg__btn .btn__arrow { width: 30px; height: 30px; font-size: 15px; }

/* ---------------- Process (pinned) ---------------- */
.process { background: var(--carrot); color: var(--ink); }
.process__pin { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; padding: calc(var(--header-h) + 20px) var(--gutter) 40px; max-width: 1440px; margin: 0 auto; }
.process__media { position: relative; height: min(76vh, 720px); border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--ink); background: var(--ink); }
.process__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.12); transition: opacity .9s var(--ease), transform 1.4s var(--ease); }
.process__media img.is-active { opacity: 1; transform: scale(1); }
.process__stamp { position: absolute; left: 20px; bottom: 20px; z-index: 2; background: var(--sun); border: 2px solid var(--ink); border-radius: 999px; padding: 6px 18px; font-family: var(--f-display); font-size: 28px; }
.process__stamp span:last-child { opacity: .5; font-size: .7em; }
.process__content .h2 { font-size: clamp(38px, 4.6vw, 76px); margin-bottom: 34px; }
.process__content .h2 em.serif { color: var(--cream); }
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 70px 1fr; gap: 10px; padding: 20px 0; border-top: 2px solid rgba(27,21,16,.25); opacity: .38; transition: opacity .5s var(--ease); }
.step:last-child { border-bottom: 2px solid rgba(27,21,16,.25); }
.step.is-active { opacity: 1; }
.step__n { font-family: var(--f-display); font-size: 34px; line-height: 1; }
.step h3 { margin: 0 0 4px; font-size: 22px; }
.step p { margin: 0; font-size: 15px; max-height: 0; overflow: hidden; transition: max-height .7s var(--ease), opacity .5s; opacity: 0; }
.step.is-active p { max-height: 120px; opacity: 1; }

/* ---------------- Destinations (horizontal) ---------------- */
.dest { background: var(--ink); color: var(--cream); overflow: hidden; }
.dest__pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; gap: 36px; padding-top: var(--header-h); }
.dest__head .h2 em.serif { color: var(--sun); }
.dest__track { display: flex; gap: 22px; padding-left: var(--gutter); padding-right: 12vw; width: max-content; will-change: transform; }
.dest-card { position: relative; flex: 0 0 auto; width: clamp(280px, 30vw, 460px); height: min(56vh, 560px); border-radius: var(--r-lg); overflow: hidden; }
.dest-card:nth-child(even) { transform: translateY(30px); }
.dest-card img { position: absolute; top: 0; left: -15%; width: 130%; max-width: none; height: 100%; object-fit: cover; }
.dest-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--accent); mix-blend-mode: multiply; opacity: 0; transition: opacity .6s var(--ease); }
.dest-card:hover::before { opacity: .35; }
.dest-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.72)); }
.dest-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px; }
.dest-card__body .dest-card__n { position: static; display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--ink); font-weight: 800; margin-bottom: 12px; }
.dest-card h3 { margin: 0; font-family: var(--f-display); font-weight: 400; font-size: clamp(40px, 3.8vw, 64px); line-height: .95; text-transform: uppercase; }
.dest-card p { margin: 6px 0 14px; opacity: .85; }
.dest-card__cta { display: inline-flex; height: 40px; align-items: center; padding: 0 16px; border-radius: 999px; background: var(--accent); color: var(--ink); font-weight: 800; font-size: 14px; transform: translateY(8px); opacity: 0; transition: .5s var(--ease); }
.dest-card:hover .dest-card__cta { transform: none; opacity: 1; }
.dest-end { flex: 0 0 auto; width: clamp(260px, 26vw, 380px); height: min(56vh, 560px); display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: 30px; border-radius: var(--r-lg); border: 2px dashed rgba(243,232,204,.4); }
.dest-end p { margin: 0; font-family: var(--f-display); font-size: clamp(40px, 4vw, 64px); line-height: .95; text-transform: uppercase; }
.dest__bar { height: 3px; }
.dest__bar i { display: block; height: 3px; background: var(--sun); border-radius: 3px; transform-origin: left; transform: scaleX(0); }

/* ---------------- Afghanistan ---------------- */
.afg { position: relative; background: var(--tomato); color: var(--cream); padding: clamp(110px, 14vw, 200px) 0; overflow: hidden; }
.afg__bg { position: absolute; top: 50%; left: 0; white-space: nowrap; font-family: var(--f-display); font-size: 34vw; line-height: .8; color: rgba(0,0,0,.08); transform: translateY(-50%); pointer-events: none; text-transform: uppercase; will-change: transform; }
.afg__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.afg__title { font-family: var(--f-display); font-weight: 400; text-transform: uppercase; font-size: clamp(52px, 6.6vw, 110px); line-height: .92; margin: 0 0 26px; }
.afg__title em.serif { color: var(--sun); }
.afg__lede { font-size: 18px; max-width: 520px; margin: 0 0 30px; }
.afg__list { list-style: none; padding: 0; margin: 0 0 36px; max-width: 520px; }
.afg__list li { display: flex; gap: 18px; align-items: center; padding: 16px 0; border-top: 1.5px solid rgba(243,232,204,.35); font-weight: 700; font-size: 18px; transition: padding .4s var(--ease), color .3s; }
.afg__list li:last-child { border-bottom: 1.5px solid rgba(243,232,204,.35); }
.afg__list li:hover { padding-left: 12px; color: var(--sun); }
.afg__list span { font-family: var(--f-serif); font-style: italic; font-size: 20px; opacity: .7; }
.afg__actions { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.afg__note { margin: 26px 0 0; font-size: 13px; opacity: .75; max-width: 460px; }
.afg__media { position: relative; height: min(80vh, 700px); }
.afg__img { position: absolute; margin: 0; border-radius: var(--r-lg); overflow: hidden; border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--ink); }
.afg__img img { width: 100%; height: 100%; object-fit: cover; }
.afg__img--1 { left: 0; top: 0; width: 76%; height: 64%; }
.afg__img--2 { right: 0; bottom: 0; width: 60%; height: 50%; }
.afg__stamp { position: absolute; left: 6%; bottom: 8%; width: 130px; height: 130px; border-radius: 50%; background: var(--sun); color: var(--ink); border: 2px dashed var(--ink); display: grid; place-items: center; text-align: center; font-family: var(--f-display); font-size: 17px; line-height: 1.1; text-transform: uppercase; transform: rotate(-14deg); box-shadow: 0 0 0 6px var(--sun); }

/* ---------------- Vlogs ---------------- */
.vlogs { background: var(--sun); padding: clamp(100px, 12vw, 170px) 0; overflow: hidden; }
.vlog-rail { cursor: grab; user-select: none; -webkit-user-select: none; }
.vlog-rail.is-drag { cursor: grabbing; }
.vlog-rail__track { display: flex; gap: 20px; padding: 0 var(--gutter); width: max-content; will-change: transform; }
.vlog { flex: 0 0 auto; width: clamp(280px, 30vw, 440px); background: var(--paper); border: 2px solid var(--ink); border-radius: var(--r-lg); padding: 10px; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.vlog:hover { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 8px 0 var(--ink); }
.vlog__media { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 16 / 9.4; background: var(--ink); }
.vlog__media img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; transition: transform 1s var(--ease); }
.vlog:hover .vlog__media img { transform: scale(1.06); }
.vlog__play { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border-radius: 50%; background: var(--tomato); color: var(--cream); display: grid; place-items: center; font-size: 20px; transform: scale(.8); opacity: 0; transition: .45s var(--ease); }
.vlog:hover .vlog__play { transform: scale(1); opacity: 1; }
.vlog__body { padding: 16px 8px 8px; }
.vlog__place { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--tomato); }
.vlog__title { margin: 6px 0 0; font-size: 19px; line-height: 1.25; font-weight: 700; }

/* ---------------- Social ---------------- */
.social { background: var(--paper); padding: clamp(80px, 10vw, 140px) 0; }
.social__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.social-card { position: relative; display: flex; flex-direction: column; min-height: 360px; padding: 32px; border-radius: var(--r-lg); border: 2px solid var(--ink); overflow: hidden; color: var(--cream); isolation: isolate; }
.social-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--ink); transform: scaleY(0); transform-origin: bottom; transition: transform .7s var(--ease); }
.social-card:hover::before { transform: scaleY(1); }
.social-card--yt { background: var(--tomato); }
.social-card--ig { background: linear-gradient(135deg, var(--carrot), var(--tomato) 60%, #b0147a); }
.social-card__tag { font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: 13px; }
.social-card__handle { font-family: var(--f-serif); font-style: italic; font-size: 30px; }
.social-card__big { margin-top: auto; font-family: var(--f-display); font-size: clamp(70px, 9vw, 150px); line-height: .85; text-transform: uppercase; display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap; }
.social-card__big small { font-family: var(--f-body); font-size: 17px; font-weight: 700; text-transform: none; padding-bottom: 12px; }
.social-card__go { position: absolute; top: 26px; right: 26px; width: 64px; height: 64px; border-radius: 50%; background: var(--cream); color: var(--ink); display: grid; place-items: center; font-size: 26px; transition: transform .6s var(--ease), background .4s; }
.social-card:hover .social-card__go { transform: rotate(45deg); background: var(--sun); }

/* ---------------- Contact ---------------- */
.contact { background: var(--forest); color: var(--cream); padding: clamp(100px, 12vw, 170px) 0; border-radius: 48px 48px 0 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.contact__title { font-family: var(--f-display); font-weight: 400; font-size: clamp(56px, 7vw, 120px); line-height: .9; text-transform: uppercase; margin: 0 0 26px; }
.hl { position: relative; color: var(--ink); z-index: 0; padding: 0 .08em; }
.hl::before { content: ""; position: absolute; inset: .06em -.02em 0; background: var(--sun); z-index: -1; transform: rotate(-2deg); border-radius: 6px; }
.contact__text p { font-size: 18px; max-width: 460px; opacity: .9; }
.contact__perks { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 10px; font-weight: 700; }
.form { background: var(--cream); color: var(--ink); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 40px); border: 2px solid var(--ink); box-shadow: 10px 10px 0 var(--sun); display: flex; flex-direction: column; gap: 16px; }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 16px; color: var(--ink);
  background: var(--paper); border: 2px solid rgba(27,21,16,.2); border-radius: 16px;
  padding: 26px 18px 10px; outline: none; transition: border-color .3s, background .3s; appearance: none; -webkit-appearance: none;
}
.field select { cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 22px) 55%, calc(100% - 16px) 55%; background-size: 6px 6px; background-repeat: no-repeat; }
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--carrot); background: #fff; }
.field label { position: absolute; left: 20px; top: 18px; font-size: 16px; color: rgba(27,21,16,.55); pointer-events: none; transition: transform .3s var(--ease), font-size .3s, color .3s; transform-origin: left; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label, .field label.is-up { transform: translateY(-10px); font-size: 12px; font-weight: 700; color: var(--carrot); }
.field.is-error input { border-color: var(--tomato); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.budget { border: 0; padding: 0; margin: 0; display: flex; gap: 8px; flex-wrap: wrap; }
.budget legend { font-size: 13px; font-weight: 700; margin-bottom: 8px; padding: 0; }
.budget label { flex: 1; min-width: 110px; }
.budget input { position: absolute; opacity: 0; pointer-events: none; }
.budget span { display: flex; justify-content: center; align-items: center; height: 48px; border-radius: 999px; border: 2px solid rgba(27,21,16,.2); font-weight: 700; font-size: 15px; cursor: pointer; transition: .3s var(--ease); }
.budget input:checked + span { background: var(--ink); color: var(--sun); border-color: var(--ink); }
.budget input:focus-visible + span { outline: 3px solid var(--carrot); outline-offset: 2px; }
.form__status { margin: 0; font-weight: 700; min-height: 1.4em; font-size: 15px; }
.form__status.is-ok { color: var(--forest); }
.form__status.is-err { color: var(--tomato); }

/* ---------------- Footer ---------------- */
.footer { background: var(--ink); color: var(--cream); padding: clamp(70px, 9vw, 120px) 0 30px; overflow: hidden; }
.footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer__cta { margin: 0; font-size: 22px; font-weight: 700; }
.footer__big-link { font-family: var(--f-display); font-size: clamp(56px, 7vw, 110px); text-transform: uppercase; color: var(--sun); line-height: 1; display: inline-block; transition: color .3s, transform .5s var(--ease); }
.footer__big-link:hover { color: var(--carrot); transform: translateX(10px); }
.footer__cols { display: flex; gap: 70px; }
.footer__cols h4 { margin: 0 0 14px; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--sun); }
.footer__cols a { display: block; padding: 4px 0; opacity: .85; transition: opacity .3s, transform .3s var(--ease); }
.footer__cols a:hover { opacity: 1; transform: translateX(4px); }
.footer__word { display: flex; justify-content: space-between; font-family: var(--f-display); font-size: clamp(56px, 14.2vw, 240px); line-height: .9; margin: clamp(50px, 7vw, 100px) 0 24px; text-transform: uppercase; }
.footer__word span { display: inline-block; color: var(--c); transition: transform .5s var(--ease); }

.footer__gap { width: .25em; }
.footer__word span:hover { transform: translateY(-14%) rotate(-6deg); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid rgba(243,232,204,.2); font-size: 14px; opacity: .75; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1100px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2), .stat:nth-child(4) { transform: none; }
  .stat { min-height: 240px; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  body { font-size: 16px; }
  .header { grid-template-columns: 1fr auto; padding: 0 calc(var(--gutter) + 8px); }
  .header::before { inset: 8px calc(var(--gutter) - 6px); }
  .nav, .header__cta { display: none; }
  .header { grid-template-columns: 1fr auto auto; gap: 10px; }
  .lang { height: 44px; padding-left: 12px; gap: 5px; }
  html[dir="rtl"] .lang { padding-right: 12px; }
  .lang__name { display: none; }
  .lang__code { display: inline; }
  .burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-card--media { min-height: 0; aspect-ratio: 4 / 3.6; }
  .sticker--2 { left: -8px; } .sticker--3 { right: -8px; top: 58%; }
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .about__grid, .afg__grid, .contact__grid, .process__pin { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin: 0 auto 30px; width: 86%; }
  .about__cols { grid-template-columns: 1fr; }
  .process__media { height: 34vh; }
  .process__pin { padding-top: calc(var(--header-h) + 10px); gap: 24px; align-content: center; }
  .process__content .h2 { font-size: clamp(32px, 8vw, 50px); margin-bottom: 16px; }
  .step { padding: 12px 0; grid-template-columns: 50px 1fr; }
  .step__n { font-size: 26px; } .step h3 { font-size: 18px; }
  .afg__media { height: 480px; }
  .map__head { flex-direction: column; align-items: flex-start; }
  .map__svg { max-height: none; }
  .social__grid { grid-template-columns: 1fr; }
  .social-card { min-height: 280px; }
}

@media (max-width: 640px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { min-height: 190px; padding: 20px 18px; }
  .stat__icon { width: 40px; height: 40px; top: 14px; right: 14px; font-size: 15px; }
  .stat__label { font-size: 14px; }
  .tabs { border-radius: 24px; }
  .tab { height: 38px; padding: 0 12px; font-size: 14px; }
  .tab__pill { height: 38px; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: space-between; }
  .badge-spin { width: 88px; height: 88px; top: 12px; right: 12px; }
  .badge-spin text { font-size: 10px; }
  .badge-spin > span { width: 36px; height: 36px; font-size: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .about__polaroid { width: 52%; }
  .about__polaroid--1 { right: -8%; } .about__polaroid--2 { left: -8%; }
  .afg__stamp { width: 100px; height: 100px; font-size: 14px; }
  .footer__cols { gap: 40px; }
  .dest-card, .dest-end { height: 58vh; width: 78vw; }
}

@media (max-width: 360px) {
  .header { gap: 6px; padding: 0 calc(var(--gutter) + 4px); }
  .logo__text { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* flags */
.flag { display: inline-block; width: 1.35em; height: 1em; object-fit: cover; border-radius: 3px; vertical-align: -0.14em; box-shadow: 0 0 0 1px rgba(27,21,16,.15); }
.map-chip i .flag { width: 100%; height: 100%; border-radius: 50%; }
.map-chip i { overflow: hidden; }
.map__tip b .flag { margin-right: 4px; }
.afg__stamp img { width: 42px; height: 28px; object-fit: cover; border-radius: 3px; display: inline-block; }

/* ---------------- Languages (js/i18n.js) ---------------- */
/* Scripts with tall vowel marks (Devanagari, Thai, Lao, Khmer, Perso-Arabic) need more room
   than the tight Latin display settings, and letter-spacing breaks their shaping. */
html.i18n-complex *, html.i18n-complex *::before, html.i18n-complex *::after { letter-spacing: 0 !important; }
html.i18n-complex .h2, html.i18n-complex .afg__title, html.i18n-complex .contact__title,
html.i18n-complex .dest-card h3, html.i18n-complex .pkg__title, html.i18n-complex .footer__cta,
html.i18n-complex .menu__nav a, html.i18n-complex .loader__word { line-height: 1.35; }
html.i18n-complex .reveal__word { line-height: 1.3; }
/* the script fonts' regular weight looks thin next to Anton — use their heavy cuts */
html.i18n-complex .h2, html.i18n-complex .reveal__word, html.i18n-complex .afg__title, html.i18n-complex .contact__title,
html.i18n-complex .dest-card h3, html.i18n-complex .pkg__title, html.i18n-complex .footer__cta, html.i18n-complex .footer__big-link,
html.i18n-complex .menu__nav a, html.i18n-complex .loader__word, html.i18n-complex .afg__bg { font-weight: 800; }
html.i18n-complex .h2 em.serif, html.i18n-complex .afg__title em.serif { font-weight: 700; }
html[lang="ru"] .h2, html[lang="kk"] .h2, html[lang="ky"] .h2, html[lang="tg"] .h2 { font-weight: 600; }
html.i18n-complex .h2 em.serif { line-height: 1.1; }
html.i18n-complex .split .w { padding-top: .3em; margin-top: -.3em; }
html.i18n-complex .about__statement { line-height: 1.5; }
html.i18n-complex .roles { height: 1.6em; }

/* Right-to-left (Dari, Pashto): the layout mirrors, but the horizontally scrolling
   strips and the map keep their left-to-right mechanics. */
html[dir="rtl"] .marquee, html[dir="rtl"] .dest__pin, html[dir="rtl"] .vlog-rail, html[dir="rtl"] .map__stage { direction: ltr; }
html[dir="rtl"] .dest__head, html[dir="rtl"] .dest-card__body, html[dir="rtl"] .dest-end, html[dir="rtl"] .vlog { direction: rtl; }
html[dir="rtl"] .btn__arrow, html[dir="rtl"] .link-arrow i, html[dir="rtl"] .footer__big-link { unicode-bidi: plaintext; }
html[dir="rtl"] .btn { padding: 0 26px 0 10px; }
html[dir="rtl"] .btn--sm { padding-right: 20px; padding-left: 10px; }
html[dir="rtl"] .lang__select { padding: 0 0 0 16px; background-position: 6px 55%, 2px 55%; }
html[dir="rtl"] .eyebrow { letter-spacing: 0; }
html[dir="rtl"] .stat__num, html[dir="rtl"] .social-card__big { direction: ltr; unicode-bidi: isolate; }
html[dir="rtl"] .stat__num { text-align: right; }
html[dir="rtl"] .footer__word, html[dir="rtl"] .hero__title, html[dir="rtl"] .logo { direction: ltr; }
html[dir="rtl"] .hero__title { text-align: right; }
html[dir="rtl"] .btn:hover .btn__arrow { transform: rotate(45deg); }
