:root {
  --ink-950: #030303;
  --ink-900: #070707;
  --ink-850: #0c0c0c;
  --ink-800: #11110f;
  --gold-500: #d5a52e;
  --gold-300: #ffd875;
  --gold-650: #9a6e17;
  --ivory: #f5f1e8;
  --muted: #aaa7a0;
  --muted-dark: #74716b;
  --line: rgba(213, 165, 46, 0.22);
  --line-soft: rgba(245, 241, 232, 0.1);
  --glass: rgba(9, 9, 8, 0.72);
  --shell: min(1500px, calc(100vw - 7vw));
  --header-height: 104px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --serif: "Cinzel", Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --arabic: "Noto Kufi Arabic", Tahoma, sans-serif;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --shadow-gold: 0 0 26px rgba(213, 165, 46, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--ink-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 52% 0%, rgba(213, 165, 46, 0.04), transparent 30%),
    var(--ink-950);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: var(--arabic);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img,
picture {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

::selection {
  background: var(--gold-500);
  color: #0b0b09;
}

:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset-inline-start: 16px;
  top: 14px;
  z-index: 9999;
  transform: translateY(-180%);
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  background: #0a0a09;
  color: var(--ivory);
  padding: 10px 16px;
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 500;
  height: 2px;
  pointer-events: none;
}

.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-650), var(--gold-300));
  box-shadow: 0 0 16px rgba(255, 216, 117, 0.6);
}

html[dir="rtl"] .page-progress span {
  transform-origin: right;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

.ambient-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(calc(var(--cursor-x, -600px) - 260px), calc(var(--cursor-y, -600px) - 260px), 0);
  background: radial-gradient(circle, rgba(255, 216, 117, 0.075), transparent 70%);
  transition: opacity 0.35s ease;
}

.ambient-cursor.is-visible {
  opacity: 1;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
}

.button svg,
.consultation-button svg,
.editorial-link svg,
.contact-cta svg,
.service-card svg,
.trust-item svg,
.contact-cards svg,
.whatsapp-fab svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 400;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding-inline: 3.1vw;
  border-bottom: 1px solid rgba(245, 241, 232, 0.07);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.67), transparent);
  transition: min-height 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 82px;
  border-color: var(--line);
  background: rgba(3, 3, 3, 0.84);
  backdrop-filter: blur(20px) saturate(120%);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(213, 165, 46, 0.18);
}

.brand img {
  width: clamp(76px, 7.8vw, 132px);
  height: clamp(62px, 6.3vw, 102px);
  margin-inline-end: 4px;
  object-fit: contain;
  filter: drop-shadow(0 0 13px rgba(213, 165, 46, 0.18));
  transition: transform 0.45s var(--ease), filter 0.45s ease;
}

.brand:hover img {
  transform: scale(1.035);
  filter: drop-shadow(0 0 18px rgba(255, 216, 117, 0.32));
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 48px);
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  color: #e9e5dc;
  font-size: clamp(0.72rem, 0.84vw, 0.94rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 4px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  box-shadow: 0 0 9px rgba(255, 216, 117, 0.48);
  transition: transform 0.3s var(--ease);
}

html[dir="rtl"] .desktop-nav a::after {
  transform-origin: right;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--gold-300);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

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

.language-switch {
  min-width: 48px;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.76rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.language-switch:hover {
  color: var(--gold-300);
}

.consultation-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  min-width: 205px;
  overflow: hidden;
  border: 1px solid rgba(213, 165, 46, 0.72);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--ivory);
  padding: 0 20px;
  font-size: 0.78rem;
  cursor: pointer;
  box-shadow: inset 0 0 20px rgba(213, 165, 46, 0.03);
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.consultation-button::before,
.button::before,
.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.17) 46%, transparent 76%);
  transform: translateX(-125%);
  transition: transform 0.65s var(--ease);
}

.consultation-button:hover::before,
.button:hover::before,
.contact-cta:hover::before {
  transform: translateX(125%);
}

.consultation-button:hover {
  border-color: var(--gold-300);
  color: var(--gold-300);
  box-shadow: 0 0 24px rgba(213, 165, 46, 0.15);
}

.consultation-button svg {
  width: 18px;
  height: 18px;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.66);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--gold-300);
}

.hero {
  position: relative;
  isolation: isolate;
  height: max(900px, 100svh);
  min-height: 900px;
  overflow: hidden;
  background: #020202;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 2, 2, 0.94) 0%, rgba(2, 2, 2, 0.76) 31%, rgba(2, 2, 2, 0.21) 59%, rgba(2, 2, 2, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.56));
}

