/* =============================================
   Balad — Design #03 "Diaspora Bridge"
   Palette: Navy #10141C / Gold #D4A84B / White
   Type: Playfair Display + Inter
   ============================================= */

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

/* ─── Custom Properties ─────────────────────── */
:root {
  --navy:       #10141C;
  --navy-850:   #141820;
  --navy-800:   #161B27;
  --navy-700:   #1A2033;
  --navy-600:   #1F2640;
  --navy-500:   #252D42;
  --gold:       #D4A84B;
  --gold-light: #E8C76A;
  --gold-dark:  #A07A2E;
  --gold-pale:  #F5E9C0;
  --white:      #FFFFFF;
  --off-white:  #F5F0E8;
  --gray-500:   #6B7585;
  --gray-400:   #8892A4;
  --gray-300:   #B8C0CF;
  --gray-200:   #D4D9E3;
  --green-wa:   #25D366;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --r-xs:   4px;
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-full: 9999px;

  --ease-out:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans:       0.35s var(--ease-out);
  --trans-fast:  0.18s var(--ease-out);

  --shadow-gold: 0 8px 32px rgba(212, 168, 75, 0.35);
  --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.45);

  --container: 1280px;
  --gap:       clamp(16px, 2.5vw, 24px);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* BLD-039/F14: clip, not hidden — matches rtl.css's html[dir=rtl] body rule
     and this project's documented convention (hidden breaks position:sticky). */
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ─── Typography Scale ───────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; }

h1 { font-size: clamp(2.8rem, 7vw, 6.5rem); font-weight: 700; }

/* BLD-059 (found during product-search triage, 2026-08-05): the search
   results title (woocommerce_page_title(), archive-product.php:38) echoes
   the raw buyer search term verbatim. A long unbroken term (a nonsense
   string, a SKU, anything with no spaces) has no break opportunity and
   pushes the page wider than the viewport at 320/375px — confirmed live via
   assertNoHorizontalScroll against a 34-char single-word term. */
.page-title { overflow-wrap: break-word; }
h2 { font-size: clamp(1.9rem, 4vw, 3.25rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.6rem);  font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; }

p { color: var(--gray-300); }

.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--gray-400); }

/* ─── Container ──────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--trans);
  cursor: pointer;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  border: 1.5px solid rgba(212, 168, 75, 0.45);
  color: var(--gold);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 75, 0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--trans);
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.3);
}

.btn:focus-visible,
.btn-whatsapp:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── Navigation ─────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: background 0.45s ease, padding 0.45s ease, box-shadow 0.45s ease;
}
.site-nav.scrolled {
  background: rgba(16, 20, 28, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 13px 0;
  box-shadow: 0 1px 0 rgba(212, 168, 75, 0.12), 0 8px 32px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .wordmark-en {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-logo .wordmark-ar {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--trans-fast);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:focus-visible { outline: 1px dashed var(--gold); outline-offset: 2px; }

.nav-cta { margin-left: 8px; }

/* ─── Header search (P0-2 / journeys/buyer.md G-7) ──────────────────────
   Reuses .search-wrap/.search-ico/.search-inp verbatim from the stores
   directory (archive-bld_store.php) — same markup, same RTL rules
   (rtl.css's unscoped html[dir=rtl] .search-ico/.search-inp selectors
   already cover these). Only the compact desktop sizing below is new; it's
   scoped with 3 classes (.nav-inner .nav-search .search-inp) specifically so
   its specificity (0,3,0) beats rtl.css's html[dir=rtl] .search-inp rule
   (0,2,1) regardless of stylesheet load order — the same "don't rely on
   cascade order" fix already applied to .cart-fab (BLD-052, rtl.css:126-129). */
.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-inner .nav-search .search-wrap { width: 220px; min-width: 0; }
.nav-inner .nav-search .nav-search-inp { padding: 9px 14px 9px 36px; font-size: 16px; }
.nav-inner .nav-search .search-ico { left: 13px; }
.nav-inner .nav-search .search-ico svg { display: block; width: 13px; height: 13px; }
.nav-search-submit {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--trans);
  flex-shrink: 0;
}
.nav-search-submit:hover { color: var(--gold); border-color: var(--gold); }
.nav-search-submit:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-search-submit svg { width: 16px; height: 16px; }

.nav-mobile-search { width: min(320px, 84vw); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 28, 0.97);
  backdrop-filter: blur(20px);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 6vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  transition: color var(--trans);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Parallax layers — each oversized to allow transform movement */
