/* =================================================================
   GENESIS LUXURY — Dubai chauffeur & limousine investment
   Design system: obsidian + champagne gold, editorial serif display
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:        #0a0a0b;   /* obsidian base */
  --ink-2:      #101014;   /* raised surface */
  --ink-3:      #16161c;   /* card */
  --ink-4:      #1e1e26;   /* hover / border-ish */
  --line:       rgba(255,255,255,.09);
  --line-2:     rgba(255,255,255,.14);

  --gold:       #c8a250;
  --gold-2:     #e6c877;
  --gold-3:     #a9863c;
  --gold-grad:  linear-gradient(135deg, #e6c877 0%, #c8a250 45%, #9c7c34 100%);
  --gold-soft:  rgba(200,162,80,.14);
  --gold-line:  rgba(200,162,80,.30);

  --cream:      #f6f2e9;   /* headings */
  --text:       #d7d3cb;   /* body on dark */
  --muted:      #9a978f;   /* secondary */
  --faint:      #6d6b66;

  --white:      #ffffff;

  --serif: "Cormorant Garamond", "Noto Serif", Georgia, serif;
  --sans:  "Plus Jakarta Sans", "Noto Sans Arabic", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1240px;
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow:     0 24px 60px -24px rgba(0,0,0,.7);
  --shadow-gold: 0 20px 50px -20px rgba(200,162,80,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; color-scheme: dark; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }

.ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 2000;
  background: var(--gold); color: var(--ink); padding: 10px 18px; border-radius: 8px; font-weight: 700;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ---------- Section shells ---------- */
.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__head.reveal + * { margin-top: 0; }
.eyebrow--center ~ .section__title, .section__head .eyebrow--center { }
.section__head:has(.eyebrow--center) { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 20px;
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px var(--gold-soft); flex: none; }

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--cream);
}
.section__title em { font-style: italic; color: var(--gold-2); }
.section__lead {
  margin-top: 20px; font-size: clamp(16px, 1.5vw, 19px); color: var(--muted); max-width: 60ch;
}
.section__head:has(.eyebrow--center) .section__lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --pv: 13px; --ph: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pv) var(--ph);
  border-radius: 100px; border: 1px solid transparent;
  font-weight: 600; font-size: 15px; letter-spacing: .01em; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
}
.btn .ic { width: 18px; height: 18px; }
.btn--sm { --pv: 9px; --ph: 18px; font-size: 14px; }
.btn--lg { --pv: 16px; --ph: 32px; font-size: 16px; }
.btn--block { display: flex; width: 100%; }

.btn--gold { background: var(--gold-grad); color: #241c07; box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 26px 60px -18px rgba(200,162,80,.6); }
.btn--ghost { border-color: var(--line-2); color: var(--cream); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--gold-line); color: var(--gold-2); transform: translateY(-2px); }
.btn--ghost-light { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
  font-weight: 600; color: var(--gold-2); font-size: 15px;
}
.link-arrow .ic { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.link-arrow:hover .ic { transform: translateX(5px); }

/* ---------- Top bar ---------- */
.topbar { background: #060607; border-bottom: 1px solid var(--line); font-size: 12.5px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar__meta, .topbar__actions { display: flex; align-items: center; gap: 16px; color: var(--muted); }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item .ic { width: 14px; height: 14px; color: var(--gold); }
.topbar__item--badge { color: var(--gold-2); }
.topbar__sep { width: 1px; height: 13px; background: var(--line-2); }
.topbar__link { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar__link:hover { color: var(--gold-2); }
.topbar__link .ic { width: 14px; height: 14px; color: var(--gold); }
@media (max-width: 900px) { .topbar__actions { display: none; } .topbar__item--badge { display: none; } }
@media (max-width: 560px) { .topbar__sep { display: none; } .topbar__meta { gap: 12px; font-size: 11.5px; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,11,.72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(8,8,9,.9); border-bottom-color: var(--line); box-shadow: 0 10px 40px -20px rgba(0,0,0,.8); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { height: 38px; width: auto; display: block; }
.brand--footer .brand__logo { height: 44px; }
@media (max-width: 560px) { .brand__logo { height: 32px; } }
.brand__mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--gold-line); border-radius: 12px; background: radial-gradient(120% 120% at 30% 20%, rgba(200,162,80,.16), transparent 70%);
}
.brand__mark svg { width: 26px; height: 26px; stroke: var(--gold-2); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 22px; letter-spacing: .22em; color: var(--cream); }
.brand__sub { font-size: 10px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__link { position: relative; font-size: 14.5px; font-weight: 500; color: var(--text); padding: 6px 0; transition: color .2s; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--gold-grad); transition: width .3s var(--ease); }
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; gap: 14px; }

/* language switcher */
.lang { position: relative; }
.lang__btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line-2); border-radius: 100px;
  color: var(--text); padding: 8px 12px; font-size: 13px; font-weight: 600; transition: border-color .2s, color .2s;
}
.lang__btn:hover { border-color: var(--gold-line); color: var(--gold-2); }
.lang__btn .ic { width: 16px; height: 16px; color: var(--gold); }
.lang__chev { width: 14px; height: 14px; fill: currentColor; stroke: none; transition: transform .25s; }
.lang.open .lang__chev { transform: rotate(180deg); }
.lang__menu {
  position: absolute; top: calc(100% + 10px); inset-inline-end: 0; min-width: 190px; list-style: none; padding: 8px;
  background: var(--ink-3); border: 1px solid var(--line-2); border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s, transform .2s, visibility .2s; z-index: 20;
}
.lang.open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__opt {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: none; border: 0; color: var(--text); padding: 9px 12px; border-radius: 9px; font-size: 14px; text-align: start; transition: background .15s, color .15s;
}
.lang__opt:hover { background: rgba(255,255,255,.05); color: var(--cream); }
.lang__opt.active { color: var(--gold-2); }
.lang__code { font-size: 11px; color: var(--faint); font-weight: 700; letter-spacing: .1em; }

