/* ============================================================
   ASIL TEK GROUP: design system
   Layout: "the passport spread". A sticky photo page (the pane) beside a
   scrolling paper page, bound by a gold spine. Mobile stacks the pages.
   Palette: logo navy, Bosphorus night, Asil gold, Marmara ivory (paper)
   Type: Cormorant (display) + Plus Jakarta Sans (body) for EN/TR,
         Cormorant (display, Cyrillic subset) + Manrope (body) for RU,
         Markazi Text (display) + Vazirmatn (body) for FA/AR (all [dir="rtl"] rules)
   Signature: the orbit lens (the swoosh of the logo, made into a round
   window with a travelling gold satellite) that irises open into the photos
   ============================================================ */

:root {
  --navy:        #101C2D;
  --navy-deep:   #0A1322;
  --navy-soft:   #18273D;
  --ivory:       #F4EFE4;
  --ivory-deep:  #E9E1D0;
  --ink:         #161C2A;
  --gold:        #C9A45A;
  --gold-bright: #EAD08A;
  --gold-ink:    #9A782C;
  --gold-text:   #7A5E1E; /* the same gold, deep enough to read as small text on ivory (5.3:1) */
  --hairline-d:  rgba(244, 239, 228, .13);
  --hairline-l:  rgba(22, 28, 42, .14);
  --font-display: "Cormorant", "Georgia", "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", -apple-system, sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --nav-h: 68px;
  --pane-w: 46%;
  --wrap: 1280px;
}
:root[dir="rtl"] {
  --font-display: "Markazi Text", "Vazirmatn", "Noto Naskh Arabic", serif;
  --font-body: "Vazirmatn", "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
}
:root[lang="ru"] {
  --font-body: "Manrope", "Plus Jakarta Sans", "Segoe UI", -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 1rem); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
:root[dir="rtl"] body { line-height: 1.95; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
figure { margin: 0; }
ol, ul { list-style: none; }
::selection { background: var(--gold); color: var(--navy-deep); }
:focus-visible { outline: 2px solid var(--gold-ink); outline-offset: 3px; border-radius: 2px; }
.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }

/* ---------- Shared type ---------- */
.eyebrow {
  font: 600 .74rem/1.4 var(--font-body);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-text);
}
:root[dir="rtl"] .eyebrow { letter-spacing: 0; text-transform: none; font-size: .95rem; font-weight: 500; }
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 3.5vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -.005em;
  color: var(--navy);
  margin: .8rem 0 1.4rem;
  max-width: 22ch;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.12;
  color: var(--navy);
}
:root[dir="rtl"] .h2 { line-height: 1.32; letter-spacing: 0; font-weight: 600; font-size: clamp(2.4rem, 3.8vw, 3.8rem); }
:root[dir="rtl"] .h3 { line-height: 1.4; font-weight: 600; }
.lead { font-size: clamp(1.02rem, 1.25vw, 1.12rem); line-height: 1.75; max-width: 34rem; color: rgba(22, 28, 42, .9); }
:root[dir="rtl"] .lead { line-height: 1.95; }
.body { max-width: 34rem; margin-top: 1rem; color: rgba(22, 28, 42, .82); }

/* Line mask reveals (activated only when JS + animation available) */
.line { display: block; overflow: hidden; padding-block: .06em; margin-block: -.06em; }
.line-inner { display: block; }
html.js .line-inner { transform: translateY(114%); }
html.js [data-reveal] { opacity: 0; transform: translateY(30px); }

/* ---------- Skip link ---------- */
.skip {
  position: fixed; top: .6rem; inset-inline-start: .6rem; z-index: 400;
  padding: .7rem 1.1rem; border-radius: 999px;
  background: var(--gold-bright); color: var(--navy-deep);
  font: 600 .88rem/1 var(--font-body);
  transform: translateY(-200%);
  transition: transform .3s var(--ease-out);
}
.skip:focus { transform: translateY(0); outline: 2px solid var(--navy); }

/* ---------- Language suggestion bar (English page only) ---------- */
.langbar {
  position: fixed; bottom: 1.2rem; left: 50%; z-index: 260;
  transform: translate(-50%, 140%);
  display: flex; align-items: center; gap: 1rem;
  max-width: min(92vw, 560px);
  padding: .75rem .8rem .75rem 1.2rem;
  border-radius: 999px;
  background: rgba(10, 19, 34, .94);
  border: 1px solid rgba(234, 208, 138, .3);
  box-shadow: 0 20px 50px rgba(4, 9, 18, .4);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  transition: transform .5s var(--ease-out);
  font-family: "Vazirmatn", "Manrope", "Plus Jakarta Sans", sans-serif;
  color: var(--ivory);
}
.langbar[dir="rtl"] { padding: .75rem 1.2rem .75rem .8rem; }
.langbar.is-in { transform: translate(-50%, 0); }
.langbar p { font-size: .92rem; line-height: 1.5; }
.langbar-go {
  flex: none; padding: .55rem 1.05rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #2A1F08; font-weight: 700; font-size: .86rem; opacity: 1; border: 0;
}
.langbar-close { flex: none; width: 32px; height: 32px; border-radius: 50%; font-size: 1.3rem; line-height: 1; opacity: .6; }
.langbar-close:hover { opacity: 1; background: rgba(244, 239, 228, .1); }
@media (max-width: 640px) {
  .langbar { flex-wrap: wrap; border-radius: 20px; padding: .9rem 1rem; bottom: 5.4rem; }
  .langbar p { flex: 1 1 100%; }
}

