@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&display=swap');

/* ============================================
   ElsewhereCo · v2 — Dark Cinematic Premium
   ============================================ */
:root,
html[data-theme="dark"] {
  /* Canvas — deep forest green, matches the logo's primary color */
  --bg: #08201a;
  --bg-soft: #0d2a22;
  --bg-card: #112e26;
  --bg-elevated: #163b2e;
  --bg-cream: #f5ecd6;
  /* Section banding: alternate forest-lift between adjacent sections so
     the page reads as separate plates instead of one continuous canvas. */
  --section-alt: #0c2820;

  /* Text */
  --text: #ece5d3;
  --text-soft: #c2bbab;
  --text-muted: #8a9890;
  --text-dim: #5e6b62;

  /* Brand colors — pulled directly from the logo */
  --brand: #d97a3a;          /* logo orange — primary accent */
  --brand-light: #e8a06f;
  --brand-dark: #b85a25;
  --green: #1d4d3a;          /* logo green — secondary accent */
  --green-light: #4a8068;
  --green-mid: #2c5240;
  --green-dark: #0e2418;

  /* Lines & shadows */
  --line: rgba(245, 236, 214, 0.10);
  --line-strong: rgba(245, 236, 214, 0.20);
  --line-bold: rgba(245, 236, 214, 0.40);
  --shadow-card: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 0 80px rgba(217, 122, 58, 0.18);

  /* Geometry */
  --radius: 4px;
  --radius-lg: 14px;
  --radius-pill: 999px;
  --max: 1320px;

  /* Motion */
  --t: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 0.2s ease;

  /* Type stacks */
  --display: 'Outfit', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;
  --display-ar: 'Reem Kufi', 'Cairo', sans-serif;
  --sans-ar: 'IBM Plex Sans Arabic', 'Tajawal', sans-serif;

  /* Brand wordmark fonts (kept from before) */
  --brand-ar: 'Aref Ruqaa', 'Amiri', serif;
  --brand-en: 'Archivo Black', 'Inter', sans-serif;

  /* Theme-dependent component tokens */
  --nav-bg: rgba(8, 32, 26, 0.72);
  --logo-invert: brightness(0) saturate(100%) invert(95%) sepia(8%) saturate(420%) hue-rotate(8deg) brightness(98%) contrast(94%);

  /* Always-light text (for photo overlays / fixed-dark surfaces).
     These do NOT change with theme — surface stays dark in both modes. */
  --on-dark-text: #ece5d3;
  --on-dark-text-soft: #c2bbab;
  --on-dark-text-muted: #95a098;
}

/* Light theme — same brand accents, opposite canvas/text */
html[data-theme="light"] {
  --bg: #f5ecd6;
  --bg-soft: #ebe1c4;
  --bg-card: #fcf6e8;
  --bg-elevated: #ffffff;
  /* Light-mode alt section: a warmer tan that picks up the brand-orange
     undertone — distinct from gotonature's sage-cream alt so the brand
     feels its own. */
  --section-alt: #ecdebd;

  --text: #08201a;
  --text-soft: #234a3b;
  --text-muted: #5e6b62;
  --text-dim: #95a098;

  --line: rgba(8, 32, 26, 0.12);
  --line-strong: rgba(8, 32, 26, 0.22);
  --line-bold: rgba(8, 32, 26, 0.45);

  --nav-bg: rgba(245, 236, 214, 0.85);
  --logo-invert: none;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans-ar);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
}
body[dir="ltr"] { font-family: var(--sans); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--brand); color: var(--bg); }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
}
body[dir="ltr"] h1,
body[dir="ltr"] h2,
body[dir="ltr"] h3 {
  font-family: var(--display);
}
body[dir="rtl"] h1,
body[dir="rtl"] h2,
body[dir="rtl"] h3 {
  font-family: var(--display-ar);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 500; }
h3 { font-size: 1.4rem; font-weight: 500; }

p { color: var(--text-soft); }

.eyebrow,
.mono {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
}
body[dir="rtl"] .eyebrow,
body[dir="rtl"] .mono {
  font-family: var(--sans-ar);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: none;
  font-size: 0.85rem;
}

.lead {
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 60ch;
}

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 600px) { .container { padding: 0 1.25rem; } }

.section { padding: 5rem 0; }
.section-tight { padding: 3.5rem 0; }
/* Alternating section band — gives the page a sense of horizon, separating
   adjacent narrative beats. Color is theme-tuned (warm tan in light mode,
   forest lift in dark mode). */
.section-alt { background: var(--section-alt); }
@media (max-width: 720px) { .section { padding: 3.5rem 0; } .section-tight { padding: 2.5rem 0; } }
.section-cream { background: var(--bg-cream); color: #1a1410; }
.section-cream h1, .section-cream h2, .section-cream h3 { color: #1a1410; }
.section-cream p { color: #3a2c25; }

/* ============================================
   Section header (modern, minimal)
   ============================================ */
.section-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
  max-width: 720px;
  margin-inline: auto;
}
.section-num-mark { display: none; }
.section-num-label {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 400;
}
body[dir="rtl"] .section-num-label {
  font-family: var(--sans-ar);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: none;
  font-size: 0.92rem;
}
.section-num-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  max-width: 18ch;
  color: var(--text);
}
body[dir="rtl"] .section-num-title {
  font-family: var(--display-ar);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================
   Icons
   ============================================ */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================
   Nav
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
  transition: background var(--t);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
  gap: 2rem;
}
@media (max-width: 600px) { .nav-inner { padding: 0.85rem 1.25rem; } }

/* Spacer for fixed nav */
body { padding-top: 0; }
.nav + * { /* first thing after nav */ }
.hero-split, .page-header, main, .trip-hero { margin-top: 0; }

.brand {
  display: inline-flex;
  align-items: center;
  transition: opacity var(--t-fast);
}
.brand:hover { opacity: 0.78; }
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  /* White bg in PNG becomes transparent via multiply in light mode;
     dark mode uses the invert filter which already neutralises the white. */
  mix-blend-mode: multiply;
  filter: var(--logo-invert);
  transition: filter var(--t);
}
[data-theme="dark"] .brand-logo {
  mix-blend-mode: screen;
}
@media (max-width: 600px) { .brand-logo { height: 42px; } }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--t-fast);
}
body[dir="rtl"] .nav-links a {
  font-family: var(--sans-ar);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.94rem;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: -6px;
  height: 1px;
  background: var(--brand);
}

.nav-actions { display: flex; gap: 0.6rem; align-items: center; }
.lang-toggle {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--mono);
  font-weight: 400;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  transition: all var(--t-fast);
}
body[dir="rtl"] .lang-toggle { font-family: var(--sans-ar); letter-spacing: 0; }
.lang-toggle:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

/* Theme toggle (sun/moon) */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--t-fast);
  padding: 0;
}
.theme-toggle:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.theme-toggle .icon { width: 16px; height: 16px; stroke-width: 1.6; }
.theme-toggle .icon-sun,
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun,
html:not([data-theme]) .theme-toggle .icon-sun { display: block; }
html[data-theme="light"] .theme-toggle .icon-moon { display: block; }

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 0.4rem;
}
.menu-btn .icon { width: 22px; height: 22px; stroke-width: 1.6; }

