:root {
  --navy: #123447;
  --navy-dark: #0a2637;
  --navy-soft: #1d495e;
  --gold: #c9a35d;
  --gold-light: #e5ce9d;
  --ink: #183340;
  --text: #505c62;
  --line: #e2e6e7;
  --paper: #f7f8f8;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-almarai), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
[dir="ltr"] body { font-family: var(--font-geist), Arial, sans-serif; }
button, a { color: inherit; font: inherit; }
button { border: 0; }
a { text-decoration: none; }
img { display: block; max-width: 100%; }
.site-shell { overflow: clip; }

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  display: grid;
  min-height: 112px;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 34px;
  padding: 0 clamp(24px, 4vw, 66px);
  border-bottom: 2px solid var(--gold);
  background: var(--navy);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.brand img {
  width: 64px;
  height: 64px;
  padding: 6px;
  object-fit: contain;
  border: 1px solid rgb(201 163 93 / 58%);
  background: var(--white);
  filter: none;
}

.brand span { display: flex; flex-direction: column; gap: 4px; }
.brand strong { white-space: nowrap; font-family: var(--font-tajawal), Arial, sans-serif; font-size: 21px; font-weight: 700; }
.brand small { color: var(--gold-light); font-size: 10px; }
[dir="ltr"] .brand strong { font-family: var(--font-geist), Arial, sans-serif; letter-spacing: .08em; }
[dir="ltr"] .brand small { letter-spacing: .08em; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 2.8vw, 42px); }
.main-nav a { position: relative; padding: 44px 0; white-space: nowrap; color: rgb(255 255 255 / 87%); font-size: 13px; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: 27px; width: 0; height: 2px; background: var(--gold); transition: width 180ms ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.mobile-quote { display: none; }

.header-actions { display: flex; align-items: center; justify-self: end; gap: 10px; }
.language-switch { min-width: 48px; padding: 12px 9px; border: 1px solid rgb(255 255 255 / 28%); background: transparent; color: var(--white); cursor: pointer; font-size: 11px; }
.quote-button { padding: 13px 18px; background: var(--gold); color: var(--navy-dark); font-size: 11px; font-weight: 700; }
.menu-toggle { display: none; }

.hero-slider {
  position: relative;
  height: min(650px, calc(100svh - 112px));
  min-height: 500px;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.03); transition: opacity 900ms ease, transform 6s ease; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgb(5 25 37 / 72%), transparent 52%), linear-gradient(90deg, rgb(5 25 37 / 12%), rgb(5 25 37 / 4%)); }
.hero-caption { position: absolute; right: clamp(28px, 8vw, 125px); bottom: 64px; left: clamp(28px, 8vw, 125px); color: var(--white); }
.hero-caption > span { display: block; margin-bottom: 13px; color: var(--gold-light); font-family: var(--font-geist), Arial, sans-serif; font-size: 11px; letter-spacing: .12em; }
.hero-caption h1 { margin: 0; font-family: var(--font-tajawal), Arial, sans-serif; font-size: clamp(34px, 4.2vw, 64px); font-weight: 700; }
.hero-caption p { margin: 10px 0 0; color: rgb(255 255 255 / 75%); font-size: 14px; }
[dir="ltr"] .hero-caption h1 { font-family: var(--font-geist), Arial, sans-serif; }
.slider-arrow { position: absolute; z-index: 3; top: 50%; display: grid; width: 48px; height: 64px; place-items: center; border: 1px solid rgb(255 255 255 / 35%); background: rgb(10 38 55 / 35%); color: var(--white); cursor: pointer; font-family: Arial, sans-serif; font-size: 34px; transform: translateY(-50%); }
.slider-prev { left: 22px; }
.slider-next { right: 22px; }
.slider-dots { position: absolute; z-index: 3; bottom: 28px; left: 50%; display: flex; gap: 8px; transform: translateX(-50%); }
.slider-dots button { width: 28px; height: 3px; padding: 0; background: rgb(255 255 255 / 44%); cursor: pointer; }
.slider-dots button.is-active { background: var(--gold); }

