/* ==========================================================================
   MR GLOBAL LINK — Stylesheet
   Design tokens: near-black / charcoal / metallic gold / ivory / warm gray
   ========================================================================== */

:root {
  --c-black: #0a0908;
  --c-charcoal: #14120f;
  --c-charcoal-2: #1b1814;
  --c-gold: #c9a227;
  --c-gold-light: #e8c766;
  --c-gold-dim: #8a6f1e;
  --c-ivory: #f5f1e8;
  --c-gray: #a8a29a;
  --c-gray-dim: #6e6a62;
  --c-line: rgba(201, 162, 39, 0.22);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1240px;
  --pad: clamp(20px, 5vw, 96px);
  --radius: 14px;
  --radius-lg: 26px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--c-black);
  color: var(--c-ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input,
select,
textarea {
  font-family: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--c-ivory);
  letter-spacing: 0.2px;
}

::selection {
  background: var(--c-gold);
  color: var(--c-black);
}

:focus-visible {
  outline: 2px solid var(--c-gold-light);
  outline-offset: 3px;
}

/* ---------- utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s var(--ease);
}
.reveal.in-view .eyebrow::before {
  transform: scaleX(1);
}

.section-head {
  max-width: 740px;
  margin-bottom: 64px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-title {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.15;
  letter-spacing: -0.3px;
}
.section-sub {
  color: var(--c-gray);
  margin-top: 18px;
  font-size: 17.5px;
  max-width: 600px;
}
.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

section {
  position: relative;
  overflow: clip;
}
.section-pad {
  padding: clamp(90px, 12vw, 160px) 0;
}
.bg-charcoal {
  background: var(--c-charcoal);
}
.divider-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--c-line), transparent);
}

/* decorative gold orbs used across sections for premium 3D ambience */
.deco-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}
.deco-orb-gold {
  background: radial-gradient(
    circle at 35% 35%,
    rgba(232, 199, 102, 0.3),
    rgba(201, 162, 39, 0) 70%
  );
}
.deco-orb-ring {
  border: 1px solid var(--c-line);
  background: none;
  filter: none;
}

/* section divider ornament: thin line + rotated diamond, echoes Islamic geometric minimalism */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 40px;
}
.ornament::before,
.ornament::after {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold));
}
.ornament::after {
  background: linear-gradient(90deg, var(--c-gold), transparent);
}
.ornament i {
  width: 7px;
  height: 7px;
  background: var(--c-gold);
  transform: rotate(45deg);
  display: block;
  flex-shrink: 0;
}

/* scrolling marquee strip */
.marquee-strip {
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  background: var(--c-charcoal);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--c-gray);
  text-transform: uppercase;
}
.marquee-track span b {
  color: var(--c-gold-light);
  font-weight: 600;
}
.marquee-track span::after {
  content: "◆";
  color: var(--c-gold);
  font-size: 9px;
  margin-left: 16px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1.in-view {
  transition-delay: 0.12s;
}
.reveal-delay-2.in-view {
  transition-delay: 0.24s;
}
.reveal-delay-3.in-view {
  transition-delay: 0.36s;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  color: var(--c-black);
}
.btn-gold:hover {
  box-shadow:
    0 0 0 1px var(--c-gold-light),
    0 14px 34px -8px rgba(201, 162, 39, 0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--c-ivory);
  border-color: rgba(245, 241, 232, 0.35);
}
.btn-outline:hover {
  border-color: var(--c-gold-light);
  color: var(--c-gold-light);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 11px 20px;
  font-size: 12px;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition:
    background 0.4s var(--ease),
    padding 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 9, 8, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom-color: var(--c-line);
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, 0.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--c-ivory);
}
.logo-img-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.logo-img-wrap::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.logo-mark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1.5px solid var(--c-gold);
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-gold-light);
  position: absolute;
  inset: 0;
  display: none;
  background: var(--c-black);
}
.logo-img-wrap.logo-fallback .logo-img {
  display: none;
}
.logo-img-wrap.logo-fallback .logo-mark {
  display: flex;
}
.logo b {
  color: var(--c-gold-light);
  font-weight: 600;
}
.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--c-gray);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--c-ivory);
  position: relative;
  padding: 6px 0;
  opacity: 0.9;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--c-gold-light);
  transition: width 0.35s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.main-nav a:hover {
  opacity: 1;
  color: var(--c-gold-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  background: none;
  border: 0;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--c-ivory);
  transition:
    transform 0.35s var(--ease),
    opacity 0.35s var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(340px, 86vw);
  height: 100vh;
  z-index: 99;
  background: var(--c-charcoal);
  border-left: 1px solid var(--c-line);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
  padding: 100px 32px 40px;
  overflow-y: auto;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 19px;
  font-family: var(--font-display);
  border-bottom: 1px solid var(--c-line);
  color: var(--c-ivory);
}
.mobile-nav .btn {
  margin-top: 28px;
  width: 100%;
}
.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.nav-scrim.open {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 150px;
  padding-bottom: 0;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -40px;
  z-index: 0;
  background: url("https://images.unsplash.com/photo-1591604129939-f1efa4d9f7fa?q=80&w=2000&auto=format&fit=crop")
    center/110% no-repeat;
  animation: heroZoom 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from {
    background-size: 110%;
  }
  to {
    background-size: 122%;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(10, 9, 8, 0.68) 0%,
      rgba(10, 9, 8, 0.55) 35%,
      rgba(10, 9, 8, 0.86) 78%,
      var(--c-black) 100%
    ),
    radial-gradient(
      ellipse 55% 50% at 85% 15%,
      rgba(201, 162, 39, 0.16),
      transparent 60%
    ),
    linear-gradient(90deg, rgba(10, 9, 8, 0.55) 0%, transparent 45%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 180px 40px rgba(0, 0, 0, 0.75);
}
.hero-orb {
  position: absolute;
  right: 4%;
  top: 16%;
  width: 420px;
  height: 420px;
  pointer-events: none;
  opacity: 0.5;
  animation: spin 70s linear infinite;
  z-index: 2;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.hero-orb-2 {
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.22),
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 3;
  padding-bottom: 70px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--c-line);
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 26px;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold-light);
  box-shadow: 0 0 0 4px rgba(232, 199, 102, 0.18);
}

