:root {
  color-scheme: light;
  --gold: #ba9e5f;
  --gold-soft: #e9d9b2;
  --gold-pale: #f3e7c7;
  --ivory: #f6edd8;
  --paper: #fffaf0;
  --white: #ffffff;
  --ink: #0f1f1d;
  --blue-ink: #102a43;
  --muted: #6b5b3e;
  --line: rgba(186, 158, 95, .28);
  --shadow: 0 24px 70px rgba(15, 31, 29, .1);
  --shadow-soft: 0 14px 34px rgba(15, 31, 29, .08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(246, 237, 216, .88), rgba(255, 250, 240, 1) 28%, rgba(255, 255, 255, 1) 62%, rgba(246, 237, 216, .55)),
    var(--paper);
  color: var(--ink);
  font-family: Manrope, Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

html[lang="ar"] body {
  font-family: "Noto Naskh Arabic", Manrope, Inter, Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(30deg, rgba(186, 158, 95, .08) 12%, transparent 12.5%, transparent 87%, rgba(186, 158, 95, .08) 87.5%, rgba(186, 158, 95, .08)),
    linear-gradient(150deg, rgba(186, 158, 95, .08) 12%, transparent 12.5%, transparent 87%, rgba(186, 158, 95, .08) 87.5%, rgba(186, 158, 95, .08));
  background-position: 0 0, 0 0;
  background-size: 84px 146px;
  opacity: .23;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(186, 158, 95, .18);
  background: rgba(255, 250, 240, .84);
  backdrop-filter: blur(22px);
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-compact {
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 36px rgba(15, 31, 29, .08);
  border-color: rgba(186, 158, 95, .24);
}

.header-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: min-height .25s ease;
}

.site-header.is-compact .header-inner {
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  display: block;
  width: 186px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(186, 158, 95, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .46);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(15, 31, 29, .78);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(186, 158, 95, .14);
  color: var(--ink);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(186, 158, 95, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
}

.language-switch button {
  min-width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(15, 31, 29, .62);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.mobile-language-switch {
  display: none;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(186, 158, 95, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  cursor: pointer;
}

.burger span {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: background .2s ease;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

.burger[aria-expanded="true"] span {
  background: transparent;
}

.burger[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(15, 31, 29, .18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #173430;
  box-shadow: 0 18px 34px rgba(15, 31, 29, .24);
}

.button-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d7bd77, var(--gold));
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(186, 158, 95, .32);
}

.button-gold::after {
  content: "";
  position: absolute;
  inset: -40% -80%;
  background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .5) 50%, transparent 65%);
  transform: translateX(-70%);
  animation: buttonSheen 6.5s ease-in-out infinite;
}

.button-gold:hover::after,
.button-gold:focus-visible::after {
  animation-duration: 2.8s;
}

.button-gold {
  isolation: isolate;
}

.button-gold > * {
  position: relative;
  z-index: 1;
}

.button-ghost {
  border-color: rgba(186, 158, 95, .4);
  background: rgba(255, 255, 255, .5);
  color: var(--ink);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--gold);
  background: rgba(233, 217, 178, .28);
}

.hero {
  position: relative;
  min-height: 86vh;
  padding: 132px 0 58px;
  display: grid;
  align-items: center;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 90px auto auto 50%;
  width: 780px;
  height: 780px;
  transform: translateX(-50%) rotate(45deg);
  border: 1px solid rgba(186, 158, 95, .14);
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(186, 158, 95, .16) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(186, 158, 95, .16) 50%, transparent 50.3%);
  opacity: .78;
}

