:root {
  --ink: #050505;
  --green: #0a0d0a;
  --cream: #050505;
  --gold: #d4af37;
  --gold-dim: rgba(212, 175, 55, 0.3);
  --muted: #888;
  --line: rgba(255, 255, 255, 0.08);
  --text-main: #f4f4f4;
  --text-sub: #a0a0a0;
  --glass: rgba(5, 5, 5, 0.85);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--ink);
  color: var(--text-main);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.topbar {
  height: 34px;
  background: #000;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}
.topbar a { color: var(--gold); transition: 0.3s; }
.topbar a:hover { color: #fff; }

.site-header {
  height: 90px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.brand strong { color: var(--gold); font-weight: 600; }
.brand small {
  display: block;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  font-size: 8px;
  letter-spacing: 0.22em;
  margin-top: 4px;
  color: var(--text-sub);
}
.brand-mark-img { filter: drop-shadow(0 0 10px rgba(255,255,255,0.1)); }

nav { display: flex; gap: 35px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; }
nav a { position: relative; color: var(--text-sub); transition: 0.3s; }
nav a:after {
  content: "";
  height: 1px;
  width: 0;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.3s ease;
}
nav a:hover:after { width: 100%; }
nav a:hover { color: #fff; }

.header-actions { display: flex; align-items: center; gap: 28px; }
.language-switcher { display: flex; gap: 10px; }
.language-switcher button {
  border: 0;
  background: transparent;
  padding: 4px;
  color: var(--text-sub);
  font-size: 11px;
  cursor: pointer;
  transition: 0.3s;
  letter-spacing: 0.05em;
}
.language-switcher button:hover { color: #fff; }
.language-switcher button.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid var(--gold);
  padding: 15px 30px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 500;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.button:hover {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}
.button-small { padding: 12px 22px; font-size: 10px; }
.menu-button { display: none; }

.hero {
  min-height: 80vh;
  background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,0.7) 40%, rgba(5,5,5,0.2) 100%), url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2000&q=85') center/cover fixed;
  position: relative;
  padding: 140px 10vw 100px;
  display: flex;
  align-items: center;
}
.hero-content { max-width: 750px; animation: fadeUp 1s ease forwards; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 22px;
  color: var(--gold);
}
.gold { color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Cormorant Garamond", serif; font-weight: 400; line-height: 1.05; }
h1 { font-size: clamp(50px, 7vw, 100px); margin: 0 0 30px; }
h1 em, h2 em { color: var(--gold); font-style: italic; }
.hero-copy { max-width: 550px; color: var(--text-sub); font-size: 16px; margin-bottom: 40px; }
.hero-ctas { display: flex; align-items: center; gap: 35px; }
.text-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.text-link span { font-size: 16px; margin-left: 10px; color: var(--gold); transition: 0.3s; }
.text-link:hover { color: var(--gold); }
.text-link:hover span { transform: translateX(5px); }

.hero-note {
  position: absolute;
  bottom: 40px;
  right: 6vw;
  display: flex;
  gap: 20px;
  align-items: start;
  width: 260px;
  font-size: 12px;
  color: var(--text-sub);
}
.hero-note span { color: var(--gold); font-size: 11px; }
.section-pad { padding: 140px 9vw; }

.intro { display: grid; grid-template-columns: 1fr 1.5fr; gap: 10vw; border-bottom: 1px solid var(--line); }
.section-label { display: flex; gap: 18px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-sub); }
.section-label span { color: var(--gold); }
.intro-content { max-width: 650px; }
.intro h2, .services h2, .standards h2, .process h2, .contact h2 { font-size: clamp(40px, 5vw, 75px); margin-bottom: 35px; }
.intro-content > p { font-size: 17px; color: var(--text-sub); max-width: 550px; margin-bottom: 40px; }
.dark { color: #fff; }

.services { background: var(--green); }
.services-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 80px; }
.services-head h2 { margin: 0; }
.services-head > p { max-width: 380px; color: var(--text-sub); font-size: 15px; margin: 0; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 380px;
  padding: 35px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.4s ease;
}
.service-card:hover { background: #0f1410; }
.service-card > span { font-size: 11px; color: var(--gold); font-weight: 500; }
.icon { font-family: "Cormorant Garamond"; font-size: 45px; color: var(--gold); margin: 40px 0 25px; font-weight: 300; }
.service-card h3 { font-size: 28px; margin-bottom: 15px; }
.service-card p { font-size: 13px; color: var(--text-sub); margin-bottom: 25px; }
.service-card a { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; margin-top: auto; color: var(--text-main); transition: 0.3s; }
.service-card a b { color: var(--gold); font-size: 16px; margin-left: 8px; font-weight: 400; transition: 0.3s; }
.service-card a:hover { color: var(--gold); }
.service-card a:hover b { transform: translateX(5px); display: inline-block; }
.featured { background: rgba(212, 175, 55, 0.03); }

.standards { display: grid; grid-template-columns: 1fr 1fr; border-bottom: 1px solid var(--line); }
.standards-image {
  min-height: 650px;
  background: linear-gradient(0deg, rgba(5,5,5,0.3), rgba(5,5,5,0.3)), url('https://images.unsplash.com/photo-1494905998402-395d579af36f?auto=format&fit=crop&w=1400&q=85') center/cover fixed;
}
.standards-copy { padding: 120px 10%; align-self: center; }
.standards-copy h2 { margin-top: 0; }
.standards-copy > p { font-size: 15px; color: var(--text-sub); max-width: 460px; margin-bottom: 40px; }
.partner-list {
  display: grid;
  gap: 15px;
  border-top: 1px solid var(--line);
  margin: 40px 0 40px;
  padding-top: 25px;
  font-family: "Cormorant Garamond";
  font-size: 26px;
  color: var(--text-main);
}
.light { color: #fff; }

.process { background: #050505; }
.process-title { max-width: 600px; margin-bottom: 70px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.steps article { padding: 40px 40px 20px 0; border-right: 1px solid var(--line); min-height: 200px; }
.steps article + article { padding-left: 40px; }
.steps article:last-child { border: 0; }
.steps span { color: var(--gold); font-size: 12px; font-weight: 500; }
.steps h3 { font-size: 30px; margin: 30px 0 15px; }
.steps p { font-size: 14px; color: var(--text-sub); max-width: 250px; }

.quote {
  background: linear-gradient(to right, #050505, #111, #050505);
  padding: 120px 10%;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quote > p { font-family: "Cormorant Garamond"; font-size: 100px; line-height: 0.3; margin: 0; color: var(--gold); }
.quote blockquote { font-family: "Cormorant Garamond"; font-style: italic; font-size: clamp(35px, 4vw, 55px); max-width: 900px; margin: 40px auto; color: var(--text-main); }
.quote span { font-size: 10px; letter-spacing: 0.3em; font-weight: 500; color: var(--text-sub); }

.contact { display: grid; grid-template-columns: 1.2fr 0.8fr; padding: 140px 10%; gap: 90px; }
.contact-main > p:not(.eyebrow) { color: var(--text-sub); font-size: 16px; max-width: 420px; margin-bottom: 40px; }
.contact-locations { border-left: 1px solid var(--line); padding-left: 60px; display: grid; align-content: center; gap: 50px; }
.contact-locations article { display: grid; gap: 10px; font-size: 14px; color: var(--text-main); }
.location-label { font-size: 10px !important; letter-spacing: 0.2em; color: var(--gold) !important; margin: 0 0 10px; }
.contact-locations a { transition: 0.3s; }
.contact-locations a:hover { color: var(--gold); }
.contact-locations address { font-style: normal; color: var(--text-sub); margin-top: 10px; }

footer { padding: 40px 5vw; background: #000; color: var(--text-sub); display: flex; align-items: center; justify-content: space-between; font-size: 11px; border-top: 1px solid var(--line); }
footer .brand { font-size: 13px; }
footer .brand-mark-img { filter: drop-shadow(0 0 10px rgba(255,255,255,0.05)); }
footer p { margin: 0; }
footer > a:last-child { text-decoration: underline; transition: 0.3s; }
footer > a:last-child:hover { color: #fff; }

[dir="rtl"] { font-family: "Noto Kufi Arabic", sans-serif; }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] .brand, [dir="rtl"] .partner-list, [dir="rtl"] .quote blockquote { font-family: "Noto Kufi Arabic", sans-serif; letter-spacing: 0; line-height: 1.4; }
[dir="rtl"] .hero-content, [dir="rtl"] .intro-content, [dir="rtl"] .standards-copy, [dir="rtl"] .contact-main { text-align: right; }
[dir="rtl"] .service-card, [dir="rtl"] .steps article { text-align: right; align-items: flex-start; }

@media(max-width:1000px){
  nav { gap: 20px; font-size: 10px; }
  .header-actions .button { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .standards-copy { padding: 80px 8%; }
  .contact { gap: 50px; padding: 100px 8%; }
  .hero { padding-left: 7vw; }
  .section-pad { padding: 100px 7vw; }
}
@media(max-width:700px){
  .topbar { font-size: 8px; padding: 0 20px; }
  .site-header { height: 75px; padding: 0 20px; }
  .brand { font-size: 13px; }
  .brand-mark-img { height: 32px !important; }
  nav { display: none; position: absolute; top: 75px; left: 0; right: 0; background: var(--ink); padding: 30px; flex-direction: column; gap: 25px; border-bottom: 1px solid var(--line); }
  nav.open { display: flex; }
  .menu-button { display: grid; gap: 6px; border: 0; background: none; padding: 10px; order: 2; cursor: pointer; }
  .menu-button span { width: 24px; height: 1px; background: #fff; transition: 0.3s; }
  .header-actions { margin-left: auto; order: 3; }
  .hero { min-height: 70vh; padding: 100px 25px; background-position: 65% center; }
  .hero-note { display: none; }
  .hero-ctas { gap: 20px; flex-wrap: wrap; }
  .intro, .standards, .contact { grid-template-columns: 1fr; }
  .intro { gap: 50px; }
  .section-pad { padding: 80px 25px; }
  .services-head { display: block; margin-bottom: 50px; }
  .services-head > p { margin-top: 25px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 40px 30px; }
  .standards-image { min-height: 400px; }
  .standards-copy { padding: 80px 25px; }
  .steps { grid-template-columns: 1fr; }
  .steps article, .steps article+article { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .contact { padding: 80px 25px; gap: 60px; }
  .contact-locations { border-left: 0; border-top: 1px solid var(--line); padding: 40px 0 0; }
  footer { padding: 30px 20px; gap: 25px; flex-wrap: wrap; }
  footer p { order: 3; width: 100%; }
  .quote { padding: 80px 25px; }
}