.hero h1 {
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.1;
  max-width: 720px;
  color: var(--c-ivory);
}
.hero h1 em {
  font-style: normal;
  color: var(--c-gold-light);
}
.hero-line {
  width: 70px;
  height: 2px;
  background: var(--c-gold);
  margin: 26px 0;
  transform-origin: left;
  animation: drawline 1.4s var(--ease) 0.3s both;
}
@keyframes drawline {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.hero p.lead {
  font-size: 18px;
  color: var(--c-gray);
  max-width: 560px;
  margin: 0 0 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-top: 1px solid var(--c-line);
  padding-top: 32px;
}
.stat-block {
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--c-gold-light);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-label {
  font-size: 12.5px;
  color: var(--c-gray);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

.hero-card {
  position: relative;
}
.hero-card-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--c-line);
  background: var(--c-charcoal-2);
  box-shadow:
    0 50px 100px -30px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(201, 162, 39, 0.08);
}
.hero-card-media img {
  height: 560px;
  object-fit: cover;
  width: 100%;
  transition: transform 1.2s var(--ease);
}
.hero-card-media:hover img {
  transform: scale(1.05);
}
.hero-card-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(10, 9, 8, 0.75) 100%
  );
  pointer-events: none;
}
.hero-card-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-card-badge .b-title {
  font-family: var(--font-display);
  font-size: 16px;
}
.hero-card-badge .b-sub {
  font-size: 12px;
  color: var(--c-gray);
  margin-top: 3px;
}
.hero-card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(201, 162, 39, 0.92);
  color: var(--c-black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.hero-chip {
  position: absolute;
  z-index: 4;
  background: var(--c-black);
  border: 1px solid var(--c-gold);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floaty 5s ease-in-out infinite;
}
.hero-chip-left {
  left: -30px;
  top: 34%;
}
@media (max-width: 1240px) {
  .hero-chip-left {
    left: 0;
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-chip .hc-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-chip .hc-title {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--c-ivory);
}
.hero-chip .hc-sub {
  font-size: 11px;
  color: var(--c-gray);
}

/* ---------- about ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.rev {
  grid-template-columns: 1fr 1fr;
}
.split.rev .split-media {
  order: 2;
}
.split-media {
  position: relative;
}
.split-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
  border: 1px solid var(--c-line);
}
.split-media .float-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--c-charcoal);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  max-width: 230px;
  z-index: 3;
}
.float-card .fc-num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--c-gold-light);
}
.float-card .fc-label {
  font-size: 13px;
  color: var(--c-gray);
  margin-top: 4px;
}

/* overlapping image block, Skyvilla-style layered composition */
.overlap-media {
  position: relative;
  padding: 0 34px 34px 0;
}
.overlap-media .om-back {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 460px;
  object-fit: cover;
  border: 1px solid var(--c-line);
}
.overlap-media .om-front {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  border: 5px solid var(--c-black);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
  z-index: 2;
}
.overlap-media .om-frame {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 130px;
  height: 130px;
  z-index: 0;
  border: 1px solid var(--c-gold);
  border-radius: 16px;
  opacity: 0.5;
}
.overlap-media .float-card {
  right: -10px;
  left: auto;
  bottom: -24px;
}
@media (max-width: 640px) {
  .overlap-media {
    padding: 0 20px 20px 0;
  }
  .overlap-media .om-back {
    height: 320px;
  }
  .overlap-media .om-front {
    height: 180px;
  }
}

.about-text p {
  color: var(--c-gray);
  font-size: 16.5px;
  margin: 0 0 18px;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.feature-card {
  background: var(--c-charcoal);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 24px 20px;
  transition:
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-gold);
}
.feature-card .fi {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 13.5px;
  color: var(--c-gray);
  margin: 0;
}
/* ---------- leadership / team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--c-charcoal-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 42px 30px 32px;
  text-align: center;
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-gold);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7);
}
.team-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  margin: 0 auto 22px;
  padding: 5px;
  border: 1.5px solid var(--c-gold);
  position: relative;
}
.team-photo::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
}
.team-photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.team-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.team-role {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 22px;
}
.team-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 20px 0;
}
.team-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--c-gray);
  transition: color 0.3s var(--ease);
}
.team-contact a:hover {
  color: var(--c-gold-light);
}
.team-contact svg {
  flex-shrink: 0;
}

@media (max-width: 1080px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    padding: 34px 22px 26px;
  }
}
/* ---------- services ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: linear-gradient(180deg, var(--c-charcoal), var(--c-charcoal-2));
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  background: radial-gradient(
    circle at 30% 0%,
    rgba(201, 162, 39, 0.16),
    transparent 60%
  );
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-gold);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7);
}
.service-card:hover::before {
  opacity: 1;
}
.service-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--c-gold-dim);
  letter-spacing: 2px;
  margin-bottom: 22px;
  display: block;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--c-gray);
  font-size: 14.5px;
  margin: 0 0 20px;
}
.card-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--c-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-link svg {
  transition: transform 0.35s var(--ease);
}
.service-card:hover .card-link svg {
  transform: translateX(5px);
}

/* ---------- opportunities ---------- */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-gray);
  font-size: 13px;
  letter-spacing: 0.4px;
  transition: all 0.35s var(--ease);
}
.filter-btn:hover {
  color: var(--c-ivory);
  border-color: var(--c-gold);
}
.filter-btn.active {
  background: var(--c-gold);
  color: var(--c-black);
  border-color: var(--c-gold);
  font-weight: 600;
}

.opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.opp-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-line);
  background: var(--c-charcoal);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
}
.opp-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 70px -26px rgba(0, 0, 0, 0.8);
  border-color: var(--c-gold-dim);
}
.opp-media {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.opp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.opp-card:hover .opp-media img {
  transform: scale(1.1);
}
.opp-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 8, 0) 40%,
    rgba(10, 9, 8, 0.92) 100%
  );
}
.opp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.badge-available {
  background: var(--c-gold);
  color: var(--c-black);
}
.badge-private {
  background: rgba(245, 241, 232, 0.14);
  color: var(--c-ivory);
  border: 1px solid rgba(245, 241, 232, 0.3);
  backdrop-filter: blur(6px);
}
.badge-review {
  background: rgba(201, 162, 39, 0.16);
  color: var(--c-gold-light);
  border: 1px solid var(--c-line);
  backdrop-filter: blur(6px);
}
.opp-view {
  position: absolute;
  z-index: 2;
  left: 16px;
  bottom: 16px;
  right: 16px;
}
.opp-view .ov-loc {
  font-size: 12.5px;
  color: var(--c-ivory);
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.opp-body {
  padding: 28px 26px 30px;
}
.opp-body h3 {
  font-size: 20px;
  margin-bottom: 18px;
  line-height: 1.35;
}
.opp-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--c-line);
  padding-top: 18px;
  margin-bottom: 22px;
}
.opp-meta div span {
  display: block;
  font-size: 11px;
  color: var(--c-gray-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}
.opp-meta div b {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--c-gold-light);
  font-weight: 600;
}

