/* ============================================================================
   DIRECTION A — "Ledger"
   White, typographic, no photograph at all.

   The idea: a heavy-equipment contractor's credibility is precision, not
   atmosphere. So the page behaves like a well-set document — a rule at the top,
   a rule at the bottom, the logo given room to be the only picture on the page,
   and the three activities set as a numbered bilingual ledger. The one solid
   mass of colour is the contact block, because the phone number is the job.

   Deliberately the OPPOSITE of Ajyal: no photo, no dark, no glass, no glow.
   ========================================================================= */

body {
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  color: var(--ink); background: var(--paper);
  line-height: 1.55;
}

.shell {
  width: 100%; max-width: 1240px; margin: 0 auto; min-height: 100svh;
  padding: clamp(18px, 3svh, 40px) clamp(22px, 5vw, 68px) clamp(52px, 6svh, 72px);
  display: flex; flex-direction: column;
}

/* --- top rule -------------------------------------------------------------- */
.top {
  flex-shrink: 0; display: flex; justify-content: space-between;
  align-items: baseline; gap: 16px; flex-wrap: wrap;
  padding-bottom: clamp(12px, 1.8svh, 20px);
  border-bottom: 2px solid var(--navy);
  font-size: .7rem; letter-spacing: .26em; text-transform: uppercase;
  font-weight: 600; color: var(--navy);
}
.top .ar { font-size: .82rem; letter-spacing: normal; text-transform: none; color: var(--muted) }
.top .right { color: var(--muted); font-weight: 500; display: inline-flex; align-items: center; gap: 9px }
.top .right .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0;
}

/* --- body ------------------------------------------------------------------ */
.mid {
  flex: 1 1 auto; min-height: 0;
  display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px); align-items: center;
  padding: clamp(26px, 5svh, 76px) 0;
}

.brandmark { display: flex; flex-direction: column; align-items: flex-start }
.brandmark h1 { font: inherit; margin: 0 }
.brandmark .logo { width: auto; height: clamp(150px, min(26vw, 36svh), 330px) }
.tagline {
  margin-top: clamp(16px, 2.4svh, 28px);
  font-size: clamp(.68rem, 1vw, .76rem); font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--navy);
  display: flex; align-items: center; gap: 14px;
}
.tagline::before { content: ""; width: 34px; height: 2px; background: var(--blue); flex-shrink: 0 }

/* --- the ledger ------------------------------------------------------------ */
.acts { list-style: none; border-top: 1px solid #D8E1EC }
.act {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(13px, 2svh, 20px) 0;
  border-bottom: 1px solid #D8E1EC;
}
.act .num {
  font-size: clamp(.78rem, 1.1vw, .88rem); font-weight: 600;
  color: var(--blue-tx); font-variant-numeric: tabular-nums;
  padding-top: .28em; letter-spacing: .04em;
}
.act-en {
  display: block; font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  font-weight: 600; color: var(--navy); letter-spacing: -.012em; line-height: 1.25;
}
.act-ar {
  display: block; direction: rtl; text-align: right; margin-top: .18em;
  font-family: var(--arabic); font-size: clamp(.92rem, 1.3vw, 1.06rem);
  line-height: 1.8; color: var(--muted);
}

/* --- contact: the one solid mass on the page ------------------------------- */
.card {
  margin-top: clamp(24px, 3.6svh, 40px);
  background: var(--navy); color: #fff;
  padding: clamp(18px, 2.6svh, 30px) clamp(20px, 2.4vw, 34px);
}
.card .role {
  font-size: .64rem; letter-spacing: .26em; text-transform: uppercase;
  color: #A8BDD8; margin-bottom: clamp(8px, 1.2svh, 13px);
}
.card h2 {
  font-size: clamp(1rem, 1.4vw, 1.16rem); font-weight: 600; color: #fff;
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
}
.card h2 .ar { font-weight: 400; font-size: .94em; color: #C8D6EA; direction: rtl }
.card .pos { font-size: .86rem; color: #A8BDD8; margin-top: 1px }
.tel {
  display: inline-block; margin: clamp(9px, 1.5svh, 15px) 0 clamp(13px, 2svh, 20px);
  font-size: clamp(1.32rem, 2.2vw, 1.8rem); font-weight: 300; color: #fff;
}
.tel:hover { color: #7FC1EC }
.actions { display: flex; gap: 10px; flex-wrap: wrap }
.actions .btn {
  padding: 11px 24px; font-size: .87rem; font-weight: 600; min-height: 44px;
  border-radius: 2px;
}
.btn-call { background: #fff; color: var(--navy) }
.btn-call:hover { background: #DCE6F4 }
.btn-wa, .btn-mail { color: #fff; border-color: rgba(255,255,255,.42) }
.btn-wa:hover, .btn-mail:hover { border-color: #fff; background: rgba(255,255,255,.1) }
.btn-wa .wa-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; flex-shrink: 0 }
.card .mail {
  display: inline-block; margin-top: clamp(9px, 1.4svh, 14px);
  font-size: .86rem; color: #C8D6EA; overflow-wrap: anywhere;
  border-bottom: 1px solid rgba(255,255,255,.34);
  padding: 4px 0 3px;               /* clears the WCAG 2.2 24px target */
}
.card .mail:hover { color: #fff; border-color: #fff }

/* --- foot rule -------------------------------------------------------------- */
.foot {
  flex-shrink: 0; padding-top: clamp(12px, 1.8svh, 18px);
  border-top: 2px solid var(--navy);
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 10px 24px; flex-wrap: wrap;
  font-size: .76rem; color: var(--muted);
}
.foot a { color: var(--muted); border-bottom: 1px solid #C3D2E4; padding-bottom: 1px }
.foot a:hover { color: var(--navy); border-color: var(--navy) }

/* --- responsive ------------------------------------------------------------- */
@media (max-width: 900px) {
  .mid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(20px, 3svh, 34px); align-items: start;
    padding: clamp(20px, 3svh, 40px) 0;
  }
  .brandmark { align-items: center }
  .brandmark .logo { height: clamp(118px, 22svh, 200px) }
  .tagline { justify-content: center }
}
@media (max-width: 560px) {
  .top { font-size: .62rem; letter-spacing: .18em; gap: 6px 12px }
  .actions .btn { flex: 1 1 auto }
  .foot { flex-direction: column; align-items: flex-start; gap: 7px }
  .act { padding: clamp(10px, 1.5svh, 15px) 0 }
}
