@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy: #0a1f3c;
  --navy-2: #122c4f;
  --navy-3: #1a3a63;
  --gold: #c9942e;
  --gold-light: #d4a94a;
  --gold-pale: #f0dbb0;
  --ink: #1a2332;
  --muted: #6b7a8d;
  --paper: #f7f6f3;
  --light-gray: #eef0f2;
  --white: #ffffff;
  --border: rgba(10, 31, 60, 0.08);
  --shadow-sm: 0 2px 8px rgba(10, 31, 60, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 31, 60, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 31, 60, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  direction: rtl;
  color: var(--ink);
  background: var(--white);
  font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
.container { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }

/* ─── Header ─── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 90px;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(10, 31, 60, 0.08);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 72px;
  padding: 6px 10px;
  background: transparent;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: var(--transition);
}
.brand img { width: 60px; height: 60px; object-fit: contain; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}
.site-header.is-scrolled .site-nav { color: var(--navy); }
.site-nav a {
  position: relative;
  padding-block: 6px;
  letter-spacing: 0.01em;
}
.site-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { width: 100%; }
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-inline-start: auto;
  padding: 10px 22px;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: var(--transition);
}
.header-cta:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: white;
  background: transparent;
  cursor: pointer;
  margin-inline-start: auto;
}
.site-header.is-scrolled .menu-toggle { color: var(--navy); }
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ─── Hero ─── */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--navy);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 31, 60, 0.92) 0%, rgba(10, 31, 60, 0.6) 45%, rgba(10, 31, 60, 0.2) 100%);
  z-index: 1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(10, 31, 60, 0.65));
  z-index: 1;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-out both;
}
@keyframes slowZoom { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 12vh;
  max-width: 760px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.eyebrow::before {
  content: '';
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero p {
  max-width: 640px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.btn-primary {
  color: var(--navy);
  background: var(--gold-light);
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.scroll-mark {
  position: absolute;
  z-index: 3;
  left: 5%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-mark::after {
  content: '';
  width: 1px;
  height: 56px;
  background: linear-gradient(white, transparent);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ─── Page Hero ─── */
.page-hero { min-height: 60vh; align-items: flex-end; }
.page-hero .hero-content { padding-bottom: 8vh; }
.page-hero h1 { font-size: clamp(36px, 4.5vw, 64px); }

/* ─── Sections ─── */
section { padding: 100px 0; }
.section-soft { background: var(--paper); }
.section-navy { color: white; background: var(--navy); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 52px;
}
.section-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
h2 {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.section-navy h2 { color: white; }
.lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}
.section-navy .lead { color: rgba(255, 255, 255, 0.65); }

/* ─── Intro Grid ─── */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.intro-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}
.image-frame {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-frame:hover img { transform: scale(1.03); }

/* Video variant — compact height */
.video-frame { aspect-ratio: 16 / 9; min-height: 0 !important; max-height: 320px; height: auto; }
.video-frame video {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  object-fit: cover;
  border-radius: inherit;
  max-height: inherit;
}

.image-frame::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 20px 20px auto auto;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) 0 0;
}
.signature-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.signature-line div { padding: 22px 16px; background: white; text-align: center; }
.signature-line strong {
  display: block;
  color: var(--gold);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}
.signature-line span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

/* ─── Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
  background: var(--navy);
  border-radius: var(--radius-lg);
}
.service-card.wide { grid-column: span 8; }
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(10, 31, 60, 0.92));
  border-radius: var(--radius-lg);
}
.service-card:hover img { transform: scale(1.06); }
.service-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 30px;
}
.service-number {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  background: rgba(212, 169, 74, 0.2);
  border-radius: 4px;
  color: var(--gold-pale);
  font-size: 12px;
  font-weight: 700;
}
.service-card h3 { margin: 0 0 10px; font-size: 22px; font-weight: 700; }
.service-card p { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.7; }

/* ─── Values Grid ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-card {
  min-height: 230px;
  padding: 34px;
  background: var(--navy);
  transition: var(--transition);
}
.value-card:hover { background: var(--navy-2); }
.value-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(212, 169, 74, 0.4);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 20px;
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: rgba(212, 169, 74, 0.1);
  border-color: var(--gold-light);
}
.value-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 700; }
.value-card p { margin: 0; color: rgba(255, 255, 255, 0.6); font-size: 14px; line-height: 1.7; }

/* ─── Vision Grid ─── */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vision-card {
  position: relative;
  min-height: 340px;
  padding: 44px;
  overflow: hidden;
  color: white;
  background: var(--navy);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.vision-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.vision-card.gold { color: var(--navy); background: var(--gold-light); }
.vision-card .index {
  position: absolute;
  left: 25px;
  bottom: -28px;
  font-size: 140px;
  line-height: 1;
  opacity: 0.06;
  font-weight: 900;
}
.vision-card h3 { margin: 50px 0 16px; font-size: 28px; font-weight: 800; }
.vision-card p { max-width: 480px; margin: 0; opacity: 0.78; font-size: 16px; line-height: 1.8; }

/* ─── Project Feature ─── */
.project-feature {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  min-height: 500px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.project-feature .media { min-height: 400px; overflow: hidden; }
.project-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-feature:hover img { transform: scale(1.04); }
.project-feature .copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  color: white;
}
.project-feature h3 { margin: 10px 0 16px; font-size: 28px; font-weight: 800; line-height: 1.4; }
.project-feature p { margin: 0; color: rgba(255, 255, 255, 0.65); line-height: 1.8; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.project-tags span {
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition);
}
.project-tags span:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3); }

/* ─── Portfolio Grid ─── */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.portfolio-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: white;
  background: var(--navy);
  border-radius: var(--radius-lg);
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(10, 31, 60, 0.92));
  border-radius: var(--radius-lg);
}
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card .copy {
  position: absolute;
  z-index: 1;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 32px;
}
.portfolio-card h3 { margin: 8px 0 6px; font-size: 24px; font-weight: 700; }
.portfolio-card p { margin: 0; color: rgba(255, 255, 255, 0.65); font-size: 14px; }

/* ─── Process ─── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
  gap: 0;
}
.process-step {
  min-height: 250px;
  padding: 32px;
  border-right: 1px solid var(--border);
  counter-increment: steps;
  transition: var(--transition);
}
.process-step:first-child { border-right: 0; }
.process-step:hover { background: var(--paper); }
.process-step::before {
  content: '0' counter(steps);
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.process-step h3 { margin: 0 0 12px; color: var(--navy); font-size: 18px; font-weight: 700; }
.process-step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.contact-list { margin-top: 32px; border-top: 1px solid var(--border); }
.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.contact-item:hover { padding-right: 8px; }
.contact-item .icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 18px;
  transition: var(--transition);
}
.contact-item:hover .icon { background: var(--gold); color: white; }
.contact-item small { display: block; color: var(--gold); font-weight: 700; font-size: 12px; }
.contact-item strong { display: block; color: var(--navy); font-size: 16px; font-weight: 600; direction: ltr; text-align: right; }
.contact-item.address strong { direction: rtl; }

.contact-form {
  padding: 44px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin: 0 0 28px; font-size: 26px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-pale);
  font-size: 13px;
  font-weight: 600;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.1);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select option { color: var(--ink); }

.map-card {
  min-height: 280px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 44px;
  text-align: center;
  color: white;
  background: linear-gradient(rgba(10, 31, 60, 0.88), rgba(10, 31, 60, 0.94)), url('assets/infrastructure.png') center/cover;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.map-card h3 { margin: 0 0 10px; font-size: 26px; font-weight: 800; }
.map-card p { margin: 0 0 22px; color: rgba(255, 255, 255, 0.65); }

/* ─── CTA Band ─── */
.cta-band {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta-band h2 { margin: 0; max-width: 680px; color: var(--navy); font-size: clamp(26px, 3.2vw, 44px); }
.cta-band .btn {
  color: white;
  background: var(--navy);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.cta-band .btn:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ─── Footer ─── */
.site-footer {
  padding: 70px 0 24px;
  color: rgba(255, 255, 255, 0.65);
  background: #051224;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 60px;
}
.footer-brand {
  width: 180px;
  padding: 12px;
  background: transparent;
  border-radius: var(--radius-sm);
}
.footer-about p { max-width: 400px; margin: 20px 0; font-size: 14px; line-height: 1.9; }
.footer-title { margin: 0 0 18px; color: var(--gold-light); font-size: 15px; font-weight: 700; }
.footer-links { display: grid; gap: 10px; font-size: 14px; }
.footer-links a { transition: var(--transition); }
.footer-links a:hover { color: white; padding-right: 6px; }
.footer-contact { display: grid; gap: 12px; font-size: 14px; text-align: right; }
.footer-contact a,
.footer-contact span { display: block; direction: rtl; unicode-bidi: plaintext; text-align: right; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ─── Reveal Animation ─── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.hero [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ─── Responsive — Tablet ─── */
@media (max-width: 980px) {
  .site-header { height: 76px; }
  .brand { width: 130px; height: 62px; }
  .brand img { width: 50px; height: 50px; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    padding: 130px 30px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    color: white !important;
    background: var(--navy);
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 22px;
    z-index: 99;
  }
  .menu-open .site-nav { transform: none; }
  .menu-open .menu-toggle { position: fixed; top: 18px; left: 18px; z-index: 101; color: white; }
  .menu-open .menu-toggle span { opacity: 0; }
  .menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }
  .intro-grid, .contact-grid { grid-template-columns: 1fr; }
  .image-frame { min-height: 380px; }
  .video-frame { max-height: 200px; min-height: 0 !important; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card.wide { grid-column: auto; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .project-feature { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  section { padding: 80px 0; }
}

/* ─── Responsive — Mobile ─── */
@media (max-width: 650px) {
  .container { width: min(100% - 24px, 1220px); }
  section { padding: 64px 0; }
  .hero-content { padding-bottom: 12vh; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .scroll-mark { display: none; }
  .section-head, .cta-inner { align-items: flex-start; flex-direction: column; }
  .services-grid,
  .values-grid,
  .vision-grid,
  .portfolio-grid,
  .process,
  .footer-grid,
  .form-row { grid-template-columns: 1fr; }
  .service-card { min-height: 380px; }
  .signature-line { grid-template-columns: 1fr; }
  .image-frame { min-height: 300px; }
  .video-frame { max-height: 160px; min-height: 0 !important; }
  .vision-card, .contact-form { padding: 28px; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--border); }
  .project-feature .copy { padding: 28px; }
  .footer-about { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cta-band { padding: 56px 0; }
  .values-grid { border-radius: var(--radius-md); }
}

/* ─── Selection ─── */
::selection { background: var(--gold-light); color: var(--navy); }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--navy-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy); }
