/* ===============================
   DESIGN TOKENS
   =============================== */
:root {
  --ink: #16525A;
  --ink-soft: #2A6670;
  --teal: #3D8088;
  --teal-deep: #2A6670;
  --teal-bright: #5BA5AC;
  --sand: #C9A86B;
  --sand-pale: #E6D5B0;
  --cream: #F8F4EC;
  --paper: #FCFAF5;
  --bone: #EDE6D7;
  --rust: #B85C38;
  --line: rgba(22,82,90,0.1);
  --line-strong: rgba(22,82,90,0.2);
  --muted: rgba(22,82,90,0.6);

  /* UNIFIED ARABIC TYPOGRAPHY SYSTEM (per client feedback)
     - Cairo: heavier, more formal, modern Arabic display (matches "نكتشف الغد")
     - Tajawal: body / paragraphs
     - Fraunces: English normal accents and numbers
  */
  --f-ar: 'Tajawal', system-ui, sans-serif;
  --f-display: 'Cairo', 'Tajawal', sans-serif;
  --f-en: 'Fraunces', serif;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--f-ar);
  font-weight: 500;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

::selection { background: var(--sand); color: var(--ink); }
img { display: block; max-width: 100%; }

/* ============================================================
   UNIFIED HEADINGS — Cairo display font everywhere
   Forces every H1/H2/H3 across the site to use the same formal
   Arabic display typography (Cairo) regardless of page-level rules.
   ============================================================ */
h1, h2, h3,
.hero h1,
.section-head h2,
.about-content h2,
.ceo-content h2,
.sustain-head h2,
.partners-head h2,
.certs-head h2,
.cta-band h2,
.page-hero h1,
.services .section-head h2,
.mv-card h3,
.value-item h4,
.sustain-card h3,
.timeline-item h3,
.team-card .name,
.service-row-content h2,
.process-step h3,
.contact-info-card h2,
.form-card h3,
.office h4,
.faq-question,
.news-card h3,
.cert .title,
.partner-name,
.brand-text .ar,
.about-pillars .p .t,
.footer-brand h3,
.service h3 {
  font-family: var(--f-display) !important;
  font-weight: 900;
  letter-spacing: -0.025em;
}
/* keep nav links body font */
nav.primary a, .nav-cta a, .mobile-drawer nav a {
  font-family: var(--f-ar) !important;
}

/* ===============================
   LOGO COMPONENT — IMAGE ONLY, NO TEXT
   =============================== */
.brand-logo {
  display: inline-flex; align-items: center;
  text-decoration: none; color: inherit;
}
.brand-mark {
  height: 44px;
  width: auto;
  transition: transform .5s var(--ease), opacity .3s var(--ease);
  flex-shrink: 0;
  display: block;
}
.brand-logo:hover .brand-mark {
  transform: scale(1.05);
  opacity: 0.85;
}
/* For footer (white logo) */
footer .brand-mark {
  height: 48px;
}

/* ===============================
   UTILITY BAR
   =============================== */
.utility-bar {
  background: var(--ink);
  color: var(--cream);
  font-size: 12.5px;
  padding: 12px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.utility-bar .wrap {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.utility-bar .live-dot {
  display: inline-block; width: 6px; height: 6px; background: var(--sand);
  border-radius: 50%; margin-left: 8px;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.4; transform:scale(.85); }
}
.utility-bar .right { display:flex; gap:24px; opacity:.8; }
.utility-bar a { color: inherit; text-decoration:none; }

/* ===============================
   HEADER
   =============================== */
header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,247,241,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
header.nav.scrolled {
  background: rgba(250,247,241,0.96);
  box-shadow: 0 1px 30px rgba(22,82,90,0.06);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 20px 32px;
  display: flex; justify-content: space-between; align-items: center;
}

nav.primary { display: flex; gap: 4px; align-items: center; }
nav.primary a {
  text-decoration: none; color: var(--ink);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: all .3s var(--ease);
}
nav.primary a:hover { background: var(--bone); }
nav.primary a.active { background: var(--ink); color: var(--cream); }

.nav-cta { display:flex; align-items:center; gap:14px; }
.lang-switch {
  font-family: var(--f-en);
  font-size: 12px; letter-spacing: 0.2em; font-weight: 600;
  padding: 8px 14px; border: 1px solid var(--line-strong);
  border-radius: 999px; text-decoration:none; color: var(--ink);
  transition: all .3s var(--ease);
}
.lang-switch:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px;
  background: var(--ink); color: var(--cream);
  text-decoration: none; font-weight: 700; font-size: 14.5px;
  border: 1px solid var(--ink);
  transition: all .35s var(--ease);
  cursor: pointer;
  position: relative; overflow: hidden;
  font-family: var(--f-ar);
}
.btn::before {
  content:''; position: absolute; inset:0;
  background: var(--teal);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  z-index: 0;
}
.btn:hover::before { transform: translateX(0); }
.btn > * { position: relative; z-index: 1; }
.btn .arrow { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(-4px); }

.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline::before { background: var(--ink); }
.btn-outline:hover { color: var(--cream); }

/* ===============================
   MOBILE MENU — hamburger + drawer
   =============================== */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  width: 44px; height: 44px;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: all .35s var(--ease);
  flex-shrink: 0;
}
.menu-toggle:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.menu-toggle:hover .menu-bar { background: var(--cream); }
.menu-toggle .menu-bar {
  display: block;
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: all .35s var(--ease);
}
.menu-toggle .menu-bar:nth-child(1) { top: 16px; }
.menu-toggle .menu-bar:nth-child(2) { top: 21px; width: 12px; }
.menu-toggle .menu-bar:nth-child(3) { top: 26px; }

.menu-toggle.open { background: var(--ink); border-color: var(--ink); }
.menu-toggle.open .menu-bar { background: var(--cream); }
.menu-toggle.open .menu-bar:nth-child(1) {
  top: 21px; transform: translateX(-50%) rotate(45deg);
}
.menu-toggle.open .menu-bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .menu-bar:nth-child(3) {
  top: 21px; transform: translateX(-50%) rotate(-45deg);
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 99;
  display: none;
  flex-direction: column;
  padding: 100px 28px 40px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  overflow-y: auto;
}
.mobile-drawer.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
/* subtle bg grid */
.mobile-drawer::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
  pointer-events: none;
}

.mobile-drawer .drawer-eyebrow {
  font-family: var(--f-en);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
  position: relative; z-index: 1;
}
.mobile-drawer .drawer-eyebrow::before {
  content:''; width: 24px; height: 1px; background: var(--teal);
}

.mobile-drawer nav {
  display: flex; flex-direction: column;
  gap: 0;
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
}
.mobile-drawer nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-family: var(--f-ar);
  font-size: 26px; font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.02em;
  transition: color .3s var(--ease), padding .3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-drawer.open nav a {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s var(--ease);
}
.mobile-drawer.open nav a:nth-child(1) { transition-delay: .1s; }
.mobile-drawer.open nav a:nth-child(2) { transition-delay: .15s; }
.mobile-drawer.open nav a:nth-child(3) { transition-delay: .2s; }
.mobile-drawer.open nav a:nth-child(4) { transition-delay: .25s; }
.mobile-drawer.open nav a:nth-child(5) { transition-delay: .3s; }

.mobile-drawer nav a .num {
  font-family: var(--f-en);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.25em; color: var(--muted);
  text-transform: uppercase;
}
.mobile-drawer nav a:hover,
.mobile-drawer nav a.active {
  color: var(--teal);
  padding-right: 8px;
}
.mobile-drawer nav a.active .num { color: var(--teal); }

.mobile-drawer .drawer-cta {
  margin-top: 36px;
  position: relative; z-index: 1;
  opacity: 0;
  transform: translateY(20px);
}
.mobile-drawer.open .drawer-cta {
  opacity: 1; transform: translateY(0);
  transition: opacity .5s var(--ease) .4s, transform .5s var(--ease) .4s;
}
.mobile-drawer .drawer-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 17px;
  font-size: 15px;
}