.hamburger { display: none; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px; background: rgba(255,255,255,.03); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { width: 20px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s, opacity .2s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) { .nav { display: none; } .hamburger { display: flex; } .header-cta { display: none; } }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; top: 0; z-index: 1500; background: rgba(8,8,9,.98); backdrop-filter: blur(10px);
  padding: 100px 28px 40px; display: flex; flex-direction: column; gap: 8px;
  transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__link { font-family: var(--serif); font-size: 28px; color: var(--cream); padding: 12px 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 22px; }
.mobile-menu__lang { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.mobile-menu__langopt { background: rgba(255,255,255,.04); border: 1px solid var(--line-2); color: var(--text); border-radius: 100px; padding: 8px 16px; font-size: 13px; font-weight: 700; }
.mobile-menu__langopt.active { background: var(--gold-soft); border-color: var(--gold-line); color: var(--gold-2); }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 8vw, 110px); overflow: hidden; min-height: 88vh; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  position: absolute; inset: 0;
  background: #08080a url("../img/hero.jpg") center right / cover no-repeat;
  transform: scale(1.06); will-change: transform;
}
.hero__dust { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 8%, rgba(10,10,11,.82) 38%, rgba(10,10,11,.35) 68%, rgba(10,10,11,.55) 100%),
    linear-gradient(0deg, var(--ink) 2%, transparent 30%, transparent 70%, rgba(10,10,11,.6) 100%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: center; width: 100%; }