html[dir="rtl"] .hero::before {
  background:
    linear-gradient(270deg, rgba(2, 2, 2, 0.94) 0%, rgba(2, 2, 2, 0.76) 31%, rgba(2, 2, 2, 0.21) 59%, rgba(2, 2, 2, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.56));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 180px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #020202 90%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0) scale(1.025);
  transition: transform 1.1s var(--ease);
  will-change: transform;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.95) contrast(1.05) brightness(0.82);
}

html[dir="rtl"] .hero-media img {
  transform: scaleX(-1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 73% 25%, rgba(255, 216, 117, 0.11), transparent 20%),
    radial-gradient(circle at 77% 60%, rgba(213, 165, 46, 0.09), transparent 32%),
    radial-gradient(circle at 35% 47%, rgba(0, 0, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.18));
}

.hero-geometry {
  position: absolute;
  top: 4%;
  right: 1%;
  width: min(54vw, 850px);
  aspect-ratio: 1;
  opacity: 0.5;
}

html[dir="rtl"] .hero-geometry {
  right: auto;
  left: 1%;
}

.hero-geometry i {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(213, 165, 46, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(213, 165, 46, 0.03);
}

.hero-geometry i:nth-child(2) {
  inset: 20%;
}

.hero-geometry i:nth-child(3) {
  inset: 33%;
}

.hero-geometry span {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: rotate(31deg);
  background: linear-gradient(transparent, rgba(255, 216, 117, 0.42), transparent);
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 430px);
  gap: clamp(42px, 5vw, 95px);
  align-items: start;
  padding-top: clamp(178px, 21vh, 220px);
}

.hero-copy-block {
  max-width: 830px;
  padding-inline-start: 1.4vw;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-300);
  font-size: clamp(0.67rem, 0.82vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  text-shadow: 0 0 15px rgba(255, 216, 117, 0.24);
}

html[dir="rtl"] .eyebrow {
  letter-spacing: 0.09em;
}

.hero-title {
  margin: 0;
  max-width: 100%;
  font-family: var(--serif);
  font-size: clamp(5.5rem, 9vw, 9.2rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.035em;
  background:
    linear-gradient(180deg, #fff4c9 0%, #ffd875 22%, #a86f14 49%, #f1c15d 70%, #7d5010 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 18px rgba(213, 165, 46, 0.21));
}

html[dir="rtl"] .hero-title {
  font-family: var(--serif);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  display: grid;
  grid-template-columns: 65px auto minmax(40px, 1fr);
  align-items: center;
  gap: 17px;
  max-width: 650px;
  margin-top: 16px;
}

.hero-subtitle span {
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), rgba(213, 165, 46, 0.25));
  box-shadow: 0 0 10px rgba(213, 165, 46, 0.2);
}

html[dir="rtl"] .hero-subtitle span {
  background: linear-gradient(270deg, var(--gold-500), rgba(213, 165, 46, 0.25));
}

.hero-subtitle p {
  margin: 0;
  color: #ece9e2;
  font-size: clamp(0.95rem, 1.25vw, 1.34rem);
  font-weight: 500;
  white-space: nowrap;
}

.hero-description {
  max-width: 650px;
  margin: 25px 0 0;
  color: #b9b6af;
  font-size: clamp(0.88rem, 1vw, 1.04rem);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 31px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  min-width: 210px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  padding: 0 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.button svg {
  width: 22px;
  height: 22px;
}

.button-gold {
  border: 1px solid var(--gold-500);
  background: linear-gradient(135deg, rgba(213, 165, 46, 0.13), rgba(213, 165, 46, 0.03));
  color: var(--gold-300);
  box-shadow: 0 0 22px rgba(213, 165, 46, 0.15), inset 0 0 18px rgba(255, 216, 117, 0.03);
}

.button-gold:hover {
  border-color: var(--gold-300);
  background: linear-gradient(135deg, rgba(213, 165, 46, 0.22), rgba(213, 165, 46, 0.06));
  box-shadow: 0 0 32px rgba(213, 165, 46, 0.22);
}

.button-outline {
  border: 1px solid rgba(245, 241, 232, 0.3);
  background: rgba(5, 5, 5, 0.36);
  color: var(--ivory);
}

.button-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
  box-shadow: 0 0 24px rgba(213, 165, 46, 0.1);
}

.services-overview {
  position: relative;
  max-height: 575px;
  overflow: hidden;
  border: 1px solid rgba(213, 165, 46, 0.62);
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgba(255, 216, 117, 0.035), transparent 35%),
    rgba(6, 6, 6, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52), inset 0 0 50px rgba(213, 165, 46, 0.025);
  backdrop-filter: blur(18px) saturate(112%);
}

.services-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 50% -10%, rgba(255, 216, 117, 0.07), transparent 35%);
}

.panel-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 15px;
}

.panel-heading p {
  margin: 0;
  color: var(--gold-300);
  font-size: 0.95rem;
  font-weight: 600;
}