@media (max-width: 880px) {
  .nav-inner { gap: 1rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    inset-inline: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 0.5rem 2rem 1rem;
    border-top: 1px solid var(--line);
    gap: 0;
    align-items: stretch;
  }
  .nav-links.open { display: flex; gap: 0.6rem; }
  /* No per-item or container bottom borders — they were creating stray
     dividing lines that read as "lines on" specific items. Active state
     is shown via brand-orange color + bold weight. */
  .nav-links a {
    padding: 0.6rem 0;
    /* Adjacent tap targets used to touch each other (no gap), making
       it easy to mis-tap onto the wrong link. The flex gap above plus
       slightly smaller padding gives each link clear breathing room. */
  }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { color: var(--brand); font-weight: 600; }
  .menu-btn { display: grid; place-items: center; }

  /* Mobile order: burger at the start, then toggles, logo at the end.
     RTL: burger right, toggles mid, logo left. LTR: burger left, toggles mid, logo right. */
  .nav-inner > .menu-btn { order: -1; }
  .nav-inner > .nav-actions { order: 0; }
  .nav-inner > .brand { order: 1; }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.85rem;
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: var(--sans);
}
body[dir="rtl"] .btn {
  font-family: var(--sans-ar);
  letter-spacing: 0;
  font-size: 0.96rem;
  font-weight: 600;
}
.btn .icon { width: 14px; height: 14px; stroke-width: 1.8; }

.btn-primary {
  background: var(--brand);
  color: #08201a;            /* always dark forest text on orange — readable in both themes */
  border: 2px solid var(--brand-dark); /* darker-orange frame for visible edge on cream + photo bgs */
}
.btn-primary:hover {
  background: var(--brand-light);
  border-color: var(--brand);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -10px rgba(217, 122, 58, 0.6);
}

.btn-outline {
  background: transparent;
  border-width: 2px;
  border-color: var(--line-bold);
  color: var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 0.5rem 0;
  border: none;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}
.btn-ghost:hover { color: var(--brand); }

/* Disabled state: visibly inert but readable */
.btn-disabled {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

/* Compact pill-style "notify" button — used for coming-soon trip CTAs.
   Outlined orange so it's a visible callout but lighter than the primary fill.
   2px border (matches .btn-outline) so it reads as a clear edge on busy
   photo backgrounds and the cream-toned section-alt panels. */
.btn-notify {
  background: transparent;
  border: 2px solid var(--brand);
  color: var(--brand);
  padding: 0.7rem 1.4rem;
  font-size: 0.82rem;
}
.btn-notify:hover {
  background: var(--brand);
  color: #08201a;
  border-color: var(--brand);
  transform: translateY(-1px);
}

/* ============================================
   Hero — cinematic full-bleed
   ============================================ */
.hero-split {
  position: relative;
  display: block;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 32, 26, 0.5) 0%, rgba(8, 32, 26, 0.2) 30%, rgba(8, 32, 26, 0.92) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(8, 32, 26, 0.3) 100%);
}
.hero-credit {
  position: absolute;
  bottom: 1.75rem;
  inset-inline-end: 1.75rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  z-index: 3;
  background: rgba(8, 32, 26, 0.55);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
}
body[dir="rtl"] .hero-credit { font-family: var(--sans-ar); letter-spacing: 0.04em; font-weight: 500; text-transform: none; }

.hero-text {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  padding: 5rem 4rem 7rem;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .hero-text { padding: 4rem 1.5rem 5rem; }
}

.hero-issue {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.4rem 1rem;
  border: 1px solid rgba(217, 122, 58, 0.35);
  background: rgba(8, 32, 26, 0.4);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
}
body[dir="rtl"] .hero-issue { font-family: var(--sans-ar); letter-spacing: 0.04em; font-weight: 500; text-transform: none; }
.hero-issue::before,
.hero-issue::after { display: none; }

.hero-text h1 {
  color: var(--on-dark-text);
  margin-bottom: 1.5rem;
  max-width: 16ch;
  font-weight: 600;
  letter-spacing: -0.035em;
}
body[dir="rtl"] .hero-text h1 { font-weight: 700; letter-spacing: -0.01em; max-width: 18ch; }

.hero-text p {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.75rem;
  max-width: 50ch;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero CTA buttons sit on a photo overlay that's always dark, so they keep
   the dark-mode appearance regardless of light/dark theme. */
.hero-cta .btn-primary {
  background: var(--brand);
  color: #08201a;
  border-color: var(--brand);
}
.hero-cta .btn-primary:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
}
.hero-cta .btn-outline {
  background: transparent;
  border-color: rgba(245, 236, 214, 0.42);
  color: var(--on-dark-text);
}
.hero-cta .btn-outline:hover {
  background: var(--on-dark-text);
  color: #08201a;
  border-color: var(--on-dark-text);
}

/* ============================================
   Page header (interior pages)
   ============================================ */
.page-header {
  background: var(--bg-soft);
  color: var(--text);
  padding: 7rem 2rem 3.5rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(217, 122, 58, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(29, 77, 58, 0.18), transparent 55%);
}
.page-header > * { position: relative; }
.page-header .eyebrow { color: var(--brand); }
.page-header h1 { color: var(--text); margin-bottom: 1.25rem; max-width: 18ch; margin-inline: auto; font-weight: 600; }
body[dir="rtl"] .page-header h1 { font-weight: 700; }
.page-header p {
  color: var(--text-soft);
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ============================================
   Stats — single editorial line
   ============================================ */
.stats-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
@media (max-width: 720px) { .stats-line { grid-template-columns: repeat(2, 1fr); } }

.stats-line .stat {
  text-align: center;
  padding: 4rem 1.5rem;
  border-inline-end: 1px solid var(--line);
  position: relative;
  transition: background var(--t-fast);
}
.stats-line .stat:last-child { border-inline-end: none; }
.stats-line .stat:hover { background: var(--bg-soft); }
@media (max-width: 720px) {
  .stats-line .stat:nth-child(2) { border-inline-end: none; }
  .stats-line .stat:nth-child(1),
  .stats-line .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.stats-line .stat-value {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  letter-spacing: -0.04em;
}
body[dir="rtl"] .stats-line .stat-value { font-family: var(--display-ar); font-weight: 700; }
.stats-line .stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}
body[dir="rtl"] .stats-line .stat-label { font-family: var(--sans-ar); letter-spacing: 0.04em; font-weight: 500; text-transform: none; font-size: 0.84rem; }

/* ============================================
   Featured expedition — cinematic card
   ============================================ */
.featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
@media (max-width: 880px) { .featured { grid-template-columns: 1fr; } }
.featured-image {
  background-size: cover;
  background-position: center;
  min-height: 580px;
  position: relative;
}
@media (max-width: 600px) { .featured-image { min-height: 220px; } }
.featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8, 32, 26, 0.7));
}
.featured-tag {
  position: absolute;
  top: 1.75rem;
  inset-inline-start: 1.75rem;
  background: rgba(8, 32, 26, 0.7);
  backdrop-filter: blur(10px);
  color: var(--on-dark-text);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(217, 122, 58, 0.4);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 1;
}
body[dir="rtl"] .featured-tag { font-family: var(--sans-ar); letter-spacing: 0.04em; font-weight: 500; text-transform: none; }
.featured-body {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-body .eyebrow { margin-bottom: 1.25rem; }
.featured-body h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(1.85rem, 3.5vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}
body[dir="rtl"] .featured-body h2 { font-weight: 700; letter-spacing: -0.01em; }
.featured-body > p {
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}
.featured-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0 0 2.5rem;
  border-top: 1px solid var(--line);
}
.featured-meta-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.featured-meta-item:nth-child(odd) { border-inline-end: 1px solid var(--line); padding-inline-end: 1.5rem; }
.featured-meta-item:nth-child(even) { padding-inline-start: 1.5rem; }
.featured-meta-label {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
body[dir="rtl"] .featured-meta-label { font-family: var(--sans-ar); letter-spacing: 0.04em; font-weight: 500; text-transform: none; font-size: 0.78rem; }
.featured-meta-value {
  font-family: var(--display);
  font-weight: 500;
  color: var(--text);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}
body[dir="rtl"] .featured-meta-value { font-family: var(--display-ar); font-weight: 700; }
@media (max-width: 600px) {
  .featured-body { padding: 1.75rem 1.5rem; }
  .featured-body h2 { font-size: 1.5rem; margin-bottom: 0.85rem; }
  .featured-body > p { margin-bottom: 1.5rem; }
  .featured-meta-item { padding: 0.9rem 0; }
}

/* ============================================
   Approach (Why us) — clean 4-up grid
   ============================================ */
.approach {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .approach { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .approach { grid-template-columns: 1fr; } }

.approach-item {
  padding: 2.5rem 2rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--t);
}
.approach-item:hover {
  background: var(--bg-elevated);
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.approach-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--brand);
  margin-bottom: 1.75rem;
}
body[dir="rtl"] .approach-num { font-family: var(--sans-ar); letter-spacing: 0.05em; font-weight: 500; font-size: 0.88rem; }
.approach-item h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.45rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  color: var(--text);
}
body[dir="rtl"] .approach-item h3 { font-family: var(--display-ar); font-weight: 700; letter-spacing: -0.005em; }
.approach-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================
   Field note — large pull quote
   ============================================ */