.hero__content { max-width: 620px; }
.hero .eyebrow { background: rgba(200,162,80,.08); border: 1px solid var(--gold-line); padding: 7px 14px; border-radius: 100px; }
.hero__title {
  font-family: var(--serif); font-weight: 500; color: var(--cream);
  font-size: clamp(40px, 6.6vw, 78px); line-height: 1.02; letter-spacing: -.015em; margin-bottom: 22px;
}
.hero__title em { display: block; font-style: italic; color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; }
.hero__subtitle { font-size: clamp(16px, 1.6vw, 19px); color: var(--text); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; align-items: center; gap: 14px; margin-top: 32px; color: var(--muted); font-size: 14px; }
.hero__stars { color: var(--gold-2); letter-spacing: 3px; font-size: 15px; }
.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 1.5px solid var(--line-2); border-radius: 20px; display: grid; place-items: start center; padding-top: 8px; }
.hero__scroll span { width: 3px; height: 8px; border-radius: 3px; background: var(--gold); animation: scroll 1.8s var(--ease) infinite; }
@keyframes scroll { 0% { opacity: 0; transform: translateY(-2px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } }

/* ---------- Booking widget ---------- */
.booking {
  background: linear-gradient(180deg, rgba(28,28,34,.92), rgba(16,16,20,.94));
  border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); backdrop-filter: blur(14px);
  overflow: hidden; scroll-margin-top: 100px;
}
.booking__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.booking__tabs { display: inline-flex; background: rgba(0,0,0,.35); border: 1px solid var(--line); border-radius: 100px; padding: 4px; }
.booking__tab { background: none; border: 0; color: var(--muted); padding: 8px 16px; border-radius: 100px; font-size: 13.5px; font-weight: 600; transition: color .2s, background .2s; }
.booking__tab.is-active { background: var(--gold-grad); color: #241c07; }
.booking__steps { font-size: 13px; color: var(--muted); font-weight: 600; }
.booking__steps #bookStepNow { color: var(--gold-2); font-size: 15px; }
.booking__steps-sep { margin: 0 2px; color: var(--faint); }
.booking__body { padding: 22px 20px 18px; }
.booking__step { display: none; animation: fadeStep .35s var(--ease); }
.booking__step.is-active { display: block; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.booking__label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }

.booking__vehicles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vpick { position: relative; cursor: pointer; }
.vpick input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.vpick__card { display: flex; flex-direction: column; gap: 3px; padding: 14px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: rgba(255,255,255,.02); transition: border-color .2s, background .2s, transform .2s; }
.vpick__card:hover { border-color: var(--gold-line); transform: translateY(-2px); }
.vpick input:checked + .vpick__card { border-color: var(--gold); background: var(--gold-soft); box-shadow: inset 0 0 0 1px var(--gold-line); }
.vpick__name { font-weight: 700; color: var(--cream); font-size: 15px; }
.vpick__meta { font-size: 12px; color: var(--muted); }
.vpick__seats { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gold-2); margin-top: 4px; }
.vpick__seats .ic { width: 13px; height: 13px; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.field__opt { color: var(--faint); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(0,0,0,.28); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  color: var(--cream); padding: 12px 14px; font-size: 15px; font-family: inherit; transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: rgba(0,0,0,.4); outline: none; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c8a250' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-inline-end: 40px; }
.field__icon { position: relative; }
.field__icon .ic { position: absolute; inset-inline-start: 13px; top: 50%; transform: translateY(-50%); color: var(--gold); width: 17px; height: 17px; pointer-events: none; }
.field__icon input, .field__icon select { padding-inline-start: 40px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* native date/time picker indicators — keep visible & gold on dark fields */
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(74%) sepia(35%) saturate(520%) hue-rotate(2deg) brightness(92%);
  opacity: .95; cursor: pointer;
}
.ic--wa { fill: currentColor; stroke: none; }

.booking__summary { background: rgba(200,162,80,.06); border: 1px solid var(--gold-line); border-radius: var(--radius-sm); padding: 14px; margin-bottom: 16px; font-size: 13.5px; color: var(--text); }
.booking__summary strong { color: var(--gold-2); }
.booking__summary .bsum-row { display: flex; justify-content: space-between; gap: 12px; padding: 3px 0; }

.booking__foot { display: flex; gap: 10px; margin-top: 6px; }
.booking__next, .booking__submit { flex: 1; }
.booking__note { font-size: 11.5px; color: var(--faint); text-align: center; margin-top: 12px; line-height: 1.5; }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #060607; overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 26px; padding-inline-end: 26px; flex: none; }
.marquee__group span { font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--muted); white-space: nowrap; }
.marquee__dot { color: var(--gold) !important; font-style: normal !important; font-size: 12px !important; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Stats ---------- */
.stats { padding: clamp(46px, 6vw, 72px) 0; border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin-inline: auto; }
.stat { text-align: center; padding: 10px; }
.stat__num { display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(36px, 5vw, 58px); line-height: 1; color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; }
.stat__label { display: block; margin-top: 10px; font-size: 13.5px; color: var(--muted); letter-spacing: .02em; }
@media (max-width: 640px) { .stats__grid { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc { position: relative; background: linear-gradient(180deg, var(--ink-3), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; transition: border-color .3s, transform .3s; overflow: hidden; }
.svc::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 100% 0%, var(--gold-soft), transparent 55%); opacity: 0; transition: opacity .35s; }
.svc:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.svc:hover::before { opacity: 1; }
.svc--featured { border-color: var(--gold-line); background: linear-gradient(180deg, #1b1810, var(--ink-2)); }
.svc__badge { position: absolute; top: 22px; inset-inline-end: 22px; background: var(--gold-grad); color: #241c07; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.svc__icon { width: 60px; height: 60px; display: grid; place-items: center; border-radius: 16px; border: 1px solid var(--gold-line); background: var(--gold-soft); margin-bottom: 22px; }
.svc__icon svg { width: 30px; height: 30px; fill: none; stroke: var(--gold-2); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc__tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.svc__title { font-family: var(--serif); font-weight: 600; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.12; color: var(--cream); margin-bottom: 14px; }
.svc__desc { color: var(--muted); font-size: 15.5px; }
.svc__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 11px; }
.svc__list li { position: relative; padding-inline-start: 28px; font-size: 14.5px; color: var(--text); }
.svc__list li::before { content: ""; position: absolute; inset-inline-start: 0; top: 7px; width: 15px; height: 15px; border-radius: 50%; background: var(--gold-soft); border: 1px solid var(--gold-line); }
.svc__list li::after { content: ""; position: absolute; inset-inline-start: 4.5px; top: 10px; width: 6px; height: 3.5px; border-inline-start: 1.5px solid var(--gold-2); border-bottom: 1.5px solid var(--gold-2); transform: rotate(-45deg); }
@media (max-width: 820px) { .services__grid { grid-template-columns: 1fr; } .svc { padding: 32px 26px; } }

/* ---------- Fleet ---------- */
.fleet__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.car { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, box-shadow .3s; transform-style: preserve-3d; will-change: transform; }
.car:hover { border-color: var(--gold-line); box-shadow: var(--shadow); }
.car__media { aspect-ratio: 3/2; overflow: hidden; background: #0d0d10; }
.car__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); transform: translateZ(0); }
.car:hover .car__media img { transform: scale(1.06); }
.car__body { padding: 20px; }
.car__row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.car__name { font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--cream); }
.car__seat { font-size: 12.5px; color: var(--gold-2); white-space: nowrap; }
.car__desc { margin-top: 8px; font-size: 13.5px; color: var(--muted); }
.car__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.car__tags span { font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--gold-2); background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: 100px; padding: 4px 10px; }
@media (max-width: 980px) { .fleet__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .fleet__grid { grid-template-columns: 1fr; } }

/* ---------- Popular transfers & services ---------- */
.transfers { padding: clamp(54px, 7vw, 88px) 0; border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.transfers__grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; max-width: 1000px; margin: 0 auto; }
.tchip { display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border: 1px solid var(--line-2); border-radius: 100px; background: rgba(255,255,255,.02); color: var(--text); font-size: 14px; font-weight: 500; transition: border-color .25s var(--ease), color .25s, background .25s, transform .25s var(--ease); }
.tchip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; box-shadow: 0 0 0 3px var(--gold-soft); transition: box-shadow .25s; }
.tchip:hover { border-color: var(--gold-line); color: var(--cream); background: var(--gold-soft); transform: translateY(-2px); }
.tchip:hover::before { box-shadow: 0 0 0 4px rgba(200,162,80,.22); }
@media (max-width: 520px) { .tchip { font-size: 13px; padding: 10px 15px; } }

/* ---------- Experience ---------- */
.experience__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.experience__imgwrap { position: relative; border-radius: var(--radius-lg); overflow: visible; transform-style: preserve-3d; }
.experience__imgwrap img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 16/10; object-fit: cover; }
.experience__chip { position: absolute; background: rgba(16,16,20,.92); border: 1px solid var(--line-2); backdrop-filter: blur(10px); border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.experience__chip strong { color: var(--gold-2); font-size: 15px; }
.experience__chip span { color: var(--muted); font-size: 12px; }
.experience__chip--1 { inset-inline-start: -18px; bottom: 26px; }
.experience__chip--2 { inset-inline-end: -14px; top: 26px; }
.feat { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 20px; }
.feat__item { display: flex; gap: 16px; }
.feat__ic { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--gold-line); background: var(--gold-soft); }
.feat__ic svg { width: 22px; height: 22px; fill: none; stroke: var(--gold-2); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feat__item strong { display: block; color: var(--cream); font-size: 16px; margin-bottom: 2px; }
.feat__item span { color: var(--muted); font-size: 14px; }
@media (max-width: 900px) { .experience__grid { grid-template-columns: 1fr; } .experience__chip--1 { inset-inline-start: 12px; } .experience__chip--2 { inset-inline-end: 12px; } }

/* ---------- Invest ---------- */
.invest { overflow: hidden; }
.invest__bg { position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(200,162,80,.12), transparent 60%),
    linear-gradient(180deg, rgba(12,12,15,.90) 0%, rgba(12,12,15,.93) 45%, var(--ink-2) 100%),
    url("../img/investor-fleet.jpg") center 20% / cover no-repeat;
}
.invest .container { position: relative; z-index: 1; }
.invest__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.istep { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; transition: border-color .3s, transform .3s; }
.istep:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.istep__num { font-family: var(--serif); font-size: 28px; font-weight: 600; color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; }
.istep h3 { font-size: 17px; color: var(--cream); margin: 12px 0 8px; font-weight: 700; }
.istep p { font-size: 14px; color: var(--muted); }

.invest__panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: stretch; }
.calc { background: linear-gradient(180deg, #1b1810, var(--ink-2)); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); padding: 32px; }
.calc__head h3 { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--cream); }
.calc__head p { font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.calc__control { margin-top: 24px; }
.calc__control > label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.calc__models { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.calc__model { background: rgba(255,255,255,.02); border: 1px solid var(--line-2); border-radius: var(--radius-sm); color: var(--text); padding: 12px; font-size: 14px; font-weight: 600; transition: border-color .2s, background .2s, color .2s; }
.calc__model:hover { border-color: var(--gold-line); }
.calc__model.is-active { border-color: var(--gold); background: var(--gold-soft); color: var(--gold-2); }
.calc__labelrow { display: flex; align-items: center; justify-content: space-between; }
.calc__utilval { font-size: 13px; font-weight: 700; color: var(--gold-2); }
.calc input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 6px; background: linear-gradient(90deg, var(--gold) var(--fill,55%), rgba(255,255,255,.1) var(--fill,55%)); outline: none; }
.calc input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-grad); border: 3px solid #1b1810; box-shadow: 0 4px 12px rgba(0,0,0,.5); cursor: pointer; }
.calc input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--gold-2); border: 3px solid #1b1810; cursor: pointer; }
.calc__scale { display: flex; justify-content: space-between; margin-top: 8px; font-size: 11.5px; color: var(--faint); }
.calc__result { margin: 26px 0 20px; padding: 22px; background: rgba(0,0,0,.3); border: 1px solid var(--line-2); border-radius: var(--radius); }
.calc__reslabel { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.calc__resval { display: block; font-family: var(--serif); font-weight: 700; font-size: clamp(38px, 6vw, 52px); line-height: 1; color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; margin-top: 6px; }
.calc__permo { font-family: var(--sans); font-size: 15px; font-weight: 500; color: var(--muted); -webkit-text-fill-color: var(--muted); margin-inline-start: 6px; }
.calc__resmeta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; margin-top: 16px; font-size: 13px; color: var(--muted); }
.calc__resmeta strong { color: var(--cream); }
.calc__disclaimer { font-size: 11.5px; color: var(--faint); margin-top: 14px; line-height: 1.5; }