/* ---------- Film grain ---------- */
.grain {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 250;
  opacity: .05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* ---------- Preloader ---------- */
.preloader { position: fixed; inset: 0; z-index: 300; background: var(--navy-deep); display: grid; place-items: center; color: var(--ivory); }
html:not(.js) .preloader { display: none; }
.pre-inner { text-align: center; }
.pre-mark { position: relative; width: clamp(110px, 16vw, 160px); margin: 0 auto 1.4rem; }
.pre-mark img { width: 100%; height: auto; opacity: 0; transform: scale(.86); }
.pre-orbit { position: absolute; inset: -34%; width: 168%; height: 168%; overflow: visible; }
.pre-orbit-ring { stroke-dasharray: 100; stroke-dashoffset: 100; }
.pre-word { display: flex; gap: .06em; overflow: hidden; justify-content: center; }
.pre-word span {
  font-family: "Cormorant", var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 5.6vw, 3.1rem);
  letter-spacing: .1em;
  color: var(--ivory);
  display: inline-block;
  transform: translateY(130%);
}
.pre-word .pre-gap { width: .35em; }
.pre-word span:nth-child(-n+4) {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.pre-bar { width: min(240px, 56vw); height: 1px; background: rgba(244, 239, 228, .14); margin: 1.4rem auto .9rem; overflow: hidden; }
.pre-bar-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transform: scaleX(0); transform-origin: left; }
[dir="rtl"] .pre-bar-fill { transform-origin: right; background: linear-gradient(-90deg, var(--gold), var(--gold-bright)); }
.pre-tag { font-size: .64rem; letter-spacing: .3em; text-transform: uppercase; opacity: .45; }
:root[dir="rtl"] .pre-tag { letter-spacing: 0; font-size: .82rem; }

/* ---------- Navigation (a navy bar that frames the spread) ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(234, 208, 138, .16);
  color: var(--ivory);
}
.nav-inner {
  height: 100%;
  padding-inline: clamp(1.1rem, 2.6vw, 2.2rem);
  display: flex; align-items: center; justify-content: space-between; gap: clamp(.6rem, 3vw, 2rem);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; min-width: 0; }
.brand-mark { width: 34px; height: auto; flex: none; }
.brand-name { font: 700 .84rem/1 var(--font-body); letter-spacing: .22em; white-space: nowrap; direction: ltr; }
:root[dir="rtl"] .brand-name { font-family: "Plus Jakarta Sans", var(--font-body); }
.nav-links { display: flex; gap: clamp(.9rem, 1.7vw, 1.8rem); }
.nav-links a {
  font: 500 .88rem/1 var(--font-body);
  color: rgba(244, 239, 228, .82);
  position: relative; padding-block: .4rem;
  white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; inset-inline-start: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold-bright);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
[dir="rtl"] .nav-links a::after { transform-origin: left; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ivory); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
[dir="rtl"] .nav-links a:hover::after, [dir="rtl"] .nav-links a:focus-visible::after { transform-origin: right; }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }

.lang { display: inline-flex; align-items: center; gap: .4rem; }
.lang-sep { opacity: .3; font-size: .8rem; }
.lang-btn {
  font: 600 .8rem/1 var(--font-body);
  letter-spacing: .06em;
  opacity: .55;
  padding: .35rem .15rem;
  border-bottom: 1px solid transparent;
  transition: opacity .3s, border-color .3s, color .3s;
}
.lang-btn[aria-current="page"] { opacity: 1; color: var(--gold-bright); border-color: var(--gold-bright); }
.lang-btn:hover { opacity: 1; }
.lang-native { gap: 1.1rem; }
.lang-native .lang-btn { font-size: .95rem; letter-spacing: 0; }
.lang-native .lang-btn[lang="fa"] { font-family: "Vazirmatn", var(--font-body); }
.lang-col { flex-direction: column; align-items: flex-start; gap: .55rem; }

.burger { display: none; width: 40px; height: 40px; position: relative; z-index: 130; }
.burger span { position: absolute; left: 8px; right: 8px; height: 2px; background: var(--ivory); transition: transform .4s var(--ease-out), top .4s var(--ease-out); }
.burger span:first-child { top: 15px; }
.burger span:last-child { top: 23px; }
.burger.is-open span:first-child { top: 19px; transform: rotate(45deg); }
.burger.is-open span:last-child { top: 19px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mmenu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--navy-deep); color: var(--ivory);
  transform: translateY(-102%);
  transition: transform .55s var(--ease-out);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: calc(var(--nav-h) + 1.5rem) clamp(1.5rem, 8vw, 4rem) 3rem;
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
  visibility: hidden;
}
.mmenu.is-open { transform: translateY(0); visibility: visible; }
.mmenu-links { display: flex; flex-direction: column; gap: 1rem; }
.mmenu-links a { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 8.5vw, 3rem); line-height: 1.1; }
:root[dir="rtl"] .mmenu-links a { line-height: 1.5; }
.mmenu-links a:hover { color: var(--gold-bright); }
.mmenu-foot { margin-top: 2.6rem; display: flex; flex-direction: column; gap: .8rem; font-size: .95rem; opacity: .85; }
.mmenu-foot a { direction: ltr; unicode-bidi: isolate; width: max-content; }
.mmenu-wa { display: inline-flex; align-items: center; gap: .55rem; font-weight: 600; }
.mmenu-wa .wa-glyph { width: 17px; height: 17px; color: #2EE07A; }
.lang-wrap { flex-wrap: wrap; gap: .5rem 1.1rem; }
.mmenu.is-open ~ .wa, .mmenu.is-open ~ .langbar { display: none; }
.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; }

/* ---------- The spread ---------- */
.book {
  position: relative;
  display: grid;
  grid-template-columns: var(--pane-w) 1fr;
  padding-top: var(--nav-h);
  background: var(--ivory);
}