.field-note {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}
@media (max-width: 880px) {
  .field-note { grid-template-columns: 1fr; gap: 2.5rem; padding: 2rem 0; }
}
.field-note-img {
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
}
.field-note-content { padding-inline-end: 2rem; }
@media (max-width: 880px) { .field-note-content { padding: 0; } }

.field-note-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 2rem;
}
body[dir="rtl"] .field-note-label { font-family: var(--sans-ar); letter-spacing: 0.06em; font-weight: 500; text-transform: none; font-size: 0.88rem; }
.field-note-quote {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.85vw, 2.5rem);
  line-height: 1.35;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}
body[dir="rtl"] .field-note-quote {
  font-family: var(--display-ar);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.field-note-quote::before { content: "\201C"; color: var(--brand); margin-inline-end: 0.1em; }
.field-note-quote::after { content: "\201D"; color: var(--brand); margin-inline-start: 0.1em; }
body[dir="rtl"] .field-note-quote::before { content: "«"; color: var(--brand); }
body[dir="rtl"] .field-note-quote::after { content: "»"; color: var(--brand); }
.field-note-attr {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
body[dir="rtl"] .field-note-attr { font-family: var(--sans-ar); letter-spacing: 0.04em; font-weight: 500; text-transform: none; font-size: 0.86rem; }

/* ============================================
   Trip cards — full-bleed with overlay
   ============================================ */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}
.trip-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t), border-color var(--t-fast);
}
.trip-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}
.trip-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.trip-card:hover .trip-image { transform: scale(1.06); }
.trip-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 32, 26, 0) 30%, rgba(8, 32, 26, 0.92) 100%);
  z-index: 1;
}
.trip-badge {
  position: absolute;
  top: 1.25rem;
  inset-inline-start: 1.25rem;
  background: rgba(8, 32, 26, 0.7);
  backdrop-filter: blur(10px);
  color: var(--on-dark-text);
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(217, 122, 58, 0.35);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 3;
}
body[dir="rtl"] .trip-badge { font-family: var(--sans-ar); letter-spacing: 0.04em; font-weight: 500; text-transform: none; }
.trip-badge.full { background: var(--brand); border-color: var(--brand); color: #08201a; }
.trip-badge.coming { background: var(--brand); border-color: var(--brand); color: #08201a; }

.trip-body {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.85rem;
  z-index: 2;
  color: var(--on-dark-text);
}
.trip-meta {
  display: flex;
  gap: 1.1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
body[dir="rtl"] .trip-meta { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.84rem; text-transform: none; font-weight: 500; }
.trip-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.trip-meta .icon { width: 12px; height: 12px; }
.trip-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.025em;
  color: var(--on-dark-text);
}
body[dir="rtl"] .trip-card h3 { font-family: var(--display-ar); font-weight: 700; font-size: 1.5rem; letter-spacing: -0.005em; }
.trip-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.trip-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
  gap: 0.75rem;
}
.trip-price {
  font-family: var(--display);
  font-weight: 500;
  color: var(--on-dark-text);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
body[dir="rtl"] .trip-price { font-family: var(--display-ar); font-weight: 700; }
.trip-price-meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
}
body[dir="rtl"] .trip-price-meta { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.78rem; text-transform: none; }
.trip-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 400;
  transition: color var(--t-fast);
}
body[dir="rtl"] .trip-cta { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.86rem; text-transform: none; font-weight: 600; }
.trip-cta .icon { width: 12px; height: 12px; stroke-width: 2; transition: transform var(--t-fast); }
body[dir="rtl"] .trip-cta .icon { transform: scaleX(-1); }
.trip-card:hover .trip-cta { color: var(--brand-light); }
.trip-card:hover .trip-cta .icon { transform: translateX(4px); }
body[dir="rtl"] .trip-card:hover .trip-cta .icon { transform: scaleX(-1) translateX(4px); }

/* Empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 6rem 2rem;
  background: var(--bg-card);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
}
.empty-state .icon { width: 40px; height: 40px; color: var(--brand); margin-bottom: 1.5rem; stroke-width: 1.4; }
.empty-state h3 {
  margin-bottom: 1rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.85rem;
  color: var(--text);
  letter-spacing: -0.025em;
}
body[dir="rtl"] .empty-state h3 { font-family: var(--display-ar); font-weight: 700; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.85rem; max-width: 50ch; margin-inline: auto; }

/* ============================================
   Tabs
   ============================================ */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}
.tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 0.7rem 1.5rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--t-fast);
  border-radius: var(--radius-pill);
}
body[dir="rtl"] .tab { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.92rem; text-transform: none; font-weight: 600; }
.tab:hover { color: var(--text); border-color: var(--line-strong); }
.tab.active { color: var(--bg); background: var(--text); border-color: var(--text); }

/* ============================================
   About — story + values + team + destinations
   ============================================ */