.invest__includes { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; }
.invest__includes h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--cream); margin-bottom: 20px; }
.inc { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.inc li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--text); }
.ic--check { width: 20px; height: 20px; color: var(--gold-2); flex: none; margin-top: 1px; }
.invest__ownnote { margin-top: auto; padding-top: 22px; }
.invest__ownnote { display: flex; gap: 14px; align-items: flex-start; margin-top: 24px; padding: 18px; background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: var(--radius); }
.invest__ownnote .ic { color: var(--gold-2); width: 26px; height: 26px; flex: none; }
.invest__ownnote p { font-size: 13.5px; color: var(--text); }
@media (max-width: 980px) { .invest__steps { grid-template-columns: 1fr 1fr; } .invest__panel { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .invest__steps { grid-template-columns: 1fr; } .calc, .invest__includes { padding: 26px 22px; } .calc__models { grid-template-columns: 1fr; } }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: border-color .3s, transform .3s; }
.why-card:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.why-card__num { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--gold); letter-spacing: .05em; }
.why-card h3 { font-size: 19px; color: var(--cream); margin: 14px 0 10px; font-weight: 700; }
.why-card p { font-size: 14.5px; color: var(--muted); }
@media (max-width: 900px) { .why__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why__grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pcol { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }
.pcol__title { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 24px; color: var(--cream); margin-bottom: 24px; }
.pcol__badge { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text); background: rgba(255,255,255,.06); border: 1px solid var(--line-2); padding: 5px 11px; border-radius: 100px; }
.pcol__badge--gold { color: #241c07; background: var(--gold-grad); border-color: transparent; }
.pcol__steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; counter-reset: p; }
.pcol__steps li { display: flex; gap: 16px; }
.pcol__n { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--gold-line); color: var(--gold-2); font-weight: 700; font-size: 14px; background: var(--gold-soft); }
.pcol__steps strong { display: block; color: var(--cream); font-size: 16px; }
.pcol__steps span { color: var(--muted); font-size: 14px; }
@media (max-width: 820px) { .process__cols { grid-template-columns: 1fr; } .pcol { padding: 28px 24px; } }