.panel-heading span {
  display: block;
  width: 38px;
  height: 2px;
  margin-top: 11px;
  background: var(--gold-500);
}

.panel-heading small {
  color: var(--muted-dark);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-overview-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 4px 13px 18px;
}

.service-card {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 7px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--ivory);
  padding: 9px 5px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.28s var(--ease), color 0.28s ease, background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card svg {
  width: 25px;
  height: 25px;
  color: var(--gold-500);
  transition: transform 0.28s var(--ease), color 0.28s ease, filter 0.28s ease;
}

.service-card span {
  max-width: 110px;
  font-size: 0.67rem;
  line-height: 1.35;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(213, 165, 46, 0.28);
  background: rgba(213, 165, 46, 0.07);
  color: var(--gold-300);
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.28), 0 0 20px rgba(213, 165, 46, 0.08);
}

.service-card:hover svg,
.service-card:focus-visible svg {
  transform: translateY(-2px) scale(1.07);
  color: var(--gold-300);
  filter: drop-shadow(0 0 7px rgba(255, 216, 117, 0.38));
}

.trust-strip {
  position: absolute;
  inset-inline: 0;
  bottom: 78px;
  z-index: 6;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 106px;
  border: 1px solid rgba(245, 241, 232, 0.13);
  border-radius: 12px;
  background: rgba(7, 7, 7, 0.69);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35), inset 0 0 40px rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(16px);
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 0 13px;
  min-width: 0;
  padding: 21px 24px;
  border-inline-end: 1px solid rgba(245, 241, 232, 0.08);
}

.trust-item:last-child {
  border-inline-end: 0;
}

.trust-item svg {
  grid-row: 1 / span 2;
  align-self: center;
  width: 34px;
  height: 34px;
  color: var(--gold-300);
}