.hero::after {
  right: -120px;
  bottom: 60px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(186, 158, 95, .24);
  transform: rotate(45deg);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero-arabic {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Noto Naskh Arabic", serif;
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 700;
  line-height: 1.18;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-proof span {
  display: block;
  min-height: 78px;
  padding: 15px;
  border: 1px solid rgba(186, 158, 95, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .5);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 44px rgba(15, 31, 29, .05);
}

.hero-logo-panel {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.hero-logo-panel::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: min(70vw, 410px);
  height: min(70vw, 410px);
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid rgba(186, 158, 95, .28);
  background: linear-gradient(135deg, rgba(255, 255, 255, .68), rgba(233, 217, 178, .2));
  box-shadow: var(--shadow);
}

.hero-logo-panel::after {
  content: "";
  position: absolute;
  width: min(56vw, 310px);
  height: min(56vw, 310px);
  border: 1px solid rgba(186, 158, 95, .36);
  transform: rotate(45deg);
}

.hero-logo-panel img {
  position: relative;
  z-index: 1;
  width: min(52vw, 292px);
  filter: drop-shadow(0 20px 50px rgba(186, 158, 95, .24));
  animation: quietFloat 7s ease-in-out infinite, markDraw 1.45s cubic-bezier(.22, 1, .36, 1) both;
}

.motion-route-map {
  position: absolute;
  inset: -32px;
  z-index: 0;
  width: calc(100% + 64px);
  height: calc(100% + 64px);
  overflow: visible;
  opacity: .9;
}

.motion-route {
  fill: none;
  stroke: rgba(186, 158, 95, .42);
  stroke-linecap: round;
  stroke-width: 1.35;
  stroke-dasharray: 12 16;
  animation: routeDash 13s linear infinite;
}

.motion-route-secondary {
  stroke: rgba(15, 31, 29, .22);
  stroke-dasharray: 8 18;
  animation-duration: 16s;
  animation-direction: reverse;
}

.motion-route-tertiary {
  stroke: rgba(233, 217, 178, .72);
  stroke-dasharray: 5 14;
  animation-duration: 19s;
}

.route-diamond {
  fill: var(--gold);
  opacity: .72;
  transform-box: fill-box;
  transform-origin: center;
  transform: rotate(45deg) scale(.82);
  animation: routeDiamond 4.6s ease-in-out infinite;
}

.route-diamond-two {
  animation-delay: .6s;
}

.route-diamond-three {
  animation-delay: 1.2s;
}

.route-diamond-four {
  animation-delay: 1.8s;
}

.route-diamond-five {
  animation-delay: 2.4s;
}

.route-line {
  position: absolute;
  z-index: 0;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186, 158, 95, .65), transparent);
}

.route-line:nth-child(1) {
  top: 30%;
  transform: rotate(-18deg);
}

.route-line:nth-child(2) {
  bottom: 30%;
  transform: rotate(18deg);
}

@keyframes quietFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes markDraw {
  0% {
    clip-path: inset(50% 50% 50% 50%);
    opacity: .35;
    transform: scale(.94);
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes routeDiamond {
  0%, 100% {
    opacity: .42;
    transform: rotate(45deg) scale(.72);
  }
  45% {
    opacity: .95;
    transform: rotate(45deg) scale(1.05);
  }
}

@keyframes buttonSheen {
  0%, 42%, 100% {
    transform: translateX(-74%);
  }
  56% {
    transform: translateX(74%);
  }
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-tight {
  padding-top: 76px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  gap: 56px;
  align-items: start;
}

.body-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
}

.fact-grid {
  display: grid;
  gap: 14px;
}

.fact-card,
.value-card,
.service-card,
.format-card,
.contact-card,
.form-card {
  border: 1px solid rgba(186, 158, 95, .22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
  box-shadow: var(--shadow-soft);
}

.fact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(186, 158, 95, .32);
  border-radius: 50%;
  color: var(--gold);
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.fact-card strong,
.value-card strong,
.format-card strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.fact-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.band {
  background:
    linear-gradient(180deg, rgba(15, 31, 29, .96), rgba(16, 42, 67, .94)),
    var(--ink);
  color: var(--white);
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(233, 217, 178, .08) 12%, transparent 12.5%, transparent 87%, rgba(233, 217, 178, .08) 87.5%, rgba(233, 217, 178, .08)),
    linear-gradient(150deg, rgba(233, 217, 178, .08) 12%, transparent 12.5%, transparent 87%, rgba(233, 217, 178, .08) 87.5%, rgba(233, 217, 178, .08));
  background-size: 96px 166px;
  opacity: .35;
}

.band > .container {
  position: relative;
  z-index: 1;
}

.band .section-heading h2,
.band .value-card strong,
.band .process-step strong {
  color: var(--white);
}

.band .section-heading p,
.band .value-card p,
.band .process-step p {
  color: rgba(255, 250, 240, .74);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  min-height: 268px;
  padding: 24px;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(233, 217, 178, .18);
  box-shadow: none;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 217, 178, .42);
  background: rgba(255, 255, 255, .09);
}

.value-card p {
  margin: 14px 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: rgba(255, 255, 255, .76);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(186, 158, 95, .2);
  transform: rotate(45deg);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(186, 158, 95, .42);
  box-shadow: 0 26px 70px rgba(15, 31, 29, .12);
}

.service-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
}