.section { padding: 96px clamp(24px, 7vw, 118px); }
.about { background: var(--white); }
.about-mark { display: grid; width: 94px; height: 94px; margin: 0 auto 48px; place-items: center; border: 1px solid var(--line); }
.about-mark img { width: 64px; height: 64px; object-fit: contain; }
.about-columns { display: grid; max-width: 1120px; grid-template-columns: repeat(2, 1fr); margin: auto; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.about-columns article { min-height: 330px; padding: 38px clamp(28px, 4vw, 62px); border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.about-columns h2, .section-heading h2, .objectives > h2, .locations h2, .contact h2 { margin: 0; font-family: var(--font-tajawal), Arial, sans-serif; font-weight: 700; }
[dir="ltr"] .about-columns h2, [dir="ltr"] .section-heading h2, [dir="ltr"] .objectives > h2, [dir="ltr"] .locations h2, [dir="ltr"] .contact h2 { font-family: var(--font-geist), Arial, sans-serif; }
.about-columns h2 { font-size: clamp(29px, 3vw, 42px); }
.about-columns p { margin: 24px 0 0; color: var(--text); font-size: 15px; line-height: 2.15; }

.objectives { padding: 58px clamp(24px, 7vw, 118px) 72px; background: var(--navy); color: var(--white); text-align: center; }
.objectives > h2 { margin-bottom: 38px; font-size: 32px; }
.objectives-grid { display: grid; max-width: 1180px; grid-template-columns: repeat(4, 1fr); margin: auto; border-top: 1px solid rgb(255 255 255 / 14%); border-inline-start: 1px solid rgb(255 255 255 / 14%); }
.objectives-grid article { min-height: 220px; padding: 30px 24px; border-inline-end: 1px solid rgb(255 255 255 / 14%); border-bottom: 1px solid rgb(255 255 255 / 14%); }
.objectives-grid span { color: var(--gold-light); font-family: var(--font-geist), Arial, sans-serif; font-size: 12px; }
.objectives-grid h3 { margin: 35px 0 12px; font-size: 18px; }
.objectives-grid p { margin: 0; color: rgb(255 255 255 / 58%); font-size: 12px; line-height: 1.9; }

.section-heading { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-heading > span, .mini-label { display: block; margin-bottom: 12px; color: #a37b3e; font-family: var(--font-geist), Arial, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.section-heading h2 { font-size: clamp(34px, 4vw, 52px); }
.section-heading p { margin: 18px auto 0; color: var(--text); font-size: 14px; line-height: 1.9; }
.section-heading.compact { margin-bottom: 42px; }

.services { background: var(--white); }
.services-grid { display: grid; max-width: 1250px; grid-template-columns: repeat(3, 1fr); margin: auto; border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.services-grid article { position: relative; min-height: 330px; padding: 32px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; transition: background 180ms ease, transform 180ms ease; }
.services-grid article:hover { z-index: 2; background: var(--paper); transform: translateY(-4px); }
.service-number { position: absolute; top: 22px; inset-inline-end: 24px; color: #a37b3e; font-family: var(--font-geist), Arial, sans-serif; font-size: 10px; }
.service-symbol { position: relative; width: 62px; height: 62px; margin: 22px auto 28px; border: 1px solid var(--gold); transform: rotate(45deg); }
.service-symbol i, .service-symbol b { position: absolute; background: var(--navy); }
.service-symbol i { top: 29px; left: 12px; width: 36px; height: 2px; }
.service-symbol b { top: 12px; left: 29px; width: 2px; height: 36px; }
.services-grid h3 { margin: 0; font-size: 19px; }
.services-grid p { max-width: 310px; margin: 16px auto 25px; color: var(--text); font-size: 12px; line-height: 1.9; }
.services-grid a { display: inline-flex; align-items: center; gap: 12px; color: #916a32; font-size: 11px; font-weight: 700; }

.projects { background: var(--paper); }
.projects-gallery { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 16px; }
.project-card { position: relative; min-height: 500px; overflow: hidden; background: var(--navy); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.project-card:hover img { transform: scale(1.04); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgb(7 33 48 / 88%), transparent 58%); }
.project-card > div { position: absolute; z-index: 2; right: 26px; bottom: 28px; left: 26px; color: var(--white); }
.project-card span { color: var(--gold-light); font-size: 10px; }
.project-card h3 { margin: 9px 0 0; font-size: 21px; }

.interiors { background: var(--white); }
.interior-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.interior-gallery figure { position: relative; height: 430px; margin: 0; overflow: hidden; }
.interior-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.interior-gallery figure:hover img { transform: scale(1.04); }
.interior-gallery figcaption { position: absolute; right: 16px; bottom: 16px; left: 16px; padding: 16px 18px; background: rgb(18 52 71 / 90%); color: var(--white); text-align: center; font-size: 13px; }

.numbers-band { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0 clamp(24px, 7vw, 118px); background: var(--navy-dark); color: var(--white); }
.numbers-band div { display: flex; min-height: 145px; align-items: center; justify-content: center; flex-direction: column; gap: 8px; border-inline-end: 1px solid rgb(255 255 255 / 14%); }
.numbers-band strong { color: var(--gold-light); font-family: var(--font-geist), Arial, sans-serif; font-size: 35px; font-weight: 500; }
.numbers-band span { color: rgb(255 255 255 / 62%); font-size: 11px; }

.clients { background: var(--paper); }
.client-list { display: flex; max-width: 1180px; justify-content: center; gap: 14px; flex-wrap: wrap; margin: auto; }
.client-list span { display: grid; min-height: 94px; min-width: 190px; flex: 1; place-items: center; padding: 20px; border: 1px solid var(--line); background: var(--white); color: #69777d; text-align: center; font-size: 12px; }

.locations { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 120px); align-items: center; background: var(--white); }
.locations h2 { font-size: clamp(34px, 4vw, 52px); }
.locations p { margin: 22px 0 0; color: var(--text); font-size: 13px; line-height: 1.9; }
.city-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-inline-start: 1px solid var(--line); }
.city-list span { padding: 22px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--text); font-size: 13px; }
.city-list span:first-child { background: var(--gold); color: var(--navy-dark); font-weight: 700; }

.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 135px); background: var(--navy); color: var(--white); }
.contact h2 { font-size: clamp(35px, 4vw, 54px); }
.contact-intro > p { max-width: 540px; margin: 22px 0 30px; color: rgb(255 255 255 / 62%); font-size: 13px; line-height: 1.9; }
.whatsapp-button { display: inline-flex; align-items: center; gap: 34px; padding: 15px 22px; background: var(--gold); color: var(--navy-dark); font-size: 12px; font-weight: 700; }
.contact-details { border-top: 1px solid rgb(255 255 255 / 16%); }
.contact-details a { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; border-bottom: 1px solid rgb(255 255 255 / 16%); }
.contact-details span { color: rgb(255 255 255 / 52%); font-size: 11px; }
.contact-details strong { font-family: var(--font-geist), Arial, sans-serif; font-size: clamp(14px, 1.5vw, 20px); font-weight: 500; }

footer { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; padding: 38px clamp(24px, 7vw, 118px) 24px; background: var(--navy-dark); color: var(--white); }
.footer-brand img { width: 48px; height: 48px; }
.social-links { display: flex; gap: 22px; direction: ltr; color: rgb(255 255 255 / 66%); font-size: 11px; }
footer > small { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / 12%); color: rgb(255 255 255 / 44%); font-size: 9px; }

.floating-whatsapp { position: fixed; z-index: 55; right: 18px; bottom: 18px; display: grid; width: 58px; height: 58px; place-items: center; border: 4px solid var(--white); border-radius: 50%; background: #25d366; box-shadow: 0 12px 30px rgb(0 0 0 / 24%); color: var(--white); }
.floating-whatsapp span { font-size: 21px; transform: rotate(-18deg); }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 96px; }
  .main-nav { display: none; }
  .quote-button { display: none; }
  .menu-toggle { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; background: transparent; cursor: pointer; }
  .menu-toggle i { width: 22px; height: 1px; background: var(--white); transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle.is-open i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open i:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav.is-open { position: absolute; top: 96px; right: 16px; left: 16px; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 14px; background: var(--white); box-shadow: 0 18px 50px rgb(0 0 0 / 25%); }
  .main-nav.is-open a { padding: 15px 12px; border-bottom: 1px solid var(--line); color: var(--ink); }
  .main-nav.is-open a::after { display: none; }
  .main-nav.is-open .mobile-quote { display: block; margin-top: 7px; background: var(--gold); text-align: center; }
  .projects-gallery { grid-template-columns: 1fr 1fr; }
  .project-card:first-child { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .objectives-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .site-header { min-height: 84px; padding: 0 17px; }
  .brand { gap: 9px; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 15px; }
  .brand small { font-size: 8px; }
  .main-nav.is-open { top: 84px; }
  .header-actions { gap: 4px; }
  .language-switch { min-width: 44px; padding: 10px 7px; }
  .hero-slider { height: 520px; min-height: 0; }
  .hero-caption { right: 24px; bottom: 54px; left: 24px; }
  .hero-caption h1 { font-size: 36px; }
  .slider-arrow { width: 38px; height: 48px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }
  .section { padding: 72px 20px; }
  .about-mark { margin-bottom: 34px; }
  .about-columns, .services-grid, .projects-gallery, .interior-gallery, .locations, .contact { grid-template-columns: 1fr; }
  .about-columns article { min-height: 0; padding: 34px 24px; }
  .objectives { padding: 52px 20px; }
  .objectives-grid { grid-template-columns: 1fr; }
  .objectives-grid article { min-height: 185px; }
  .services-grid article { min-height: 300px; }
  .project-card, .project-card:first-child { min-height: 420px; grid-column: auto; }
  .interior-gallery { gap: 26px; }
  .interior-gallery figure { height: 390px; }
  .numbers-band { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .numbers-band div { min-height: 120px; border-bottom: 1px solid rgb(255 255 255 / 14%); }
  .client-list { display: grid; grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
  .contact-details a { align-items: flex-start; flex-direction: column; gap: 9px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { margin: auto; }
  .social-links { justify-content: center; }
  .floating-whatsapp { right: 12px; bottom: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
