:root {
  --ink: #101820;
  --navy: #0b1724;
  --navy-2: #13283b;
  --gold: #d6a74a;
  --gold-deep: #b98527;
  --paper: #ffffff;
  --warm: #f5f3ee;
  --soft: #f7f8f9;
  --muted: #66717c;
  --line: #e4e7ea;
  --shadow: 0 24px 70px rgba(11, 23, 36, 0.12);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  direction: rtl;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
video {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 14px 0;
  transition: 0.28s ease;
}
.site-header.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 231, 234, 0.85);
}
.nav-shell {
  position: relative;
  z-index: 1002;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 0 14px 0 10px;
  box-shadow: 0 12px 35px rgba(7, 17, 31, 0.12);
  transition: 0.28s ease;
}
.site-header.scrolled .nav-shell {
  height: 62px;
  box-shadow: none;
  border-color: transparent;
  background: transparent;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #f0f1f2;
  border: 1px solid #e5e7e9;
  overflow: hidden;
}
.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.brand-copy {
  display: grid;
  line-height: 1.2;
}
.brand-copy strong {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #34404b;
}
/* .desktop-nav a {
  position: relative;
  padding: 10px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.25s;
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
} */

.desktop-nav {
  gap: clamp(14px, 1.6vw, 24px);
}

.desktop-nav a {
  position: relative;
  padding: 10px 2px 12px;
  white-space: nowrap;
  color: #34404b;

  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 4px;

  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);

  transform: translateX(-50%) scaleX(0);

  transform-origin: center;

  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.desktop-nav a.active,
.desktop-nav a[aria-current="location"] {
  color: var(--navy);
}

.desktop-nav a.active::after,
.desktop-nav a[aria-current="location"]::after {
  transform: translateX(-50%) scaleX(1);
}

@media (hover: hover) {
  .desktop-nav a:hover {
    color: var(--navy);
  }

  .desktop-nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Manrope, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #2e3943;
  direction: ltr;
}
.nav-phone i {
  color: var(--gold-deep);
}
.menu-button {
  display: none;
  position: relative;
  z-index: 1003;
  isolation: isolate;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #eef1f3;
  color: #17212b;
  cursor: pointer;
  place-items: center;
  overflow: hidden;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.menu-button:hover {
  background: #e2e6e9;
}

.menu-button:active {
  transform: scale(0.95);
}

.menu-button:focus-visible {
  outline: 3px solid rgba(214, 167, 74, 0.4);
  outline-offset: 3px;
}

.menu-icon {
  position: absolute;
  font-size: 21px;
  line-height: 1;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-icon-bars {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.menu-icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.65);
}

.menu-button[aria-expanded="true"] .menu-icon-bars {
  opacity: 0;
  transform: rotate(90deg) scale(0.65);
}

.menu-button[aria-expanded="true"] .menu-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  padding-top: 94px;
  background: rgba(11, 23, 36, 0.34);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu-inner {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  transition: 0.25s;
}
.mobile-menu.open .mobile-menu-inner {
  transform: none;
}
.mobile-menu-inner > a {
  position: relative;
  display: block;

  padding: 13px 14px;
  border-bottom: 1px solid #edf0f2;
  border-radius: 10px;

  color: #34404b;
  font-weight: 600;
  font-size: 15px;
  overflow: hidden;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    padding 0.25s ease;
}

.mobile-menu-inner > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;

  width: 3px;
  height: 0;
  border-radius: 999px;
  background: var(--gold);

  transform: translateY(-50%);

  transition: height 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-inner > a.active,
.mobile-menu-inner > a[aria-current="location"] {
  color: var(--navy);
  background: rgba(214, 167, 74, 0.12);
  padding-right: 19px;
}

.mobile-menu-inner > a.active::before,
.mobile-menu-inner > a[aria-current="location"]::before {
  height: 26px;
}
.mobile-menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 16px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 13px;
}
.button-primary {
  background: var(--gold);
  color: #111820;
  box-shadow: 0 14px 30px rgba(214, 167, 74, 0.22);
}
.button-primary:hover {
  background: #e0b55d;
  box-shadow: 0 18px 38px rgba(214, 167, 74, 0.3);
}
.button-light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(10px);
}
.button-light:hover {
  background: rgba(255, 255, 255, 0.17);
}
.button-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 12, 19, 0.26) 0%,
      rgba(5, 12, 19, 0.7) 48%,
      rgba(5, 12, 19, 0.94) 100%
    ),
    linear-gradient(0deg, rgba(6, 14, 22, 0.8), transparent 50%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to left, #000, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  align-items: center;
  gap: 72px;
  padding: 150px 0 100px;
}
.hero-copy {
  max-width: 720px;
}
.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f1cc80;
}
.eyebrow span {
  width: 34px;
  height: 1px;
  background: #f1cc80;
}
.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(38px, 4.25vw, 58px);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.hero-lead {
  max-width: 670px;
  margin: 22px 0 0;
  color: #d7dfe6;
  font-size: 18px;
  line-height: 1.95;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 26px;
  color: #d5dde4;
  font-size: 13px;
}
.hero-notes span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-notes i {
  color: var(--gold);
}
.hero-card {
  align-self: end;
  background: rgba(12, 28, 43, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(16px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}
.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #dfe6eb;
  font-size: 13px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-card-head i {
  color: var(--gold);
  font-size: 20px;
}
.hero-card-list {
  display: grid;
  gap: 4px;
  padding: 10px 0;
}
.hero-card-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.hero-card-list > div:last-child {
  border-bottom: 0;
}
.card-index {
  font-family: Manrope, Arial, sans-serif;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.hero-card-list p {
  margin: 0;
  display: grid;
  line-height: 1.5;
}
.hero-card-list strong {
  font-size: 15px;
}
.hero-card-list small {
  color: #aeb9c3;
  font-size: 12px;
  margin-top: 3px;
}
.hero-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: #fff;
  color: var(--navy);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 12px;
}
.hero-card-footer strong {
  font-family: Manrope, Arial, sans-serif;
  font-size: 13px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -36px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(11, 23, 36, 0.1);
  overflow: hidden;
}
.trust-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-left: 1px solid var(--line);
}
.trust-grid article:last-child {
  border-left: 0;
}
.trust-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #f7f1e5;
  color: var(--gold-deep);
  font-size: 17px;
}
.trust-grid div {
  display: grid;
  line-height: 1.4;
}
.trust-grid strong {
  font-size: 15px;
}
.trust-grid span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.section {
  padding: 108px 0;
}