.hero-layer {
  position: absolute;
  left: 0;
  right: 0;
  top: -25%;
  height: 150%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-layer--bg {
  /* CSS-only backdrop — no third-party image host at runtime. */
  background-image: radial-gradient(ellipse 120% 80% at 50% 28%, var(--navy-600) 0%, var(--navy-800) 48%, var(--navy) 100%);
}

.hero-layer--mid {
  background-image: radial-gradient(ellipse 90% 55% at 50% 65%, rgba(212, 168, 75, 0.28) 0%, transparent 70%);
  opacity: 0.35;
  mix-blend-mode: screen;
}

.hero-layer--gradient {
  position: absolute;
  inset: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(16, 20, 28, 0.2) 0%,
    rgba(16, 20, 28, 0.15) 35%,
    rgba(16, 20, 28, 0.65) 70%,
    var(--navy) 100%
  );
  pointer-events: none;
}

.hero-layer--vignette {
  position: absolute;
  inset: 0;
  top: 0;
  height: 100%;
  background: radial-gradient(ellipse 110% 100% at 50% 50%, transparent 40%, rgba(16,20,28,0.75) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-top: 16px;
  margin-bottom: 28px;
  padding: 8px 22px;
  border: 1px solid rgba(212, 168, 75, 0.28);
  border-radius: var(--r-full);
  background: rgba(212, 168, 75, 0.05);
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero-title {
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.hero-title .line-serif {
  display: block;
  color: var(--white);
}
.hero-title .line-italic {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--gray-300);
  max-width: 560px;
  margin: 0 auto 14px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-arabic-mark {
  font-size: 1rem;
  color: rgba(212, 168, 75, 0.65);
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--gray-500);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  animation: heroBounce 2.4s ease-in-out infinite;
  cursor: default;
}
.hero-scroll svg { opacity: 0.45; }

@keyframes heroBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ─── Shared Section Styles ──────────────────── */
.section {
  padding: clamp(72px, 10vw, 128px) 0;
}
.section--dark  { background: var(--navy); }
.section--mid   { background: var(--navy-800); }
.section--light { background: var(--navy-700); }

.section-header {
  text-align: center;
  margin-bottom: clamp(44px, 6vw, 80px);
}
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-header h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.gold-bar {
  width: 44px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ─── Scroll Reveal ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }
.stagger-6 { transition-delay: 0.48s; }

/* ─── Value Props ────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.value-card {
  padding: 36px 26px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--trans), transform var(--trans), background var(--trans);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--trans);
}
.value-card:hover {
  border-color: rgba(212, 168, 75, 0.22);
  background: rgba(212, 168, 75, 0.04);
  transform: translateY(-5px);
}
.value-card:hover::before { opacity: 1; }

.value-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 22px;
}

.value-card h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.value-card p { font-size: 0.875rem; line-height: 1.65; }

/* ─── Categories ─────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
}

.category-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.category-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card);
}
.category-card:hover .category-img { transform: scale(1.1); filter: brightness(0.55) saturate(0.75); }

.category-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out), filter 0.55s;
  filter: brightness(0.45) saturate(0.65);
}

.category-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,20,28,0.94) 0%, rgba(16,20,28,0.1) 55%, transparent 100%);
}

.category-label {
  position: relative;
  z-index: 1;
  padding: 22px 18px 20px;
}
.category-label h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.category-label span {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
}

/* ─── Featured Stores ────────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.store-card {
  background: var(--navy-700);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.055);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.store-card:hover {
  border-color: rgba(212, 168, 75, 0.22);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.store-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--navy-600);
}
.store-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.75);
  transition: transform 0.55s var(--ease-out), filter 0.55s;
}
.store-card:hover .store-thumb img {
  transform: scale(1.06);
  filter: brightness(0.82) saturate(0.95);
}

.store-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.store-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--gold);
  background: rgba(212, 168, 75, 0.1);
  padding: 3px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(212,168,75,0.2);
}

.loc {
  font-size: 0.75rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 3px;
}

.store-body h3 {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
}
.store-body p {
  font-size: 0.8rem;
  color: var(--gray-400);
  flex: 1;
  line-height: 1.5;
}

.store-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}
.store-footer span { font-size: 0.77rem; color: var(--gray-400); }

.visit-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--trans-fast);
}
.store-card:hover .visit-link { gap: 9px; }

/* ─── How It Works ───────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,168,75,0.35) 50%, transparent 100%);
  pointer-events: none;
}

.step {
  text-align: center;
  padding: 44px 28px 36px;
  background: var(--navy);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.055);
  position: relative;
  transition: border-color var(--trans), transform var(--trans);
}
.step:hover {
  border-color: rgba(212,168,75,0.2);
  transform: translateY(-4px);
}
.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--navy-800);
}

.step-icon {
  width: 60px; height: 60px;
  margin: 0 auto 22px;
  color: var(--gold);
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-serif);
}
.step p { font-size: 0.875rem; }

/* ─── Pricing ────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
}

.pricing-card {
  padding: 38px 30px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--navy-700);
  position: relative;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }

.pricing-card.featured {
  border-color: rgba(212, 168, 75, 0.45);
  background: var(--navy-600);
  transform: scale(1.035) translateY(-4px);
}
.pricing-card.featured:hover { transform: scale(1.035) translateY(-10px); box-shadow: var(--shadow-gold); }

.pricing-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 10px;
}

.pricing-price {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  line-height: 1;
}
.pricing-price .amount {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
}
.pricing-price .period {
  font-size: 0.82rem;
  color: var(--gray-400);
  padding-bottom: 6px;
}

.pricing-desc {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 26px;
  min-height: 3em;
  line-height: 1.5;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 30px;
}
.pricing-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--gray-300);
  line-height: 1.5;
}
.pricing-feat::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%23D4A84B' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ─── Diaspora / Flight Map Section ─────────── */
.diaspora {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.diaspora::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,168,75,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 30%, rgba(212,168,75,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.diaspora-top {
  text-align: center;
  margin-bottom: 60px;
}
.diaspora-top h2 { color: var(--white); margin-bottom: 16px; }
.diaspora-top h2 em { color: var(--gold); font-style: italic; }
.diaspora-top p { font-size: 1.05rem; max-width: 520px; margin: 0 auto; }

/* Flight Map Layout */
.flight-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 64px;
}

.flight-copy h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.flight-copy > p {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 32px;
  line-height: 1.7;
}

.flight-cities {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flight-city {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color 0.4s;
}
.flight-city.active { color: var(--white); }

.city-pip {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--navy-500);
  border: 1.5px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.flight-city.active .city-pip {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(212,168,75,0.6), 0 0 20px rgba(212,168,75,0.25);
}

.city-name { font-weight: 500; }
.city-country { color: var(--gray-400); font-size: 0.78rem; }

/* SVG Flight Map */
.flight-svg-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--navy-850);
  border: 1px solid rgba(255,255,255,0.06);
}

.flight-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* SVG internal styles */
.map-bg      { fill: var(--navy-850); }
.dot-grid    { fill: rgba(255,255,255,0.06); }
.land-hint   { fill: rgba(255,255,255,0.04); stroke: rgba(255,255,255,0.06); stroke-width: 0.5; }

.flight-bg-arc {
  fill: none;
  stroke: rgba(212,168,75,0.1);
  stroke-width: 1;
  stroke-dasharray: 4 6;
}
.flight-arc {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(212,168,75,0.45));
  /* dasharray/offset set by JS */
}

/* Beirut origin */
.beirut-core { fill: var(--gold); }
.beirut-ring-1 {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  animation: beirutPulse1 2.6s ease-out infinite;
}
.beirut-ring-2 {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  animation: beirutPulse2 2.6s ease-out 1.3s infinite;
}
@keyframes beirutPulse1 {
  0%   { r: 7;  opacity: 0.7; }
  100% { r: 22; opacity: 0; }
}
@keyframes beirutPulse2 {
  0%   { r: 7;  opacity: 0.5; }
  100% { r: 18; opacity: 0; }
}

/* Destination markers */
.dest-group { opacity: 0; transition: opacity 0.5s ease; }
.dest-group.shown { opacity: 1; }
.dest-core { fill: var(--gold-light); }
.dest-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
}
.dest-pulse {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
}
.dest-label {
  fill: var(--gold-pale);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Diaspora stats row */
.diaspora-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 0;
  border-top: 1px solid rgba(212,168,75,0.12);
  margin-top: 24px;
}
.d-stat {
  text-align: center;
}
.d-stat .num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.d-stat .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