/* ---------- Testimonials ---------- */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; }
.testimonial__stars { color: var(--gold-2); letter-spacing: 2px; margin-bottom: 16px; }
.testimonial blockquote { font-family: var(--serif); font-size: 19px; line-height: 1.5; color: var(--cream); font-style: italic; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.testimonial__avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-2); font-weight: 700; font-family: var(--serif); }
.testimonial figcaption strong { display: block; color: var(--cream); font-size: 14.5px; }
.testimonial figcaption em { color: var(--muted); font-size: 12.5px; font-style: normal; }
.testimonials__note { text-align: center; font-size: 12.5px; color: var(--faint); margin-top: 24px; }
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.faq__intro { position: sticky; top: 100px; }
.faq__list { display: grid; gap: 12px; }
.faq-item { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .25s; }
.faq-item[open] { border-color: var(--gold-line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-weight: 600; font-size: 16px; color: var(--cream); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__icon { position: relative; flex: none; width: 20px; height: 20px; }
.faq-item__icon::before, .faq-item__icon::after { content: ""; position: absolute; background: var(--gold-2); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-item__icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.faq-item__icon::after { top: 2px; left: 9px; width: 2px; height: 16px; }
.faq-item[open] .faq-item__icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item__body { padding: 0 22px 20px; }
.faq-item__body p { color: var(--muted); font-size: 14.5px; }
@media (max-width: 860px) { .faq__inner { grid-template-columns: 1fr; } .faq__intro { position: static; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; padding: clamp(70px, 9vw, 120px) 0; overflow: hidden; text-align: center; }
.cta-band__bg { position: absolute; inset: 0; background: #08080a url("../img/skyline.jpg") center / cover no-repeat; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,.78), rgba(8,8,10,.92)); }
.cta-band__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.cta-band__title { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 5vw, 52px); line-height: 1.1; color: var(--cream); }
.cta-band__text { margin-top: 18px; font-size: clamp(16px, 1.6vw, 19px); color: var(--text); }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); }
.contact__details { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 18px; }
.contact__details li { display: flex; gap: 14px; align-items: flex-start; }
.contact__ic { flex: none; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--gold-line); background: var(--gold-soft); }
.contact__ic .ic { color: var(--gold-2); }
.contact__details strong { display: block; color: var(--cream); font-size: 14px; margin-bottom: 2px; }
.contact__details a, .contact__details span { color: var(--muted); font-size: 14.5px; }
.contact__details a:hover { color: var(--gold-2); }
.contact__form { background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; }
.field-note { font-size: 12px; color: var(--faint); margin-top: 12px; text-align: center; }
.form-success { margin-top: 14px; padding: 12px 16px; background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: var(--radius-sm); color: var(--gold-2); font-size: 13.5px; }
@media (max-width: 860px) { .contact__grid { grid-template-columns: 1fr; } .contact__form { padding: 28px 24px; } }

/* ---------- Footer ---------- */
.footer { background: #060607; border-top: 1px solid var(--line); padding-top: clamp(50px, 7vw, 80px); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 32px; padding-bottom: 44px; }
.brand--footer { margin-bottom: 20px; }
.footer__blurb { color: var(--muted); font-size: 14px; max-width: 42ch; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--line-2); color: var(--text); transition: border-color .2s, color .2s, transform .2s; }
.footer__social a:hover { border-color: var(--gold-line); color: var(--gold-2); transform: translateY(-2px); }
.footer__social .ic { fill: currentColor; stroke: none; width: 18px; height: 18px; }
.footer__col h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer__col a, .footer__col span { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--gold-2); }
.footer__cta { margin-top: 14px; }
.footer__col a.btn { display: inline-flex; width: auto; color: #241c07; padding: 10px 20px; }
.footer__col a.btn:hover { color: #241c07; }
.footer__bottom { border-top: 1px solid var(--line); padding: 22px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--faint); }
.footer__legal { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: var(--gold-2); }
.footer__rta { color: var(--gold); }
.footer__legalname { color: var(--faint); font-size: 12px; width: 100%; margin-top: 4px; }

/* ---------- Legal pages (privacy / terms) ---------- */
.legal-topbar { border-bottom: 1px solid var(--line); background: rgba(10,10,11,.92); backdrop-filter: blur(14px); position: sticky; top: 0; z-index: 100; }
.legal-topbar__inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 500; transition: color .2s; }
.legal-back:hover { color: var(--gold-2); }
.legal-back .ic { width: 18px; height: 18px; }
.legal { padding: clamp(44px,6vw,80px) 0 clamp(60px,8vw,110px); }
.legal__inner { max-width: 820px; }
.legal h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,5vw,50px); color: var(--cream); margin-bottom: 8px; }
.legal__meta { color: var(--faint); font-size: 13.5px; padding-bottom: 26px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-prose h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(21px,2.6vw,27px); color: var(--gold-2); margin: 36px 0 12px; }
.legal-prose h3 { font-size: 16.5px; color: var(--cream); margin: 22px 0 6px; font-weight: 700; }
.legal-prose p { color: var(--text); font-size: 15.5px; margin-bottom: 14px; }
.legal-prose ul { margin: 0 0 16px; padding-inline-start: 22px; }
.legal-prose li { color: var(--muted); font-size: 15px; margin-bottom: 8px; }
.legal-prose a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
.legal-prose strong { color: var(--cream); }
.legal__box { margin: 26px 0; padding: 18px 20px; background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: var(--radius); }
.legal__box p { font-size: 14px; margin: 0; color: var(--text); }
.legal-foot { border-top: 1px solid var(--line); background: #060607; padding: 26px 0; }
.legal-foot__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--faint); }
.legal-foot a { color: var(--muted); transition: color .2s; }
.legal-foot a:hover { color: var(--gold-2); }