/* main section[id] {
  scroll-margin-top: 100px;
} */
.section-copy h2,
.section-heading h2,
.why-copy h2,
.quote-card h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(30px, 3.4vw, 43px);
  line-height: 1.35;
  letter-spacing: -0.025em;
  font-weight: 700;
}
.section-copy > p:not(.section-kicker),
.section-heading > p,
.why-copy > p:not(.section-kicker),
.contact-copy > p {
  color: var(--muted);
  line-height: 1.95;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 86px;
  align-items: center;
}
.about-media {
  position: relative;
  min-height: 580px;
}
.about-main {
  position: absolute;
  inset: 0 10% 0 0;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #ddd;
}
.about-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-small {
  position: absolute;
  left: -15px;
  bottom: 38px;
  width: 42%;
  height: 245px;
  margin: 0;
  /* border: 2px solid #fff; */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  right: 0;
  bottom: 28px;
  display: grid;
  background: var(--gold);
  color: var(--navy);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}
.about-badge strong {
  font-size: 20px;
}
.about-badge span {
  font-size: 11px;
  margin-top: 2px;
}
.section-copy > p {
  margin: 18px 0 0;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-points > div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.about-points i {
  color: var(--gold-deep);
  font-size: 19px;
  margin-top: 4px;
}
.about-points span {
  display: grid;
}
.about-points strong {
  font-size: 15px;
}
.about-points small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}
.text-link i {
  color: var(--gold-deep);
  transition: 0.2s;
}
.text-link:hover i {
  transform: translateX(-4px);
}

.services {
  background: var(--soft);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 42px;
}
.section-heading > p {
  margin: 0;
}
.section-heading.compact {
  margin-bottom: 34px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  position: relative;
  min-height: 250px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  overflow: hidden;
  transition: 0.3s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #d8dde1;
  box-shadow: 0 20px 45px rgba(11, 23, 36, 0.08);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-number {
  position: absolute;
  left: 22px;
  top: 22px;
  font-family: Manrope, Arial, sans-serif;
  color: #b3bac0;
  font-size: 11px;
  font-weight: 700;
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #f7f1e5;
  color: var(--gold-deep);
  font-size: 18px;
}
.service-card h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.4;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}
.service-card > a {
  position: absolute;
  right: 26px;
  bottom: 23px;
  color: var(--navy);
  font-size: 13px;
}

.why-us {
  background: var(--navy);
  color: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
  align-items: center;
}
.section-kicker-light {
  color: #f0c873;
}
.why-copy h2 {
  color: #fff;
}
.why-copy > p:not(.section-kicker) {
  color: #b9c5ce;
  margin: 20px 0 28px;
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.why-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.why-list > article > span {
  font-family: Manrope, Arial, sans-serif;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.why-list h3 {
  margin: 0 0 7px;
  font-size: 17px;
}
.why-list p {
  margin: 0;
  color: #aebbc5;
  font-size: 13px;
  line-height: 1.75;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.process-grid article {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border-left: 1px solid var(--line);
  background: #fff;
}
.process-grid article:last-child {
  border-left: 0;
}
.process-index {
  position: absolute;
  left: 20px;
  top: 19px;
  color: #aab2ba;
  font:
    700 11px Manrope,
    Arial,
    sans-serif;
}
.process-grid i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  font-size: 16px;
}
.process-grid h3 {
  margin: 24px 0 9px;
  color: var(--navy);
  font-size: 17px;
}
.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.projects {
  background: var(--warm);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 250px;
  gap: 14px;
}
.project {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #d9dde0;
}
.project-wide {
  grid-row: span 2;
}
.project-tall {
  grid-row: span 2;
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}
.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 14, 22, 0.75), transparent 60%);
}
.project:hover img {
  transform: scale(1.045);
}
.project figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  display: grid;
  color: #fff;
  line-height: 1.45;
}
.project figcaption span {
  font-size: 11px;
  color: #e4bd6d;
}
.project figcaption strong {
  font-size: 15px;
  margin-top: 4px;
}