.diaspora-cta {
  text-align: center;
  padding-top: 48px;
}
.diaspora-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}
.diaspora-cta p { max-width: 480px; margin: 0 auto 32px; }

/* ─── Footer ──────────────────────────────────── */
.site-footer {
  background: var(--navy-850);
  border-top: 1px solid rgba(255,255,255,0.055);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 52px;
}

.footer-brand {
  padding-right: 20px;
}
.footer-logo-en {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 2px;
}
.footer-logo-ar {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: 0.83rem;
  color: var(--gray-400);
  max-width: 220px;
  margin-bottom: 22px;
  line-height: 1.65;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.soc {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.soc:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,75,0.08);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 2px; }
/* Mobile QA (2026-09-23): these links rendered with only their line-height as
   a clickable box (~15-16px) — well under the ~40px touch-target guideline,
   even though they passed automated click-actionability checks. inline-flex +
   min-height gives each link a real tap target without visually bloating the
   list (the ul gap above was reduced to compensate for the added padding). */
.footer-col li a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: 0.83rem;
  color: var(--gray-400);
  transition: color var(--trans-fast);
}
.footer-col li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.055);
  font-size: 0.78rem;
  color: var(--gray-400);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--gold); font-weight: 500; }

/* ─── Storefront ─────────────────────────────── */
.sf-cover {
  position: relative;
  height: clamp(320px, 45vh, 480px);
  overflow: hidden;
}
.sf-cover-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.6);
}
.sf-cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, rgba(16,20,28,0.4) 55%, transparent 100%);
}
.sf-header {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding-bottom: 36px;
}
.sf-header-inner {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
.sf-logo {
  width: 90px; height: 90px;
  border-radius: var(--r-md);
  border: 2px solid rgba(212,168,75,0.4);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--navy-600);
  filter: none !important;
}
.sf-info h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.1;
}
.sf-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.sf-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--gold);
}
.sf-est {
  font-size: 0.78rem;
  color: var(--gray-400);
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
}

