:root {
  --ink: #12110f;
  --muted: #6f6a62;
  --paper: #f3efe7;
  --cream: #f8f5ef;
  --line: #ddd6c8;
  --black: #0b0b0a;
  --sand: #b0894f;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
body {
  color: var(--ink);
  background: var(--cream);
  font-family: "IBM Plex Sans", "IBM Plex Sans Arabic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: 0; }
button { cursor: pointer; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.ltr { direction: ltr; unicode-bidi: isolate; }
section[id] { scroll-margin-top: 88px; }

.chrome {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  background: linear-gradient(180deg, rgba(11,11,10,.72), rgba(11,11,10,0));
  border-bottom: 0;
  transition: background .25s ease;
}
body.is-scrolled .chrome {
  background: rgba(11,11,10,.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.chrome-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name b {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
}
.brand-name span {
  font-size: 11px;
  opacity: .7;
  letter-spacing: .04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .86;
}
body[data-lang="ar"] .site-nav a {
  letter-spacing: 0;
  text-transform: none;
  font-size: 15px;
}
.site-nav a:hover { opacity: 1; }

.chrome-actions { display: flex; align-items: center; gap: 18px; }
.lang-btn {
  color: #fff;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .86;
}
body[data-lang="ar"] .lang-btn { letter-spacing: 0; text-transform: none; font-size: 14px; }
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  color: #fff;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.menu-btn span::before,
.menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: #fff;
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body[data-lang="ar"] .btn {
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-dark { background: var(--black); color: #fff; }

.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 78%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,10,.55) 0%, rgba(11,11,10,.12) 32%, rgba(11,11,10,.82) 100%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
  max-width: 920px;
}
.eyebrow {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand);
}
body[data-lang="ar"] .eyebrow {
  letter-spacing: .06em;
  font-size: 13px;
}
.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -.03em;
  max-width: 13em;
}
.hero p {
  margin: 0 0 32px;
  max-width: 46ch;
  font-size: 18px;
  color: rgba(255,255,255,.82);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}
.hero-meta b { display: block; color: #fff; font-weight: 500; margin-bottom: 4px; }

.facts {
  background: var(--black);
  color: rgba(255,255,255,.72);
  border-top: 1px solid rgba(255,255,255,.08);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 108px;
}
.fact {
  padding: 28px 22px;
  border-inline-end: 1px solid rgba(255,255,255,.08);
}
.fact:last-child { border: 0; }
.fact b {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}
.fact span { font-size: 13px; }

.block { padding: 96px 0; }
.block h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.12;
}
.lede {
  margin: 0 0 48px;
  max-width: 46ch;
  color: var(--muted);
  font-size: 18px;
}
.head-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.head-row .eyebrow { color: var(--sand); margin: 0 0 10px; }

.work-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.work-row:last-child { border: 0; }
.work-row.reverse { grid-template-columns: 1.1fr 0.9fr; }
html[dir="rtl"] .work-row.reverse .work-copy { order: -1; }
.work-row img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04);
}
.work-copy .num {
  display: block;
  margin-bottom: 12px;
  color: var(--sand);
  font-size: 12px;
  letter-spacing: .18em;
}
.work-copy h3 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 400;
}
.work-copy p { margin: 0; color: var(--muted); max-width: 46ch; }

.side-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  margin-top: 56px;
}
.side-list article {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.side-list h3 { margin: 0 0 8px; font-size: 20px; font-weight: 500; }
.side-list p { margin: 0; color: var(--muted); }

.fleet { background: var(--black); color: #fff; }
.fleet .lede { color: rgba(255,255,255,.62); }
.fleet .head-row { border-bottom-color: rgba(255,255,255,.12); }
.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.tile {
  position: relative;
  overflow: hidden;
}
.tile:first-child { grid-row: 1 / span 2; }
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
}
.tile figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.tile h3 { margin: 0 0 4px; font-size: 22px; font-weight: 400; }
.tile p { margin: 0; color: rgba(255,255,255,.75); font-size: 14px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.about-grid img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-copy p { color: var(--muted); font-size: 17px; }
.specs {
  margin-top: 36px;
  display: grid;
  gap: 0;
}
.spec {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.spec:last-child { border-bottom: 1px solid var(--line); }
.spec b { font-weight: 500; }

.enquire {
  background: var(--ink);
  color: #fff;
}
.enquire .lede { color: rgba(255,255,255,.62); }
.enquire .head-row { border-bottom-color: rgba(255,255,255,.12); }
.enquire-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
}
.office-lines { display: grid; gap: 0; }
.office-lines div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 15px;
}
.office-lines div:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.office-lines span { color: rgba(255,255,255,.5); }
.office-lines a:hover { color: var(--sand); }

.quote-form { display: grid; gap: 4px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.field { display: grid; gap: 8px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.field.full { grid-column: 1 / -1; }
.field span {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
body[data-lang="ar"] .field span { letter-spacing: 0; text-transform: none; font-size: 13px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0;
  color: #fff;
  outline: none;
}
.field textarea { min-height: 90px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.28); }
.form-actions { margin-top: 28px; }
.form-status { min-height: 1.2em; margin: 12px 0 0; font-size: 14px; }
.form-status.is-ok { color: #c8d5b9; }
.form-status.is-error { color: #e2b6b6; }
.form-note { color: rgba(255,255,255,.45); font-size: 13px; margin-top: 14px; }
.hidden { display: none !important; }

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.58);
  padding: 56px 0 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand img { width: 56px; background: #fff; padding: 5px; margin-bottom: 16px; }
.footer-brand strong { display: block; color: #fff; font-weight: 500; margin-bottom: 8px; letter-spacing: .04em; }
.footer-col h4 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}
body[data-lang="ar"] .footer-col h4 { letter-spacing: 0; text-transform: none; font-size: 14px; }
.footer-col a, .footer-col p { display: block; margin: 0 0 8px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 12px;
}

@media (max-width: 980px) {
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .menu-btn { display: grid; place-items: center; }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    background: var(--black);
    border: 1px solid rgba(255,255,255,.12);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .site-nav.is-open { display: flex; }
  .brand-name { display: none; }
  .chrome-actions .btn { display: none; }
  .hero { min-height: 92vh; }
  .hero-copy { padding-bottom: 48px; }
  .facts-grid, .work-row, .work-row.reverse, .about-grid, .enquire-grid, .footer-grid, .form-grid, .side-list, .mosaic {
    grid-template-columns: 1fr;
  }
  html[dir="rtl"] .work-row.reverse .work-copy { order: 0; }
  .mosaic { grid-template-rows: 240px 220px 220px; }
  .tile:first-child { grid-row: auto; }
  .work-row img, .about-grid img { height: 240px; }
  .head-row, .about-grid, .enquire-grid { display: grid; gap: 20px; }
  .block { padding: 64px 0; }
  .fact { border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
}