.quote-section {
  padding: 0 0 108px;
  background: var(--warm);
}
.quote-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background: linear-gradient(115deg, #0b1724, #152d42);
  border-radius: 20px;
  padding: 42px;
  color: #fff;
  overflow: hidden;
}
.quote-card::after {
  content: "";
  position: absolute;
  left: -90px;
  top: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(214, 167, 74, 0.12);
}
.quote-card h2 {
  color: #fff;
  font-size: 35px;
}
.quote-card p {
  margin: 10px 0 0;
  color: #c4cdd4;
}
.quote-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact {
  background: #fff;
}
.phone-number {
  text-align: right;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 70px;
  align-items: start;
}
.contact-copy > p {
  margin: 18px 0 0;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 11px;
  background: #f7f1e5;
  color: var(--gold-deep);
}
.contact-list > a > span:last-child,
.contact-list > div > span:last-child {
  display: grid;
  min-width: 0;
  line-height: 1.45;
}
.contact-list small {
  color: var(--muted);
  font-size: 11px;
}
.contact-list strong {
  font-size: 13px;
  overflow-wrap: anywhere;
}
.contact-form {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.hidden-field {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;

  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;

  white-space: nowrap !important;
  border: 0 !important;

  left: auto !important;
  right: auto !important;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: #39444d;
  font-size: 12px;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dce1e5;
  border-radius: 11px;
  background: #fff;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
  transition: 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #c5963d;
  box-shadow: 0 0 0 3px rgba(214, 167, 74, 0.14);
}
.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}
.form-submit {
  margin-top: 25px;
  width: 100%;
  border: 0;
}
.form-note {
  display: block;
  text-align: center;
  color: #7b858e;
  font-size: 10px;
  margin-top: 12px;
}
.form-note i {
  margin-left: 5px;
}
.map-card {
  margin-top: 54px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(11, 23, 36, 0.07);
}
.map-card iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}
.map-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}
.map-info > div {
  display: grid;
  line-height: 1.45;
}
.map-info span {
  color: var(--muted);
  font-size: 11px;
}
.map-info strong {
  font-size: 14px;
}

.floating-actions {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 850;
  display: inline-block;
  align-items: center;
  gap: 8px;
}
.floating-actions a {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  font-size: 16px;
  margin: 8px;
}
.floating-whatsapp {
  padding: 0 16px;
  background: #1fb75d;
  color: #fff;
}
.floating-whatsapp span {
  font-size: 12px;
  font-weight: 700;
}
.floating-call {
  width: 48px;
  background: var(--gold);
  color: var(--navy);
}