/* The photo page */
.pane { position: relative; background: var(--navy); }
.pane-inner {
  position: sticky; top: var(--nav-h);
  height: calc(100vh - var(--nav-h)); height: calc(100svh - var(--nav-h));
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, var(--navy-soft) 0%, var(--navy) 55%, var(--navy-deep) 100%);
}
.layer { position: absolute; inset: 0; opacity: 0; visibility: hidden; }
.layer.is-active { opacity: 1; visibility: visible; }
.layer > img { width: 100%; height: 100%; object-fit: cover; }
.layer::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 19, 34, .12) 0%, rgba(10, 19, 34, 0) 30%, rgba(10, 19, 34, 0) 60%, rgba(10, 19, 34, .55) 100%);
}
.layer-lens::after { display: none; }
.pane-cap {
  position: absolute; z-index: 3;
  bottom: 1.5rem; inset-inline-start: clamp(1.2rem, 2.6vw, 2.2rem);
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(244, 239, 228, .9);
  text-shadow: 0 1px 12px rgba(4, 9, 18, .6);
  display: inline-flex; align-items: center; gap: .7rem;
}
.pane-cap::before { content: ""; width: 22px; height: 1px; background: var(--gold-bright); }
:root[dir="rtl"] .pane-cap { letter-spacing: 0; text-transform: none; font-size: .86rem; }
.pane-inset {
  position: absolute; z-index: 2;
  bottom: 4.6rem; inset-inline-end: clamp(1.2rem, 2.6vw, 2.2rem);
  width: 27%; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(234, 208, 138, .5), 0 24px 50px rgba(4, 9, 18, .55);
}
.pane-inset img { width: 100%; height: 100%; object-fit: cover; }
.pane-map {
  position: absolute; z-index: 3;
  bottom: 4.4rem; inset-inline-end: clamp(1.2rem, 2.6vw, 2.2rem);
  width: min(52%, 360px);
  padding: .9rem 1rem .7rem;
  border-radius: 18px;
  background: rgba(10, 19, 34, .68);
  border: 1px solid rgba(234, 208, 138, .22);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(4, 9, 18, .45);
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s ease, transform .6s var(--ease-out);
}
.pane-map.is-on { opacity: 1; transform: none; }
.pane-map svg { width: 100%; height: auto; overflow: visible; }
.map-land { fill: rgba(244, 239, 228, .07); stroke: rgba(234, 208, 138, .85); stroke-width: 1.4; stroke-linejoin: round; }
.pin-dot { fill: rgba(234, 208, 138, .6); transition: fill .4s; }
.pin-halo { fill: transparent; transition: fill .4s; }
.pin.is-active .pin-dot { fill: #F6E3A6; }
.pin.is-active .pin-halo { fill: rgba(240, 216, 150, .28); animation: pin-pulse 1.8s ease-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes pin-pulse { 0% { transform: scale(.5); opacity: 1; } 100% { transform: scale(2.2); opacity: 0; } }

/* Lens (the signature), inside the pane and inline on small screens */
.layer-lens { display: grid; place-items: center; }
.lens { position: relative; width: min(70%, 600px); aspect-ratio: 1 / 1; margin-inline: auto; }
.lens-photo {
  position: absolute; inset: 0; z-index: 1;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(234, 208, 138, .28), 0 40px 90px rgba(4, 9, 18, .6), 0 0 120px rgba(201, 164, 90, .12);
  transform: translateZ(0);
}
.lens-photo::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 60px rgba(10, 19, 34, .55); pointer-events: none; }
.lens-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.lens-orbit { position: absolute; inset: -22%; width: 144%; height: 144%; overflow: visible; pointer-events: none; }
.lens-orbit-back { z-index: 0; }
.lens-orbit-front { z-index: 2; }
.orbit-sat { filter: drop-shadow(0 0 6px rgba(240, 216, 150, .9)); }
.hero-mobile-lens { display: none; }

/* The spine */
.spine {
  position: absolute; top: 0; bottom: 0; z-index: 6;
  inset-inline-start: var(--pane-w);
  width: 2px; margin-inline-start: -1px;
  background: rgba(22, 28, 42, .1);
  pointer-events: none;
}
.spine-fill { position: absolute; inset: 0; background: linear-gradient(180deg, var(--gold-bright), var(--gold)); transform: scaleY(0); transform-origin: top; }
.spine-marker {
  position: absolute; left: 50%; top: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 14px rgba(234, 208, 138, .9);
  transform: translate(-50%, -50%);
}
.spine-dot {
  position: absolute; left: 50%;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ivory);
  border: 1.5px solid rgba(154, 120, 44, .55);
  transform: translate(-50%, -50%);
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.spine-dot.is-on { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 10px rgba(201, 164, 90, .7); }

/* The paper page */
.paper { position: relative; min-width: 0; padding-inline: clamp(2rem, 5vw, 5.5rem) clamp(1.5rem, 4vw, 4rem); }
.pg { position: relative; padding-block: clamp(4.5rem, 7vw, 6.5rem); border-top: 1px solid var(--hairline-l); }
.pg > .eyebrow { display: inline-flex; align-items: center; gap: .8rem; }
.pg-media { display: none; }
.pg-hero {
  border-top: 0;
  min-height: calc(100vh - var(--nav-h)); min-height: calc(100svh - var(--nav-h));
  display: flex; flex-direction: column; justify-content: center;
  padding-block: 5rem 6rem;
}
.hero-eyebrow { margin-bottom: 1.4rem; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  color: var(--navy);
}
:root[dir="rtl"] .hero-title { line-height: 1.3; letter-spacing: 0; font-weight: 600; font-size: clamp(2.7rem, 4.8vw, 4.8rem); }
.hero-accent {
  font-style: italic; font-weight: 500;
  background: linear-gradient(105deg, #B08A3C 0%, var(--gold) 45%, #C9A45A 70%, #8F6E24 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-inline-end: .08em;
}
:root[dir="rtl"] .hero-accent { font-style: normal; font-weight: 700; }
.hero-sub { margin-top: 1.8rem; max-width: 34rem; font-size: clamp(1rem, 1.25vw, 1.08rem); line-height: 1.8; color: rgba(22, 28, 42, .84); }
.hero-cta { margin-top: 2.2rem; display: flex; gap: .9rem; flex-wrap: wrap; }
.scroll-cue { position: absolute; bottom: 1.4rem; inset-inline-start: 0; display: flex; align-items: center; gap: .8rem; }
.scroll-cue-line { position: relative; width: 44px; height: 1px; background: rgba(22, 28, 42, .18); overflow: hidden; }
.scroll-cue-line::after { content: ""; position: absolute; top: 0; left: -14px; width: 14px; height: 1px; background: var(--gold-ink); animation: cue-run 2.2s cubic-bezier(.45, 0, .6, 1) infinite; }
[dir="rtl"] .scroll-cue-line::after { animation-name: cue-run-rtl; left: auto; right: -14px; }
@keyframes cue-run { 0% { left: -14px; } 60%, 100% { left: 46px; } }
@keyframes cue-run-rtl { 0% { right: -14px; } 60%, 100% { right: 46px; } }
.scroll-cue-label { font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: rgba(22, 28, 42, .5); }
:root[dir="rtl"] .scroll-cue-label { letter-spacing: 0; text-transform: none; font-size: .8rem; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.85rem;
  border-radius: 999px;
  font: 600 .92rem/1 var(--font-body);
  letter-spacing: .02em;
  overflow: hidden;
  white-space: nowrap;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s, color .3s, background-color .3s;
}
:root[dir="rtl"] .btn { letter-spacing: 0; font-size: .98rem; padding-block: .85rem; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .3) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .7s ease;
}
.btn:hover::after { transform: translateX(130%); }
[dir="rtl"] .btn::after { transform: translateX(130%); }
[dir="rtl"] .btn:hover::after { transform: translateX(-130%); }
.btn-gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #2A1F08; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 164, 90, .35); }
.btn-navy { background: var(--navy); color: var(--ivory); }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16, 28, 45, .28); }
.btn-line { border: 1px solid rgba(22, 28, 42, .35); color: var(--navy); }
.btn-line:hover { border-color: var(--gold-ink); color: var(--gold-ink); transform: translateY(-2px); }
.btn-line-light { border-color: rgba(244, 239, 228, .4); color: var(--ivory); }
.btn-line-light:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-sm { padding: .66rem 1.2rem; font-size: .82rem; }
:root[dir="rtl"] .btn-sm { font-size: .9rem; }