.about-hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) { .about-hero { grid-template-columns: 1fr; gap: 2.5rem; } }
.about-hero img {
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.about-hero p {
  color: var(--text-soft);
  font-size: 1.08rem;
  margin-top: 1.5rem;
  line-height: 1.85;
}
.about-hero p + p { margin-top: 1.25rem; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 720px) { .values { grid-template-columns: 1fr; } }
.value {
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all var(--t);
}
.value:hover {
  background: var(--bg-elevated);
  border-color: var(--line-strong);
}
.value-num {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--brand);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  letter-spacing: -0.04em;
}
body[dir="rtl"] .value-num { font-family: var(--display-ar); font-weight: 700; }
.value h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
body[dir="rtl"] .value h3 { font-family: var(--display-ar); font-weight: 700; letter-spacing: -0.005em; }
.value p { color: var(--text-muted); font-size: 0.96rem; line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.team-card {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all var(--t);
}
.team-card:hover {
  background: var(--bg-elevated);
  border-color: var(--line-strong);
  transform: translateY(-4px);
}
.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--brand-dark));
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--text);
  font-weight: 500;
  font-family: var(--display);
  letter-spacing: -0.02em;
}
body[dir="rtl"] .team-avatar { font-family: var(--display-ar); font-weight: 700; }
.team-card h3 {
  margin-bottom: 0.5rem;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.015em;
  color: var(--text);
}
body[dir="rtl"] .team-card h3 { font-family: var(--display-ar); font-weight: 700; }
.team-role {
  color: var(--brand);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
body[dir="rtl"] .team-role { font-family: var(--sans-ar); letter-spacing: 0.04em; font-weight: 600; text-transform: none; font-size: 0.84rem; }
.team-card p { color: var(--text-muted); font-size: 0.92rem; }

/* Destinations */
.destinations {
  list-style: none;
  border-top: 1px solid var(--line);
}
.destinations li {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 2rem;
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding var(--t-fast), background var(--t-fast);
}
.destinations li:hover {
  padding-inline-start: 2rem;
  background: var(--bg-soft);
}
.destinations-num {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--brand);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}
body[dir="rtl"] .destinations-num { font-family: var(--display-ar); font-weight: 700; }
.destinations-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
body[dir="rtl"] .destinations-name { font-family: var(--display-ar); font-weight: 700; font-size: 1.4rem; }
.destinations-meta {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
body[dir="rtl"] .destinations-meta { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.88rem; text-transform: none; font-weight: 500; }
.destinations-arrow .icon {
  color: var(--brand);
  width: 20px;
  height: 20px;
  transition: transform var(--t-fast);
}
body[dir="rtl"] .destinations-arrow .icon { transform: scaleX(-1); }
.destinations li:hover .destinations-arrow .icon { transform: translateX(6px); }
body[dir="rtl"] .destinations li:hover .destinations-arrow .icon { transform: scaleX(-1) translateX(6px); }

@media (max-width: 600px) {
  .destinations li { grid-template-columns: 50px 1fr auto; gap: 1rem; }
  .destinations-meta { display: none; }
}

/* ============================================
   Form
   ============================================ */
.signup-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 960px) { .signup-wrap { grid-template-columns: 1fr; } }

.form-card {
  padding: 3.5rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
@media (max-width: 600px) { .form-card { padding: 2rem 1.85rem; } }

.form-row { margin-bottom: 1.85rem; }
.form-row label {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
}
body[dir="rtl"] .form-row label { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.92rem; text-transform: none; font-weight: 600; color: var(--text); }
.form-row .req { color: var(--brand); margin-inline-start: 0.25rem; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.95rem 0;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  font-family: inherit;
  font-size: 1.02rem;
  color: var(--text);
  transition: all var(--t-fast);
  border-radius: 0;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-bottom-color: var(--brand);
  border-bottom-width: 2px;
  padding-bottom: calc(0.95rem - 1px);
}
.form-row select { background: var(--bg-card); }
.form-row textarea { resize: vertical; min-height: 90px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; gap: 0; } }
.form-submit { width: 100%; padding: 1.1rem 1.85rem; margin-top: 1rem; font-size: 0.88rem; }

.contact-options {
  background: var(--bg-soft);
  padding: 3.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
@media (max-width: 600px) { .contact-options { padding: 2rem 1.85rem; } }
.contact-options h3 {
  font-family: var(--display);
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
body[dir="rtl"] .contact-options h3 { font-family: var(--display-ar); font-weight: 700; }
.contact-options > p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.95rem; }
.contact-list { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  font-weight: 500;
  background: transparent;
  transition: all var(--t-fast);
}
.contact-link:hover {
  background: var(--bg-card);
  border-color: var(--line-strong);
  transform: translateY(-1px);
}
.contact-link .icon-box {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--bg-elevated);
  color: var(--text);
  border-radius: var(--radius);
}
.contact-link .icon-box .icon { width: 16px; height: 16px; }
.contact-link.wa .icon-box { background: #25d366; color: white; }
.contact-link.gf .icon-box { background: var(--green-mid); color: var(--text); }
.contact-link.em .icon-box { background: var(--brand); color: var(--bg); }
.contact-link strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--text);
  letter-spacing: -0.015em;
}
body[dir="rtl"] .contact-link strong { font-family: var(--display-ar); font-weight: 700; }
.contact-link small {
  display: block;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
body[dir="rtl"] .contact-link small { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.8rem; text-transform: none; }

/* ============================================
   CTA strip
   ============================================ */
.cta-strip {
  background: var(--bg-card);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 6rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 25%, rgba(217, 122, 58, 0.22), transparent 60%),
    radial-gradient(ellipse at 75% 75%, rgba(29, 77, 58, 0.35), transparent 60%);
}
.cta-strip > * { position: relative; }
.cta-strip h2 {
  color: var(--text);
  margin-bottom: 1.5rem;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.025em;
}
body[dir="rtl"] .cta-strip h2 { font-family: var(--display-ar); font-weight: 700; }
.cta-strip p {
  color: var(--text-soft);
  margin: 0 auto 2.5rem;
  max-width: 56ch;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ============================================
   Trip detail page
   ============================================ */
.trip-hero {
  position: relative;
  padding: 9rem 0 5rem;
  color: var(--on-dark-text);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.trip-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 32, 26, 0.55) 0%, rgba(8, 32, 26, 0.92) 100%),
    radial-gradient(ellipse at 80% 100%, rgba(29, 77, 58, 0.25), transparent 60%);
}
.trip-hero .container { position: relative; z-index: 1; }
.trip-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--on-dark-text-soft);
  margin-bottom: 2.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(245, 236, 214, 0.22);
  border-radius: var(--radius-pill);
  transition: all var(--t-fast);
}
body[dir="rtl"] .trip-back { font-family: var(--sans-ar); letter-spacing: 0.04em; font-size: 0.86rem; text-transform: none; font-weight: 600; }
.trip-back:hover { background: rgba(245, 236, 214, 0.1); color: var(--on-dark-text); border-color: rgba(245, 236, 214, 0.42); }
.trip-back .icon { width: 12px; height: 12px; }
body[dir="rtl"] .trip-back .icon { transform: scaleX(-1); }

.trip-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  margin-bottom: 1.85rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-text-soft);
}
body[dir="rtl"] .trip-hero-meta { font-family: var(--sans-ar); letter-spacing: 0.04em; font-size: 0.92rem; text-transform: none; font-weight: 500; }
.trip-hero-meta span { display: inline-flex; align-items: center; gap: 0.5rem; }
.trip-hero-meta .icon { width: 14px; height: 14px; color: var(--brand); }
.trip-hero h1 {
  color: var(--on-dark-text);
  margin-bottom: 1.5rem;
  max-width: 18ch;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
}
body[dir="rtl"] .trip-hero h1 { font-family: var(--display-ar); font-weight: 700; letter-spacing: -0.01em; }
.trip-hero p { color: var(--on-dark-text-soft); font-size: 1.15rem; max-width: 60ch; margin-bottom: 2.85rem; line-height: 1.65; }
.trip-hero-cta { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }

/* Trip-hero buttons sit on a permanently-dark photo overlay — lock them
   to on-dark colors regardless of theme so they read in light mode too. */
.trip-hero-cta .btn-outline {
  background: rgba(245, 236, 214, 0.06);
  border-color: rgba(245, 236, 214, 0.32);
  color: var(--on-dark-text-soft);
}
.trip-hero-cta .btn-outline:hover {
  background: rgba(245, 236, 214, 0.14);
  color: var(--on-dark-text);
  border-color: rgba(245, 236, 214, 0.52);
}
.trip-hero-cta .btn-notify {
  background: rgba(217, 122, 58, 0.12);
  border-width: 2px;
  border-color: var(--brand);
  color: var(--brand-light);
}
.trip-hero-cta .btn-notify:hover {
  background: var(--brand);
  color: #08201a;
}
.trip-hero-price { padding-inline-start: 2rem; border-inline-start: 1px solid rgba(245, 236, 214, 0.22); }
.trip-hero-price-amount {
  font-family: var(--display);
  font-weight: 500;
  color: var(--on-dark-text);
  font-size: 2rem;
  letter-spacing: -0.025em;
  line-height: 1;
}
body[dir="rtl"] .trip-hero-price-amount { font-family: var(--display-ar); font-weight: 700; }
.trip-hero-price-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-text-muted);
  margin-top: 0.5rem;
}
body[dir="rtl"] .trip-hero-price-meta { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.84rem; text-transform: none; }

.trip-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 880px) { .trip-detail-grid { grid-template-columns: 1fr; gap: 2rem; } }
.trip-detail-main h2 {
  font-family: var(--display);
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: 2.25rem;
  letter-spacing: -0.025em;
  color: var(--text);
}
body[dir="rtl"] .trip-detail-main h2 { font-family: var(--display-ar); font-weight: 700; letter-spacing: -0.01em; }
.trip-long-desc { color: var(--text-soft); font-size: 1.08rem; line-height: 1.85; margin-bottom: 3.5rem; }

.detail-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  margin-bottom: 1.5rem;
}
.detail-block-wide { background: transparent; border: none; padding: 0; }
.detail-block-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.detail-block-head .icon { width: 16px; height: 16px; color: var(--brand); stroke-width: 1.6; }
.detail-block-head h3 {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  color: var(--text);
}
body[dir="rtl"] .detail-block-head h3 { font-family: var(--sans-ar); letter-spacing: 0.04em; font-size: 0.92rem; text-transform: none; font-weight: 700; }
.detail-block p { color: var(--text-soft); font-size: 0.96rem; }
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.detail-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--text-soft); font-size: 0.96rem; }
.detail-list .icon { width: 14px; height: 14px; color: var(--brand); stroke-width: 2.2; margin-top: 0.3rem; flex-shrink: 0; }

/* Trip detail page tightens default section spacing — content flows
   logically from one block to the next, doesn't need 8rem-on-each-side. */
#trip-detail .section { padding: 4.5rem 0; }
#trip-detail .section-num { margin-bottom: 3rem; }
#trip-detail .trip-long-desc { margin-bottom: 2.5rem; }
#trip-detail .detail-block { margin-bottom: 1rem; }
#trip-detail .trip-hero { padding-bottom: 4rem; }

/* Itinerary */
.itinerary { list-style: none; position: relative; padding-inline-start: 0; }
.itinerary::before {
  content: "";
  position: absolute;
  inset-inline-start: 90px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--line);
}
.itinerary li {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  padding: 1.1rem 0;
  align-items: baseline;
}
.itinerary-time {
  font-family: var(--display);
  font-weight: 500;
  color: var(--brand);
  font-size: 1.2rem;
  letter-spacing: -0.015em;
  font-feature-settings: "tnum";
}
body[dir="rtl"] .itinerary-time { font-family: var(--display-ar); font-weight: 700; }
.itinerary-label {
  color: var(--text-soft);
  font-size: 1rem;
  position: relative;
  padding-inline-start: 1.85rem;
  line-height: 1.55;
}
.itinerary-label::before {
  content: "";
  position: absolute;
  inset-inline-start: -5px;
  top: 0.65rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--brand);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-img {
  aspect-ratio: 4 / 3;
  display: block;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 0;
  transition: transform var(--t);
  cursor: zoom-in;
}
.gallery-img:hover { transform: scale(1.02); }
.gallery-img:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(4, 13, 10, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}
.gallery-lightbox.visible {
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox-img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 5rem);
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 236, 214, 0.28);
  background: rgba(8, 32, 26, 0.88);
  color: var(--on-dark-text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  border-color: var(--brand);
  outline: none;
}
.gallery-lightbox-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(245, 236, 214, 0.42);
  background: rgba(8, 32, 26, 0.92);
  color: var(--on-dark-text);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.gallery-lightbox-nav .icon {
  width: 30px;
  height: 30px;
  stroke-width: 2.5;
}
.gallery-lightbox-prev { left: clamp(0.75rem, 3vw, 2rem); }
.gallery-lightbox-next { right: clamp(0.75rem, 3vw, 2rem); }
.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  background: rgba(8, 32, 26, 0.96);
  border-color: var(--brand);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}
.gallery-lightbox-counter {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(8, 32, 26, 0.82);
  border: 1px solid rgba(245, 236, 214, 0.2);
  color: var(--on-dark-text);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}