.footer {
  background: #07111b;
  color: #aeb9c2;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr 1fr;
  gap: 48px;
}
.brand-footer {
  color: #fff;
}
.brand-footer .brand-mark {
  background: #fff;
}
.brand-footer small {
  color: #9eabb5;
}
.footer-about p {
  max-width: 410px;
  margin: 20px 0 0;
  line-height: 1.9;
  font-size: 13px;
}
.footer h3 {
  margin: 2px 0 18px;
  color: #fff;
  font-size: 14px;
}
.footer-grid > div:not(.footer-about) > a {
  display: block;
  margin: 9px 0;
  color: #b4bec6;
  font-size: 13px;
}
.footer-grid > div:not(.footer-about) > p {
  font-size: 13px;
  line-height: 1.8;
}
.footer-bottom {
  /* display: flex; */
  /* justify-content: space-between; */
  text-align: center;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
  color: #7f8d98;
}
.footer-bottom a {
  color: #d6a74a;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 15px;
  }
  .nav-phone {
    display: none;
  }
  .hero-content {
    gap: 38px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .about-grid {
    gap: 55px;
  }
  .why-grid {
    gap: 55px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 0.8fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }
  .menu-button {
    display: grid;
  }
  .hero {
    min-height: 720px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    padding: 150px 0 82px;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero-card {
    display: none;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-grid article:nth-child(2) {
    border-left: 0;
  }
  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    gap: 48px;
  }
  .about-media {
    min-height: 520px;
  }
  .section-copy {
    max-width: 720px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-copy {
    max-width: 680px;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid article:nth-child(2) {
    border-left: 0;
  }
  .process-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-wide,
  .project-tall {
    grid-row: span 1;
  }
  .project-wide {
    grid-column: span 2;
  }
  .contact-grid {
    gap: 45px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }
  .container {
    width: min(var(--container), calc(100% - 28px));

    margin-inline: auto;
  }
  .site-header {
    padding: 8px 0;
  }
  .site-header.scrolled {
    padding: 5px 0;
  }
  .nav-shell {
    height: 60px;
    border-radius: 15px;
    padding: 0 8px;
  }
  .site-header.scrolled .nav-shell {
    height: 58px;
  }
  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }
  .brand-mark img {
    width: 29px;
    height: 29px;
  }
  .brand-copy strong {
    font-size: 17px;
  }
  .brand-copy small {
    display: none;
  }
  .menu-button {
    width: 42px;
    height: 42px;
  }
  .mobile-menu {
    padding-top: 78px;
  }
  .mobile-menu-inner {
    border-radius: 16px;
  }
  .mobile-menu-actions {
    grid-template-columns: 1fr;
  }
  .button {
    min-height: 46px;
    border-radius: 11px;
    padding-inline: 17px;
    font-size: 13px;
  }
  /* main section[id] {
    scroll-margin-top: 78px;
  } */
  .hero {
    min-height: 680px;
  }
  .hero-content {
    padding: 122px 0 62px;
  }
  .hero h1 {
    font-size: 31px;
    line-height: 1.4;
    letter-spacing: -0.025em;
  }
  .hero-lead {
    font-size: 15px;
    line-height: 1.9;
    margin-top: 17px;
  }
  .eyebrow {
    font-size: 12px;
    margin-bottom: 13px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 12px;
    margin-top: 20px;
    font-size: 11px;
  }
  .hero-notes span:last-child {
    grid-column: span 2;
  }
  /* .trust-strip {
    margin-top: 0;
    background: #fff;
  }
  .trust-grid {
    margin-inline: -14px;
    width: calc(100% + 28px);
    border-radius: 0;
    border-right: 0;
    border-left: 0;
    box-shadow: none;
  }
  .trust-grid article {
    padding: 17px 14px;
    gap: 10px;
  }
  .trust-grid i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 14px;
  }
  .trust-grid strong {
    font-size: 13px;
  }
  .trust-grid span {
    font-size: 10px;
  } */
  .section {
    padding: 74px 0;
  }
  .section-copy h2,
  .section-heading h2,
  .why-copy h2,
  .quote-card h2,
  .contact-copy h2 {
    font-size: 27px;
    line-height: 1.45;
  }
  .section-copy > p:not(.section-kicker),
  .section-heading > p,
  .why-copy > p:not(.section-kicker),
  .contact-copy > p {
    font-size: 14px;
    line-height: 1.9;
  }
  .about-media {
    min-height: 420px;
  }
  .about-main {
    inset: 0 8% 0 0;
  }
  .about-small {
    width: 30%;
    height: 180px;
    border-width: 6px;
    bottom: 24px;
    left: -8px;
  }
  .about-badge {
    right: 0;
    bottom: 18px;
    padding: 12px 14px;
  }
  .about-badge strong {
    font-size: 16px;
  }
  .about-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-points > div {
    padding-top: 14px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 245px;
    padding: 22px;
  }
  .service-card h3 {
    font-size: 18px;
  }
  .service-card p {
    font-size: 13px;
  }
  .service-card > a {
    right: 22px;
    bottom: 20px;
  }
  .why-list {
    grid-template-columns: 1fr;
    border-right: 0;
  }
  .why-list article {
    border-left: 0;
  }
  .why-list article:last-child {
    border-bottom: 0;
  }
  .why-grid {
    gap: 38px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .process-grid article {
    min-height: auto;
    border-left: 0 !important;
    border-bottom: 1px solid var(--line) !important;
    padding: 22px;
  }
  .process-grid article:last-child {
    border-bottom: 0 !important;
  }
  .process-grid h3 {
    margin-top: 18px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .project-wide {
    grid-column: span 1;
  }
  .project figcaption {
    right: 14px;
    bottom: 13px;
  }
  .project figcaption strong {
    font-size: 14px;
  }
  .quote-section {
    padding-bottom: 74px;
  }
  .quote-card {
    display: grid;
    padding: 26px;
    border-radius: 16px;
  }
  .quote-card h2 {
    font-size: 26px;
  }
  .quote-card p {
    font-size: 13px;
  }
  .quote-actions {
    display: grid;
  }
  .quote-actions .button {
    width: 100%;
  }
  .contact-grid {
    gap: 34px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 19px;
    border-radius: 15px;
  }
  .map-card {
    margin-top: 36px;
    border-radius: 15px;
  }
  .map-card iframe {
    height: 300px;
  }
  .map-info {
    align-items: stretch;
    display: grid;
    padding: 14px;
  }
  .map-info .button {
    width: 100%;
  }
  .floating-actions {
    left: 12px;
    bottom: 12px;
  }
  .floating-actions a {
    height: 46px;
    border-radius: 13px;
  }
  .floating-whatsapp {
    width: 46px;
    padding: 0;
  }
  .floating-whatsapp span {
    display: none;
  }
  .floating-call {
    width: 46px;
  }
  .footer {
    padding-top: 50px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-about {
    grid-column: auto;
  }
  .footer-bottom {
    /* display: grid; */
    text-align: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   Professional construction preloader
   ========================================================= */
body.is-loading {
  overflow: hidden;
}
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #07131f;
  color: #fff;
  isolation: isolate;
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease,
    clip-path 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  clip-path: inset(0 0 0 0);
}
.site-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}
.loader-grid {
  position: absolute;
  inset: -30%;
  z-index: -2;
  background-image:
    linear-gradient(rgba(214, 167, 74, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 167, 74, 0.065) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(700px) rotateX(62deg) translateY(24%);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, #000, transparent 78%);
  animation: loaderGrid 4s linear infinite;
}
.loader-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 48%,
    rgba(214, 167, 74, 0.16),
    transparent 28%
  );
}
.loader-content {
  width: min(430px, calc(100% - 42px));
  display: grid;
  justify-items: center;
  text-align: center;
  position: relative;
}
.loader-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 34px;
  text-align: right;
}
.loader-brand-mark {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}
.loader-brand-mark img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}
.loader-brand > span:last-child {
  display: grid;
  line-height: 1.25;
}
.loader-brand strong {
  font-size: 25px;
  letter-spacing: -0.03em;
}
.loader-brand small {
  margin-top: 5px;
  color: #aebbc7;
  font-size: 11px;
}
.loader-building {
  height: 116px;
  width: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 0 10px 12px;
  border-bottom: 2px solid rgba(214, 167, 74, 0.7);
  position: relative;
}
.loader-building::before,
.loader-building::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(214, 167, 74, 0.8);
}
.loader-building::before {
  right: 0;
}
.loader-building::after {
  left: 0;
}
.loader-building i {
  display: block;
  width: 24px;
  height: var(--h);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    180deg,
    rgba(214, 167, 74, 0.4),
    rgba(214, 167, 74, 0.08)
  );
  transform-origin: center bottom;
  animation: loaderRise 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--d);
  position: relative;
}
.loader-building i::after {
  content: "";
  position: absolute;
  inset: 8px 6px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.45) 0 3px,
    transparent 3px 10px
  );
}
.loader-content > p {
  margin: 24px 0 14px;
  color: #d4dde5;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.loader-progress {
  width: min(150px, 78vw);
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.loader-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-deep), #efc977, var(--gold));
  transform: translateX(100%);
  animation: loaderProgress 1.45s cubic-bezier(0.22, 0.72, 0.2, 1) forwards;
}
.loader-status {
  width: min(300px, 78vw);
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #71808d;
  font-size: 9px;
  letter-spacing: 0.06em;
}
.loader-crane {
  position: absolute;
  right: clamp(18px, 8vw, 150px);
  top: clamp(40px, 9vh, 100px);
  width: 260px;
  height: 165px;
  opacity: 0.28;
  transform: scale(0.9);
  transform-origin: right top;
}
.loader-crane-mast {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 5px;
  height: 145px;
  background: repeating-linear-gradient(
    to bottom,
    var(--gold) 0 8px,
    transparent 8px 14px
  );
  border-right: 1px solid var(--gold);
}
.loader-crane-arm {
  position: absolute;
  right: 16px;
  top: 17px;
  width: 226px;
  height: 3px;
  background: var(--gold);
  transform-origin: right center;
  transform: rotate(-4deg);
}
.loader-crane-arm::before {
  content: "";
  position: absolute;
  inset: -8px 0 auto;
  height: 18px;
  background: repeating-linear-gradient(
    135deg,
    transparent 0 13px,
    rgba(214, 167, 74, 0.7) 13px 15px
  );
}
.loader-crane-cable {
  position: absolute;
  left: 54px;
  top: 18px;
  width: 1px;
  height: 82px;
  background: rgba(214, 167, 74, 0.9);
  animation: loaderCable 1.8s ease-in-out infinite;
  transform-origin: top;
}
.loader-crane-hook {
  position: absolute;
  left: 48px;
  top: 97px;
  width: 12px;
  height: 14px;
  border: 2px solid var(--gold);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  animation: loaderHook 1.8s ease-in-out infinite;
}
@keyframes loaderRise {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes loaderProgress {
  to {
    transform: translateX(0);
  }
}
@keyframes loaderGrid {
  to {
    background-position: 46px 46px;
  }
}
@keyframes loaderCable {
  0%,
  100% {
    height: 82px;
  }
  50% {
    height: 98px;
  }
}
@keyframes loaderHook {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}

/* =========================================================
   نماذج التنفيذ — scroll-driven slider like the reference.
   The card design is preserved; only the interaction changes.
   ========================================================= */
.execution-story {
  position: relative;
  --story-height: auto;
}
.execution-slider {
  position: relative;
  overflow: visible;
}
.execution-slider-viewport {
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy);
  box-shadow: 0 24px 60px rgba(11, 23, 36, 0.12);
  touch-action: pan-y;
  isolation: isolate;
}
.execution-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  direction: ltr;
}
.execution-slide {
  --slide-reveal: 0;
  --slide-clip: 100%;
  --copy-opacity: 0;
  --copy-shift: 20px;
  --image-scale: 1.07;
  direction: rtl;
  position: absolute;
  inset: 0;
  z-index: var(--slide-z, 1);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.72fr);
  width: 100%;
  height: 100%;
  background: var(--navy);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.995);
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease,
    transform 0.72s cubic-bezier(0.22, 0.72, 0.2, 1);
}
.execution-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.execution-slide-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
}
.execution-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 23, 36, 0.12), transparent 45%),
    linear-gradient(0deg, rgba(11, 23, 36, 0.24), transparent 42%);
  pointer-events: none;
}
.execution-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.045);
  transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.execution-slide.is-active .execution-slide-media img {
  transform: scale(1);
}
.execution-slide-number {
  position: absolute;
  z-index: 2;
  right: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(11, 23, 36, 0.2);
  backdrop-filter: blur(12px);
  font:
    700 12px Manrope,
    Arial,
    sans-serif;
  color: #fff;
}
.execution-slide-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 42px 46px;
  background: linear-gradient(145deg, #0b1724, #132a3d);
  overflow: hidden;
}
.execution-slide-copy::before {
  content: "";
  position: absolute;
  left: -95px;
  bottom: -115px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(214, 167, 74, 0.15);
  border-radius: 50%;
}
.execution-slide-copy::after {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(214, 167, 74, 0.1);
  border-radius: 50%;
}
.execution-slide-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 15px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.execution-slide h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 32px;
  line-height: 1.45;
  letter-spacing: -0.025em;
}
.execution-slide-copy > p:not(.execution-slide-kicker) {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  color: #bfcad2;
  font-size: 14px;
  line-height: 1.95;
}
.execution-slide-copy ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.execution-slide-copy li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e4e9ed;
  font-size: 12px;
}
.execution-slide-copy li::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(214, 167, 74, 0.1);
}
.execution-slider-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px;
  margin-top: 22px;
}
.execution-slider-controls {
  display: flex;
  gap: 9px;
}
.execution-slider-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #d7dce0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}
.execution-slider-button:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.execution-slider-button:focus-visible,
.execution-slider-dot:focus-visible {
  outline: 3px solid rgba(214, 167, 74, 0.35);
  outline-offset: 3px;
}
.execution-slider-status {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #8a949c;
  font:
    600 11px Manrope,
    Arial,
    sans-serif;
}
.execution-slider-status strong {
  color: var(--navy);
  font-size: 13px;
}
.execution-slider-line {
  position: relative;
  width: min(240px, 25vw);
  height: 2px;
  overflow: hidden;
  background: #d8dde0;
  border-radius: 99px;
}
.execution-slider-line i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 16.6667%;
  background: var(--gold-deep);
  transform-origin: left center;
  transition: width 0.35s ease;
}
.execution-slider-dots {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}
.execution-slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c5cbd0;
  cursor: pointer;
  transition:
    width 0.28s ease,
    background 0.28s ease,
    border-radius 0.28s ease;
}
.execution-slider-dot.is-active {
  width: 24px;
  border-radius: 99px;
  background: var(--gold-deep);
}
.execution-scroll-hint {
  position: absolute;
  left: 14px;
  top: 50%;
  display: none;
  align-items: center;
  gap: 8px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  color: #87929b;
  font-size: 9px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.execution-scroll-hint::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #aeb6bc;
}