/* ---------- Cookie banner ---------- */
.cookie { position: fixed; inset-inline: 16px; bottom: 16px; z-index: 1200; max-width: 520px; margin-inline: auto; background: rgba(20,20,26,.97); border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px 20px; backdrop-filter: blur(12px); transform: translateY(140%); transition: transform .5s var(--ease); }
.cookie.show { transform: translateY(0); }
.cookie p { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.cookie p a { color: var(--gold-2); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; }
@media (prefers-reduced-motion: reduce) { .cookie { transition: none; } }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; inset-inline-end: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .25s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; stroke: none; }
.wa-float__pulse { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .wa-float__pulse { animation: none; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Hero responsive ---------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .booking { max-width: 560px; }
  .hero__img { background-position: center; }
  .hero__veil { background: linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.75) 50%, var(--ink) 100%); }
}
@media (max-width: 560px) {
  .container { padding-inline: 20px; }
  .booking__vehicles { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding-top: 30px; }
  .hero__actions .btn { flex: 1; }
}

/* ---------- RTL ---------- */
[dir="rtl"] body { font-family: "Noto Sans Arabic", var(--sans); }
[dir="rtl"] .hero__title, [dir="rtl"] .section__title, [dir="rtl"] .svc__title,
[dir="rtl"] .car__name, [dir="rtl"] .calc__resval, [dir="rtl"] .stat__num,
[dir="rtl"] .testimonial blockquote, [dir="rtl"] .cta-band__title, [dir="rtl"] .brand__name { font-family: "Noto Sans Arabic", var(--serif); font-weight: 600; }
[dir="rtl"] .hero__veil { background: linear-gradient(270deg, var(--ink) 8%, rgba(10,10,11,.82) 38%, rgba(10,10,11,.35) 68%, rgba(10,10,11,.55) 100%), linear-gradient(0deg, var(--ink) 2%, transparent 30%, transparent 70%, rgba(10,10,11,.6) 100%); }
[dir="rtl"] .hero__img { background-position: center left; }
[dir="rtl"] .link-arrow .ic, [dir="rtl"] .btn .ic { transform: scaleX(-1); }
[dir="rtl"] .link-arrow:hover .ic { transform: scaleX(-1) translateX(5px); }
[dir="rtl"] .marquee__track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }
[dir="rtl"] .hero__scroll { left: auto; right: 50%; transform: translateX(50%); }