.trust-item strong {
  overflow: hidden;
  color: var(--ivory);
  font-size: 0.76rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-item span {
  overflow: hidden;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 35px;
  z-index: 8;
  display: grid;
  justify-items: center;
  gap: 3px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 25px;
  height: 42px;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: var(--gold-300);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.scroll-cue i {
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
  transform: rotate(45deg);
}

.hero-signature {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  border-top: 1px solid rgba(245, 241, 232, 0.09);
  color: var(--gold-300);
}

.hero-signature span {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.hero-signature p {
  margin: 0;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.hero-stagger {
  opacity: 0;
  transform: translateY(18px);
  animation: heroEnter 0.9s var(--ease) forwards;
}

.hero-stagger:nth-child(1) { animation-delay: 0.12s; }
.hero-stagger:nth-child(2) { animation-delay: 0.21s; }
.hero-stagger:nth-child(3) { animation-delay: 0.31s; }
.hero-stagger:nth-child(4) { animation-delay: 0.41s; }
.hero-stagger:nth-child(5) { animation-delay: 0.51s; }

.services-overview.hero-stagger {
  animation-delay: 0.44s;
}

.trust-strip.hero-stagger {
  animation-delay: 0.6s;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(105px, 10vw, 170px) 0;
  border-top: 1px solid rgba(245, 241, 232, 0.06);
}

.section-number {
  position: absolute;
  top: 3vw;
  inset-inline-end: 4vw;
  z-index: 0;
  color: rgba(213, 165, 46, 0.05);
  font-family: var(--serif);
  font-size: clamp(7rem, 15vw, 16rem);
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

.section-kicker {
  margin: 0 0 17px;
  color: var(--gold-500);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

html[dir="rtl"] .section-kicker {
  letter-spacing: 0.08em;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 6.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

html[dir="rtl"] .section h2 {
  font-family: var(--arabic);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.about {
  background:
    radial-gradient(circle at 7% 30%, rgba(213, 165, 46, 0.06), transparent 26%),
    linear-gradient(180deg, #050505, #080807);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1fr);
  gap: clamp(55px, 9vw, 160px);
}

.section-intro h2 {
  max-width: 720px;
}

.about-copy {
  padding-top: 44px;
}

.about-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.9;
}

.about-copy p + p {
  margin-top: 23px;
}

.about-copy .lead {
  color: var(--ivory);
  font-size: clamp(1.03rem, 1.5vw, 1.35rem);
  line-height: 1.7;
}

.company-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-facts article {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  min-height: 122px;
  padding: 33px 38px;
  border-inline-end: 1px solid var(--line);
}

.company-facts article:last-child {
  border-inline-end: 0;
}

.company-facts strong {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

.company-facts span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services {
  background:
    linear-gradient(120deg, transparent, rgba(213, 165, 46, 0.025), transparent 65%),
    #050505;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: clamp(55px, 10vw, 170px);
  margin-bottom: 70px;
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.85;
}

.sector-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.sector-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.11);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 216, 117, 0.035), transparent 32%),
    rgba(11, 11, 10, 0.72);
  padding: 34px 36px;
  cursor: pointer;
  transition: transform 0.36s var(--ease), border-color 0.36s ease, box-shadow 0.36s ease, background 0.36s ease;
}

.sector-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(213, 165, 46, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 32px rgba(213, 165, 46, 0.025), 0 0 0 66px rgba(213, 165, 46, 0.018);
  transition: transform 0.5s var(--ease), border-color 0.35s ease;
}

html[dir="rtl"] .sector-card::after {
  right: auto;
  left: -70px;
}

.sector-card:hover,
.sector-card.is-open,
.sector-card.is-selected {
  transform: translateY(-7px);
  border-color: rgba(213, 165, 46, 0.52);
  background:
    linear-gradient(145deg, rgba(255, 216, 117, 0.075), transparent 38%),
    rgba(12, 12, 10, 0.9);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35), 0 0 28px rgba(213, 165, 46, 0.06);
}

.sector-card:hover::after,
.sector-card.is-open::after,
.sector-card.is-selected::after {
  transform: scale(1.12) rotate(12deg);
  border-color: rgba(213, 165, 46, 0.22);
}

.sector-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 22px;
}

.sector-number {
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: 0.72rem;
}

.sector-card h3 {
  max-width: 460px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  font-weight: 400;
  line-height: 1.12;
}

html[dir="rtl"] .sector-card h3 {
  font-family: var(--arabic);
  font-weight: 500;
}

.sector-toggle {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-300);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s ease, border-color 0.25s ease;
}

.sector-card.is-open .sector-toggle {
  transform: rotate(45deg);
  border-color: var(--gold-500);
  background: rgba(213, 165, 46, 0.08);
}

.sector-description {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 26px 0 0 45px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.8;
}

html[dir="rtl"] .sector-description {
  margin: 26px 45px 0 0;
}

.sector-tags {
  position: relative;
  z-index: 1;
  display: block;
  margin: 27px 0 0 45px;
  color: var(--gold-500);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

html[dir="rtl"] .sector-tags {
  margin: 27px 45px 0 0;
  letter-spacing: 0.04em;
}

.sector-details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  max-height: 0;
  margin: 0 0 0 45px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s var(--ease), opacity 0.35s ease, margin-top 0.5s var(--ease);
}

html[dir="rtl"] .sector-details {
  margin-inline: 45px 0;
}

.sector-card.is-open .sector-details {
  max-height: 180px;
  margin-top: 25px;
  opacity: 1;
}

.sector-details span {
  position: relative;
  padding-inline-start: 15px;
  color: #d3d0c9;
  font-size: 0.72rem;
}

.sector-details span::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.72em;
  width: 6px;
  height: 1px;
  background: var(--gold-500);
}

.why {
  background:
    radial-gradient(circle at 78% 42%, rgba(213, 165, 46, 0.075), transparent 29%),
    #090908;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(440px, 1fr);
  gap: clamp(65px, 12vw, 200px);
  align-items: start;
}

.why-sticky {
  position: sticky;
  top: 130px;
}

.why-sticky h2 {
  max-width: 650px;
}

.why-sticky > p:last-child {
  max-width: 520px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.9;
}

.reason-list {
  border-top: 1px solid var(--line);
}

.reason-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 25px;
  min-height: 190px;
  padding: 38px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding-inline 0.35s var(--ease), background 0.35s ease;
}

.reason-item:hover {
  padding-inline: 22px;
  background: linear-gradient(90deg, rgba(213, 165, 46, 0.05), transparent);
}

html[dir="rtl"] .reason-item:hover {
  background: linear-gradient(270deg, rgba(213, 165, 46, 0.05), transparent);
}

.reason-item > span {
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: 0.74rem;
}

.reason-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.6vw, 2.9rem);
  font-weight: 400;
}

html[dir="rtl"] .reason-item h3 {
  font-family: var(--arabic);
  font-weight: 500;
}

.reason-item p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.leadership {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(213, 165, 46, 0.035)),
    #050505;
}

.leadership-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 1fr);
  min-height: 760px;
  border: 1px solid rgba(245, 241, 232, 0.09);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(8, 8, 8, 0.65);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.3);
}

.founder-portrait {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.83)),
    linear-gradient(90deg, transparent 72%, rgba(8, 8, 8, 0.72));
}

html[dir="rtl"] .founder-portrait::after {
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.83)),
    linear-gradient(270deg, transparent 72%, rgba(8, 8, 8, 0.72));
}

.founder-portrait picture,
.founder-portrait img {
  width: 100%;
  height: 100%;
}