/* Desktop: the card is pinned while natural page scrolling reveals each project. */
@media (min-width: 769px) and (min-height: 650px) {
  .execution-story.is-scroll-mode {
    height: var(--story-height);
  }
  .execution-story.is-scroll-mode .execution-slider {
    position: sticky;
    top: 94px;
  }
  .execution-story.is-scroll-mode .execution-slide {
    opacity: 1;
    visibility: visible;
    transform: none;
    clip-path: inset(var(--slide-clip) 0 0 0);
    transition: none;
    will-change: clip-path;
  }
  .execution-story.is-scroll-mode .execution-slide:first-child {
    clip-path: inset(0);
  }
  .execution-story.is-scroll-mode .execution-slide-copy > * {
    opacity: var(--copy-opacity);
    transform: translateY(var(--copy-shift));
    transition: none;
    will-change: opacity, transform;
  }
  .execution-story.is-scroll-mode .execution-slide-media img {
    transform: scale(var(--image-scale));
    transition: none;
    will-change: transform;
  }
  .execution-story.is-scroll-mode .execution-scroll-hint {
    display: flex;
  }
}

@media (max-width: 900px) {
  .execution-slide {
    grid-template-columns: 1.25fr 0.75fr;
  }
  .execution-slide-copy {
    padding: 36px 28px;
  }
  .execution-slide h3 {
    font-size: 27px;
  }
  .loader-crane {
    right: -42px;
    opacity: 0.16;
  }
}