/* ---------- About ---------- */
.stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-top: 2.4rem; padding-top: 2rem;
  border-top: 1px solid var(--hairline-l);
  max-width: 34rem;
}
.stat-num { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.1rem, 3vw, 2.8rem); line-height: 1; color: var(--navy); }
:root[dir="rtl"] .stat-num { font-family: var(--font-body); font-weight: 600; font-size: clamp(1.9rem, 2.6vw, 2.4rem); }
.stat-label { font-size: .82rem; letter-spacing: .02em; opacity: .66; margin-top: .45rem; line-height: 1.5; }
:root[dir="rtl"] .stat-label { letter-spacing: 0; }

/* ---------- Services (an editorial list, not cards) ---------- */
.svc-list { margin-top: 2.4rem; border-top: 1px solid var(--hairline-l); }
.svc-row { position: relative; padding: 1.7rem 0 1.8rem; border-bottom: 1px solid var(--hairline-l); transition: opacity .5s ease; }
html.js .pane-live .svc-row { opacity: .62; }
html.js .pane-live .svc-row.is-active { opacity: 1; }
.svc-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 2.3vw, 2.15rem); line-height: 1.1;
  color: var(--navy);
  display: flex; align-items: center; gap: .8rem;
}
.svc-title::before {
  content: ""; flex: none;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  opacity: 0; transform: scale(.3);
  transition: opacity .4s, transform .5s var(--ease-out);
}
.svc-row.is-active .svc-title::before { opacity: 1; transform: none; }
:root[dir="rtl"] .svc-title { line-height: 1.45; font-weight: 600; }
.svc-desc { margin-top: .6rem; max-width: 34rem; font-size: .95rem; line-height: 1.7; color: rgba(22, 28, 42, .82); }
:root[dir="rtl"] .svc-desc { line-height: 1.9; }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .9rem; }
.chip {
  border: 1px solid rgba(154, 120, 44, .45);
  color: var(--gold-text);
  border-radius: 999px;
  padding: .26rem .78rem;
  font: 600 .72rem/1.3 var(--font-body);
  letter-spacing: .04em;
}
:root[dir="rtl"] .chip { letter-spacing: 0; font-size: .82rem; font-weight: 500; }
.chip-link { position: relative; display: inline-block; transition: background-color .3s, color .3s, border-color .3s; }
.chip-link::before { content: ""; position: absolute; inset: -8px 0; }
.chip-link:hover, .chip-link:focus-visible { background: var(--gold-ink); border-color: var(--gold-ink); color: var(--ivory); }
.svc-note {
  margin-top: 1.8rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; line-height: 1.5;
  color: rgba(22, 28, 42, .68);
  max-width: 34rem;
}
:root[dir="rtl"] .svc-note { font-style: normal; font-family: var(--font-body); font-size: 1rem; }
.svc-all {
  margin-top: 2.4rem;
  background: var(--navy); color: var(--ivory);
  border-radius: 22px;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  box-shadow: 0 30px 60px rgba(16, 28, 45, .18);
}
.svc-all .h3 { color: var(--ivory); }
.svc-all p { margin-top: .8rem; max-width: 32rem; color: rgba(244, 239, 228, .82); font-size: .96rem; }
.band-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---------- Journey (four tracks, tabs when JavaScript runs, stacked otherwise) ---------- */
.jn-tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }
.jn-tab {
  min-height: 40px; padding: .55rem 1.05rem; border-radius: 999px;
  border: 1px solid rgba(154, 120, 44, .45); color: var(--gold-text);
  font: 600 .82rem/1.2 var(--font-body); letter-spacing: .03em;
  transition: background-color .3s, color .3s, border-color .3s, transform .4s var(--ease-out);
}
:root[dir="rtl"] .jn-tab { letter-spacing: 0; font-size: .92rem; }
.jn-tab:hover { border-color: var(--gold-ink); transform: translateY(-1px); }
.jn-tab.is-active { background: var(--navy); border-color: var(--navy); color: var(--ivory); }
.jn-track-h { margin-top: 2.2rem; font-size: clamp(1.3rem, 1.8vw, 1.6rem); }
.pg-journey.has-tabs .jn-track-h { display: none; }
.pg-journey:not(.has-tabs) .jn-tabs { display: none; }
.jn-track[hidden] { display: none; }
.jn-steps { margin-top: 1.4rem; }
.pg-journey:not(.has-tabs) .jn-steps { margin-top: 1rem; }
.jn-step { position: relative; padding: 1.7rem 0 1.9rem; padding-inline-start: 3.4rem; border-top: 1px solid var(--hairline-l); transition: opacity .5s ease; }
html.js .pane-live .jn-step { opacity: .62; }
html.js .pane-live .jn-step.is-active { opacity: 1; }
.jn-num {
  position: absolute; inset-inline-start: 0; top: 1.85rem;
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: 1.3rem; color: var(--gold-text);
}
:root[dir="rtl"] .jn-num { font-style: normal; font-family: var(--font-body); font-size: 1rem; top: 2rem; }
:root[lang="fa"] .jn-num { font-size: 1.35rem; font-weight: 600; top: 1.7rem; }
.jn-step .h3 { font-size: clamp(1.45rem, 2.1vw, 1.95rem); }
.jn-step p { max-width: 32rem; color: rgba(22, 28, 42, .84); margin-top: .6rem; font-size: .96rem; }