.service-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(15, 31, 29, .78);
  font-size: 15px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

html[dir="rtl"] .eyebrow::before {
  order: 2;
}

html[dir="rtl"] .service-card li {
  padding-right: 24px;
  padding-left: 0;
}

html[dir="rtl"] .service-card li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .checkbox-field {
  grid-template-columns: 1fr 20px;
}

html[dir="rtl"] .checkbox-field input {
  order: 2;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(186, 158, 95, .24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .7);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.process-step {
  min-height: 255px;
  padding: 26px 20px;
  border-right: 1px solid rgba(186, 158, 95, .18);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 1px solid rgba(186, 158, 95, .4);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
}

.process-step strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.cta {
  position: relative;
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(246, 237, 216, .96), rgba(255, 255, 255, .96)),
    var(--ivory);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(186, 158, 95, .24);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.08;
  text-wrap: balance;
}

.cta p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.cta-actions {
  justify-content: center;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.format-card {
  min-height: 220px;
  padding: 24px;
}

.format-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  background: var(--ink);
  color: var(--white);
}

.contact-card img {
  width: 228px;
  margin-bottom: 24px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(233, 217, 178, .18);
}

.contact-list dt {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .9);
}

.contact-card .button {
  width: 100%;
  margin-top: 24px;
}

.form-card {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.checkbox-field {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(186, 158, 95, .28);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, .72);
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(186, 158, 95, .14);
  background: var(--white);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.checkbox-field a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  color: #276749;
}

.form-status.is-error {
  color: #9b2c2c;
}

.site-footer {
  padding: 34px 0;
  background: #0b1715;
  color: rgba(255, 255, 255, .72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(233, 217, 178, .86);
  font-size: 14px;
}

.legal-page {
  padding: 142px 0 80px;
}

.legal-content {
  max-width: 880px;
}

.legal-content h1 {
  margin: 0 0 24px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.1;
}

.legal-content h2 {
  margin: 36px 0 12px;
  font-size: 24px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: calc(var(--reveal-index, 0) * 55ms);
  animation-delay: calc(var(--reveal-index, 0) * 55ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .motion-route,
  .route-diamond,
  .button-gold::after,
  .hero-logo-panel img {
    animation: none !important;
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 0;
  }

  .main-nav a {
    padding: 0 10px;
  }

  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-panel {
    min-height: 360px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step {
    border-right: 1px solid rgba(186, 158, 95, .18);
    border-bottom: 1px solid rgba(186, 158, 95, .18);
  }

  .process-step:nth-child(2n) {
    border-right: 0;
  }

  .process-step:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }
}

@media (max-width: 860px) {
  .header-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand img {
    width: 160px;
  }

  .burger {
    display: inline-grid;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 250, 240, .98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 46px;
    justify-content: center;
  }

  .mobile-language-switch {
    display: grid;
    gap: 10px;
    justify-items: center;
    margin-top: 4px;
    padding: 14px;
    border-top: 1px solid rgba(186, 158, 95, .18);
  }

  .mobile-language-switch span {
    color: rgba(15, 31, 29, .62);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }

  .mobile-language-switch .language-switch {
    display: inline-flex;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-proof,
  .hero-logo-panel {
    display: none;
  }

  .services-grid,
  .formats-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    min-height: auto;
  }

  .section {
    padding: 78px 0;
  }
}

@media (max-width: 640px) {
  .container,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .language-switch {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-arabic {
    margin-bottom: 8px;
    font-size: 32px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-proof {
    display: none;
  }

  .hero-logo-panel {
    display: none;
  }

  .button {
    width: 100%;
  }

  .values-grid,
  .process,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(2n),
  .process-step:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(186, 158, 95, .18);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