@media (max-width: 768px) {
  .execution-story {
    height: auto !important;
  }
  .execution-slider {
    position: relative !important;
    top: auto !important;
  }
  .execution-scroll-hint {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .site-loader {
    min-height: 100svh;
  }
  .loader-content {
    width: min(350px, calc(100% - 32px));
  }
  .loader-brand {
    margin-bottom: 28px;
  }
  .loader-brand-mark {
    width: 54px;
    height: 54px;
  }
  .loader-brand strong {
    font-size: 22px;
  }
  .loader-building {
    width: 190px;
    height: 104px;
  }
  .loader-building i {
    width: 21px;
  }
  .loader-crane {
    display: none;
  }
  .execution-slider-viewport {
    height: 570px;
    border-radius: 16px;
  }
  .execution-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 255px 1fr;
  }
  .execution-slide-media {
    grid-row: 1;
  }
  .execution-slide-copy {
    grid-row: 2;
    justify-content: flex-start;
    padding: 27px 22px 31px;
    min-height: 315px;
  }
  .execution-slide-number {
    right: 16px;
    top: 16px;
    width: 45px;
    height: 45px;
    font-size: 11px;
  }
  .execution-slide-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .execution-slide h3 {
    font-size: 23px;
    line-height: 1.5;
  }
  .execution-slide-copy > p:not(.execution-slide-kicker) {
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.85;
  }
  .execution-slide-copy ul {
    margin-top: 19px;
    gap: 8px;
  }
  .execution-slider-footer {
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin-top: 17px;
  }
  .execution-slider-button {
    width: 42px;
    height: 42px;
  }
  .execution-slider-status {
    justify-content: flex-end;
    gap: 9px;
  }
  .execution-slider-line {
    width: min(150px, 34vw);
  }
  .execution-slider-dots {
    grid-column: 1/-1;
    justify-content: center;
    margin-top: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loader {
    display: none;
  }
  .loader-grid,
  .loader-building i,
  .loader-progress span,
  .loader-crane-cable,
  .loader-crane-hook {
    animation: none !important;
  }
  body.is-loading {
    overflow: auto;
  }
}

/* ===== Production enhancements V5 ===== */
:root {
  --focus: #c99735;
  --danger: #b42318;
  --success: #067647;
}
.skip-link {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 999999;
  background: #fff;
  color: #071624;
  border: 2px solid var(--gold);
  padding: 10px 14px;
  border-radius: 999px;
  transform: translateY(-140%);
}
.skip-link:focus {
  transform: none;
}
.service-areas {
  background: #fff;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.areas-grid span {
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--warm);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}
.faq {
  background: linear-gradient(180deg, #fff, var(--soft));
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px;
  box-shadow: 0 18px 50px rgba(6, 21, 39, 0.05);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 800;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--soft);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 20px;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.9;
}
.privacy-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 4px !important;
  color: var(--muted);
  line-height: 1.7;
}
.privacy-check input {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  margin-top: 4px;
}
.privacy-check a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.field-error {
  display: none;
  margin-top: 6px;
  font-style: normal;
  font-size: 12px;
  line-height: 1.6;
  color: var(--danger);
}