/* ---------- Cities ---------- */
.city-list { margin-top: 2rem; border-top: 1px solid var(--hairline-l); }
.city-row {
  display: flex; align-items: center; gap: 1.1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--hairline-l);
  transition: opacity .5s ease;
}
html.js .pane-live .city-row { opacity: .6; }
html.js .pane-live .city-row.is-active { opacity: 1; }
.city-thumb {
  width: 58px; height: 58px; flex: none;
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(154, 120, 44, .4);
  transition: box-shadow .45s ease, transform .5s var(--ease-out);
}
.city-thumb img { width: 100%; height: 100%; object-fit: cover; }
.city-row.is-active .city-thumb { box-shadow: 0 0 0 2px var(--gold), 0 0 22px rgba(201, 164, 90, .45); transform: scale(1.06); }
.city-name { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; line-height: 1.1; color: var(--navy); }
:root[dir="rtl"] .city-name { line-height: 1.5; font-weight: 600; }
.city-desc { display: block; font-size: .84rem; color: rgba(22, 28, 42, .68); margin-top: .2rem; }

/* ---------- Quote ---------- */
.quote-text {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  line-height: 1.2; color: var(--navy);
  max-width: 24ch;
}
:root[dir="rtl"] .quote-text { font-style: normal; font-weight: 600; line-height: 1.5; font-size: clamp(2.2rem, 3.6vw, 3.6rem); }
.quote-by { margin-top: 1.4rem; font-size: .74rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-text); }
:root[dir="rtl"] .quote-by { letter-spacing: 0; text-transform: none; font-size: .95rem; }