.founder-portrait img {
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.12) contrast(1.04) brightness(0.83);
  transition: transform 1s var(--ease), filter 0.6s ease;
}

.leadership-grid:hover .founder-portrait img {
  transform: scale(1.025);
  filter: grayscale(0) contrast(1.04) brightness(0.9);
}

.founder-portrait > span {
  position: absolute;
  inset-inline-start: 25px;
  bottom: 24px;
  z-index: 2;
  color: var(--gold-300);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
}

.founder-editorial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 7vw, 115px);
}

.founder-editorial blockquote {
  position: relative;
  margin: 8px 0 50px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

html[dir="rtl"] .founder-editorial blockquote {
  font-family: var(--arabic);
  font-weight: 500;
}

.founder-editorial blockquote::before {
  content: "“";
  position: absolute;
  top: -70px;
  inset-inline-start: -25px;
  color: rgba(213, 165, 46, 0.14);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
}

.founder-meta {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}

.founder-meta h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  letter-spacing: -0.025em;
}

html[dir="rtl"] .founder-meta h2 {
  font-family: var(--arabic);
}

.founder-meta p {
  margin: 6px 0 0;
  color: var(--gold-500);
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.founder-editorial > p:not(.section-kicker) {
  max-width: 570px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.9;
}

.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  align-self: flex-start;
  margin-top: 38px;
  border-bottom: 1px solid var(--gold-500);
  color: var(--gold-300);
  padding: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}

.editorial-link:hover svg {
  transform: translateX(5px);
}

html[dir="rtl"] .editorial-link:hover svg {
  transform: translateX(-5px) rotate(180deg);
}

html[dir="rtl"] .editorial-link svg {
  transform: rotate(180deg);
}

.process {
  background:
    radial-gradient(circle at 50% 80%, rgba(213, 165, 46, 0.05), transparent 40%),
    #080807;
}

.process-timeline {
  position: relative;
  margin-top: 82px;
}

.timeline-line {
  position: absolute;
  top: 39px;
  inset-inline: 2% 2%;
  height: 1px;
  overflow: hidden;
  background: rgba(213, 165, 46, 0.15);
}

.timeline-line span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--timeline-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold-650), var(--gold-300));
  box-shadow: 0 0 13px rgba(255, 216, 117, 0.36);
}

html[dir="rtl"] .timeline-line span {
  transform-origin: right;
}

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

.process-item {
  position: relative;
  min-height: 350px;
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.74);
  padding: 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s ease, background 0.35s ease;
}

.process-item::before {
  content: "";
  position: absolute;
  top: 34px;
  inset-inline-start: 28px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  background: #090908;
  box-shadow: 0 0 0 7px rgba(213, 165, 46, 0.055), 0 0 16px rgba(213, 165, 46, 0.18);
}

.process-item:hover {
  transform: translateY(-8px);
  border-color: rgba(213, 165, 46, 0.45);
  background: rgba(213, 165, 46, 0.045);
}

.process-item > span {
  display: block;
  margin-inline-start: 35px;
  color: var(--gold-500);
  font-family: var(--serif);
  font-size: 0.72rem;
}

.process-item h3 {
  margin: 128px 0 17px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 3.25rem);
  font-weight: 400;
}

html[dir="rtl"] .process-item h3 {
  font-family: var(--arabic);
  font-weight: 500;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.75;
}

.contact {
  min-height: 790px;
  display: grid;
  place-items: center;
  isolation: isolate;
  text-align: center;
  background: #030303;
}

.contact-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.48;
  background:
    linear-gradient(rgba(3, 3, 3, 0.8), rgba(3, 3, 3, 0.96)),
    image-set(url("assets/scorpion-hero-1600.webp") type("image/webp"), url("assets/scorpion-hero.png") type("image/png")) center / cover no-repeat;
  filter: saturate(0.7);
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 43%, rgba(213, 165, 46, 0.17), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.4), transparent 45%, rgba(0, 0, 0, 0.4));
}

.contact-shell {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contact h2 {
  max-width: 1150px;
  font-size: clamp(3.3rem, 7vw, 8.3rem);
}

.contact-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 70px;
  min-height: 65px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--gold-500);
  background: transparent;
  color: var(--gold-300);
  margin-top: 56px;
  padding: 0 5px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-cta svg {
  width: 23px;
  height: 23px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin-top: 90px;
  border-top: 1px solid rgba(245, 241, 232, 0.11);
}

.contact-cards > * {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 80px;
  border-inline-end: 1px solid rgba(245, 241, 232, 0.11);
  color: var(--muted);
  font-size: 0.68rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.contact-cards > *:last-child {
  border-inline-end: 0;
}

.contact-cards a:hover {
  background: rgba(213, 165, 46, 0.04);
  color: var(--gold-300);
}

.contact-cards svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
}