.sf-bar {
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,0.055);
  padding: 22px 0;
}
.sf-bar-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.sf-desc {
  font-size: 0.875rem;
  color: var(--gray-300);
  max-width: 640px;
  flex: 1 1 320px;
  line-height: 1.65;
}
.sf-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  margin-inline-start: auto;
}

/* Products */
/* Root cause (reported 2026-09-23): with no explicit width, this grid's auto-sizing
   collapsed to a near-zero shrink-wrapped box in real-world rendering (confirmed via
   Playwright at every width from 390px up through 1099px — verified NOT a media-query
   issue, since even the correct 2-column/3-column rules below were already applying;
   the container itself just wasn't filling its parent). An explicit width:100% is the
   minimal, verified fix — content-box width still resolves against .container's own
   padding as expected, at every breakpoint. */
.products-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.product-card {
  background: var(--navy-700);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.055);
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.product-card:hover {
  border-color: rgba(212,168,75,0.22);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.prod-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--navy-600);
}
.prod-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.75);
  transition: transform 0.5s var(--ease-out), filter 0.5s;
}
.product-card:hover .prod-thumb img {
  transform: scale(1.07);
  filter: brightness(0.95) saturate(1);
}

.prod-stock {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: rgba(16,20,28,0.82);
  color: var(--gold);
  border: 1px solid rgba(212,168,75,0.28);
}

.prod-body { padding: 16px; }
.prod-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.prod-body p {
  font-size: 0.77rem;
  color: var(--gray-400);
  margin-bottom: 12px;
  line-height: 1.5;
}
.prod-store {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.prod-store a { color: var(--gold); font-weight: 600; }
.prod-store a:hover { text-decoration: underline; }
.prod-store a:focus-visible { outline: 1px dashed var(--gold); outline-offset: 2px; }
.prod-price {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.prod-price del {
  font-weight: 400;
  opacity: 0.55;
  margin-inline-end: 8px;
  text-decoration: line-through;
}
.prod-price ins {
  text-decoration: none;
}

.btn-wa-prod {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 12px;
  background: rgba(37,211,102,0.07);
  color: #25D366;
  border: 1px solid rgba(37,211,102,0.18);
  border-radius: var(--r-md);
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--trans);
  cursor: pointer;
}
.btn-wa-prod:hover {
  background: rgba(37,211,102,0.14);
  border-color: rgba(37,211,102,0.38);
}

/* Store info boxes */
.sf-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.sf-box {
  padding: 28px;
  background: var(--navy-700);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.055);
}
.sf-box h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 14px;
}
.sf-box p,
.sf-box li {
  font-size: 0.845rem;
  color: var(--gray-300);
  line-height: 1.7;
}
.sf-box ul { display: flex; flex-direction: column; gap: 7px; }
.sf-box li::before { content: '→ '; color: var(--gold); }

/* ─── Directory ──────────────────────────────── */
.dir-search-band {
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,0.055);
  padding: 40px 0 28px;
}
.dir-search-head {
  margin-bottom: 24px;
}
.dir-search-head h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 6px;
}
.dir-search-head p { font-size: 0.95rem; }