/* ---------- Contact ---------- */
.ct-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: .8rem; margin: 2rem 0 2rem; max-width: 40rem; }
.ct-card-static { grid-column: 1 / -1; }
.ct-cta { margin-top: 0; }
.ct-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: .9rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border: 1px solid var(--hairline-l);
  border-radius: 16px;
  background: rgba(255, 255, 255, .38);
  transition: transform .4s var(--ease-out), border-color .3s, background-color .3s, box-shadow .4s;
}
.ct-card:not(.ct-card-static):hover { transform: translateY(-3px); border-color: rgba(154, 120, 44, .55); background: rgba(255, 255, 255, .62); box-shadow: 0 16px 34px rgba(16, 28, 45, .12); }
.ct-ico { grid-row: span 2; width: 25px; height: 25px; color: var(--gold-ink); }
.ct-ico-wa { color: #128C4A; }
.ct-card-wa:hover { border-color: rgba(18, 140, 74, .55); }
.ct-k { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; opacity: .58; }
:root[dir="rtl"] .ct-k { letter-spacing: 0; text-transform: none; font-size: .85rem; }
.ct-v { font: 600 1rem/1.4 var(--font-body); color: var(--ink); overflow-wrap: anywhere; }
[dir="rtl"] .ct-v[dir="ltr"] { text-align: end; }

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--navy-deep); color: var(--ivory); padding-top: clamp(3.5rem, 6vw, 5rem); border-top: 1px solid rgba(234, 208, 138, .16); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr .8fr; gap: 2.5rem; padding-bottom: 3rem; }
.foot-logo { width: 118px; height: auto; }
.foot-tag { margin-top: 1.2rem; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; opacity: .75; max-width: 22rem; line-height: 1.5; }
:root[dir="rtl"] .foot-tag { font-style: normal; font-family: var(--font-body); font-size: .98rem; line-height: 1.9; }
.foot-col { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; font-size: .95rem; }
.foot-col a { color: rgba(244, 239, 228, .78); }
.foot-col a:hover { color: var(--gold-bright); }
.foot-wa { display: inline-flex; align-items: center; gap: .5rem; }
.foot-wa .wa-glyph { width: 15px; height: 15px; color: #2EE07A; flex: none; }
.foot-col > span { color: rgba(244, 239, 228, .55); }
.foot-h { font: 700 .74rem/1.4 var(--font-body); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright); opacity: .85; margin-bottom: .4rem; }
:root[dir="rtl"] .foot-h { letter-spacing: 0; text-transform: none; font-size: .9rem; }
.foot-legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem 1.5rem;
  border-top: 1px solid var(--hairline-d);
  padding-block: 1.4rem calc(58px + 2.6rem);
  font-size: .84rem;
  color: rgba(244, 239, 228, .5);
}
.foot-legal a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(234, 208, 138, .4); }
.foot-legal a:hover { color: var(--gold-bright); }