.contact-cards b {
  font-weight: 400;
}

.site-footer {
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 126px;
  gap: 35px;
}

.site-footer .brand {
  font-size: 1.3rem;
}

.site-footer .brand img {
  width: 48px;
  height: 44px;
}

.site-footer p {
  color: var(--muted-dark);
  font-size: 0.64rem;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted);
  font-size: 0.65rem;
}

.site-footer nav a {
  transition: color 0.2s ease;
}

.site-footer nav a:hover {
  color: var(--gold-300);
}

.whatsapp-fab {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 380;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(213, 165, 46, 0.55);
  border-radius: 50%;
  background: rgba(7, 7, 7, 0.9);
  color: var(--gold-300);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(213, 165, 46, 0.1);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.whatsapp-fab:hover {
  border-color: var(--gold-300);
  background: var(--gold-500);
  color: #090908;
}

.whatsapp-fab svg {
  width: 25px;
  height: 25px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.mobile-menu,
.consultation-dialog {
  color: var(--ivory);
}

.mobile-menu::backdrop,
.consultation-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.mobile-menu {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  border: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(213, 165, 46, 0.1), transparent 34%),
    #070707;
  padding: 26px clamp(22px, 6vw, 58px) 40px;
}

.mobile-menu[open] {
  animation: dialogIn 0.36s var(--ease);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-head .brand {
  font-size: 1.5rem;
}

.mobile-menu-head .brand img {
  width: 58px;
  height: 52px;
}

.dialog-close {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-300);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.menu-kicker {
  margin: 12vh 0 25px;
  color: var(--gold-500);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 6vw, 3rem);
}

html[dir="rtl"] .mobile-nav a {
  font-family: var(--arabic);
}

.mobile-consultation {
  width: 100%;
  margin-top: 35px;
}

.consultation-dialog {
  width: min(1120px, calc(100vw - 48px));
  max-width: 1120px;
  max-height: min(860px, calc(100svh - 48px));
  overflow: auto;
  border: 1px solid rgba(213, 165, 46, 0.45);
  border-radius: 22px;
  background: #090909;
  padding: 0;
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.72), 0 0 70px rgba(213, 165, 46, 0.06);
}

.consultation-dialog[open] {
  animation: dialogIn 0.36s var(--ease);
}

.consultation-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.22fr);
  min-height: 670px;
}

.consultation-layout::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 38%;
  width: 1px;
  background: var(--line);
}

.consultation-close {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  z-index: 3;
}

.dialog-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.84)),
    image-set(url("assets/scorpion-hero-1024.webp") type("image/webp"), url("assets/scorpion-hero.png") type("image/png")) 68% center / cover no-repeat;
  padding: 65px 48px;
}

.dialog-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.5vw, 4.9rem);
  font-weight: 400;
  line-height: 1.05;
}

html[dir="rtl"] .dialog-intro h2 {
  font-family: var(--arabic);
  font-weight: 500;
}

.dialog-intro > p:not(.section-kicker) {
  max-width: 390px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.85;
}

.dialog-contact {
  display: grid;
  gap: 8px;
  margin-top: 55px;
  color: var(--gold-300);
  font-size: 0.71rem;
}

.consultation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 22px 18px;
  padding: 70px 54px 52px;
}

.field {
  display: grid;
  align-content: start;
  gap: 8px;
}

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

.field label {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field label em {
  color: var(--muted-dark);
  font-size: 0.58rem;
  font-style: normal;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 9px;
  background: #10100f;
  color: var(--ivory);
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input,
.field select {
  min-height: 50px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-500);
  background: #121210;
  box-shadow: 0 0 0 3px rgba(213, 165, 46, 0.08);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #e9856d;
}

.field-error {
  min-height: 15px;
  color: #f2a08d;
  font-size: 0.62rem;
}

.form-status {
  min-height: 20px;
  margin: -4px 0 0;
  color: var(--gold-300);
  font-size: 0.68rem;
}

.consultation-form .button {
  width: 100%;
  margin-top: 4px;
}

.noscript-message {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 9999;
  border: 1px solid var(--gold-500);
  background: #0a0a09;
  color: var(--ivory);
  padding: 14px 18px;
  font-size: 0.75rem;
}

.legal-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 80% 0%, rgba(213, 165, 46, 0.08), transparent 30%),
    var(--ink-950);
}

.legal-shell {
  width: min(900px, calc(100vw - 40px));
  margin: auto;
  padding: 120px 0 90px;
}

.legal-shell > a {
  display: inline-flex;
  color: var(--gold-300);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-shell h1 {
  margin: 55px 0 20px;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1;
}

.legal-shell h2 {
  margin: 44px 0 12px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.legal-shell p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.9;
}

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.35; }
  50% { transform: translate(-50%, 13px); opacity: 1; }
}