.field-error:not(:empty) {
  display: block;
}
.contact-form .is-invalid {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08) !important;
}
.form-status {
  display: none;
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.form-status.success {
  color: var(--success);
  font-weight: 700;
}
.form-status.error {
  color: var(--danger);
  font-weight: 700;
}
.form-submit[disabled] {
  opacity: 0.72;
  cursor: not-allowed;
}
.map-placeholder {
  min-height: 320px;
  background: linear-gradient(135deg, #f7f4ed, #fff);
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  gap: 24px;
  flex-direction: column;
}
.map-placeholder h3 {
  margin: 10px 0 6px;
  color: var(--ink);
  font-size: 22px;
}
.map-placeholder p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}
.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 24px;
  display: block;
}
.desktop-nav a[href="#request-quote"] {
  color: var(--gold);
  font-weight: 800;
}
.site-loader {
  will-change: opacity, transform;
}
.hero-media {
  background: #071624;
}
.button,
.menu-button,
a,
summary,
input,
select,
textarea {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid rgba(201, 151, 53, 0.45);
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-placeholder {
    min-height: 260px;
  }
  .section-heading {
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid article:nth-child(2) {
    border-left: 0;
  }
  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .areas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }
  .areas-grid span {
    font-size: 13px;
    min-height: 44px;
  }
  .faq-list details {
    border-radius: 14px;
    padding: 0 14px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .map-frame iframe {
    height: 300px;
  }
  .privacy-check {
    font-size: 13px;
  }
  .field-row {
    grid-template-columns: 1fr !important;
  }
  .contact-list strong {
    overflow-wrap: anywhere;
  }
}

/* =========================================================
   FINAL: full-card vertical layered stack
   The complete card (media + copy) moves vertically as one unit.
   ========================================================= */
.execution-story.is-card-stack {
  position: relative;
  height: var(--story-height) !important;
  min-height: 0;
  --execution-sticky-top: 92px;
  --execution-card-height: 500px;
}

.execution-story.is-card-stack .execution-slider {
  position: sticky !important;
  top: var(--execution-sticky-top) !important;
  z-index: 2;
  overflow: visible !important;
}

.execution-story.is-card-stack .execution-slider-viewport {
  position: relative;
  width: 100%;
  height: var(--execution-card-height) !important;
  overflow: hidden !important;
  border-radius: 20px;
  background: #081521;
  isolation: isolate;
  touch-action: pan-y;
  contain: paint;
}

.execution-story.is-card-stack .execution-slider-track {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  direction: ltr;
  transform: none !important;
  translate: none !important;
  overflow: visible !important;
}

.execution-story.is-card-stack .execution-slide {
  --card-y: 112%;
  --card-scale: 1;
  --card-brightness: 1;
  --card-opacity: 1;
  direction: rtl;
  position: absolute !important;
  inset: 0 !important;
  z-index: var(--card-z, 1) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.72fr);
  width: 100% !important;
  height: 100% !important;
  overflow: hidden;
  border-radius: inherit;
  background: var(--navy);
  color: #fff;
  opacity: var(--card-opacity) !important;
  visibility: visible;
  clip-path: none !important;
  transform: translate3d(0, var(--card-y), 0) scale(var(--card-scale)) !important;
  transform-origin: center top;
  filter: brightness(var(--card-brightness));
  transition: none !important;
  will-change: transform, filter;
  backface-visibility: hidden;
  box-shadow: 0 24px 60px rgba(11, 23, 36, 0.16);
}

.execution-story.is-card-stack .execution-slide.is-active {
  opacity: var(--card-opacity) !important;
  visibility: visible !important;
  transform: translate3d(0, var(--card-y), 0) scale(var(--card-scale)) !important;
}

/* No independent image/text animation: the entire article is the moving layer. */
.execution-story.is-card-stack .execution-slide-media img,
.execution-story.is-card-stack
  .execution-slide.is-active
  .execution-slide-media
  img {
  transform: none !important;
  transition: none !important;
}

