/* ==========================================================
   Alali Cowork — site styles
   Colour palette mirrors the brochure (grey + orange + warm cream).
   Layout uses CSS logical properties (margin-inline, padding-block)
   so RTL/Arabic is a flip of <html dir="rtl"> with no extra work.
   ========================================================== */

:root {
  --ink: #1e1e22;
  --ink-soft: #4a4a4f;
  --ink-muted: #7a7a7f;
  --orange: #c54a1c;
  --orange-soft: #e07a4d;
  --orange-dark: #a13913;
  --cream: #f5ede0;
  --cream-dark: #e8dfd0;
  --warm-bg: #faf5ec;
  --line: #e2dbcb;
  --dark-teal: #0f4852;
  --whatsapp: #25d366;
  --whatsapp-dark: #1fa355;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 48px);
  --radius: 8px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;

  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h1 em, h2 em, h3 em {
  color: var(--orange);
  font-style: italic;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad-x);
}

/* ===== Eyebrow / shared bits ===== */
.eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow.light { color: var(--orange-soft); }

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--ink);
  margin-bottom: 20px;
}
.section-title.light { color: #fff; }

.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 56ch;
}
.col-copy p {
  margin-bottom: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 56ch;
}
.col-copy p:last-of-type { margin-bottom: 0; }
.lead-muted {
  font-size: 15px;
  color: var(--ink-muted);
  max-width: 60ch;
  line-height: 1.7;
}
.lead-muted.light { color: rgba(255,255,255,0.75); }

.section {
  padding-block: clamp(60px, 8vw, 120px);
}
.section-head {
  margin-bottom: 48px;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
  max-width: 640px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.two-col.reverse .col-copy { order: 2; }
.two-col.reverse .col-img { order: 1; }

.col-img img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197,74,28,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.section.dark .btn-ghost,
.virtual-tour-block .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pad-x);
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  background: transparent;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
}
.lang-toggle:hover { border-color: var(--ink); }

.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-pill:hover { background: var(--whatsapp-dark); color: #fff !important; }
.wa-pill svg { flex-shrink: 0; }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: all 0.2s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slow-zoom 24s ease-in-out infinite alternate;
}
@keyframes slow-zoom { to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    rgba(15,15,18,0.88) 0%,
    rgba(15,15,18,0.68) 35%,
    rgba(15,15,18,0.35) 70%,
    rgba(15,15,18,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-inline: var(--pad-x);
  max-width: 820px;
  margin-inline: auto;
  width: 100%;
  max-width: var(--maxw);
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(54px, 9vw, 128px);
  line-height: 1.02;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 10ch;
}
.hero-title em {
  color: var(--orange-soft);
  font-style: italic;
  font-weight: 500;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 56ch;
  opacity: 0.88;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-cta .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.hero-cta .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}
.hero-pill {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
}
.hero-pill strong {
  color: var(--orange-soft);
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  z-index: 2;
}
.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: 6px;
  background: #fff;
  margin-left: -1px;
  border-radius: 1px;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
  0%, 20% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* ===== Banner strip ===== */
.banner-strip {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding-block: 14px;
}
.banner-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}
.banner-track span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== Concept ===== */
.concept { background: var(--warm-bg); }

/* ===== Amenities ===== */
.amenities { background: #fff; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  padding: 36px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(30,30,34,0.08);
}
.pillar-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 500;
}
.pillar h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--ink);
}
.pillar ul {
  list-style: none;
}
.pillar li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding: 10px 0 10px 20px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.pillar li:last-child { border-bottom: none; }
.pillar li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

