/* ------- Aerovista — B2B Asset Manager — design tokens ------- */
:root {
  --noir: #0B1118;
  --graphite: #131C26;
  --line2: #22303C;
  --paper: #F6F8FA;
  --mist: #E8EDF1;
  --ink: #0B1118;
  --ink-2: #2A3540;
  --muted: #5A6772;
  --line: #DBE2E8;
  --line-soft: #ECF0F4;
  --brand: #DA000E;
  --brand-ink: #B30009;
  --steel: #1E5A8A;
  --focus: #DA000E;

  --maxw: 1320px;
  --gut: clamp(20px, 4vw, 56px);

  --f-display: "Inter Tight", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --f-ar: "IBM Plex Sans Arabic", "Noto Kufi Arabic", "Cairo", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--paper); color: var(--ink); font-family: var(--f-body); -webkit-font-smoothing: antialiased; }
body { font-size: 16px; line-height: 1.5; min-height: 100vh; }
[dir="rtl"] body { font-family: var(--f-ar), var(--f-body); }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brand); color: #fff; }

/* type scale */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.eyebrow .dot { color: var(--brand); margin-right: 8px; }
[dir="rtl"] .eyebrow .dot { margin-right: 0; margin-left: 8px; }

.display {
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.h1 { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.025em; line-height: 0.98; font-size: clamp(40px, 6.6vw, 88px); }
.h2 { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.022em; line-height: 1.02; font-size: clamp(32px, 4.2vw, 56px); }
.h3 { font-family: var(--f-display); font-weight: 500; letter-spacing: -0.015em; line-height: 1.08; font-size: clamp(22px, 2.2vw, 28px); }
.lede { font-size: clamp(17px, 1.4vw, 21px); line-height: 1.45; color: var(--ink-2); text-wrap: pretty; }
.meta { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
.num { font-family: var(--f-display); font-feature-settings: "tnum" 1, "lnum" 1; font-variant-numeric: tabular-nums lining-nums; }

/* layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.section { padding-block: clamp(72px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.divider { height: 1px; background: var(--line); width: 100%; }
.hr-dotted { border: 0; height: 1px; background: repeating-linear-gradient(to right, var(--line) 0 4px, transparent 4px 8px); }

/* surfaces */
.surf-dark { background: var(--noir); color: var(--paper); }
.surf-dark .lede { color: rgba(246,248,250,.78); }
.surf-dark .meta { color: rgba(246,248,250,.55); }
.surf-dark .eyebrow { color: rgba(246,248,250,.6); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 0;
  font-weight: 500; font-size: 14px; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn .arr { font-family: var(--f-mono); font-size: 12px; opacity: .9; }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-ink); }
.btn--ghost-dark { background: transparent; color: var(--paper); border-color: rgba(246,248,250,.28); }
.btn--ghost-dark:hover { border-color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--quiet { background: transparent; color: var(--ink); padding: 8px 0; }
.btn--quiet:hover { color: var(--brand); }
.btn--block { width: 100%; justify-content: space-between; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.link-arrow:hover { color: var(--brand); }

/* chips / tags */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); background: rgba(255,255,255,.6);
}
.surf-dark .chip { border-color: rgba(246,248,250,.18); color: rgba(246,248,250,.7); background: transparent; }
.chip--brand { color: #fff; background: var(--brand); border-color: var(--brand); }
.chip--ink { color: var(--paper); background: var(--ink); border-color: var(--ink); }

/* --- NAV ---*/
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,248,250,.86);
  backdrop-filter: saturate(120%) blur(14px);
  -webkit-backdrop-filter: saturate(120%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav--on-dark { background: rgba(11,17,24,.6); border-bottom-color: rgba(255,255,255,.08); color: var(--paper); }
.nav__row { display: flex; align-items: center; gap: 28px; height: 68px; }
.nav__brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.nav__brand img { height: 22px; }
.nav__brand-tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted); border-left: 1px solid var(--line); padding-left: 10px; margin-left: 4px; text-transform: uppercase; }
.nav--on-dark .nav__brand-tag { color: rgba(246,248,250,.6); border-color: rgba(246,248,250,.18); }
.nav__links { display: none; gap: 4px; flex: 1; }
@media (min-width: 980px) { .nav__links { display: flex; } }
.nav__link {
  position: relative;
  padding: 8px 14px; font-size: 14px; font-weight: 500; color: inherit; opacity: .82;
  border-radius: 4px;
}
.nav__link:hover { opacity: 1; }
.nav__link--active { opacity: 1; }
.nav__link--active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--brand);
}
.nav__right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav__lang { display: flex; align-items: center; gap: 2px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; }
.nav--on-dark .nav__lang { border-color: rgba(255,255,255,.18); }
.nav__lang button {
  background: transparent; border: 0; color: inherit;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 999px; opacity: .65;
}
.nav__lang button.is-on { background: var(--ink); color: var(--paper); opacity: 1; }
.nav--on-dark .nav__lang button.is-on { background: var(--paper); color: var(--ink); }
.nav__phone { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; opacity: .8; display: none; }
@media (min-width: 1180px) { .nav__phone { display: inline; } }