.gallery-lightbox-single .gallery-lightbox-nav { display: none; }
body.gallery-lightbox-open { overflow: hidden; }
@media (max-width: 600px) {
  .gallery-lightbox {
    padding: 3.75rem 0.75rem 4rem;
  }
  .gallery-lightbox-img {
    max-height: calc(100vh - 8rem);
  }
  .gallery-lightbox-nav {
    width: 48px;
    height: 48px;
  }
  .gallery-lightbox-nav .icon {
    width: 26px;
    height: 26px;
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text);
  gap: 1rem;
  transition: color var(--t-fast);
  letter-spacing: -0.02em;
}
body[dir="rtl"] .faq-item summary { font-family: var(--display-ar); font-weight: 700; letter-spacing: -0.005em; }
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker { display: none; content: ""; }
.faq-item summary:hover { color: var(--brand); }
.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand);
  transition: transform var(--t);
  stroke-width: 2;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 0 2rem; color: var(--text-muted); line-height: 1.8; font-size: 1rem; max-width: 95%; }

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--bg-soft);
  color: var(--text-soft);
  padding: 6rem 0 2rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.footer-grid > div {
  min-width: 0;
  overflow-wrap: break-word;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
footer h4 {
  color: var(--text);
  margin-bottom: 1.25rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
}
body[dir="rtl"] footer h4 { font-family: var(--sans-ar); letter-spacing: 0.05em; font-size: 0.92rem; text-transform: none; font-weight: 600; }
footer p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
footer a {
  color: var(--text-soft);
  font-size: 0.95rem;
  transition: color var(--t-fast);
}
footer a:hover { color: var(--brand); }
.footer-brand {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
body[dir="rtl"] .footer-brand { font-family: var(--display-ar); font-weight: 700; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.75rem; }
.socials a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all var(--t-fast);
  color: var(--text-soft);
}
.socials a:hover { background: var(--brand); border-color: var(--brand); color: var(--bg); }
.socials .icon { width: 16px; height: 16px; stroke-width: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
body[dir="rtl"] .footer-bottom { font-family: var(--sans-ar); letter-spacing: 0.03em; font-size: 0.86rem; text-transform: none; }

/* ============================================
   Brand wordmark fonts (preserved across redesign)
   ============================================ */
.brand-ar {
  font-family: var(--brand-ar);
  font-weight: 700;
  letter-spacing: 0;
}
.brand-en {
  font-family: var(--brand-en);
  font-weight: 400;
  letter-spacing: 0.015em;
}
body[dir="rtl"] .brand-display {
  font-family: var(--brand-ar);
  font-weight: 700;
  letter-spacing: 0;
}
body[dir="ltr"] .brand-display {
  font-family: var(--brand-en);
  font-weight: 400;
  letter-spacing: 0.015em;
}

/* ============================================
   Page fade-in (subtle entrance)
   ============================================ */
/* Page fade-in. Scoped to body:not(.admin) so the admin panel — which
   doesn't load main.js and therefore never gets the .ready class — isn't
   stuck at opacity 0. */
body:not(.admin) { opacity: 0; transition: opacity 0.4s ease; }
body:not(.admin).ready { opacity: 1; }

/* ============================================
   Lazy backgrounds — placeholder while data-bg is loading
   ============================================ */
.lazy-bg:not([data-bg-loaded]) {
  background-color: var(--bg-soft);
  background-image: linear-gradient(120deg, var(--bg-soft) 0%, var(--bg-card) 50%, var(--bg-soft) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   Newsletter form
   ============================================ */
.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 4rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter .eyebrow { color: var(--brand); margin-bottom: 0; }
.newsletter h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
body[dir="rtl"] .newsletter h2 { font-family: var(--display-ar); font-weight: 700; }
.newsletter p { color: var(--text-soft); max-width: 50ch; margin-bottom: 1rem; }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 460px;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  min-width: 0;
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brand);
}
/* RTL: align placeholder/text to the right edge so the Arabic prompt
   sits where readers start. Email inputs default to LTR text alignment
   in many browsers, which puts the prompt against the wrong edge. */
body[dir="rtl"] .newsletter-form input[type="email"] { text-align: right; }
body[dir="rtl"] .newsletter-form input[type="email"]::placeholder { text-align: right; }
.newsletter-form .btn-primary { white-space: nowrap; }
.newsletter-msg {
  font-size: 0.88rem;
  color: var(--text-muted);
  min-height: 1.2em;
}
.newsletter-msg.success { color: var(--brand); }
.newsletter-msg.error { color: #ff8a7a; }

/* ============================================
   Trip filters (on /trips)
   ============================================ */
.trip-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.filter-pill {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 0.55rem 1.15rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all var(--t-fast);
}
body[dir="rtl"] .filter-pill { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.92rem; text-transform: none; font-weight: 600; }
.filter-pill:hover { color: var(--text); border-color: var(--line-strong); }
.filter-pill.active { background: var(--brand); border-color: var(--brand); color: #08201a; }

/* ============================================
   Sticky mobile CTA on trip detail
   ============================================ */
.trip-sticky-cta {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(8, 32, 26, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-top: 1px solid rgba(245, 236, 214, 0.12);
  padding: 0.85rem 1rem;
  display: none;
  align-items: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform var(--t);
}
.trip-sticky-cta.visible { transform: translateY(0); }
.trip-sticky-cta-info {
  flex: 1;
  min-width: 0;
}
.trip-sticky-cta-price {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--on-dark-text);
  letter-spacing: -0.015em;
}
body[dir="rtl"] .trip-sticky-cta-price { font-family: var(--display-ar); font-weight: 700; }
.trip-sticky-cta-meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-text-muted);
}
body[dir="rtl"] .trip-sticky-cta-meta { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.78rem; text-transform: none; }
.trip-sticky-cta .btn { padding: 0.7rem 1.25rem; font-size: 0.78rem; }

@media (max-width: 700px) {
  .trip-sticky-cta { display: flex; }
}

/* ============================================
   Testimonials section (on home, replaces field-note when DB has data)
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-quote {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}
body[dir="rtl"] .testimonial-quote { font-family: var(--display-ar); font-weight: 600; }
.testimonial-quote::before { content: "\201C"; color: var(--brand); margin-inline-end: 0.1em; }
.testimonial-quote::after { content: "\201D"; color: var(--brand); margin-inline-start: 0.1em; }
body[dir="rtl"] .testimonial-quote::before { content: "«"; }
body[dir="rtl"] .testimonial-quote::after { content: "»"; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--brand-dark));
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  flex-shrink: 0;
}
body[dir="rtl"] .testimonial-avatar { font-family: var(--display-ar); font-weight: 700; }
.testimonial-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text);
}
.testimonial-role {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
body[dir="rtl"] .testimonial-role { font-family: var(--sans-ar); letter-spacing: 0.02em; font-size: 0.82rem; text-transform: none; }

/* ============================================
   Cookie banner
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  inset-inline: 1rem;
  z-index: 60;
  max-width: 520px;
  margin-inline: auto;
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 1rem;
  align-items: center;
  transform: translateY(calc(100% + 2rem));
  transition: transform var(--t);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.84rem; color: var(--text-soft); margin: 0; flex: 1; line-height: 1.5; }
.cookie-banner .btn-mini-cookie {
  background: var(--brand);
  color: #08201a;
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  flex-shrink: 0;
}
body[dir="rtl"] .cookie-banner .btn-mini-cookie { font-family: var(--sans-ar); letter-spacing: 0; font-size: 0.86rem; text-transform: none; font-weight: 600; }
.cookie-banner .btn-mini-cookie:hover { background: var(--brand-light); }

/* ============================================
   Markdown rendering inside trip-long-desc
   ============================================ */
.trip-long-desc p { margin-bottom: 1rem; }
.trip-long-desc p:last-child { margin-bottom: 0; }
.trip-long-desc strong { color: var(--text); font-weight: 600; }
.trip-long-desc em { font-style: italic; }
.trip-long-desc a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.trip-long-desc a:hover { color: var(--brand-light); }

/* ============================================
   Scroll-reveal, micro-interactions, refined glows
   ============================================ */

/* ── Scroll-reveal system ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ── Scroll-progress bar ──────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  z-index: 200;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
  border-radius: 0 1px 1px 0;
}

/* ── Nav scroll-shrink ────────────────────────────────── */
.nav {
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}
.nav-inner {
  transition: padding 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.brand-logo {
  transition: height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav.nav-scrolled {
  backdrop-filter: saturate(220%) blur(32px);
  -webkit-backdrop-filter: saturate(220%) blur(32px);
  border-bottom-color: var(--line-strong);
}
.nav.nav-scrolled .nav-inner {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.nav.nav-scrolled .brand-logo {
  height: 42px;
}
@media (max-width: 600px) {
  .nav.nav-scrolled .brand-logo { height: 34px; }
}

/* ── English display font — Playfair Display ─────────── */
html[lang="en"] {
  --display: 'Playfair Display', 'DM Serif Display', Georgia, serif;
}
html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] .section-num-title {
  font-feature-settings: "liga" 1, "kern" 1;
}
html[lang="en"] .hero-text h1,
html[lang="en"] .page-header h1 {
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ── Hero enhancements ────────────────────────────────── */
.hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 250px 250px;
  opacity: 0.045;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-text  { z-index: 3; }
.hero-credit { z-index: 3; }

.hero-issue {
  opacity: 0;
  transform: translateY(20px);
  animation: ec-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}
.hero-text h1 {
  opacity: 0;
  transform: translateY(24px);
  animation: ec-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 0.52s both;
}
.hero-text h1.words-split {
  opacity: 1;
  transform: none;
  animation: none;
}
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px);
  animation: ec-rise 0.85s cubic-bezier(0.16, 1, 0.3, 1) calc(0.52s + var(--word-i, 0) * 0.09s) both;
}
.hero-text > p {
  opacity: 0;
  transform: translateY(18px);
  animation: ec-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.68s both;
}
.hero-cta {
  opacity: 0;
  transform: translateY(16px);
  animation: ec-rise 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.82s both;
}
.hero-credit {
  opacity: 0;
  animation: ec-rise 0.8s ease 1.1s both;
}

@keyframes ec-rise {
  to { opacity: 1; transform: none; }
}

.hero-image {
  transform-origin: center center;
  transform: scale(1.08);
}

/* ── Page header entrance ─────────────────────────────── */
.page-header {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-header .eyebrow {
  opacity: 0;
  transform: translateY(12px);
  animation: ec-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.page-header h1 {
  opacity: 0;
  transform: translateY(18px);
  animation: ec-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}
.page-header p {
  opacity: 0;
  transform: translateY(14px);
  animation: ec-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* ── Section label accent line ────────────────────────── */
.section-num-label {
  position: relative;
  padding-inline-start: 1.5rem;
}
.section-num-label::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 1.5px;
  background: var(--brand);
  opacity: 0.9;
  border-radius: 1px;
}
body[dir="rtl"] .section-num-label { padding-inline-start: 1.5rem; padding-inline-end: 0; }

/* ── Approach cards — glass highlight + hover ─────────── */
.approach-item {
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.approach-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.038) 0%, transparent 52%);
  pointer-events: none;
  z-index: 1;
}
.approach-item:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 122, 58, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 24px 60px -16px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(217, 122, 58, 0.18);
}

/* ── Trip cards — glass highlight + hover ─────────────── */
.trip-card {
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}
.trip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.038) 0%, transparent 52%);
  pointer-events: none;
  z-index: 1;
}
.trip-card:hover {
  transform: translateY(-7px);
  border-color: rgba(217, 122, 58, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 32px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(217, 122, 58, 0.18),
    0 0 60px -20px rgba(217, 122, 58, 0.12);
}

/* ── Featured expedition glow on hover ────────────────── */
.featured {
  transition:
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}
.featured:hover {
  border-color: rgba(217, 122, 58, 0.25);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.65),
              0 0 0 1px rgba(217, 122, 58, 0.2),
              0 0 80px -30px rgba(217, 122, 58, 0.18);
}