.search-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
}
.search-ico {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
.search-inp, .nav-search-inp {
  width: 100%;
  padding: 14px 18px 14px 50px;
  background: var(--navy-600);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--trans);
}
.search-inp::placeholder, .nav-search-inp::placeholder { color: var(--gray-400); }
.search-inp:focus, .nav-search-inp:focus { border-color: rgba(212,168,75,0.6); }

.filter-sel {
  padding: 14px 42px 14px 18px;
  background: var(--navy-600);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892A4' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color var(--trans);
  min-width: 160px;
}
.filter-sel:focus { border-color: rgba(212,168,75,0.6); }

.chips-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip-filter {
  padding: 13px 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-300);
  cursor: pointer;
  transition: var(--trans);
  background: transparent;
}
.chip-filter:hover {
  border-color: rgba(212,168,75,0.38);
  color: var(--gold);
}
.chip-filter.active {
  background: rgba(212,168,75,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.dir-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.search-empty { text-align: center; padding: 60px 0; }
.search-empty p { color: var(--gray-400); margin-bottom: 20px; }
.results-info {
  font-size: 0.83rem;
  color: var(--gray-400);
}
.results-info strong { color: var(--white); }
.sort-sel {
  padding: 7px 32px 7px 14px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-full);
  color: var(--gray-300);
  font-size: 0.8rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238892A4' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color var(--trans);
}
.sort-sel:focus { border-color: rgba(212,168,75,.6); }

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.dir-card {
  background: var(--navy-700);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.055);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.dir-card:hover {
  border-color: rgba(212,168,75,0.22);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.dir-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--navy-600);
}
.dir-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.7);
  transition: transform 0.5s var(--ease-out), filter 0.5s;
}
.dir-card:hover .dir-thumb img {
  transform: scale(1.06);
  filter: brightness(0.8) saturate(0.95);
}
/* .dir-thumb img (0,1,1) is more specific than a bare .dir-mini-logo (0,1,0)
   and would win regardless of source order, forcing the mini logo to the same
   100%/100% box as the banner. Scope under .dir-thumb to raise specificity to
   (0,2,0) — this only mattered once U7 gave the mini logo a real src (it never
   rendered before, so the collision was invisible). */
.dir-thumb .dir-mini-logo {
  position: absolute;
  bottom: 12px; left: 12px;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(212,168,75,0.38);
  background: var(--navy-600);
  object-fit: cover;
}

.dir-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dir-body h3 {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
}
.dir-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.dir-count {
  font-size: 0.74rem;
  color: var(--gray-400);
}

.dir-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-top: 1px solid rgba(255,255,255,0.055);
}
.dir-footer span { font-size: 0.75rem; color: var(--gray-500); }

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 1100px) {
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid   { grid-template-columns: repeat(2, 1fr); }
  .products-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .flight-layout   { grid-template-columns: 1fr; }
  .flight-copy     { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
  .flight-cities   { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 768px) {
  /* BLD-014: search/filter/sort inputs sit under the 16px iOS zoom-avoidance
     threshold — bump to 16px at mobile widths only; desktop keeps the design's
     smaller sizes. */
  .search-inp, .nav-search-inp, .filter-sel, .sort-sel { font-size: 16px; }
  .nav-links           { display: none; }
  .nav-cta             { display: none; }
  .nav-inner .nav-search { display: none; }
  .nav-hamburger       { display: flex; }
  .categories-grid     { grid-template-columns: repeat(2, 1fr); }
  .steps-row           { grid-template-columns: 1fr; }
  .steps-row::before   { display: none; }
  .pricing-grid        { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-5px); }
  .sf-header-inner     { flex-direction: column; align-items: flex-start; }
  .products-grid       { grid-template-columns: repeat(2, 1fr); }
  .sf-about-grid       { grid-template-columns: 1fr; }
  .directory-grid      { grid-template-columns: repeat(2, 1fr); }
  .sf-bar-inner        { flex-direction: column; }
  .sf-desc              { flex: 0 1 auto; max-width: none; }
  .sf-actions           { margin-inline-start: 0; width: 100%; }
  .footer-grid         { grid-template-columns: 1fr; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .diaspora-stats      { gap: 28px; }
  .search-row          { flex-direction: column; }
  .filter-sel          { width: 100%; }
}

@media (max-width: 480px) {
  .featured-grid   { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .directory-grid  { grid-template-columns: repeat(2, 1fr); }
  .dir-results-bar { flex-direction: column; align-items: flex-start; }
}

/* ─── prefers-reduced-motion ─────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-up { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