.execution-story.is-card-stack .execution-slide-copy > * {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.execution-story.is-card-stack .execution-slider-footer {
  position: relative;
  z-index: 20;
}

@media (max-width: 900px) {
  .execution-story.is-card-stack .execution-slide {
    grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
  }
}

@media (max-width: 640px) {
  .execution-story.is-card-stack .execution-slider-viewport {
    height: var(--execution-card-height) !important;
    border-radius: 16px;
  }

  .execution-story.is-card-stack .execution-slide {
    grid-template-columns: 1fr;
    grid-template-rows: 40% 60%;
  }

  .execution-story.is-card-stack .execution-slide-media {
    grid-row: 1;
    min-height: 0;
  }

  .execution-story.is-card-stack .execution-slide-copy {
    grid-row: 2;
    min-height: 0;
    justify-content: flex-start;
    overflow: hidden;
    padding: 22px 20px 24px;
  }

  .execution-story.is-card-stack .execution-slide h3 {
    font-size: 22px;
    line-height: 1.42;
  }

  .execution-story.is-card-stack
    .execution-slide-copy
    > p:not(.execution-slide-kicker) {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.72;
  }

  .execution-story.is-card-stack .execution-slide-copy ul {
    margin-top: 14px;
    gap: 6px;
  }

  .execution-story.is-card-stack .execution-slide-copy li {
    font-size: 11px;
  }
}

@media (max-width: 640px) and (max-height: 650px) {
  .execution-story.is-card-stack .execution-slide {
    grid-template-rows: 36% 64%;
  }

  .execution-story.is-card-stack .execution-slide-copy {
    padding: 16px 18px 18px;
  }

  .execution-story.is-card-stack .execution-slide-kicker {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .execution-story.is-card-stack .execution-slide h3 {
    font-size: 19px;
  }

  .execution-story.is-card-stack
    .execution-slide-copy
    > p:not(.execution-slide-kicker) {
    margin-top: 7px;
    font-size: 11.5px;
    line-height: 1.62;
  }

  .execution-story.is-card-stack .execution-slide-copy ul {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .execution-story.is-card-stack {
    height: auto !important;
  }

  .execution-story.is-card-stack .execution-slider {
    position: relative !important;
    top: auto !important;
  }

  .execution-story.is-card-stack .execution-slider-viewport {
    height: auto !important;
    overflow: visible !important;
    background: transparent;
    box-shadow: none;
    contain: none;
  }

  .execution-story.is-card-stack .execution-slider-track {
    display: grid !important;
    gap: 16px;
    height: auto !important;
  }

  .execution-story.is-card-stack .execution-slide {
    position: relative !important;
    inset: auto !important;
    min-height: 460px;
    transform: none !important;
    filter: none !important;
    visibility: visible !important;
  }
}

/* =========================================================
   TRUE FULL-CARD VERTICAL LAYERS
   Each complete card is a separate sticky layer in document flow.
   The next complete card rises naturally from below and covers it.
   ========================================================= */
.execution-card-stack {
  --stack-top: 92px;
  --stack-card-height: 520px;
  --stack-gap: 10svh;
  position: relative;
  width: 100%;
  isolation: isolate;
  padding-bottom: 2px;
}

.execution-stack-card {
  --stack-scale: 1;
  --stack-shift: 0px;
  --stack-brightness: 1;
  --stack-opacity: 1;
  position: sticky;
  top: var(--stack-top);
  z-index: calc(var(--stack-index) + 1);
  width: 100%;
  height: var(--stack-card-height);
  margin: 0 0 var(--stack-gap);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.72fr);
  direction: rtl;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy);
  color: #fff;
  /* box-shadow: 0 26px 70px rgba(11, 23, 36, 0.16); */
  transform: translate3d(0, var(--stack-shift), 0) scale(var(--stack-scale));
  transform-origin: center center;
  filter: brightness(var(--stack-brightness));
  opacity: var(--stack-opacity);
  will-change: transform, filter, opacity;
  backface-visibility: hidden;
}

.execution-stack-card:last-of-type {
  margin-bottom: var(--stack-gap);
}

.execution-stack-card .execution-slide-media,
.execution-stack-card .execution-slide-copy {
  min-width: 0;
  min-height: 0;
}

.execution-stack-card .execution-slide-media img {
  transform: none !important;
  transition: none !important;
}

.execution-stack-card .execution-slide-copy > * {
  opacity: 1 !important;
  transform: none !important;
}

.execution-stack-card h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.execution-stack-card .execution-slide-copy > p:not(.execution-slide-kicker) {
  margin: 20px 0 0;
  color: #b8c5cf;
  font-size: 15px;
  line-height: 1.95;
}

.execution-stack-card .execution-slide-copy ul {
  margin: 26px 0 0;
}

/* The toolbar is independent from the cards; it does not create a fixed card shell. */
.execution-stack-toolbar {
  position: sticky;
  top: calc(100svh - 78px);
  z-index: 100;
  height: 0;
  pointer-events: none;
}

.execution-stack-toolbar-inner {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: auto minmax(210px, 340px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.execution-card-stack.is-stack-active .execution-stack-toolbar-inner {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .execution-stack-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr);
  }
}

@media (max-width: 640px) {
  .execution-card-stack {
    --stack-top: 78px;
    --stack-card-height: 520px;
    --stack-gap: 10svh;
  }

  .execution-stack-card {
    grid-template-columns: 1fr;
    grid-template-rows: 40% 60%;
    border-radius: 16px;
  }

  .execution-stack-card .execution-slide-media {
    grid-row: 1;
  }

  .execution-stack-card .execution-slide-copy {
    grid-row: 2;
    justify-content: flex-start;
    padding: 20px 18px 22px;
    overflow: hidden;
  }

  .execution-stack-card h3 {
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.42;
  }

  .execution-stack-card .execution-slide-copy > p:not(.execution-slide-kicker) {
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.72;
  }

  .execution-stack-card .execution-slide-copy ul {
    margin-top: 12px;
    gap: 5px;
  }

  .execution-stack-card .execution-slide-copy li {
    font-size: 11px;
  }

  .execution-stack-toolbar {
    top: calc(100svh - 68px);
  }

  .execution-stack-toolbar-inner {
    grid-template-columns: auto minmax(120px, 1fr) auto;
    gap: 8px;
    min-height: 54px;
  }

  .execution-stack-toolbar-inner .execution-slider-button {
    width: 44px;
    height: 44px;
  }

  .execution-stack-toolbar-inner .execution-slider-status {
    min-width: 0;
    gap: 8px;
  }

  .execution-stack-toolbar-inner .execution-slider-line {
    width: 100%;
  }

  .execution-stack-toolbar-inner .execution-slider-dots {
    display: none;
  }
}

@media (max-width: 640px) and (max-height: 680px) {
  .execution-card-stack {
    --stack-card-height: 475px;
  }

  .execution-stack-card {
    grid-template-rows: 36% 64%;
  }

  .execution-stack-card .execution-slide-copy {
    padding: 15px 17px 17px;
  }

  .execution-stack-card h3 {
    font-size: 19px;
  }

  .execution-stack-card .execution-slide-copy > p:not(.execution-slide-kicker) {
    font-size: 11.5px;
    line-height: 1.62;
  }
}

@media (prefers-reduced-motion: reduce) {
  .execution-stack-card {
    position: relative;
    top: auto;
    height: auto;
    min-height: 460px;
    margin-bottom: 18px;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }

  .execution-stack-toolbar {
    display: none;
  }
}