/* ===== Offices ===== */
.offices { background: var(--warm-bg); }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0;
}
.stat {
  padding: 20px 16px;
  background: #fff;
  border-inline-start: 3px solid var(--orange);
  border-radius: 4px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--ink);
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
}
.price-line .currency {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink-soft);
}
.price-line .amount {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--orange);
  line-height: 1;
  font-weight: 500;
}
.price-line .period {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== Floor plans ===== */
.floorplans.dark { background: var(--dark-teal); }
.plan-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.plan-tab {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.75);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.plan-tab:hover { border-color: rgba(255,255,255,0.8); color: #fff; }
.plan-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.plan-image {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}
.plan-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

/* ===== Gallery ===== */
.gallery { background: #fff; padding-bottom: clamp(80px, 10vw, 140px); }
.gallery-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 var(--pad-x) 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.gallery-item {
  flex: 0 0 auto;
  width: clamp(260px, 38vw, 480px);
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.gallery-item figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 20px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

/* ===== Location ===== */
.location { background: var(--warm-bg); }
.address {
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-top: 12px;
}
.address-sub {
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.location-list {
  list-style: none;
  margin: 24px 0;
}
.location-list li {
  padding: 12px 0 12px 24px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.location-list li::before {
  content: "→";
  position: absolute;
  inset-inline-start: 0;
  top: 12px;
  color: var(--orange);
  font-weight: 600;
}
.location-list li:last-child { border-bottom: none; }
.map-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  background: #eee;
}
.map-frame iframe { display: block; }

/* ===== Virtual tour block ===== */
.virtual-tour-block {
  background: linear-gradient(135deg, var(--ink) 0%, #2a2a30 100%);
  color: #fff;
}
.virtual-tour-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  flex-wrap: wrap;
}
.virtual-tour-inner > :first-child { flex: 1 1 400px; max-width: 600px; }
.qr-wrap {
  text-align: center;
}
.qr-wrap img {
  width: 200px;
  height: 200px;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}
.qr-caption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* ===== Contact ===== */
.contact { background: #fff; }
.contact-methods {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-method {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.cm-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.cm-value {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
}
a.cm-value:hover { color: var(--orange); }

.wa-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp);
  color: #fff !important;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  margin-top: 8px;
}
.wa-big:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* Form */
#contact-form {
  background: var(--warm-bg);
  padding: clamp(24px, 4vw, 40px);
  border-radius: 12px;
  border: 1px solid var(--line);
}
.field {
  margin-bottom: 20px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(197,74,28,0.12);
}
.field textarea { resize: vertical; }
.field.error input, .field.error textarea { border-color: #d93025; }
.field-error {
  font-size: 12px;
  color: #d93025;
  margin-top: 4px;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  position: relative;
}
.btn-submit .btn-spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .btn-label { opacity: 0.4; }
.btn-submit.loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}
.form-message.success {
  display: block;
  background: #e7f7ed;
  color: #0a6b2a;
  border: 1px solid #b7e4c7;
}
.form-message.error {
  display: block;
  background: #fce8e6;
  color: #a50e0e;
  border: 1px solid #f4c7c3;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { margin-bottom: 16px; }
.footer-brand p { max-width: 30ch; font-size: 14px; line-height: 1.6; }
.footer h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer a:hover { color: var(--orange-soft); }
.footer p { font-size: 14px; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.lightbox.open { display: flex; }
.lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox button {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.15s;
}
.lightbox button:hover { background: rgba(255,255,255,0.25); }
.lb-close { top: 20px; inset-inline-end: 20px; }
.lb-prev  { inset-inline-start: 20px; top: 50%; transform: translateY(-50%); }
.lb-next  { inset-inline-end: 20px; top: 50%; transform: translateY(-50%); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    inset-inline: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav.menu-open .nav-links a {
    padding: 14px var(--pad-x);
    border-bottom: 1px solid var(--line);
  }
  .nav-right .lang-toggle { display: none; }

  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse .col-copy { order: 1; }
  .two-col.reverse .col-img { order: 2; }

  .pillars { grid-template-columns: 1fr; }

  .virtual-tour-inner { grid-template-columns: 1fr; text-align: center; }
  .qr-wrap { margin-inline: auto; }

  .footer-inner { grid-template-columns: 1fr 1fr; }

  .field-row { grid-template-columns: 1fr; }

  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

@media (max-width: 500px) {
  .nav-logo img { height: 32px; }
  .wa-pill span { display: none; }
  .wa-pill { padding: 8px; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}

/* ===== RTL niceties (Arabic) ===== */
html[dir="rtl"] .hero-overlay {
  background: linear-gradient(-105deg,
    rgba(15,15,18,0.88) 0%,
    rgba(15,15,18,0.68) 35%,
    rgba(15,15,18,0.35) 70%,
    rgba(15,15,18,0.15) 100%);
}
html[dir="rtl"] .nav-links a::after { transform-origin: right; }

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .banner-track { animation: none; }
  .hero-bg { animation: none; transform: none; }
}