@keyframes dialogIn {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}


@media (min-width: 1101px) {
  .trust-strip {
    inset-inline-start: calc((100vw - var(--shell)) / 2);
    inset-inline-end: auto;
    width: calc(var(--shell) - 520px);
    margin-inline: 0;
  }
}

@media (max-width: 1320px) {
  :root {
    --shell: min(1240px, calc(100vw - 6vw));
  }

  .site-header {
    grid-template-columns: minmax(205px, 0.9fr) auto minmax(260px, 0.9fr);
    padding-inline: 2.2vw;
  }

  .desktop-nav {
    gap: 22px;
  }

  .consultation-button {
    min-width: 188px;
    gap: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 44px;
  }

  .hero-title {
    font-size: clamp(5rem, 8.1vw, 7.4rem);
  }

  .service-card {
    min-height: 72px;
  }

  .trust-item {
    padding-inline: 17px;
  }

  .trust-item strong {
    font-size: 0.7rem;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 86px;
    --shell: min(960px, calc(100vw - 44px));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 22px;
  }

  .desktop-nav,
  .site-header .consultation-button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .header-actions {
    grid-column: 2;
  }

  .hero {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 300px;
  }

  .hero-copy-block {
    max-width: 760px;
    padding-inline-start: 0;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(2, 2, 2, 0.94), rgba(2, 2, 2, 0.67) 70%, rgba(2, 2, 2, 0.35)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.7));
  }

  html[dir="rtl"] .hero::before {
    background:
      linear-gradient(270deg, rgba(2, 2, 2, 0.94), rgba(2, 2, 2, 0.67) 70%, rgba(2, 2, 2, 0.35)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 45%, rgba(0, 0, 0, 0.7));
  }

  .services-overview {
    max-height: none;
  }

  .services-overview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-strip {
    bottom: 78px;
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-inline-end: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  }

  .scroll-cue {
    display: none;
  }

  .about-grid,
  .why-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .about-copy {
    padding-top: 0;
  }

  .why-sticky {
    position: static;
  }

  .leadership-grid {
    grid-template-columns: 0.82fr 1fr;
  }

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

  .timeline-line {
    display: none;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards > *:nth-child(2) {
    border-inline-end: 0;
  }

  .contact-cards > *:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(245, 241, 232, 0.11);
  }
}