/* ── Value & team cards ──────────────────────────────── */
.value {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.4s ease,
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}
.value:hover {
  transform: translateY(-5px);
  border-color: rgba(217, 122, 58, 0.28);
  box-shadow: 0 20px 60px -18px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(217, 122, 58, 0.14);
}

.team-card {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.4s ease,
    border-color 0.35s ease,
    box-shadow 0.4s ease;
}
.team-card:hover {
  box-shadow: 0 20px 60px -18px rgba(0, 0, 0, 0.4),
              0 0 0 1px var(--line-strong);
}
.team-card:hover .team-avatar {
  box-shadow: 0 0 0 3px var(--bg-card),
              0 0 0 5px rgba(217, 122, 58, 0.4);
  transition: box-shadow 0.35s ease;
}

/* ── Button shine sweep ──────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.16) 50%,
    transparent 60%
  );
  transform: translateX(-160%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::after {
  transform: translateX(160%);
}
.btn-primary:hover {
  box-shadow: 0 8px 32px -6px rgba(217, 122, 58, 0.55),
              0 0 0 1px rgba(217, 122, 58, 0.35) !important;
}

/* ── Stats underline on reveal ───────────────────────── */
.stat {
  overflow: visible;
}
.stat.revealed .stat-value::after {
  content: "";
  display: block;
  margin: 0.5rem auto 0;
  width: 32px;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
  transform: scaleX(0);
  animation: ec-line-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.25s forwards;
}
@keyframes ec-line-in {
  to { transform: scaleX(1); }
}

/* ── Footer gradient border ──────────────────────────── */
footer {
  position: relative;
  border-top: none !important;
}
footer::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(217, 122, 58, 0.55) 30%,
    rgba(217, 122, 58, 0.55) 70%,
    transparent
  );
  pointer-events: none;
}

/* ── CTA strip animated glow ─────────────────────────── */
.cta-strip {
  overflow: hidden;
}
.cta-strip::before {
  background:
    radial-gradient(ellipse at 25% 25%, rgba(217, 122, 58, 0.22), transparent 60%),
    radial-gradient(ellipse at 75% 75%, rgba(29, 77, 58, 0.35), transparent 60%);
  animation: cta-breathe 7s ease-in-out infinite;
}
@keyframes cta-breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.65; transform: scale(1.04); }
}

/* ── Destinations hover accent bar ───────────────────── */
.destinations li {
  position: relative;
  overflow: hidden;
}
.destinations li::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  width: 2px;
  background: var(--brand);
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
  border-radius: 1px;
}
.destinations li:hover::before {
  transform: scaleY(1);
}

/* ── Field note — label + centered quote ─────────────── */
.field-note-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.field-note-label::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 1.5px;
  background: var(--brand);
  border-radius: 1px;
}
@media (max-width: 880px) {
  .field-note-content,
  .field-note-quote,
  .field-note-attr {
    text-align: center;
  }
  .field-note-label {
    width: 100%;
    justify-content: center;
  }
  .field-note-label::after {
    content: "";
    flex-shrink: 0;
    width: 14px;
    height: 1.5px;
    background: var(--brand);
    border-radius: 1px;
  }
}

/* ── Field note image vignette ───────────────────────── */
.field-note-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 55%, rgba(8, 32, 26, 0.35));
  pointer-events: none;
}
@media (max-width: 880px) {
  .field-note-img {
    display: none;
  }
}

/* ── Nav link hover underline sweep ──────────────────── */
@media (min-width: 881px) {
  .nav-links a:not(.active) {
    position: relative;
    overflow: hidden;
  }
  .nav-links a:not(.active)::before {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: -4px;
    height: 1px;
    background: var(--text-soft);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: right;
  }
  body[dir="ltr"] .nav-links a:not(.active)::before { transform-origin: left; }
  .nav-links a:not(.active):hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  body[dir="ltr"] .nav-links a:not(.active):hover::before { transform-origin: right; }
}