/* --- HERO ---*/
.hero {
  position: relative; min-height: 92vh; color: var(--paper);
  background: var(--noir);
  overflow: hidden;
  isolation: isolate;
}
.hero__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  filter: brightness(0.62) contrast(1.02) saturate(0.95);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,17,24,.6) 0%, rgba(11,17,24,.0) 28%, rgba(11,17,24,.0) 60%, rgba(11,17,24,.92) 100%),
    linear-gradient(90deg, rgba(11,17,24,.7) 0%, rgba(11,17,24,.0) 55%);
}
.hero__inner { position: relative; display: flex; flex-direction: column; min-height: 92vh; padding-block: 36px 60px; }
.hero__top { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero__body { margin-top: auto; max-width: 980px; }
.hero__kicker { margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.hero__h1 { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.025em; line-height: 0.95; font-size: clamp(44px, 7vw, 104px); }
.hero__h1 em { font-style: normal; color: var(--brand); }
.hero__sub { margin-top: 28px; max-width: 640px; font-size: clamp(16px, 1.4vw, 19px); color: rgba(246,248,250,.78); line-height: 1.5; }
.hero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__rail {
  margin-top: 56px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 760px) { .hero__rail { grid-template-columns: repeat(2, 1fr); } }
.hero__rail .label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.12em; color: rgba(246,248,250,.55); text-transform: uppercase; margin-bottom: 6px; }
.hero__rail .val { font-family: var(--f-display); font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.01em; }
.hero__rail .src { font-family: var(--f-mono); font-size: 10px; color: rgba(246,248,250,.42); margin-top: 4px; letter-spacing: 0.05em; }

/* corner ticks */
.tick { position: absolute; width: 14px; height: 14px; border: 1px solid rgba(255,255,255,.4); }
.tick.tl { top: 22px; left: 22px; border-right: 0; border-bottom: 0; }
.tick.tr { top: 22px; right: 22px; border-left: 0; border-bottom: 0; }
.tick.bl { bottom: 22px; left: 22px; border-right: 0; border-top: 0; }
.tick.br { bottom: 22px; right: 22px; border-left: 0; border-top: 0; }

/* --- Pillars / Services grid ---*/
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--paper);
  padding: 28px;
  display: flex; flex-direction: column; gap: 22px;
  min-height: 320px;
  position: relative;
  transition: background .2s ease;
  cursor: pointer;
}
.svc:hover { background: #fff; }
.svc__num { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--muted); }
.svc__num em { color: var(--brand); font-style: normal; }
.svc__name { font-family: var(--f-display); font-weight: 500; font-size: 28px; letter-spacing: -0.02em; line-height: 1; }
.svc__desc { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; }
.svc__list { font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.05em; line-height: 1.9; }
.svc__list .row { display: flex; gap: 10px; }
.svc__list .row::before { content: "›"; color: var(--brand); }
.svc__arrow { margin-top: auto; align-self: flex-start; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.svc:hover .svc__arrow { color: var(--brand); border-color: var(--brand); }

/* --- Track record ---*/
.tr {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
@media (max-width: 980px) { .tr { grid-template-columns: 1fr; gap: 40px; } }
.tr__deals { border-top: 1px solid var(--line2); }
.tr__deal {
  display: grid; grid-template-columns: 56px 1fr auto auto; align-items: baseline; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid var(--line2);
  cursor: pointer; transition: padding .2s ease;
}
.tr__deal:hover { padding-left: 8px; }
.tr__deal .yr { font-family: var(--f-mono); font-size: 12px; color: rgba(246,248,250,.55); letter-spacing: 0.06em; }
.tr__deal .who { font-family: var(--f-display); font-size: 22px; letter-spacing: -0.015em; }
.tr__deal .what { font-family: var(--f-mono); font-size: 11px; color: rgba(246,248,250,.6); text-transform: uppercase; letter-spacing: 0.08em; }
.tr__deal .arr { font-family: var(--f-mono); color: var(--brand); }

/* --- Fleet ---*/
.fleet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .fleet { grid-template-columns: 1fr; } }
.fleet__card {
  background: #fff; border: 1px solid var(--line); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.fleet__img { aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: #ddd; }
.fleet__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.fleet__type { font-family: var(--f-display); font-size: 26px; letter-spacing: -0.02em; }
.fleet__sub { font-family: var(--f-mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.fleet__row { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px dashed var(--line); font-family: var(--f-mono); font-size: 12px; }
.fleet__row .k { color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-size: 10.5px; }
.fleet__role { position: absolute; top: 14px; left: 14px; }

/* --- Group structure ---*/
.group {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
@media (max-width: 760px) { .group { grid-template-columns: 1fr; } }
.group__cell {
  background: var(--paper); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.group__cell--parent { grid-column: 1 / -1; background: var(--noir); color: var(--paper); }
.group__cell--parent .meta { color: rgba(246,248,250,.55); }
.group__role { font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.group__cell--parent .group__role { color: rgba(246,248,250,.5); }
.group__name { font-family: var(--f-display); font-size: 30px; letter-spacing: -0.02em; line-height: 1.05; }
.group__loc { font-family: var(--f-mono); font-size: 11px; color: var(--brand); letter-spacing: 0.06em; text-transform: uppercase; }
.group__desc { font-size: 14px; color: var(--ink-2); line-height: 1.5; max-width: 50ch; }
.group__cell--parent .group__desc { color: rgba(246,248,250,.78); }
.group__link { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-2); align-self: flex-start; margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line); width: 100%; display: flex; justify-content: space-between; }
.group__cell--parent .group__link { color: rgba(246,248,250,.7); border-color: rgba(255,255,255,.12); }
.group__link:hover { color: var(--brand); }

/* --- Team ---*/
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 860px) { .team { grid-template-columns: 1fr; } }
.team__card { background: #fff; border: 1px solid var(--line); }
.team__photo { aspect-ratio: 4/5; background-size: cover; background-position: center top; background-color: var(--mist); filter: saturate(0.9); }
.team__body { padding: 22px; }
.team__name { font-family: var(--f-display); font-size: 22px; letter-spacing: -0.015em; }
.team__role { font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

/* --- Press ---*/
.press__list { border-top: 1px solid var(--line); }
.press__item {
  display: grid; grid-template-columns: 80px 1fr 220px auto; align-items: center; gap: 24px;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: background .15s ease, padding .15s ease;
}
.press__item:hover { padding-left: 10px; }
.press__item .date { font-family: var(--f-mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; }
.press__item .h { font-family: var(--f-display); font-size: 20px; letter-spacing: -0.015em; line-height: 1.2; }
.press__item .cat { font-family: var(--f-mono); font-size: 10.5px; color: var(--brand); letter-spacing: 0.1em; text-transform: uppercase; }
.press__item .arr { font-family: var(--f-mono); color: var(--ink); opacity: .5; }
.press__item:hover .arr { color: var(--brand); opacity: 1; }
@media (max-width: 760px) { .press__item { grid-template-columns: 80px 1fr; } .press__item .cat, .press__item .arr { display: none; } }

/* --- Footer ---*/
.foot { background: var(--noir); color: var(--paper); padding-block: 80px 28px; }
.foot__row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 980px) { .foot__row { grid-template-columns: repeat(2, 1fr); } }
.foot h4 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(246,248,250,.55); font-weight: 500; margin: 0 0 18px; }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot a { font-size: 14px; color: rgba(246,248,250,.85); }
.foot a:hover { color: var(--brand); }
.foot__bottom { margin-top: 64px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-family: var(--f-mono); font-size: 11px; color: rgba(246,248,250,.5); letter-spacing: 0.06em; text-transform: uppercase; }

/* --- Editorial split ---*/
.split { display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: start; }
@media (max-width: 980px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split--reverse { grid-template-columns: 6fr 5fr; }

/* --- Service deep page ---*/
.svchero {
  background: var(--noir); color: var(--paper);
  padding-block: 56px 0;
  position: relative;
}
.svchero__crumb { font-family: var(--f-mono); font-size: 11px; color: rgba(246,248,250,.55); letter-spacing: 0.08em; text-transform: uppercase; }
.svchero__crumb .sep { margin: 0 10px; color: rgba(246,248,250,.3); }
.svchero__crumb .here { color: var(--brand); }
.svchero__h { font-family: var(--f-display); font-weight: 400; letter-spacing: -0.025em; line-height: 0.98; font-size: clamp(48px, 8vw, 112px); margin: 24px 0 36px; }
.svchero__lede { font-size: clamp(18px, 1.6vw, 22px); max-width: 720px; color: rgba(246,248,250,.82); }
.svchero__img { margin-top: 60px; aspect-ratio: 21/9; background-size: cover; background-position: center; filter: brightness(0.92); }

/* product cards */
.prod { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 860px) { .prod { grid-template-columns: 1fr; } }
.prod__card { border: 1px solid var(--line); padding: 36px; background: #fff; display: flex; flex-direction: column; gap: 20px; }
.prod__card h3 { font-family: var(--f-display); font-weight: 500; font-size: 30px; letter-spacing: -0.02em; margin: 0; }
.prod__card .tag { font-family: var(--f-mono); font-size: 11px; color: var(--brand); letter-spacing: 0.1em; text-transform: uppercase; }
.prod__card .struct { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; border-top: 1px solid var(--line); }
.prod__card .struct > div { padding: 14px 16px; border-right: 1px solid var(--line); }
.prod__card .struct > div:last-child { border-right: 0; }
.prod__card .struct .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.prod__card .struct .v { font-family: var(--f-display); font-size: 18px; margin-top: 4px; }

/* --- Enquiry modal ---*/
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: stretch; justify-content: flex-end; }
.modal__veil { position: absolute; inset: 0; background: rgba(11,17,24,.6); backdrop-filter: blur(4px); }
.modal__panel { position: relative; width: min(520px, 100vw); background: var(--paper); height: 100vh; overflow-y: auto; padding: 32px; animation: slidein .25s ease; }
@keyframes slidein { from { transform: translateX(40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.modal__head { display: flex; justify-content: space-between; align-items: start; margin-bottom: 28px; }
.modal__title { font-family: var(--f-display); font-size: 32px; letter-spacing: -0.02em; line-height: 1; margin: 0; }
.modal__close { background: none; border: 1px solid var(--line); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.modal__close:hover { border-color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.field input, .field select, .field textarea {
  font: inherit; padding: 12px 14px; border: 1px solid var(--line); background: #fff; border-radius: 0; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brand); outline-offset: -2px; border-color: var(--brand); }
.tabs { display: flex; gap: 0; border: 1px solid var(--line); margin-bottom: 12px; }
.tabs button { flex: 1; padding: 10px 8px; background: #fff; border: 0; border-right: 1px solid var(--line); font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.tabs button:last-child { border-right: 0; }
.tabs button.is-on { background: var(--ink); color: var(--paper); }

/* --- Marquee ---*/
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding-block: 18px; background: #fff; }
.marquee__inner { display: flex; gap: 64px; animation: marq 60s linear infinite; white-space: nowrap; }
.marquee__inner span { font-family: var(--f-display); font-size: 28px; letter-spacing: -0.02em; color: var(--ink-2); display: inline-flex; align-items: center; gap: 64px; }
.marquee__inner span::after { content: "✦"; color: var(--brand); font-size: 16px; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Stats single source of truth ---*/
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
@media (max-width: 760px) { .stat-strip { grid-template-columns: 1fr 1fr; } }
.stat-strip > div { padding: 28px; border-right: 1px solid var(--line); }
.stat-strip > div:last-child { border-right: 0; }
@media (max-width: 760px) { .stat-strip > div:nth-child(even) { border-right: 0; } .stat-strip > div:nth-child(1), .stat-strip > div:nth-child(2) { border-bottom: 1px solid var(--line); } }
.stat-strip .v { font-family: var(--f-display); font-size: clamp(34px, 4vw, 52px); letter-spacing: -0.02em; line-height: 1; }
.stat-strip .l { font-family: var(--f-mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 10px; }
.stat-strip .s { font-family: var(--f-mono); font-size: 10px; color: var(--muted); margin-top: 6px; opacity: .7; }

/* contact grid */
.contact { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; }
@media (max-width: 980px) { .contact { grid-template-columns: 1fr; gap: 40px; } }
.contact__details { display: flex; flex-direction: column; gap: 28px; }
.contact__det h5 { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; font-weight: 500; margin: 0 0 8px; }
.contact__det p { font-family: var(--f-display); font-size: 22px; letter-spacing: -0.015em; margin: 0; line-height: 1.3; }
.contact__det a { color: var(--brand); }
.map { aspect-ratio: 16/10; background: var(--noir); position: relative; overflow: hidden; border: 1px solid var(--line2); }
.map__grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 60px 60px,
    radial-gradient(circle at 50% 50%, rgba(218,0,14,.18), transparent 60%);
}
.map__pin {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 16px; height: 16px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 8px rgba(218,0,14,.18), 0 0 0 18px rgba(218,0,14,.08);
}
.map__label { position: absolute; top: calc(50% + 24px); left: 50%; transform: translateX(-50%); font-family: var(--f-mono); font-size: 11px; color: var(--paper); letter-spacing: 0.08em; text-transform: uppercase; text-align: center; }
.map__coords { position: absolute; bottom: 14px; left: 14px; font-family: var(--f-mono); font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: 0.06em; }
.map__caveat { position: absolute; top: 14px; right: 14px; font-family: var(--f-mono); font-size: 10px; color: rgba(255,255,255,.5); letter-spacing: 0.06em; border: 1px solid rgba(255,255,255,.2); padding: 4px 8px; text-transform: uppercase; }

/* attribution annotations */
.attr {
  display: inline-block; font-family: var(--f-mono); font-size: 10px; color: var(--muted);
  letter-spacing: 0.05em; padding-left: 6px; border-left: 2px solid var(--line);
  vertical-align: middle;
}
.surf-dark .attr { color: rgba(246,248,250,.4); border-color: rgba(246,248,250,.18); }

/* values triplet */
.vals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 760px) { .vals { grid-template-columns: 1fr; } }
.vals > div { background: var(--paper); padding: 36px 28px; }
.vals .v { font-family: var(--f-display); font-size: 36px; letter-spacing: -0.02em; line-height: 1; }
.vals .d { color: var(--ink-2); font-size: 14.5px; margin-top: 12px; line-height: 1.5; }

/* page transition */
.page-fade { animation: fadeup .35s ease; }
@keyframes fadeup { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* sticky enquiry FAB */
.fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 40;
  background: var(--brand); color: #fff; padding: 14px 22px;
  border: 0; font-family: var(--f-body); font-weight: 500; font-size: 14px;
  display: flex; align-items: center; gap: 10px; box-shadow: 0 12px 32px rgba(218,0,14,.32);
  border-radius: 0;
}
.fab:hover { background: var(--brand-ink); }
[dir="rtl"] .fab { right: auto; left: 28px; }

/* Specific accent intensity overrides via JS */
[data-accent="restrained"] .svc__num em,
[data-accent="restrained"] .group__loc,
[data-accent="restrained"] .press__item .cat,
[data-accent="restrained"] .marquee__inner span::after {
  color: var(--ink) !important;
}

/* RTL adjustments */
[dir="rtl"] .nav__link--active::after { left: 14px; right: 14px; }
[dir="rtl"] .svc__list .row::before { content: "‹"; }
[dir="rtl"] .tr__deal:hover { padding-left: 0; padding-right: 8px; }
[dir="rtl"] .press__item:hover { padding-left: 0; padding-right: 10px; }
[dir="rtl"] .modal__panel { animation: slideinrtl .25s ease; }
@keyframes slideinrtl { from { transform: translateX(-40px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
[dir="rtl"] .modal { justify-content: flex-start; }