@media (max-width: 800px) {
  :root {
    --shell: min(720px, calc(100vw - 32px));
  }

  .brand {
    font-size: 1.55rem;
  }

  .brand img {
    width: 63px;
    height: 54px;
  }

  .hero-grid {
    padding-top: 132px;
    padding-bottom: 350px;
  }

  .hero-title {
    font-size: clamp(4.2rem, 14vw, 7rem);
  }

  .hero-subtitle {
    grid-template-columns: 38px auto minmax(20px, 1fr);
    gap: 10px;
  }

  .hero-subtitle p {
    font-size: 0.95rem;
  }

  .services-overview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sector-grid {
    grid-template-columns: 1fr;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

  .company-facts article {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .company-facts article:last-child {
    border-bottom: 0;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    min-height: 650px;
  }

  .founder-portrait::after,
  html[dir="rtl"] .founder-portrait::after {
    background: linear-gradient(180deg, transparent 58%, rgba(8, 8, 8, 0.96));
  }

  .founder-editorial {
    padding: 55px 36px 68px;
  }

  .consultation-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
  }

  .consultation-layout {
    grid-template-columns: 1fr;
  }

  .consultation-layout::before {
    display: none;
  }

  .dialog-intro {
    min-height: 360px;
    padding: 55px 35px;
  }

  .consultation-form {
    padding: 45px 35px 38px;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100vw - 28px);
    --header-height: 78px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    min-height: 78px;
    padding-inline: 14px;
  }

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

  .brand {
    font-size: 1.22rem;
  }

  .brand img {
    width: 54px;
    height: 47px;
  }

  .language-switch {
    min-width: 42px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    height: 640px;
    opacity: 0.78;
  }

  .hero-media img {
    object-position: 70% center;
  }

  html[dir="rtl"] .hero-media img {
    object-position: 70% center;
  }

  .hero::before,
  html[dir="rtl"] .hero::before {
    background:
      linear-gradient(180deg, rgba(2, 2, 2, 0.58) 0, rgba(2, 2, 2, 0.78) 39%, #020202 71%),
      linear-gradient(90deg, rgba(2, 2, 2, 0.88), rgba(2, 2, 2, 0.26));
  }

  .hero-grid {
    gap: 40px;
    padding-top: 119px;
    padding-bottom: 0;
  }

  .hero-copy-block {
    text-align: start;
  }

  .eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .hero-title {
    font-size: clamp(3.75rem, 20.2vw, 5.2rem);
    line-height: 1;
  }

  .hero-subtitle {
    grid-template-columns: 27px minmax(0, auto) 1fr;
    margin-top: 14px;
  }

  .hero-subtitle p {
    overflow-wrap: anywhere;
    font-size: 0.76rem;
    white-space: normal;
  }

  .hero-description {
    margin-top: 22px;
    font-size: 0.79rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 55px;
    min-width: 0;
  }

  .services-overview {
    margin-top: 3px;
    border-radius: 14px;
  }

  .panel-heading {
    padding: 20px 18px 14px;
  }

  .panel-heading small {
    display: none;
  }

  .services-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 8px;
  }

  .service-card {
    min-height: 78px;
    padding: 10px 6px;
  }

  .service-card span {
    font-size: 0.66rem;
  }

  .trust-strip {
    position: relative;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 22px;
    margin-bottom: 80px;
  }

  .trust-item {
    min-height: 88px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  }

  .trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .trust-item strong,
  .trust-item span {
    white-space: normal;
  }

  .hero-signature {
    height: 58px;
  }

  .hero-signature span {
    font-size: 0.86rem;
  }

  .hero-signature p {
    max-width: 180px;
    font-size: 0.53rem;
    text-align: end;
  }

  .section {
    padding: 88px 0;
  }

  .section-number {
    top: 18px;
    font-size: 7.5rem;
  }

  .section h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .about-grid,
  .why-grid {
    gap: 40px;
  }

  .about-copy .lead {
    font-size: 0.96rem;
  }

  .about-copy p {
    font-size: 0.78rem;
  }

  .company-facts article {
    min-height: 92px;
    padding: 24px 19px;
  }

  .company-facts strong {
    font-size: 2.2rem;
  }

  .company-facts span {
    font-size: 0.62rem;
  }

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

  .section-heading > p {
    font-size: 0.75rem;
  }

  .sector-card {
    min-height: 0;
    padding: 27px 22px;
  }

  .sector-head {
    grid-template-columns: 30px 1fr auto;
    gap: 10px;
  }

  .sector-card h3 {
    font-size: 1.72rem;
  }

  .sector-toggle {
    width: 39px;
    height: 39px;
  }

  .sector-description,
  .sector-tags,
  .sector-details,
  html[dir="rtl"] .sector-description,
  html[dir="rtl"] .sector-tags,
  html[dir="rtl"] .sector-details {
    margin-inline: 40px 0;
  }

  .sector-description {
    font-size: 0.75rem;
  }

  .sector-details {
    grid-template-columns: 1fr;
  }

  .sector-card.is-open .sector-details {
    max-height: 290px;
  }

  .reason-item {
    grid-template-columns: 38px 1fr;
    min-height: 160px;
    gap: 12px;
    padding: 30px 0;
  }

  .reason-item:hover {
    padding-inline: 8px;
  }

  .reason-item h3 {
    font-size: 1.65rem;
  }

  .founder-portrait {
    min-height: 510px;
  }

  .founder-editorial {
    padding: 48px 23px 58px;
  }

  .founder-editorial blockquote {
    margin-bottom: 40px;
    font-size: 2.35rem;
  }

  .founder-editorial blockquote::before {
    top: -50px;
    font-size: 7rem;
  }

  .process-timeline {
    margin-top: 48px;
  }

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

  .process-item {
    min-height: 270px;
  }

  .process-item h3 {
    margin-top: 85px;
  }

  .contact {
    min-height: 720px;
  }

  .contact h2 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .contact-cta {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .contact-cards > * {
    min-height: 64px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.11);
  }

  .contact-cards > *:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: 0;
    padding: 36px 0;
    gap: 19px;
  }

  .site-footer p {
    margin: 0;
    text-align: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .whatsapp-fab {
    width: 50px;
    height: 50px;
  }

  .mobile-menu {
    padding-inline: 20px;
  }

  .menu-kicker {
    margin-top: 8vh;
  }

  .consultation-dialog {
    width: 100vw;
    max-height: 100svh;
    height: 100svh;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .dialog-intro {
    min-height: 300px;
    padding: 72px 23px 40px;
  }

  .dialog-intro h2 {
    font-size: 2.65rem;
  }

  .dialog-contact {
    margin-top: 35px;
  }

  .consultation-form {
    grid-template-columns: 1fr;
    padding: 35px 22px 45px;
  }

  .field.full,
  .consultation-form .full {
    grid-column: 1;
  }
}

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

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

  .reveal,
  .hero-stagger {
    opacity: 1;
    transform: none;
  }

  .ambient-cursor {
    display: none;
  }
}