/* ── Gallery image hover ─────────────────────────────── */
.gallery-img {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}
.gallery-img:hover {
  transform: scale(1.03);
  border-color: var(--line-strong);
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.5);
}

/* ── Testimonial card ────────────────────────────────── */
.testimonial-card {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 50px -15px rgba(0, 0, 0, 0.4);
}

/* ── Contact link left glow ──────────────────────────── */
.contact-link {
  position: relative;
  overflow: hidden;
}
.contact-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(217, 122, 58, 0.06),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
body[dir="ltr"] .contact-link::before {
  background: linear-gradient(
    90deg,
    transparent 40%,
    rgba(217, 122, 58, 0.06)
  );
}
.contact-link:hover::before { opacity: 1; }

/* ── Form focus refinements ──────────────────────────── */
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-bottom-width: 2px;
}

.form-card {
  transition: box-shadow 0.4s ease, border-color 0.35s ease;
}
.form-card:focus-within {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 1px rgba(217, 122, 58, 0.12),
              0 24px 60px -20px rgba(0, 0, 0, 0.3);
}

/* ── Page header subtle depth ────────────────────────── */
.page-header {
  background:
    radial-gradient(ellipse at 15% 0%, rgba(217, 122, 58, 0.12), transparent 50%),
    radial-gradient(ellipse at 85% 100%, rgba(29, 77, 58, 0.20), transparent 55%),
    var(--bg-soft);
}

/* ── Itinerary timeline dot pulse ────────────────────── */
.itinerary-label::before {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.itinerary li:hover .itinerary-label::before {
  border-color: var(--brand-light);
  box-shadow: 0 0 0 4px rgba(217, 122, 58, 0.15);
}

/* ── Detail block hover ──────────────────────────────── */
.detail-block:not(.detail-block-wide) {
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.detail-block:not(.detail-block-wide):hover {
  border-color: var(--line-strong);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.25);
}

/* ── Footer social icon enhanced hover ───────────────── */
.socials a {
  transition: background 0.3s ease, border-color 0.3s ease,
              color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(217, 122, 58, 0.4);
}

/* ── Marquee destination strip ───────────────────────── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--line, rgba(255, 255, 255, 0.06));
  border-bottom: 1px solid var(--line, rgba(255, 255, 255, 0.06));
  padding: 0.8rem 0;
  background: var(--bg-soft, var(--bg));
  direction: ltr;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-inline-end: 1rem;
  white-space: nowrap;
  color: var(--muted, #6b7280);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}
.marquee-item {
  opacity: 0.7;
}
.marquee-sep {
  color: var(--brand, #d97a3a);
  opacity: 0.5;
  font-size: 0.6rem;
  line-height: 1;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Newsletter — match section label style, center block ── */
#newsletter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#newsletter-container .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
#newsletter-container .eyebrow::before,
#newsletter-container .eyebrow::after {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 1.5px;
  background: var(--brand);
  border-radius: 1px;
}
#newsletter-container p {
  text-align: center;
}

/* ── Reduced motion safety ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-issue,
  .hero-text h1,
  .hero-word,
  .hero-text > p,
  .hero-cta,
  .hero-credit,
  .page-header .eyebrow,
  .page-header h1,
  .page-header p {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-image { transform: none !important; }
  .cta-strip::before { animation: none !important; }
  .stat.revealed .stat-value::after {
    animation: none !important;
    transform: scaleX(1) !important;
  }
  .scroll-progress { display: none; }
  .marquee-track { animation-play-state: paused; }
}

/* ============================================
   Utility
   ============================================ */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-3 { margin-top: 3rem; }

/* ============================================
   VIP — Nav
   ============================================ */
.nav-vip-login {
  padding: 0.4rem 0.9rem !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill) !important;
}
body[dir="rtl"] .nav-vip-login {
  font-size: 0.82rem !important;
  letter-spacing: 0;
}

.nav-vip-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--brand);
  border: 1px solid rgba(217, 122, 58, 0.45);
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
  font-family: var(--display);
}
body[dir="rtl"] .nav-vip-badge { font-family: var(--arabic); letter-spacing: 0; font-size: 0.82rem; }
.nav-vip-badge[hidden] { display: none !important; }

.nav-vip-logout {
  font-size: 0.72rem;
  padding: 0.4rem 0.85rem;
  border-color: rgba(217,122,58,0.3) !important;
  color: var(--text-soft) !important;
}
.nav-vip-logout:hover { background: rgba(217,122,58,0.1) !important; border-color: var(--brand) !important; }


/* ============================================
   VIP — Price tags
   ============================================ */
.vip-star {
  color: var(--brand);
  font-size: 0.75em;
  margin-inline-end: 0.2em;
  vertical-align: middle;
}

.trip-price--vip {
  color: var(--brand) !important;
  font-weight: 700;
}

.trip-price-orig {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 0.1rem;
}

/* Trip detail hero VIP price */
.trip-hero-price--vip {
  color: var(--brand) !important;
}
.trip-hero-price-orig {
  font-size: 0.85rem;
  color: rgba(245,236,214,0.5);
  text-decoration: line-through;
  margin-top: 0.15rem;
}

/* ============================================
   VIP Modal  (native <dialog> top-layer)
   ============================================ */
#ec-vip-dialog {
  background: transparent;
  border: none;
  padding: 1.5rem;
  margin: auto;
  width: min(680px, 100vw - 2rem);
  max-height: 100dvh;
  overflow-y: auto;
  outline: none;
}
#ec-vip-dialog::backdrop {
  background: rgba(4, 14, 10, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vip-modal {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  width: 100%;
  max-width: 640px;
  padding: 2.5rem 2.5rem 2rem;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  border-radius: var(--radius);
}

.vip-modal-close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color var(--t-fast);
}
.vip-modal-close:hover { color: var(--text); }
.vip-modal-close svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.vip-modal-star {
  color: var(--brand);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  line-height: 1;
  display: block;
}

.vip-modal-title {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
body[dir="rtl"] .vip-modal-title { font-family: var(--arabic-display); font-size: 1.5rem; letter-spacing: 0; }

.vip-modal-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.vip-field-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.vip-input {
  flex: 1;
  min-width: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 0.72rem 1rem;
  font-family: var(--display);
  font-size: 0.88rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--t-fast);
}
.vip-input:focus { border-color: var(--brand); }
.vip-input::placeholder { color: var(--text-dim); }

.vip-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.vip-divider::before,
.vip-divider::after { content: ''; flex: 1; height: 1px; background: var(--line-strong); }
body[dir="rtl"] .vip-divider { font-family: var(--arabic); letter-spacing: 0; font-size: 0.84rem; }

.vip-error {
  color: #e07070;
  font-size: 0.82rem;
  margin-top: 0.75rem;
}

.vip-status-block { text-align: center; padding: 1rem 0; }
.vip-status-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.vip-status-icon--ok { color: var(--brand); }
.vip-status-icon--err { color: #e07070; }
.vip-status-msg { font-size: 1rem; color: var(--text); margin-bottom: 0.5rem; font-weight: 600; }
.vip-status-hint { display: block; font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 480px) {
  #ec-vip-dialog { padding: 1rem; }
  .vip-modal { padding: 2rem 1.25rem 1.5rem; }
  .vip-field-group { flex-direction: column; }
  .vip-input, .vip-field-group .btn { width: 100%; }
}