.mobile-drawer .drawer-contact {
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  position: relative; z-index: 1;
  opacity: 0;
}
.mobile-drawer.open .drawer-contact {
  opacity: 1;
  transition: opacity .5s var(--ease) .5s;
}
.mobile-drawer .drawer-contact .label {
  font-family: var(--f-en); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.mobile-drawer .drawer-contact-row {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.mobile-drawer .drawer-contact a {
  font-family: var(--f-ar); font-size: 18px; font-weight: 700;
  color: var(--ink); text-decoration: none;
}
.mobile-drawer .drawer-socials {
  display: flex; gap: 10px;
  margin-top: 20px;
}
.mobile-drawer .drawer-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transition: all .3s var(--ease);
}
.mobile-drawer .drawer-socials a:hover {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}

/* lock scroll when drawer open */
body.menu-open { overflow: hidden; }

/* ===============================
   HERO — CINEMATIC TREATMENT
   =============================== */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 80px 32px 100px;
  overflow: hidden;
  background: var(--paper);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(36,92,97,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201,168,107,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-inner {
  position: relative; max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px;
  align-items: center; min-height: calc(92vh - 180px);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 18px; border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(20px);
  animation: rise .9s var(--ease-out) .1s forwards;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; background: var(--teal); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(36,92,97,0.15);
}

/* BOLD ARABIC H1 — Tajawal Black */
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero h1 em {
  font-family: 'Amiri', serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.05em;
  line-height: inherit;
  color: var(--teal);
}
.hero h1 .line {
  display: block; overflow: hidden;
}
.hero h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: reveal 1.1s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: .2s; }
.hero h1 .line:nth-child(2) span { animation-delay: .35s; }
.hero h1 .line:nth-child(3) span { animation-delay: .5s; }

.hero h1 .accent {
  font-family: var(--f-en);
  font-style: normal;
  font-weight: 500;
  color: var(--teal);
}
.hero h1 .underline {
  position: relative; display: inline-block;
}
.hero h1 .underline::after {
  content: ''; position: absolute;
  bottom: -6px; right: 0; width: 100%; height: 4px;
  background: var(--sand);
  transform: scaleX(0); transform-origin: right;
  animation: drawLine 1s var(--ease-out) 1.4s forwards;
}

@keyframes reveal { to { transform: translateY(0); } }
@keyframes rise { to { opacity:1; transform: translateY(0); } }
@keyframes drawLine { to { transform: scaleX(1); } }

.hero p.lead {
  font-size: 19px; line-height: 1.9;
  color: var(--ink-soft); max-width: 560px;
  margin-bottom: 44px;
  font-weight: 500;
  opacity: 0;
  animation: rise 1s var(--ease-out) .9s forwards;
}

.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.1s forwards;
}

.hero-meta {
  margin-top: 64px; display: flex; gap: 56px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  opacity: 0;
  animation: rise 1s var(--ease-out) 1.3s forwards;
}
.hero-meta .item { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .label {
  font-family: var(--f-en); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.hero-meta .value {
  font-family: var(--f-ar); font-size: 22px;
  font-weight: 800; color: var(--ink);
}

/* ========== HERO VISUAL — CINEMATIC DARK TREATMENT ========== */
.hero-visual {
  position: relative; height: 540px;
  opacity: 0;
  animation: rise 1.2s var(--ease-out) .6s forwards;
}
.hero-card {
  position: absolute;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(22,82,90,0.4);
}

/* MAIN CARD — Construction site, heavy duotone teal treatment (single card now) */
.hero-card.main {
  top: 0; right: 0; width: 100%; height: 100%;
  background: var(--teal-deep);
}
.hero-card.main .img-wrap {
  position: absolute; inset: 0;
  background: var(--teal-deep);
}
.hero-card.main .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  /* Cinematic duotone: desaturate + boost contrast + tint teal */
  filter: grayscale(0.6) contrast(1.15) brightness(0.55);
  mix-blend-mode: luminosity;
  opacity: 0.85;
  transition: transform 1.2s var(--ease);
}
.hero-card.main:hover .img-wrap img { transform: scale(1.05); }
/* Teal duotone overlay */
.hero-card.main::before {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(36,92,97,0.45) 0%,
    rgba(22,56,60,0.55) 50%,
    rgba(22,82,90,0.92) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Strong bottom gradient for text readability */
.hero-card.main::after {
  content:''; position: absolute; left:0; right:0; bottom:0;
  height: 65%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(22,82,90,0.6) 40%,
    rgba(10,23,25,0.98) 100%);
  z-index: 2;
  pointer-events: none;
}
.hero-card.main .quote {
  position: absolute;
  bottom: 36px; right: 36px; left: 36px;
  color: var(--cream); z-index: 3;
}
.hero-card.main .quote .ar-num {
  font-family: var(--f-en); font-size: 12px; font-weight: 500;
  letter-spacing: 0.4em; color: var(--sand);
  margin-bottom: 16px; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.hero-card.main .quote .ar-num::before {
  content:''; width: 32px; height: 1px; background: var(--sand);
}
.hero-card.main .quote .text {
  font-family: var(--f-ar); font-size: 24px;
  line-height: 1.5; font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-card.main .quote .text::before {
  content: '"'; font-family: var(--f-en); font-size: 60px;
  font-weight: 500; color: var(--sand);
  display: block; line-height: 0.4; margin-bottom: 16px;
  font-style: normal;
}
.hero-card.main .badge {
  position: absolute; top: 28px; right: 28px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(22,82,90,0.55);
  border: 1px solid rgba(201,168,107,0.4);
  color: var(--cream); font-size: 12.5px; font-weight: 600;
  backdrop-filter: blur(12px);
  z-index: 3;
}
.hero-card.main .badge::before {
  content:''; width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s infinite;
}

/* SUB CARD — Warm sepia/sand treatment */
.hero-card.sub {
  top: 0; left: 0; width: 38%; height: 100%;
  background: var(--ink);
}
.hero-card.sub .img-wrap {
  position: absolute; inset: 0;
}
.hero-card.sub .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.4) contrast(1.1) brightness(0.45) sepia(0.3);
  transition: transform 1.2s var(--ease);
}
.hero-card.sub:hover .img-wrap img { transform: scale(1.05); }
.hero-card.sub::before {
  content:''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg,
      rgba(201,168,107,0.55) 0%,
      rgba(36,92,97,0.6) 60%,
      rgba(22,82,90,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-card.sub .content {
  position: absolute; inset: 30px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: #FFFFFF; z-index: 2;
}
.hero-card.sub .num {
  font-family: var(--f-en); font-size: 96px;
  font-weight: 300; line-height: 1; letter-spacing: -0.04em;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-card.sub .num .plus {
  font-size: 40px; vertical-align: top; color: var(--sand);
}
.hero-card.sub .label {
  font-family: var(--f-ar);
  font-size: 15px; font-weight: 700;
  text-align: right;
  line-height: 1.5;
}

/* FLOATING BADGES — branded */
.hero-float {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 13px 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 15px 35px -8px rgba(22,82,90,0.2);
  font-size: 13px; font-weight: 700;
  animation: float 4s var(--ease) infinite alternate;
  z-index: 5;
  font-family: var(--f-ar);
}
.hero-float.f1 { top: 28%; left: -40px; animation-delay: 0s; }
.hero-float.f2 { bottom: -8%; right: -10px; animation-delay: 1s; }
.hero-float .ico {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); color: var(--cream);
  display: grid; place-items: center; font-size: 14px;
}
@keyframes float { to { transform: translateY(-12px); } }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-en); font-size: 10px; letter-spacing: 0.3em; font-weight: 500;
  color: var(--muted); text-transform: uppercase;
}
.scroll-hint .line {
  width: 1px; height: 40px; background: var(--line-strong);
  position: relative; overflow: hidden;
}
.scroll-hint .line::after {
  content:''; position: absolute; top:-100%; left:0; right:0;
  height: 50%; background: var(--ink);
  animation: scrollDown 2s var(--ease) infinite;
}
@keyframes scrollDown { 0% { top:-100%; } 100% { top:200%; } }

/* ===============================
   MARQUEE
   =============================== */
.marquee-section {
  background: var(--ink);
  padding: 36px 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center; color: var(--sand);
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  margin-bottom: 22px;
}
.marquee-track {
  display: flex; gap: 80px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-track .item {
  color: var(--cream);
  font-family: var(--f-display); font-size: 30px; font-weight: 700;
  display: flex; align-items: center; gap: 80px;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.marquee-track .item::after {
  content: '✦'; color: var(--sand); font-size: 16px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ============= APPROVALS ROW — static side-by-side badges ============= */
.approvals-row {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.approval-badge {
  padding: 22px 16px;
  background: rgba(244,239,230,0.05);
  border: 1px solid rgba(201,168,107,0.18);
  border-radius: 4px;
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.approval-badge::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s var(--ease);
}
.approval-badge:hover {
  background: rgba(201,168,107,0.08);
  border-color: var(--sand);
  transform: translateY(-3px);
}
.approval-badge:hover::before { transform: scaleX(1); }
.approval-badge .ar {
  font-family: var(--f-display);
  font-size: 16px; font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.approval-badge .en {
  font-family: var(--f-en); font-size: 10px; font-weight: 500;
  letter-spacing: 0.25em; color: var(--sand);
  text-transform: uppercase;
}

/* ===============================
   STATS
   =============================== */
.stats {
  padding: 120px 32px 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '✦'; position: absolute;
  top: 60px; right: 8%; font-size: 80px;
  color: var(--sand); opacity: 0.3;
}
.stats-inner { max-width: 1320px; margin: 0 auto; }

/* SECTION HEAD — BOLDER */
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 80px;
}
.section-head .eyebrow {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.section-head .eyebrow::before {
  content:''; width: 24px; height: 1px; background: var(--teal);
}
.section-head h2 {
  font-family: var(--f-ar);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.2; font-weight: 900;
  letter-spacing: -0.025em;
}
.section-head h2 em {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 900;
  color: var(--teal);
}
.section-head .desc {
  font-size: 17px; line-height: 1.9;
  color: var(--ink-soft); font-weight: 500;
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line-strong);
}
.stat {
  padding: 40px 32px 40px 0;
  border-left: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-left: none; padding-right: 32px; padding-left: 0; }
.stat:first-child { padding-right: 0; }

.stat .number {
  font-family: var(--f-en);
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
}
.stat .number .plus {
  font-size: 0.5em; color: var(--sand); font-weight: 500;
}
.stat .label {
  margin-top: 18px;
  font-size: 15px; color: var(--ink-soft);
  font-weight: 600;
}
.stat .corner {
  position: absolute; top: 24px; left: 0;
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--muted);
}

/* ===============================
   ABOUT
   =============================== */
.about {
  padding: 140px 32px;
  background: var(--paper);
  position: relative;
}
.about-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative; aspect-ratio: 4/5;
  border-radius: 6px; overflow: hidden;
}
.about-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.3) contrast(1.1) brightness(0.7);
  transition: transform 1s var(--ease);
}
.about-visual:hover img { transform: scale(1.04); }
.about-visual::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(36,92,97,0.3) 0%,
    rgba(22,82,90,0.75) 100%);
}
.about-visual .label-tag {
  position: absolute; top: 32px; right: 32px;
  padding: 10px 18px; background: var(--sand);
  font-family: var(--f-en); font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink); z-index: 2;
}
.about-visual .big-num {
  position: absolute; bottom: 32px; right: 32px; left: 32px;
  color: var(--cream); font-family: var(--f-ar);
  z-index: 2;
}
.about-visual .big-num .n {
  font-family: var(--f-en); font-size: 150px;
  font-weight: 300; line-height: 0.9; letter-spacing: -0.05em;
  color: var(--sand);
}
.about-visual .big-num .t {
  margin-top: 8px; font-size: 21px; line-height: 1.4; font-weight: 700;
}