/* ---------- Static path (no JavaScript or reduced motion): one column with inline photos ---------- */
html:not(.js) .book { display: block; }
html:not(.js) .pane, html:not(.js) .spine { display: none; }
html:not(.js) .paper { max-width: 62rem; margin-inline: auto; }
html:not(.js) .pg-media { display: block; }
html:not(.js) .hero-mobile-lens { display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  :root { --pane-w: 42%; }
}
/* Six links, a language menu and a WhatsApp button need more than 1000px in Turkish and Russian, so the burger arrives a little earlier than the one column layout. */
@media (max-width: 1180px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
}
@media (max-width: 1000px) {
  .book { display: block; }
  .pane, .spine { display: none; }
  .paper { padding-inline: clamp(1.25rem, 5vw, 2.5rem); }
  .pg { padding-block: clamp(3.5rem, 8vw, 5rem); }
  .pg-hero { min-height: 0; padding-top: 3rem; overflow-x: clip; }
  .hero-mobile-lens { display: block; width: min(72vw, 400px); margin: 0 auto 2.4rem; }
  .hero-mobile-lens .lens { width: 100%; }
  .pg-media { display: block; margin: 1.3rem 0 1.4rem; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 20px 44px rgba(16, 28, 45, .18); }
  .pg-media img { width: 100%; height: 100%; object-fit: cover; }
  .pg-about .pg-media:first-child { margin-top: 0; }
  .pg-media-small { width: 58%; aspect-ratio: 3 / 4; margin-inline-start: auto; }
  /* rows show the whole photograph at its own proportions */
  .svc-row .pg-media, .jn-step .pg-media, .pg-contact .pg-media { aspect-ratio: auto; }
  .svc-row .pg-media img, .jn-step .pg-media img, .pg-contact .pg-media img { height: auto; }
  .svc-all .pg-media { margin-top: 0; }
  .pg-quote .pg-media { aspect-ratio: 16 / 9; }
  .scroll-cue { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 1.3rem 1.2rem; }
  .hero-cta .btn { width: 100%; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-legal { flex-direction: column; }
  .brand-name { font-size: .78rem; letter-spacing: .18em; }
  .nav-right { gap: .8rem; }
  .jn-step { padding-inline-start: 2.8rem; }
  .pg-media-small { width: 70%; }
}
@media (max-width: 380px) {
  .hero-title { font-size: 2.15rem; }
  :root[dir="rtl"] .hero-title { font-size: 2.3rem; }
  .brand-name { font-size: .7rem; letter-spacing: .12em; }
  .lang-sum { padding: .5rem .6rem; }
  .lang-cur, .lang-chev { display: none; }
}


/* ---------- Language menu (a compact dropdown in the top bar, native names) ---------- */
.lang-menu { position: relative; }
.lang-sum {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: .4rem;
  min-height: 40px; padding: .5rem .72rem; border-radius: 999px;
  border: 1px solid rgba(234, 208, 138, .3);
  font: 600 .78rem/1 var(--font-body); letter-spacing: .08em;
  color: var(--ivory);
  transition: border-color .3s, color .3s, background-color .3s;
}
.lang-sum::-webkit-details-marker { display: none; }
.lang-sum:hover { border-color: rgba(234, 208, 138, .7); }
.lang-menu[open] .lang-sum { border-color: var(--gold-bright); color: var(--gold-bright); background: rgba(234, 208, 138, .06); }
.lang-globe { width: 15px; height: 15px; opacity: .8; }
.lang-chev { width: 10px; height: 10px; transition: transform .3s var(--ease-out); }
.lang-menu[open] .lang-chev { transform: rotate(180deg); }
.lang-cur { direction: ltr; }
.lang-drop {
  position: absolute; top: calc(100% + .55rem); inset-inline-end: 0; z-index: 120;
  min-width: 176px; padding: .45rem;
  border-radius: 14px;
  background: rgba(10, 19, 34, .98);
  border: 1px solid rgba(234, 208, 138, .26);
  box-shadow: 0 18px 40px rgba(4, 9, 18, .45);
  gap: .1rem; align-items: stretch;
  animation: lang-in .25s var(--ease-out);
}
@keyframes lang-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.lang-drop .lang-btn { display: block; padding: .7rem .75rem; border-radius: 9px; border-bottom: 0; opacity: .82; font-size: .92rem; letter-spacing: 0; text-align: start; }
.lang-drop .lang-btn[lang="ar"] { font-family: "Vazirmatn", var(--font-body); }
.lang-drop .lang-btn:hover { opacity: 1; background: rgba(244, 239, 228, .08); }
.lang-drop .lang-btn[aria-current="page"] { opacity: 1; color: var(--gold-bright); background: rgba(234, 208, 138, .09); }

/* ---------- WhatsApp: buttons, links, the floating button and the two-line chooser ---------- */
.wa-glyph { width: 18px; height: 18px; flex: none; }
.btn-wa { background: #15803D; color: #fff; gap: .55rem; }
.btn-wa:hover { background: #166534; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(21, 128, 61, .32); }
.btn-wa .wa-glyph { width: 17px; height: 17px; }
.btn-sm .wa-glyph { width: 15px; height: 15px; }
.rent-ask {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.05rem; min-height: 40px; padding: .5rem .95rem;
  border-radius: 999px;
  font: 600 .84rem/1 var(--font-body);
  color: #0F7A40;
  border: 1px solid rgba(18, 140, 74, .4);
  background: rgba(37, 211, 102, .07);
  transition: color .3s, border-color .3s, background-color .3s, transform .4s var(--ease-out);
}
.rent-ask:hover { color: #fff; background: #15803D; border-color: #15803D; transform: translateY(-1px); }
.rent-ask .wa-glyph { width: 16px; height: 16px; }
:root[dir="rtl"] .rent-ask { font-size: .95rem; }

.wa {
  position: fixed; z-index: 270;
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  inset-inline-end: 1.1rem;
  display: flex; flex-direction: column; align-items: flex-end; gap: .85rem;
}
.wa-fab {
  position: relative;
  display: inline-flex; flex-direction: row-reverse; align-items: center; gap: .6rem;
  transition: transform .4s var(--ease-out);
}
.wa-fab:hover { transform: translateY(-2px); }
.wa-fab:focus-visible { outline: 0; }
.wa-fab:focus-visible .wa-fab-ico { outline: 3px solid var(--navy-deep); outline-offset: 3px; box-shadow: 0 0 0 3px #fff, 0 10px 26px rgba(37, 211, 102, .45), 0 3px 8px rgba(4, 9, 18, .3), inset 0 1px 0 rgba(255, 255, 255, .35); }
.wa-fab-ico {
  width: 58px; height: 58px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #34E37F 0%, #25D366 55%, #1CB35A 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45), 0 3px 8px rgba(4, 9, 18, .3), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.wa-fab-ico .wa-glyph { width: 31px; height: 31px; animation: wa-wiggle 6s ease-in-out infinite; transform-origin: 50% 60%; }
.wa-ring {
  position: absolute; top: 0; inset-inline-end: 0;
  width: 58px; height: 58px; border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .75);
  pointer-events: none;
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-ring-2 { animation-delay: 1.3s; }
.wa-label {
  padding: .66rem 1rem; border-radius: 999px;
  background: var(--navy-deep); color: var(--ivory);
  border: 1px solid rgba(234, 208, 138, .32);
  font: 600 .82rem/1 var(--font-body); letter-spacing: .04em;
  box-shadow: 0 10px 24px rgba(4, 9, 18, .35);
  white-space: nowrap;
}
:root[dir="rtl"] .wa-label { letter-spacing: 0; font-size: .9rem; }
.wa.is-open .wa-ring { animation-play-state: paused; opacity: 0; }
@keyframes wa-pulse { 0% { transform: scale(.85); opacity: .95; } 70% { transform: scale(1.75); opacity: 0; } 100% { transform: scale(1.75); opacity: 0; } }
@keyframes wa-wiggle { 0%, 82%, 100% { transform: rotate(0); } 86% { transform: rotate(-12deg); } 90% { transform: rotate(10deg); } 94% { transform: rotate(-6deg); } 97% { transform: rotate(3deg); } }

.wa-sheet {
  width: min(332px, calc(100vw - 2.2rem));
  border-radius: 20px; overflow: hidden;
  background: rgba(10, 19, 34, .97); color: var(--ivory);
  border: 1px solid rgba(234, 208, 138, .28);
  box-shadow: 0 24px 60px rgba(4, 9, 18, .5);
  transform-origin: bottom right;
  animation: wa-in .35s var(--ease-out);
}
[dir="rtl"] .wa-sheet { transform-origin: bottom left; }
.wa-sheet[hidden] { display: none; }
@keyframes wa-in { from { opacity: 0; transform: translateY(12px) scale(.96); } to { opacity: 1; transform: none; } }
.wa-head { display: flex; align-items: center; gap: .8rem; padding: .95rem 1rem; background: linear-gradient(135deg, #0F7A4C, #0E6B55); color: #fff; }
.wa-head-ico { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .18); display: grid; place-items: center; flex: none; }
.wa-head-ico .wa-glyph { width: 22px; height: 22px; }
.wa-head-text { flex: 1; min-width: 0; }
.wa-title { font: 700 .95rem/1.3 var(--font-body); }
.wa-sub { font-size: .78rem; margin-top: .15rem; line-height: 1.4; }
.wa-close { width: 40px; height: 40px; border-radius: 50%; font-size: 1.35rem; line-height: 1; flex: none; color: #fff; }
.wa-close:hover { background: rgba(255, 255, 255, .16); }
.wa-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.wa-line { display: flex; align-items: center; gap: .8rem; padding: .85rem 1rem; border-top: 1px solid var(--hairline-d); transition: background-color .25s; }
.wa-line:hover { background: rgba(244, 239, 228, .06); }
.wa-line-dot { width: 10px; height: 10px; border-radius: 50%; background: #25D366; box-shadow: 0 0 0 4px rgba(37, 211, 102, .18); flex: none; }
.wa-line-text { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.wa-line-k { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; opacity: .62; }
:root[dir="rtl"] .wa-line-k { letter-spacing: 0; text-transform: none; font-size: .8rem; }
.wa-line-v { font: 600 1rem/1.3 var(--font-body); display: inline-block; }
.wa-line-go { font-size: 1.5rem; line-height: 1; opacity: .5; }
[dir="rtl"] .wa-line-go { transform: scaleX(-1); }

/* ---------- Car rental ---------- */
.rent-list { margin-top: 2.2rem; }
.rent-tag { font: 600 .7rem/1.4 var(--font-body); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-text); margin-bottom: .4rem; }
:root[dir="rtl"] .rent-tag { letter-spacing: 0; text-transform: none; font-size: .88rem; }
.rent-faq { margin-top: 2.4rem; max-width: 34rem; border-top: 1px solid var(--hairline-l); padding-top: 1.7rem; }
.rent-faq-h { font-size: clamp(1.35rem, 1.9vw, 1.7rem); margin-bottom: .5rem; }
.faq { border-bottom: 1px solid var(--hairline-l); }
.faq > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .95rem 0;
  font: 600 .98rem/1.45 var(--font-body); color: var(--navy);
}
.faq > summary::-webkit-details-marker { display: none; }
.faq > summary::after {
  content: ""; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(154, 120, 44, .45);
  background:
    linear-gradient(var(--gold-text), var(--gold-text)) center / 1.5px 12px no-repeat,
    linear-gradient(var(--gold-text), var(--gold-text)) center / 12px 1.5px no-repeat;
  transition: transform .35s var(--ease-out), background-color .3s;
}
.faq[open] > summary::after {
  transform: rotate(45deg);
  background:
    linear-gradient(var(--ivory), var(--ivory)) center / 1.5px 12px no-repeat,
    linear-gradient(var(--ivory), var(--ivory)) center / 12px 1.5px no-repeat,
    var(--gold-ink);
}
.faq > p { padding: 0 0 1.1rem; max-width: 32rem; font-size: .95rem; line-height: 1.7; color: rgba(22, 28, 42, .82); }
:root[dir="rtl"] .faq > p { line-height: 1.9; }
.rent-band { margin-top: 2.2rem; }
.rent-band .btn-line-light { direction: ltr; }

@media (max-width: 640px) {
  .wa { inset-inline-end: .9rem; bottom: calc(.9rem + env(safe-area-inset-bottom, 0px)); }
  .wa-label { display: none; }
  .wa-fab-ico, .wa-ring { width: 56px; height: 56px; }
  .band-cta .btn { width: 100%; }
  /* full width buttons wrap instead of clipping their label */
  .band-cta .btn, .hero-cta .btn, .ct-cta .btn { white-space: normal; text-align: center; line-height: 1.25; padding-inline: 1.1rem; min-height: 48px; }
  /* the mobile menu fits short screens */
  .mmenu-links { gap: .5rem; }
  .mmenu-links a { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .mmenu-foot { margin-top: 1.6rem; }
  /* comfortable tap targets and readable small text */
  .lang-wrap .lang-btn, .foot-col a { padding-block: .45rem; }
  .foot-legal a { display: inline-block; padding-block: .5rem; }
  .chip { font-size: .8rem; }
  .ct-k, .wa-line-k { font-size: .76rem; }
  .wa-sub { font-size: .84rem; }
  .stat-label, .city-desc { font-size: .88rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-cue-line::after { animation: none; }
  .btn::after { display: none; }
  .pin.is-active .pin-halo { animation: none; }
  .wa-ring, .wa-fab-ico .wa-glyph, .wa-sheet, .lang-drop { animation: none; }
}