/* ---------- why saudi ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: var(--c-charcoal-2);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 34px 26px;
  text-align: center;
  transition:
    border-color 0.4s var(--ease),
    transform 0.4s var(--ease);
}
.stat-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-6px);
}
.stat-card .big {
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  color: var(--c-gold-light);
}
.stat-card .lbl {
  font-size: 13px;
  color: var(--c-gray);
  margin-top: 10px;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-item .wi-ico {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--c-line);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.why-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--c-gray);
}

/* ---------- checklist ---------- */
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.check-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--c-charcoal);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 18px 20px;
}
.check-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.check-item p {
  margin: 0;
  font-size: 14.5px;
  color: var(--c-ivory);
  font-weight: 500;
}

/* ---------- process ---------- */
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
}
.process-track::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--c-line);
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--c-charcoal);
  border: 1.5px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  color: var(--c-gold-light);
  font-size: 19px;
  transition:
    background 0.4s var(--ease),
    color 0.4s var(--ease);
}
.process-step:hover .process-num {
  background: var(--c-gold);
  color: var(--c-black);
}
.process-step h4 {
  font-size: 15px;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 12.5px;
  color: var(--c-gray);
  margin: 0;
}

/* ---------- insights ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-charcoal);
  border: 1px solid var(--c-line);
  transition: transform 0.4s var(--ease);
}
.blog-card:hover {
  transform: translateY(-8px);
}
.blog-media {
  height: 210px;
  overflow: hidden;
}
.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.blog-card:hover .blog-media img {
  transform: scale(1.08);
}
.blog-body {
  padding: 24px 24px 28px;
}
.blog-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  color: var(--c-gold-light);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}
.blog-meta span.dot2 {
  color: var(--c-gray-dim);
}
.blog-body h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-body p {
  font-size: 14px;
  color: var(--c-gray);
  margin: 0 0 16px;
}

/* ---------- contact ---------- */
.contact-cta-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.cta-primary {
  background: linear-gradient(
    120deg,
    var(--c-gold-light),
    var(--c-gold) 60%,
    var(--c-gold-dim)
  );
  border-radius: var(--radius-lg);
  padding: 34px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--c-black);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 90% 0%,
    rgba(255, 255, 255, 0.35),
    transparent 55%
  );
  pointer-events: none;
}
.cta-primary .cp-left {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.cta-primary .cp-ico {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-primary h3 {
  font-size: 20px;
  color: var(--c-black);
  margin-bottom: 4px;
}
.cta-primary p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(10, 9, 8, 0.75);
}
.cta-primary .btn {
  position: relative;
  z-index: 1;
  background: var(--c-black);
  color: var(--c-gold-light);
  border: 0;
}
.cta-primary .btn:hover {
  background: #000;
  box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.5);
}
.cta-secondary {
  background: var(--c-charcoal);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cta-secondary .cs-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-secondary h4 {
  font-size: 16px;
  margin-bottom: 4px;
}
.cta-secondary p {
  margin: 0;
  font-size: 13px;
  color: var(--c-gray);
}
.cta-secondary a.cs-link {
  color: var(--c-gold-light);
  font-weight: 600;
  font-size: 13.5px;
}
@media (max-width: 860px) {
  .contact-cta-row {
    grid-template-columns: 1fr;
  }
  .cta-primary {
    padding: 28px 24px;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
}
.contact-info-card {
  background: var(--c-charcoal);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 38px;
}
.contact-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
}
.contact-row:last-child {
  border-bottom: 0;
}
.contact-row .ci {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row h4 {
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-row p {
  margin: 0;
  font-size: 14px;
  color: var(--c-gray);
}
.map-ph {
  margin-top: 24px;
  height: 160px;
  border-radius: 12px;
  border: 1px dashed var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gray-dim);
  font-size: 13px;
  background: var(--c-charcoal-2);
}

.form-card {
  background: var(--c-charcoal-2);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  margin-bottom: 20px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  display: block;
  font-size: 13px;
  color: var(--c-gray);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--c-black);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--c-ivory);
  font-size: 14.5px;
  transition: border-color 0.3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--c-gold);
  outline: none;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 12px;
  color: var(--c-gray-dim);
  margin-top: 6px;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--c-black);
  border-top: 1px solid var(--c-line);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-desc {
  color: var(--c-gray);
  font-size: 14px;
  margin: 18px 0 24px;
  max-width: 300px;
}
.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 22px;
}
.footer-col ul li {
  margin-bottom: 13px;
}
.footer-col ul a {
  font-size: 14px;
  color: var(--c-gray);
  transition: color 0.3s var(--ease);
}
.footer-col ul a:hover {
  color: var(--c-gold-light);
}
.newsletter {
  display: flex;
  gap: 0;
  margin-top: 8px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  overflow: hidden;
}
.newsletter input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 13px 16px;
  color: var(--c-ivory);
  font-size: 13.5px;
}
.newsletter input:focus {
  outline: none;
}
.newsletter button {
  border: 0;
  background: var(--c-gold);
  color: var(--c-black);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 700;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-row a:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.social-row a:hover svg path {
  fill: var(--c-black);
}
.footer-bottom {
  border-top: 1px solid var(--c-line);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  margin: 0;
  font-size: 12.5px;
  color: var(--c-gray-dim);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12.5px;
  color: var(--c-gray-dim);
}
.footer-legal a:hover {
  color: var(--c-gold-light);
}

/* ---------- floating elements ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.6);
  transition: transform 0.35s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.cookie-bar {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  max-width: 640px;
  margin: 0 auto;
  background: var(--c-charcoal);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
  transform: translateY(140%);
  transition: transform 0.6s var(--ease);
}
.cookie-bar.show {
  transform: translateY(0);
}
.cookie-bar p {
  margin: 0;
  font-size: 13.5px;
  color: var(--c-gray);
  flex: 1;
  min-width: 200px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-charcoal);
  border: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    border-color 0.4s var(--ease);
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  border-color: var(--c-gold);
  transform: translateY(-3px);
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    max-width: 560px;
  }
  .grid-3,
  .opp-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }
  .process-track::before {
    display: none;
  }
  .why-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .desktop-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .split,
  .split.rev {
    grid-template-columns: 1fr;
  }
  .split.rev .split-media {
    order: 0;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
  .feature-row {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .check-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .grid-3,
  .opp-grid,
  .blog-grid,
  .stats-grid,
  .why-list {
    grid-template-columns: 1fr;
  }
  .process-track {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-card img {
    height: 360px;
  }
  .split-media img {
    height: 320px;
  }
  .split-media .float-card {
    position: static;
    margin-top: -40px;
    margin-left: 20px;
    max-width: none;
    width: calc(100% - 40px);
  }
  .hero-chip {
    display: none;
  }
}

/* ---------- mobile readability & tap-target upgrades (older / non-technical visitors) ---------- */
@media (max-width: 640px) {
  body {
    font-size: 16.5px;
    line-height: 1.75;
  }
  .section-sub {
    font-size: 16px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
  }

  /* buttons: bigger, easier to tap, full width where it matters */
  .btn {
    padding: 18px 26px;
    font-size: 14.5px;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  .btn-sm {
    padding: 14px 20px;
    font-size: 13px;
    width: auto;
  }

  /* mobile nav: larger tap targets, clearer separation */
  .mobile-nav {
    width: 100%;
    padding: 110px 26px 40px;
  }
  .mobile-nav a {
    padding: 20px 4px;
    font-size: 21px;
  }
  .hamburger {
    width: 36px;
    padding: 8px;
  }
  .hamburger span {
    height: 2px;
  }

  /* forms: bigger inputs, larger labels, no accidental zoom on iOS (16px min) */
  .field label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .field input,
  .field select,
  .field textarea {
    padding: 16px 16px;
    font-size: 16px;
    border-radius: 10px;
  }
  .form-card {
    padding: 26px 22px;
  }
  .contact-info-card {
    padding: 26px 22px;
  }
  .contact-row {
    padding: 18px 0;
  }
  .contact-row h4 {
    font-size: 15px;
  }
  .contact-row p {
    font-size: 14.5px;
  }

  /* cards: more breathing room */
  .service-card,
  .opp-body,
  .blog-body {
    padding: 28px 22px;
  }
  .feature-card {
    padding: 22px 18px;
  }

  /* whatsapp float stays reachable and thumb-sized */
  .whatsapp-float {
    width: 64px;
    height: 64px;
    bottom: 20px;
    right: 16px;
  }
  .back-to-top {
    width: 52px;
    height: 52px;
    bottom: 20px;
    left: 16px;
  }

  .cta-primary {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .cta-primary .btn {
    width: 100%;
  }
  .cta-secondary {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