.about-content .eyebrow {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.about-content .eyebrow::before {
  content:''; width: 24px; height: 1px; background: var(--teal);
}
.about-content h2 {
  font-family: var(--f-ar);
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.18; font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.about-content h2 em {
  font-family: var(--f-en); font-style: normal;
  color: var(--teal); font-weight: 500;
}
.about-content p {
  font-size: 17px; line-height: 1.95;
  color: var(--ink-soft); margin-bottom: 24px;
  font-weight: 500;
}
/* Drop cap removed per CEO request — first letter same as body text */
.about-content p:first-of-type::first-letter {
  font-family: inherit; font-size: inherit;
  float: none; line-height: inherit; margin: 0;
  color: inherit; font-weight: inherit;
}
.about-pillars {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.about-pillars .p { display: flex; flex-direction: column; gap: 8px; }
.about-pillars .p .ico {
  width: 36px; height: 36px;
  background: var(--ink); color: var(--cream);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 16px; margin-bottom: 8px;
}
.about-pillars .p .t {
  font-family: var(--f-ar); font-size: 17px;
  font-weight: 800;
}
.about-pillars .p .d {
  font-size: 13.5px; color: var(--muted); line-height: 1.7; font-weight: 500;
}
.about-ctas { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ===============================
   CEO MESSAGE — NEW SECTION
   =============================== */
.ceo {
  padding: 140px 32px;
  background: linear-gradient(180deg, var(--bone) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.ceo::before {
  content: '"'; position: absolute;
  top: 60px; left: 8%; font-size: 380px;
  font-family: var(--f-en); font-style: normal;
  color: var(--sand); opacity: 0.18;
  line-height: 0.7; pointer-events: none;
  font-weight: 500;
}
.ceo-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px;
  align-items: center;
  position: relative;
}

/* No-portrait variant — full-width quote-style */
.ceo-inner.ceo-no-portrait {
  display: block;
  max-width: 900px;
  text-align: center;
}
.ceo-content-wide {
  position: relative;
  padding-top: 40px;
}
.ceo-content-wide::before {
  content: '\\201C';
  position: absolute;
  top: -40px;
  right: 50%;
  transform: translateX(50%);
  font-family: var(--f-en);
  font-style: normal;
  font-size: 180px;
  line-height: 1;
  color: var(--sand);
  opacity: 0.35;
  font-weight: 500;
  pointer-events: none;
}
.ceo-content-wide .eyebrow {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.ceo-content-wide .eyebrow::before,
.ceo-content-wide .eyebrow::after {
  content:''; width: 24px; height: 1px; background: var(--teal);
}
.ceo-content-wide h2 {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.25; font-weight: 900;
  letter-spacing: -0.025em;
  margin: 0 auto 32px;
  color: var(--ink);
  max-width: 760px;
}
.ceo-content-wide h2 em {
  font-family: var(--f-en); font-style: normal;
  color: var(--teal); font-weight: 500;
}
.ceo-content-wide .message {
  font-size: 18px; line-height: 2;
  color: var(--ink-soft); font-weight: 500;
  margin: 0 auto 24px;
  max-width: 760px;
  text-align: justify;
}
.ceo-content-wide .message:first-of-type {
  font-size: 21px; line-height: 1.75; font-weight: 600;
  color: var(--ink);
  text-align: center;
}
.ceo-content-wide .ceo-sign {
  max-width: 760px;
  margin: 40px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  text-align: right;
}
.ceo-content-wide .ceo-sign .who { display: flex; flex-direction: column; }
.ceo-content-wide .ceo-sign .who .n {
  font-family: var(--f-display); font-size: 22px; font-weight: 900;
  color: var(--ink);
}
.ceo-content-wide .ceo-sign .who .t {
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.ceo-content-wide .ceo-sign .scribble {
  font-family: var(--f-en); font-style: normal;
  font-size: 40px; color: var(--teal); font-weight: 500;
}

.ceo-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
}
.ceo-portrait::before {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    transparent 0%,
    rgba(36,92,97,0.2) 100%);
  z-index: 1;
}
.ceo-portrait img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform 1.2s var(--ease);
}
.ceo-portrait:hover img { transform: scale(1.04); }
.ceo-portrait .name-card {
  position: absolute; bottom: 28px; right: 28px; left: 28px;
  background: rgba(22,82,90,0.78);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201,168,107,0.3);
  border-radius: 4px;
  padding: 20px 24px;
  color: var(--cream);
  z-index: 2;
}
.ceo-portrait .name-card .role {
  font-family: var(--f-en); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 8px;
}
.ceo-portrait .name-card .n {
  font-family: var(--f-ar); font-size: 22px; font-weight: 800;
  letter-spacing: -0.01em;
}
.ceo-portrait .signature {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--f-en); font-style: normal;
  color: rgba(255,255,255,0.85); font-size: 24px;
  font-weight: 500;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.ceo-content .eyebrow {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.ceo-content .eyebrow::before {
  content:''; width: 24px; height: 1px; background: var(--teal);
}
.ceo-content h2 {
  font-family: var(--f-ar);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.25; font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--ink);
}
.ceo-content h2 em {
  font-family: var(--f-en); font-style: normal;
  color: var(--teal); font-weight: 500;
}
.ceo-content .message {
  font-size: 18px; line-height: 2;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 28px;
}
.ceo-content .message:first-of-type {
  font-size: 22px; line-height: 1.7; font-weight: 600;
  color: var(--ink);
}
.ceo-sign {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.ceo-sign .who {
  display: flex; flex-direction: column;
}
.ceo-sign .who .n {
  font-family: var(--f-ar); font-size: 20px; font-weight: 800;
  color: var(--ink);
}
.ceo-sign .who .t {
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.ceo-sign .scribble {
  font-family: var(--f-en); font-style: normal;
  font-size: 38px; color: var(--teal);
  font-weight: 500;
}

/* ===============================
   SERVICES
   =============================== */
.services {
  padding: 140px 32px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.services::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(36,92,97,0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(201,168,107,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.services-inner { max-width: 1320px; margin: 0 auto; position: relative; }
.services .section-head h2 { color: var(--cream); }
.services .section-head .eyebrow { color: var(--sand); }
.services .section-head .eyebrow::before { background: var(--sand); }
.services .section-head .desc { color: rgba(244,239,230,0.7); }
.services .section-head h2 em { color: var(--sand); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(340px, auto);
  gap: 16px;
}

.service {
  position: relative;
  background: var(--ink-soft);
  border: 1px solid rgba(244,239,230,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: all .5s var(--ease);
  cursor: pointer;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}

.service .photo {
  position: absolute; inset: 0; overflow: hidden;
}
.service .photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.55) contrast(1.1) brightness(0.4);
  transition: all 1s var(--ease);
}
.service .photo::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(22,82,90,0.65) 0%,
    rgba(22,82,90,0.92) 100%);
}
.service:hover .photo img {
  transform: scale(1.08);
  filter: grayscale(0.3) contrast(1.15) brightness(0.5);
}

.service .body {
  position: relative; z-index: 2;
  padding: 36px;
  display: flex; flex-direction: column;
  height: 100%;
}

.service:hover {
  border-color: var(--sand);
  transform: translateY(-4px);
}
.service .num {
  font-family: var(--f-en); font-size: 12px; font-weight: 500;
  letter-spacing: 0.25em; color: var(--sand);
  margin-bottom: 24px;
}
.service .icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(244,239,230,0.25);
  background: rgba(22,82,90,0.4);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 28px;
  transition: all .4s var(--ease);
}
.service:hover .icon {
  background: var(--sand); border-color: var(--sand);
  transform: rotate(-12deg);
}
.service .icon svg { width: 24px; height: 24px; stroke: var(--cream); transition: stroke .4s var(--ease); }
.service:hover .icon svg { stroke: var(--ink); }

.service h3 {
  font-family: var(--f-ar);
  font-size: 25px; font-weight: 800;
  line-height: 1.35; margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.service p {
  font-size: 14.5px; line-height: 1.85;
  color: rgba(244,239,230,0.75);
  flex: 1; font-weight: 500;
}
.service .arrow {
  margin-top: 24px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand);
}
.service .arrow svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.service:hover .arrow svg { transform: translateX(-6px); }

.service.span-3 { grid-column: span 3; }
.service.span-2 { grid-column: span 2; }
.service.span-4 { grid-column: span 4; }

.services-cta { margin-top: 48px; display: flex; justify-content: center; }
.services-cta .btn {
  background: var(--sand); color: var(--ink); border-color: var(--sand);
}
.services-cta .btn::before { background: var(--cream); }
.services-cta .btn:hover { color: var(--ink); }

/* ===============================
   SUSTAINABILITY
   =============================== */
.sustain {
  padding: 140px 32px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.sustain-bg-text {
  position: absolute; top: 60px; right: 5%;
  font-family: var(--f-en); font-size: 220px;
  font-weight: 300; color: var(--bone);
  letter-spacing: -0.06em; pointer-events: none;
  line-height: 1;
}
.sustain-inner { max-width: 1320px; margin: 0 auto; position: relative; }
.sustain-head { max-width: 720px; margin-bottom: 64px; }
.sustain-head .eyebrow {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.sustain-head .eyebrow::before { content:''; width: 24px; height: 1px; background: var(--teal); }
.sustain-head h2 {
  font-family: var(--f-ar);
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.18; font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.sustain-head h2 em { font-family: var(--f-en); font-style: normal; color: var(--teal); font-weight: 500; }
.sustain-head p { font-size: 17px; line-height: 1.9; color: var(--ink-soft); font-weight: 500; }

.sustain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.sustain-card {
  padding: 48px 32px 48px 0;
  border-left: 1px solid var(--line);
  position: relative;
}
.sustain-card:last-child { border-left: none; padding-left: 32px; }
.sustain-card:first-child { padding-right: 0; }
.sustain-card:nth-child(2) { padding-right: 32px; }
.sustain-card .corner-num {
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; color: var(--muted);
  position: absolute; top: 24px; left: 0;
}
.sustain-card:last-child .corner-num { left: auto; right: 32px; }
.sustain-card .icon {
  width: 64px; height: 64px;
  background: var(--ink); color: var(--sand);
  border-radius: 50%; display: grid; place-items: center;
  margin-bottom: 28px;
}
.sustain-card .icon svg { width: 28px; height: 28px; }
.sustain-card h3 {
  font-family: var(--f-ar);
  font-size: 25px; font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.sustain-card p { font-size: 15px; line-height: 1.9; color: var(--ink-soft); font-weight: 500; }

/* ===============================
   PARTNERS
   =============================== */
.partners { padding: 100px 32px; background: var(--cream); }
.partners-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.partners-head .eyebrow {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
}
.partners-head h2 {
  font-family: var(--f-ar);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.2; font-weight: 900;
  letter-spacing: -0.02em;
}
.partners-head h2 em { font-family: var(--f-en); font-style: normal; color: var(--teal); font-weight: 500; }

.partners-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--paper);
}
.partner-cell {
  aspect-ratio: 5/3;
  display: grid; place-items: center;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .35s var(--ease);
}
.partner-cell:hover { background: var(--bone); }
.partner-cell:nth-child(4n) { border-left: none; }
.partner-cell:nth-last-child(-n+4) { border-bottom: none; }
.partner-name {
  font-family: var(--f-ar);
  font-size: 22px; font-weight: 800;
  color: var(--ink-soft);
  letter-spacing: -0.015em;
  transition: color .3s var(--ease);
}
.partner-cell:hover .partner-name { color: var(--teal); }
.partner-cell .en-name {
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; color: var(--muted);
  text-transform: uppercase; margin-top: 6px;
}

/* ============= PARTNERS — NAMES VARIANT (text only, 6 cols × 3 rows for 18 partners) ============= */
.partners-grid-names {
  max-width: 1320px;
  grid-template-columns: repeat(6, 1fr) !important;
  background: var(--paper);
}
.partners-grid-names .partner-cell {
  aspect-ratio: auto;
  min-height: 130px;
  padding: 24px 16px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .35s var(--ease);
}
.partners-grid-names .partner-cell:hover { background: var(--bone); }
.partners-grid-names .partner-cell:nth-child(4n) { border-left: 1px solid var(--line); }
.partners-grid-names .partner-cell:nth-child(6n) { border-left: none; }
.partners-grid-names .partner-cell:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
.partners-grid-names .partner-cell:nth-last-child(-n+6) { border-bottom: none; }
.partners-grid-names .partner-name {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-align: center;
}
.partners-grid-names .en-name {
  font-family: var(--f-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============= PARTNERS — IMAGES VARIANT (logos only, no text) ============= */
.partners-logos-section { padding-top: 40px; }
.partners-grid-images {
  max-width: 1320px;
  grid-template-columns: repeat(6, 1fr) !important;
  background: #FFFFFF;
}
.partners-grid-images .partner-cell.partner-img-only {
  aspect-ratio: 4/2.5;
  padding: 20px 22px;
  background: #FFFFFF;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.partners-grid-images .partner-cell.partner-img-only:hover { background: var(--cream); }
.partners-grid-images .partner-cell.partner-img-only:nth-child(4n) { border-left: 1px solid var(--line); }
.partners-grid-images .partner-cell.partner-img-only:nth-child(6n) { border-left: none; }
.partners-grid-images .partner-cell.partner-img-only:nth-last-child(-n+6) { border-bottom: none; }

.partners-grid-images .partner-cell.partner-img-only img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Unify backgrounds — grayscale + multiply blend removes white bgs */
  filter: grayscale(100%) contrast(1.05);
  mix-blend-mode: multiply;
  opacity: 0.82;
  transition: all .45s var(--ease);
}
.partners-grid-images .partner-cell.partner-img-only:hover img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
  transform: scale(1.05);
}

/* ===============================
   CERTIFICATIONS
   =============================== */
.certs { padding: 120px 32px; background: var(--paper); border-top: 1px solid var(--line); }
.certs-inner { max-width: 1320px; margin: 0 auto; }
.certs-head { max-width: 720px; margin-bottom: 64px; }
.certs-head .eyebrow {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.certs-head .eyebrow::before { content:''; width: 24px; height: 1px; background: var(--teal); }
.certs-head h2 {
  font-family: var(--f-ar);
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.2; font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.certs-head h2 em { font-family: var(--f-en); font-style: normal; color: var(--teal); font-weight: 500; }
.certs-head p { font-size: 16.5px; line-height: 1.9; color: var(--ink-soft); font-weight: 500; }

.certs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* ========= CERTS v2 — Detailed cards with colored ISO globe badges (per client reference) ========= */
.certs-grid-v2 {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  margin-top: 20px;
}
.cert-v2 {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 32px 22px 26px;
  text-align: center;
  transition: all .4s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cert-v2:hover {
  transform: translateY(-6px);
  border-color: var(--sand);
  box-shadow: 0 14px 32px -10px rgba(22,82,90,0.1);
}
.cert-badge {
  position: relative;
  width: 88px; height: 88px;
  margin-bottom: 22px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
/* SVG globe lines using border + radial */
.cert-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 38px, currentColor 38px, currentColor 40px, transparent 40px),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(90deg, currentColor, currentColor),
    linear-gradient(90deg, currentColor, currentColor);
  background-size: 100% 100%, 1px 76px, 1px 76px, 88px 1px, 88px 1px;
  background-position: center, 50% center, 50% center, center 30%, center 70%;
  background-repeat: no-repeat;
  opacity: 0.65;
}
.cert-badge::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: 0.4;
  transform: scaleY(0.6);
}
.cert-badge .iso-mark {
  position: relative; z-index: 2;
  font-family: var(--f-en); font-size: 22px; font-weight: 700;
  color: currentColor;
  letter-spacing: 0.5px;
  line-height: 1;
}
.cert-badge .iso-num {
  position: absolute;
  bottom: -22px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-en); font-size: 14px; font-weight: 700;
  color: currentColor;
  letter-spacing: 0.8px;
  white-space: nowrap;
  z-index: 2;
}
.cert-badge .iso-year {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.8;
}
.cert-blue { color: #1E4DB7; }
.cert-green { color: #1F8B4C; }
.cert-red { color: #C8262C; }

.cert-v2 h3 {
  font-family: var(--f-display);
  font-size: 16px; font-weight: 900;
  line-height: 1.4; margin: 26px 0 12px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.cert-v2 p {
  font-size: 13.5px; line-height: 1.7;
  color: var(--ink-soft); font-weight: 500;
}

.cert {
  aspect-ratio: 1;
  background: var(--ink); color: var(--cream);
  border-radius: 4px;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  transition: all .4s var(--ease);
}
.cert:hover { transform: translateY(-6px); }
.cert::before {
  content:''; position: absolute;
  top: -20%; right: -20%; width: 80%; height: 80%;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  opacity: 0.4;
  transition: all .5s var(--ease);
}
.cert:hover::before { transform: scale(1.4); opacity: 0.6; }
.cert .iso {
  font-family: var(--f-en); font-size: 13px; font-weight: 500;
  letter-spacing: 0.2em; color: var(--sand);
  position: relative; z-index: 1;
}
.cert .num {
  font-family: var(--f-en); font-size: 34px;
  font-weight: 300; margin-top: 4px;
  position: relative; z-index: 1;
}
.cert .title {
  font-family: var(--f-ar);
  font-size: 15.5px; font-weight: 700;
  line-height: 1.5;
  position: relative; z-index: 1;
}

/* ===============================
   NEWS
   =============================== */
.news { padding: 140px 32px; background: var(--bone); }
.news-inner { max-width: 1320px; margin: 0 auto; }
.news-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.news-card {
  background: var(--paper);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all .4s var(--ease);
  border: 1px solid var(--line);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(22,82,90,0.15);
}
.news-card .media { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.news-card.featured .media { aspect-ratio: 16/11; }
.news-card .media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
  filter: contrast(1.05) saturate(0.9);
}
.news-card:hover .media img { transform: scale(1.06); }
.news-card .media .date-tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--paper); color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.15em;
}
.news-card .media .category-tag {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--sand); color: var(--ink);
  padding: 6px 14px;
  font-size: 12px; font-weight: 700;
}
.news-card .content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.news-card .meta {
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 14px;
}
.news-card h3 {
  font-family: var(--f-ar);
  font-size: 22px; font-weight: 800;
  line-height: 1.45; margin-bottom: 12px;
  letter-spacing: -0.015em;
  flex: 1;
}
.news-card.featured h3 { font-size: 27px; }
.news-card p {
  font-size: 14.5px; line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-weight: 500;
}
.news-card .read-more {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal);
}

/* ===============================
   CTA BAND
   =============================== */
.cta-band {
  background: var(--ink); color: var(--cream);
  padding: 120px 32px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,107,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 50%, rgba(36,92,97,0.3) 0%, transparent 50%);
}
.cta-band-text {
  position: absolute; left: 5%; bottom: -30px;
  font-family: var(--f-en); font-size: 200px;
  font-weight: 300; color: rgba(201,168,107,0.08);
  letter-spacing: -0.06em; pointer-events: none;
  line-height: 1;
}
.cta-band-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px;
  align-items: center; position: relative;
}
.cta-band .eyebrow {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 22px;
  display: flex; align-items: center; gap: 12px;
}
.cta-band .eyebrow::before { content:''; width: 24px; height: 1px; background: var(--sand); }
.cta-band h2 {
  font-family: var(--f-ar);
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 1.1; font-weight: 900;
  letter-spacing: -0.025em;
}
.cta-band h2 em { font-family: var(--f-en); font-style: normal; color: var(--sand); font-weight: 500; }

.cta-band .contact-info { display: flex; flex-direction: column; }
.cta-band .contact-row { padding: 24px 0; border-bottom: 1px solid rgba(244,239,230,0.15); }
.cta-band .contact-row .label {
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 6px;
}
.cta-band .contact-row .value {
  font-family: var(--f-ar); font-size: 22px;
  font-weight: 800; color: var(--cream);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.cta-band .contact-row .value:hover { color: var(--sand); }
.cta-band .cta-button-wrap { margin-top: 32px; }
.cta-band .btn {
  background: var(--sand); color: var(--ink); border-color: var(--sand);
  padding: 18px 36px; font-size: 15px;
}
.cta-band .btn::before { background: var(--cream); }
.cta-band .btn:hover { color: var(--ink); }

/* ===============================
   FOOTER
   =============================== */
/* ============ FOOTER — WHITE BACKGROUND (per client) ============ */
footer { background: #FFFFFF; color: var(--ink); padding: 80px 32px 32px; border-top: 1px solid var(--line); }
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand h3 {
  font-family: var(--f-display);
  font-size: 26px; font-weight: 900;
  margin: 24px 0 16px;
  line-height: 1.3;
  color: var(--ink);
}
.footer-brand p {
  font-size: 14.5px; line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 24px; font-weight: 500;
}
.footer-brand .cities {
  font-family: var(--f-en); font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.footer-brand .cities-list {
  font-family: var(--f-display); font-size: 17px;
  font-weight: 800; color: var(--ink);
}

.footer-col h4 {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col ul a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 15px; font-weight: 500;
  transition: color .3s var(--ease);
}
.footer-col ul a:hover { color: var(--teal); }

.footer-bottom {
  padding-top: 32px;
  padding-left: 90px; /* leave room for WhatsApp button on left */
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted);
  flex-wrap: wrap; gap: 24px; font-weight: 500;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  text-decoration: none;
  transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--ink); border-color: var(--ink); color: var(--sand); }

/* ===============================
   WHATSAPP — BRANDED (icon-only when closed, expands on hover)
   =============================== */
.wa-float {
  position: fixed; bottom: 28px; left: 24px;
  z-index: 95;
  display: flex; align-items: center;
  text-decoration: none;
  font-family: var(--f-ar);
  background: var(--sand);
  color: var(--ink);
  height: 54px;
  width: 54px;
  padding: 0;
  border-radius: 999px;
  box-shadow: 0 12px 32px -8px rgba(22,82,90,0.35);
  transition: width .45s var(--ease), background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
  overflow: hidden;
  white-space: nowrap;
}
.wa-float:hover {
  width: 240px;
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -8px rgba(22,82,90,0.5);
}
.wa-float .wa-icon {
  width: 58px;
  height: 58px;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--ink);
  transition: color .35s var(--ease);
  position: relative;
}
.wa-float:hover .wa-icon { color: var(--sand); }
.wa-float .wa-icon::before {
  content:''; position: absolute; inset: 2px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  opacity: 0;
  animation: ring 2.4s var(--ease) infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-float .wa-icon svg { width: 28px; height: 28px; position: relative; z-index: 1; }
.wa-float .wa-text {
  display: flex; flex-direction: column;
  padding: 0 22px 0 0;
  line-height: 1.15;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity .25s var(--ease), transform .35s var(--ease);
  transition-delay: 0s;
  flex-shrink: 0;
}
.wa-float:hover .wa-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .15s;
}
.wa-float .wa-text .top {
  font-family: var(--f-en);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--sand);
  text-transform: uppercase;
}
.wa-float .wa-text .bot {
  font-size: 14px; font-weight: 700;
  color: var(--cream);
  margin-top: 3px;
}

/* mobile: icon only always, no hover behaviour */
@media (max-width: 640px) {
  .wa-float {
    width: 54px; height: 54px;
    bottom: 20px; left: 20px;
  }
  .wa-float:hover {
    width: 54px;
    background: var(--sand);
    transform: none;
  }
  .wa-float:hover .wa-icon { color: var(--ink); }
  .wa-float .wa-icon { width: 54px; height: 54px; }
  .wa-float .wa-icon svg { width: 26px; height: 26px; }
  .wa-float .wa-text { display: none; }
}

/* REVEAL ON SCROLL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner, .about-inner, .cta-band-inner, .ceo-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 460px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 32px 16px !important; border-bottom: 1px solid var(--line); }
  .sustain-grid { grid-template-columns: 1fr; }
  .sustain-card { padding: 40px 0 !important; border-left: none; border-bottom: 1px solid var(--line); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service.span-3, .service.span-2, .service.span-4 { grid-column: span 1; }
  .news-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .certs-grid-v2 { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid-names { grid-template-columns: repeat(4, 1fr) !important; }
  .partners-grid-names .partner-cell:nth-child(4n) { border-left: none; }
  .partners-grid-names .partner-cell:nth-child(6n) { border-left: 1px solid var(--line); }
  .partners-grid-images { grid-template-columns: repeat(4, 1fr) !important; }
  .partners-grid-images .partner-cell:nth-child(4n) { border-left: none; }
  .partners-grid-images .partner-cell:nth-child(6n) { border-left: 1px solid var(--line); }
  .partner-cell:nth-child(2n) { border-left: none; }
  .partner-cell:nth-child(4n) { border-left: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  nav.primary { display: none; }
  .menu-toggle { display: block; }
  .sustain-bg-text, .cta-band-text { font-size: 100px; }
  .ceo::before { font-size: 200px; }
}

/* ===========================================
   MOBILE — tightened layout, fixed CTA wrap
   =========================================== */
@media (max-width: 768px) {
  /* Hide utility bar on small screens */
  .utility-bar { display: none; }

  /* Header — compact, logo + lang + burger only on mobile */
  .nav-inner { padding: 14px 18px; }
  .brand-mark { height: 38px; }

  /* Hide CTA button on mobile — it lives inside the drawer */
  .nav-cta .btn { display: none; }

  .nav-cta { gap: 10px; }
  .lang-switch {
    padding: 7px 11px;
    font-size: 11px;
    letter-spacing: 0.15em;
  }
  .menu-toggle { width: 42px; height: 42px; }

  /* Hero — tighter */
  .hero { padding: 50px 18px 70px; min-height: auto; }
  .hero-inner { gap: 50px; min-height: auto; }
  .hero-eyebrow {
    font-size: 11.5px;
    padding: 7px 14px;
    margin-bottom: 24px;
  }
  .hero-eyebrow span:last-child {
    display: inline-block;
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }
  .hero h1 {
    font-size: 38px;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .hero p.lead {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 32px;
  }
  .hero-ctas .btn {
    padding: 12px 22px;
    font-size: 14px;
  }
  .hero-meta {
    gap: 24px;
    margin-top: 40px;
    padding-top: 24px;
    flex-wrap: wrap;
  }
  .hero-meta .item { flex: 1 1 45%; }
  .hero-meta .value { font-size: 17px; }
  .hero-meta .label { font-size: 10px; letter-spacing: 0.2em; }

  /* Hero visual — smaller */
  .hero-visual { height: 420px; }
  .hero-card.main .quote .text { font-size: 18px; line-height: 1.5; }
  .hero-card.main .quote .ar-num { font-size: 10.5px; letter-spacing: 0.3em; }
  .hero-card.main .badge { font-size: 11px; padding: 7px 13px; top: 18px; right: 18px; }
  .hero-card.main .quote { bottom: 24px; right: 24px; left: 24px; }
  .hero-card.sub .num { font-size: 64px; }
  .hero-card.sub .num .plus { font-size: 28px; }
  .hero-card.sub .label { font-size: 13px; }
  .hero-card.sub .content { inset: 20px; }
  .hero-float.f1,
  .hero-float.f2 { display: none; }
  .scroll-hint { display: none; }

  /* Section heads — readable on phone */
  .section-head h2,
  .about-content h2,
  .ceo-content h2,
  .sustain-head h2,
  .partners-head h2,
  .certs-head h2,
  .cta-band h2 {
    font-size: 32px !important;
    line-height: 1.2 !important;
  }
  .section-head .eyebrow,
  .about-content .eyebrow,
  .ceo-content .eyebrow,
  .sustain-head .eyebrow,
  .partners-head .eyebrow,
  .certs-head .eyebrow,
  .cta-band .eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.25em;
  }

  /* Reduce section padding */
  .stats, .about, .ceo, .services, .sustain, .partners, .certs, .news, .cta-band {
    padding: 70px 18px;
  }

  /* Stats — single column, but lighter */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 12px !important; }
  .stat .number { font-size: 48px; }
  .stat .label { font-size: 13px; }
  .stat .corner { font-size: 10px; top: 14px; }

  /* Marquee — calmer */
  .marquee-track .item { font-size: 22px; gap: 50px; }
  .marquee-track { gap: 50px; }

  /* About */
  .about-pillars { grid-template-columns: 1fr; gap: 18px; }
  .about-visual .big-num .n { font-size: 100px; }
  .about-visual .big-num .t { font-size: 17px; }
  .about-visual .label-tag { top: 20px; right: 20px; font-size: 10px; padding: 8px 14px; }

  /* CEO */
  .ceo-portrait .name-card { padding: 16px 18px; bottom: 18px; right: 18px; left: 18px; }
  .ceo-portrait .name-card .n { font-size: 19px; }
  .ceo-portrait .name-card .role { font-size: 9.5px; }
  .ceo-portrait .signature { font-size: 20px; top: 18px; right: 22px; }
  .ceo-content .message { font-size: 16px; line-height: 1.85; }
  .ceo-content .message:first-of-type { font-size: 18px; }
  .ceo-sign .who .n { font-size: 17px; }
  .ceo-sign .scribble { font-size: 30px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service.span-3, .service.span-2, .service.span-4 { grid-column: span 1; }
  .service .body { padding: 28px; }
  .service h3 { font-size: 21px; }
  .service p { font-size: 14px; }

  /* Sustain */
  .sustain-card .icon { width: 54px; height: 54px; margin-bottom: 22px; }
  .sustain-card .icon svg { width: 24px; height: 24px; }
  .sustain-card h3 { font-size: 21px; }

  /* Partners */
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .partner-cell { aspect-ratio: 3/2; }
  .partner-cell:nth-child(2n) { border-left: none; }
  .partner-cell:nth-child(odd) { border-left: 1px solid var(--line); }
  .partner-name { font-size: 18px; }
  .partner-cell .en-name { font-size: 10px; }
  .partners-grid-names { grid-template-columns: repeat(3, 1fr) !important; }
  .partners-grid-names .partner-cell:nth-child(3n) { border-left: none !important; }
  .partners-grid-names .partner-cell:nth-child(odd) { border-left: 1px solid var(--line); }
  .partners-grid-images { grid-template-columns: repeat(3, 1fr) !important; }
  .partners-grid-images .partner-cell:nth-child(3n) { border-left: none !important; }
  .partners-grid-images .partner-cell:nth-child(odd) { border-left: 1px solid var(--line); }

  /* Approvals row */
  .approvals-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .approval-badge { padding: 16px 12px; }
  .approval-badge .ar { font-size: 14px; }
  .approval-badge .en { font-size: 9px; }

  /* Certs */
  .certs-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cert { padding: 18px; }
  .cert .num { font-size: 26px; }
  .cert .iso { font-size: 11px; }
  .cert .title { font-size: 13.5px; }

  /* News */
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured h3 { font-size: 22px; }
  .news-card h3 { font-size: 19px; }

  /* CTA band */
  .cta-band .contact-row { padding: 18px 0; }
  .cta-band .contact-row .value { font-size: 18px; }
  .cta-band .btn { padding: 15px 28px; font-size: 14px; }
  .cta-band-text { font-size: 80px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-brand h3 { font-size: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; text-align: right; }
}

/* Extra small */
@media (max-width: 420px) {
  .hero h1 { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; }
  .partners-grid { grid-template-columns: 1fr; }
  .partner-cell { border-left: none !important; }
  .partners-grid-names { grid-template-columns: repeat(2, 1fr) !important; }
  .partners-grid-images { grid-template-columns: repeat(2, 1fr) !important; }
  .partners-grid-images .partner-cell { aspect-ratio: 3/2; }
  .certs-grid { grid-template-columns: 1fr; }
  .marquee-track .item { font-size: 18px; gap: 36px; }
  .marquee-track { gap: 36px; }
}


/* =========================================================
   ============== INNER PAGES — SHARED ADDITIONS ============
   ========================================================= */

/* PAGE HERO (banner used on About, Services, Contact, Quote) */
.page-hero {
  position: relative;
  padding: 100px 32px 80px;
  background: var(--paper);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(36,92,97,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201,168,107,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}
.page-hero-inner {
  max-width: 1320px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a {
  color: var(--muted); text-decoration: none;
  transition: color .3s var(--ease);
}
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep {
  width: 16px; height: 1px; background: var(--line-strong);
  display: inline-block;
}
.breadcrumb .current { color: var(--teal); }

.page-hero h1 {
  font-family: var(--f-ar);
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1.18; font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 1000px;
  margin-bottom: 28px;
}
.page-hero h1 em {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 900;
  color: var(--teal);
}
.page-hero .intro {
  font-size: 19px; line-height: 1.85;
  color: var(--ink-soft); font-weight: 500;
  max-width: 720px;
}

/* ABOUT PAGE — Mission/Vision/Values cards */
.mv-grid {
  padding: 120px 32px;
  background: var(--cream);
}
.mv-inner { max-width: 1320px; margin: 0 auto; }
.mv-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.mv-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}
.mv-card:hover {
  border-color: var(--sand);
  transform: translateY(-4px);
}
.mv-card .corner {
  position: absolute; top: 28px; left: 28px;
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; color: var(--muted);
  text-transform: uppercase;
}
.mv-card .ico-wrap {
  width: 70px; height: 70px;
  background: var(--ink); color: var(--sand);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 28px;
}
.mv-card .ico-wrap svg { width: 30px; height: 30px; }
.mv-card h3 {
  font-family: var(--f-ar);
  font-size: 28px; font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.mv-card p {
  font-size: 16px; line-height: 1.9;
  color: var(--ink-soft); font-weight: 500;
}

/* Values 4-col strip */
.values-strip {
  padding: 120px 32px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.values-inner { max-width: 1320px; margin: 0 auto; }
.values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line-strong);
}
.value-item {
  padding: 48px 32px 48px 0;
  border-left: 1px solid var(--line);
  position: relative;
}
.value-item:last-child { border-left: none; padding-left: 0; }
.value-item:first-child { padding-right: 0; }
.value-item .num {
  font-family: var(--f-en); font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; color: var(--sand);
  margin-bottom: 32px; text-transform: uppercase;
}
.value-item .ico {
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 28px;
  transition: all .4s var(--ease);
}
.value-item:hover .ico {
  background: var(--ink); border-color: var(--ink);
}
.value-item:hover .ico svg { stroke: var(--sand); }
.value-item .ico svg { width: 22px; height: 22px; stroke: var(--ink); transition: stroke .4s var(--ease); }
.value-item h4 {
  font-family: var(--f-ar);
  font-size: 22px; font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.value-item p {
  font-size: 14.5px; line-height: 1.85;
  color: var(--ink-soft); font-weight: 500;
}

/* Timeline */
.timeline-section {
  padding: 120px 32px;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.timeline-section::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(36,92,97,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.timeline-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.timeline-section .section-head h2 { color: var(--cream); }
.timeline-section .section-head .eyebrow { color: var(--sand); }
.timeline-section .section-head .eyebrow::before { background: var(--sand); }
.timeline-section .section-head h2 em { color: var(--sand); }
.timeline-section .section-head .desc { color: rgba(244,239,230,0.7); }

.timeline {
  position: relative;
  margin-top: 60px;
  padding-right: 40px;
}
.timeline::before {
  content:''; position: absolute;
  top: 0; bottom: 0; right: 8px;
  width: 1px; background: rgba(201,168,107,0.3);
}
.timeline-item {
  position: relative;
  padding: 0 0 60px 0;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content:''; position: absolute;
  right: -36px; top: 8px;
  width: 14px; height: 14px;
  background: var(--sand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--ink), 0 0 0 5px var(--sand);
}
.timeline-item .year {
  font-family: var(--f-en);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.25em; color: var(--sand);
  margin-bottom: 12px;
}
.timeline-item h3 {
  font-family: var(--f-ar);
  font-size: 24px; font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.timeline-item p {
  font-size: 15.5px; line-height: 1.85;
  color: rgba(244,239,230,0.75);
  font-weight: 500;
  max-width: 700px;
}

/* TEAM (leadership) */
.team-section { padding: 120px 32px; background: var(--cream); }
.team-inner { max-width: 1320px; margin: 0 auto; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .4s var(--ease);
}
.team-card:hover {
  border-color: var(--sand);
  transform: translateY(-4px);
}
.team-card .photo {
  aspect-ratio: 4/5;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.team-card .photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.4) contrast(1.05);
  transition: transform 1s var(--ease);
}
.team-card:hover .photo img { transform: scale(1.05); filter: grayscale(0.1) contrast(1.1); }
.team-card .photo .role-tag {
  position: absolute; top: 20px; right: 20px;
  background: var(--sand); color: var(--ink);
  padding: 6px 14px;
  font-family: var(--f-en); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
}
.team-card .info { padding: 28px; }
.team-card .name {
  font-family: var(--f-ar); font-size: 22px; font-weight: 800;
  margin-bottom: 6px; letter-spacing: -0.015em;
}
.team-card .title {
  font-family: var(--f-en); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.25em; color: var(--muted);
  text-transform: uppercase;
}

/* SERVICES PAGE — Detail rows */
.service-row {
  padding: 100px 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.service-row:nth-child(even) { background: var(--cream); }
.service-row-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: center;
}
.service-row:nth-child(even) .service-row-inner {
  grid-template-columns: 1.1fr 1fr;
  direction: ltr;
}
.service-row:nth-child(even) .service-row-inner > * { direction: rtl; }

.service-row-visual {
  position: relative; aspect-ratio: 5/4;
  border-radius: 4px; overflow: hidden;
}
.service-row-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
  transition: transform 1s var(--ease);
}
.service-row-visual:hover img { transform: scale(1.04); }
.service-row-visual::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22,82,90,0.4) 100%);
}
.service-row-visual .nr {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--f-en); font-size: 14px; font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--cream);
  background: rgba(22,82,90,0.7);
  backdrop-filter: blur(10px);
  padding: 8px 16px; border-radius: 4px;
  z-index: 2;
}

.service-row-content .eyebrow {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.service-row-content .eyebrow::before {
  content:''; width: 24px; height: 1px; background: var(--teal);
}
.service-row-content h2 {
  font-family: var(--f-ar);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.25; font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.service-row-content p {
  font-size: 17px; line-height: 1.9;
  color: var(--ink-soft); font-weight: 500;
  margin-bottom: 28px;
}
.service-row-content ul {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 32px;
}
.service-row-content ul li {
  font-size: 15px; font-weight: 600;
  color: var(--ink); padding-right: 24px;
  position: relative;
  line-height: 1.5;
}
.service-row-content ul li::before {
  content: ''; position: absolute;
  right: 0; top: 9px;
  width: 8px; height: 8px;
  background: var(--sand);
  border-radius: 50%;
}

/* PROCESS strip (services page) */
.process-section { padding: 120px 32px; background: var(--ink); color: var(--cream); }
.process-section .section-head h2 { color: var(--cream); }
.process-section .section-head .eyebrow { color: var(--sand); }
.process-section .section-head .eyebrow::before { background: var(--sand); }
.process-section .section-head h2 em { color: var(--sand); }
.process-section .section-head .desc { color: rgba(244,239,230,0.7); }
.process-inner { max-width: 1320px; margin: 0 auto; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 60px;
  border-top: 1px solid rgba(244,239,230,0.15);
}
.process-step {
  padding: 48px 32px 48px 0;
  border-left: 1px solid rgba(244,239,230,0.1);
  position: relative;
}
.process-step:last-child { border-left: none; padding-left: 0; }
.process-step:first-child { padding-right: 0; }
.process-step .step-num {
  font-family: var(--f-en);
  font-size: 64px; font-weight: 300;
  color: var(--sand); line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.process-step h3 {
  font-family: var(--f-ar);
  font-size: 22px; font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.process-step p {
  font-size: 14.5px; line-height: 1.85;
  color: rgba(244,239,230,0.7);
  font-weight: 500;
}

/* ============ CONTACT PAGE ============ */
.contact-grid-section {
  padding: 100px 32px;
  background: var(--paper);
}
.contact-grid-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info-card {
  background: var(--ink); color: var(--cream);
  border-radius: 4px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content:''; position: absolute;
  top: -20%; left: -20%; width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(36,92,97,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.contact-info-card::after {
  content:''; position: absolute;
  bottom: -10%; right: -10%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(201,168,107,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.contact-info-card > * { position: relative; z-index: 1; }

.contact-info-card .eyebrow {
  font-family: var(--f-en); font-size: 12px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 20px;
}
.contact-info-card h2 {
  font-family: var(--f-ar);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900; line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.contact-info-card h2 em {
  font-family: var(--f-en); font-style: normal;
  font-weight: 500; color: var(--sand);
}
.contact-info-card > p {
  font-size: 15.5px; line-height: 1.85;
  color: rgba(244,239,230,0.75);
  font-weight: 500;
  margin-bottom: 40px;
}

.contact-detail-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 22px;
  border-top: 1px solid rgba(244,239,230,0.15);
  padding-top: 32px;
}
.contact-detail-list li {
  display: flex; gap: 18px; align-items: flex-start;
}
.contact-detail-list .ico-wrap {
  width: 44px; height: 44px;
  border: 1px solid rgba(244,239,230,0.2);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--sand);
}
.contact-detail-list .ico-wrap svg { width: 18px; height: 18px; }
.contact-detail-list .meta {
  display: flex; flex-direction: column;
  flex: 1;
}
.contact-detail-list .label {
  font-family: var(--f-en); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 5px;
}
.contact-detail-list .val {
  font-family: var(--f-ar); font-size: 16px; font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.5;
}
.contact-detail-list a.val { transition: color .3s var(--ease); }
.contact-detail-list a.val:hover { color: var(--sand); }

.contact-socials {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,239,230,0.15);
  display: flex; gap: 12px;
}
.contact-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(244,239,230,0.2);
  display: grid; place-items: center;
  color: rgba(244,239,230,0.7);
  text-decoration: none;
  transition: all .3s var(--ease);
}
.contact-socials a:hover {
  background: var(--sand); border-color: var(--sand);
  color: var(--ink);
}

/* CONTACT / QUOTE FORM */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 56px 48px;
}
.form-card h3 {
  font-family: var(--f-ar);
  font-size: 28px; font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-card .form-sub {
  font-size: 15px; color: var(--muted);
  font-weight: 500;
  margin-bottom: 36px;
}

.form-row {
  display: grid; gap: 20px;
  margin-bottom: 20px;
}
.form-row.two { grid-template-columns: 1fr 1fr; }

.field {
  display: flex; flex-direction: column; gap: 8px;
}
.field label {
  font-family: var(--f-ar);
  font-size: 13px; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.field label .req { color: var(--rust); margin-right: 2px; }
.field input,
.field select,
.field textarea {
  font-family: var(--f-ar);
  font-size: 15px; font-weight: 500;
  padding: 14px 16px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  outline: none;
  transition: all .3s var(--ease);
  width: 100%;
}
.field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(36,92,97,0.1);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(22,82,90,0.4);
  font-weight: 500;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%230E1F22' stroke-width='1.5'%3e%3cpath d='M1 1.5l5 5 5-5'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

/* Service chip selector (quotation) */
.chip-row {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-ar);
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  transition: all .25s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip input { display: none; }
.chip.checked,
.chip:has(input:checked) {
  background: var(--ink); color: var(--cream);
  border-color: var(--ink);
}
.chip .check {
  display: inline-block;
  width: 14px; height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
}
.chip.checked .check::after,
.chip:has(input:checked) .check::after {
  content:''; position: absolute;
  top: 1px; left: 3px;
  width: 5px; height: 8px;
  border: solid var(--sand);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.form-consent {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 20px 0 28px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 500;
  cursor: pointer;
}
.form-consent input {
  margin-top: 3px;
  accent-color: var(--teal);
  width: 16px; height: 16px;
  cursor: pointer;
}
.form-consent a { color: var(--teal); text-decoration: underline; }

.form-submit {
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink);
  font-family: var(--f-ar);
  font-weight: 700; font-size: 15px;
  padding: 16px 32px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  position: relative; overflow: hidden;
  transition: all .35s var(--ease);
}
.form-submit::before {
  content:''; position: absolute; inset: 0;
  background: var(--teal);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
}
.form-submit:hover::before { transform: translateX(0); }
.form-submit > * { position: relative; z-index: 1; }
.form-submit svg { width: 16px; height: 16px; }
.form-submit:hover svg { transform: translateX(-4px); transition: transform .35s var(--ease); }

/* Quote success messages (hidden by default) */
.form-success {
  display: none;
  padding: 36px;
  background: var(--cream);
  border: 1px solid var(--teal);
  border-radius: 4px;
  text-align: center;
}
.form-success.show { display: block; }
.form-success .check-ico {
  width: 60px; height: 60px;
  background: var(--teal); color: var(--cream);
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 20px;
}
.form-success h4 {
  font-family: var(--f-ar);
  font-size: 22px; font-weight: 900;
  margin-bottom: 10px;
}
.form-success p {
  font-size: 15px; color: var(--ink-soft); font-weight: 500;
}

/* Map strip */
.map-strip {
  padding: 0 32px 100px;
  background: var(--paper);
}
.map-strip-inner {
  max-width: 1320px; margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 21/9;
  background: var(--bone);
  border: 1px solid var(--line);
  position: relative;
}
.map-strip iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.6) contrast(1.05);
}

/* Offices strip */
.offices-strip {
  padding: 100px 32px;
  background: var(--cream);
}
.offices-inner { max-width: 1320px; margin: 0 auto; }
.offices-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.office {
  padding: 40px 28px 40px 0;
  border-left: 1px solid var(--line);
}
.office:last-child { border-left: none; padding-left: 0; }
.office:first-child { padding-right: 0; }
.office .city {
  font-family: var(--f-en);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.office h4 {
  font-family: var(--f-ar);
  font-size: 22px; font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.office .addr {
  font-size: 14.5px; line-height: 1.85;
  color: var(--ink-soft); font-weight: 500;
  margin-bottom: 18px;
}
.office .ph {
  display: block;
  font-family: var(--f-en); font-weight: 500;
  color: var(--ink); text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  transition: color .3s var(--ease);
}
.office .ph:hover { color: var(--teal); }

/* ============ FAQ accordion (used on contact / quote) ============ */
.faq-section { padding: 120px 32px; background: var(--paper); }
.faq-inner { max-width: 960px; margin: 0 auto; }
.faq-list {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  background: transparent; border: none;
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  text-align: right;
  cursor: pointer;
  font-family: var(--f-ar);
  font-size: 20px; font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.015em;
  transition: color .3s var(--ease);
}
.faq-question:hover { color: var(--teal); }
.faq-question .plus {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: all .35s var(--ease);
}
.faq-question .plus::before,
.faq-question .plus::after {
  content:''; position: absolute;
  background: var(--ink);
  transition: all .3s var(--ease);
}
.faq-question .plus::before { width: 12px; height: 1.5px; }
.faq-question .plus::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-question .plus {
  background: var(--ink); border-color: var(--ink);
}
.faq-item.open .faq-question .plus::before,
.faq-item.open .faq-question .plus::after { background: var(--cream); }
.faq-item.open .faq-question .plus::after { transform: scaleY(0); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 32px;
  font-size: 16px; line-height: 1.95;
  color: var(--ink-soft); font-weight: 500;
  max-width: 760px;
}

/* RESPONSIVE for inner pages */
@media (max-width: 1100px) {
  .mv-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item { padding: 32px 16px !important; border-bottom: 1px solid var(--line); }
  .value-item:nth-child(2) { border-left: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row-inner,
  .service-row:nth-child(even) .service-row-inner {
    grid-template-columns: 1fr; gap: 50px;
    direction: rtl;
  }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { padding: 32px 16px !important; border-bottom: 1px solid rgba(244,239,230,0.1); }
  .contact-grid-inner { grid-template-columns: 1fr; gap: 40px; }
  .offices-grid { grid-template-columns: repeat(2, 1fr); }
  .office { padding: 32px 16px !important; border-bottom: 1px solid var(--line); }
}

@media (max-width: 768px) {
  .page-hero { padding: 60px 18px 50px; }
  .page-hero h1 { font-size: 38px; }
  .page-hero .intro { font-size: 16px; }
  .breadcrumb { font-size: 10px; letter-spacing: 0.2em; }

  .mv-grid, .values-strip, .timeline-section, .team-section,
  .process-section, .contact-grid-section, .faq-section, .offices-strip {
    padding: 60px 18px;
  }
  .service-row { padding: 60px 18px; }

  .mv-card { padding: 32px 24px; }
  .mv-card h3 { font-size: 22px; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .office { border-left: none !important; }

  .form-card { padding: 32px 24px; }
  .form-row.two { grid-template-columns: 1fr; }
  .contact-info-card { padding: 36px 28px; }
  .contact-info-card h2 { font-size: 26px; }

  .timeline { padding-right: 30px; }
  .timeline-item::before { right: -28px; }
  .timeline-item h3 { font-size: 20px; }

  .service-row-content h2 { font-size: 26px; }
  .service-row-content ul { grid-template-columns: 1fr; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-left: none !important; }

  .faq-question { font-size: 16px; padding: 20px 0; }
  .faq-question .plus { width: 30px; height: 30px; }
  .faq-answer-inner { font-size: 15px; padding-bottom: 24px; }
}


/* ============= LEGAL PAGES (privacy, terms) ============= */
.legal-section { padding: 80px 32px 120px; background: var(--paper); }
.legal-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.legal-col {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px 36px;
}
.legal-col.legal-en { direction: ltr; text-align: left; }
.legal-eyebrow {
  font-family: var(--f-en); font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.legal-col h2 {
  font-family: var(--f-display) !important;
  font-size: 18px !important;
  font-weight: 900;
  color: var(--ink);
  margin: 26px 0 10px;
  letter-spacing: -0.01em;
}
.legal-col.legal-en h2 {
  font-family: 'Inter', system-ui, sans-serif !important;
}
.legal-col h2:first-of-type { margin-top: 0; }
.legal-col p {
  font-size: 14.5px; line-height: 1.85;
  color: var(--ink-soft); font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 900px) {
  .legal-inner { grid-template-columns: 1fr; gap: 24px; }
  .legal-section { padding: 50px 18px 80px; }
  .legal-col { padding: 28px 22px; }
}