/* ==========================================================================
   Marasem — Real Estate Marketing — Stylesheet
   Mobile-first. Breakpoints: 40em (~640px) tablet, 64em (~1024px) desktop,
   80em (~1280px) wide desktop.
   ========================================================================== */

@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("assets/fonts/cairo-arabic.woff2") format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("assets/fonts/cairo-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("assets/fonts/cairo-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Design tokens ---------- */
:root {
  --color-ink: #2B1D2E;
  --color-ink-soft: #64748b;
  --color-plum-900: #1a0f1e;
  --color-plum-800: #241528;
  --color-plum-700: #3a2440;
  --color-cream: #faf7f2;
  --color-cream-deep: #f8f9fb;
  --color-white: #ffffff;

  --color-gold: #FFC300;
  --color-orange: #FF7A00;
  --color-red: #E63946;
  --color-teal: #2EC4B6;
  --color-navy: #0D3B66;

  --gradient-warm: linear-gradient(90deg, #FFC300, #FF7A00, #E63946);
  --gradient-warm-2: linear-gradient(90deg, #FF7A00, #E63946);
  --gradient-brand: linear-gradient(90deg, #0D3B66, #2EC4B6);
  --gradient-teal-navy: linear-gradient(135deg, #2EC4B6, #0D3B66);
  --gradient-orange-red: linear-gradient(135deg, #FF7A00, #E63946);

  --font-body: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 80rem; /* 1280px */
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-pill: 100px;

  --shadow-soft: 0 10px 40px -14px rgba(43, 29, 46, 0.14);
  --shadow-lift: 0 24px 60px -18px rgba(43, 29, 46, 0.28);

  --ease-out-strong: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  direction: rtl;
  text-align: right;
  background: var(--color-white);
  color: var(--color-ink);
  overflow-x: hidden;
  font-size: 100%;
  line-height: 1.5;
}

/* Defensive baseline: form controls sometimes ignore inherited direction in
   older engines, so pin them explicitly rather than relying on inheritance. */
h1, h2, h3, h4, h5, h6,
p, span, a, li, label,
input, textarea, select, button {
  direction: inherit;
  text-align: inherit;
}

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

a {
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

@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;
  }
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -3rem;
  right: 1rem;
  z-index: 1000;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 0.75em 1.25em;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   Site Preloader (شاشة التحميل)
   ========================================================================== */
.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.site-preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.site-preloader__stage {
  position: relative;
  width: clamp(11rem, 40vw, 19rem);
  height: clamp(11rem, 40vw, 19rem);
}

.site-preloader__orbit {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}
.site-preloader__orbit--a {
  inset: 0;
  border-top-color: var(--color-teal);
  border-inline-end-color: var(--color-teal);
  animation: preloaderSpin 1.6s linear infinite;
  z-index: 5;
}
.site-preloader__orbit--b {
  inset: -2.25rem;
  border-bottom-color: var(--color-orange);
  border-inline-start-color: var(--color-orange);
  animation: preloaderSpin 1.3s linear infinite reverse;
}
.site-preloader__orbit--c {
  inset: -1.5rem;
  border-top-color: var(--color-gold);
  border-inline-end-color: var(--color-gold);
  animation: preloaderSpin 2.1s linear infinite;
}

.site-preloader__video-wrap {
  position: absolute;
  top: 50%;
  inset-inline: 0.5rem;
  transform: translateY(-50%);
  aspect-ratio: 1072 / 560;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.site-preloader__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes preloaderSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader__orbit {
    animation: none;
  }
}

.text-gradient {
  background: var(--gradient-warm-2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.text-gradient--teal { background: var(--gradient-teal-navy); -webkit-background-clip: text; background-clip: text; }
.text-gradient--warm { background: var(--gradient-warm-2); -webkit-background-clip: text; background-clip: text; }
.text-gradient--gold { background: var(--gradient-warm); -webkit-background-clip: text; background-clip: text; }

/* Generic scroll-reveal utility — see initScrollReveal() in script.js. */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease-out-strong), transform 0.7s var(--ease-out-strong);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.intro__feature.reveal {
  transition-delay: calc(var(--i, 0) * 70ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow--hero .eyebrow__text { color: var(--color-gold); }
.eyebrow--teal .eyebrow__text { color: var(--color-teal); }
.eyebrow--orange .eyebrow__text { color: var(--color-orange); }
.eyebrow--center { justify-content: center; margin-bottom: 0.875rem; }

.eyebrow__text {
  font-size: clamp(0.75rem, 1.6vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-orange);
}
.eyebrow__text--label {
  display: block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.eyebrow__line {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}
.section-title--light { color: var(--color-white); }
.section-title--center { text-align: center; }

.section-desc {
  color: var(--color-ink-soft);
  font-size: clamp(0.9375rem, 1.4vw, 1rem);
  line-height: 1.9;
  margin-top: 1rem;
  max-width: 30rem;
}
.section-desc--light { color: rgba(255, 255, 255, 0.68); }
.section-desc--center { max-width: 32rem; margin-inline: auto; }

.section-head {
  text-align: center;
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  text-decoration: none;
  padding: 0.9em 1.9em;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.btn--pill { border-radius: var(--radius-pill); }
.btn--primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: 0 12px 34px -10px rgba(13, 59, 102, 0.6);
}
.btn--primary:hover, .btn--primary:focus-visible {
  transform: translateY(-3px);
}
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline {
  color: var(--color-ink);
  border: 1px solid #e5ddd0;
  border-radius: var(--radius-pill);
  padding: 0.75em 1.75em;
  font-weight: 700;
  font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--color-ink);
  color: var(--color-white);
  border-color: var(--color-ink);
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.125rem;
  flex-shrink: 0;
}
.icon-circle--teal { background: var(--gradient-teal-navy); }
.icon-circle--warm { background: var(--gradient-orange-red); }

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 1.5rem;
  transition: padding 0.4s ease;
}
.site-header--scrolled {
  padding-block: 0.875rem;
}

.navbar {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

/* Mobile/tablet: 3-column grid keeps the toggle pinned physically LEFT and
   the brand mark perfectly centered, independent of writing direction. */
.navbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  direction: ltr;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 8px 30px -10px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header--scrolled .navbar__inner {
  background: rgba(255, 255, 255, 0.87);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px -8px rgba(43, 29, 46, 0.18);
}

.navbar__brand {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  direction: rtl;
  text-decoration: none;
}
.navbar__logo {
  height: 1.75rem;
  width: auto;
  transition: height 0.3s ease;
}
.navbar__brand-name {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: color 0.4s ease;
}
.site-header--scrolled .navbar__brand-name {
  color: var(--color-ink);
}

.navbar__links {
  display: flex;
  gap: 0.375rem;
  align-items: center;
}
.navbar__links a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.5em 0.875em;
  border-radius: var(--radius-pill);
  transition: color 0.3s ease, background 0.3s ease;
}
.navbar__links a:hover, .navbar__links a:focus-visible,
.navbar__links a.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-gold);
}
.site-header--scrolled .navbar__links a {
  color: var(--color-ink);
}
.site-header--scrolled .navbar__links a:hover,
.site-header--scrolled .navbar__links a:focus-visible,
.site-header--scrolled .navbar__links a.active {
  background: rgba(230, 57, 70, 0.08);
  color: var(--color-red);
}

.navbar__nav,
.navbar__cta {
  display: none;
}

.navbar__toggle {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.navbar__toggle span {
  display: block;
  width: 1.375rem;
  height: 2px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.site-header--scrolled .navbar__toggle span {
  background: var(--color-ink);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 64em) {
  .navbar__inner {
    direction: rtl;
    grid-template-columns: none;
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 0.75rem 0.625rem 1.5rem;
  }
  .navbar__brand {
    justify-self: normal;
  }
  .navbar__logo {
    height: 2.125rem;
  }
  .navbar__brand-name {
    font-size: clamp(1.125rem, 2vw, 1.3125rem);
  }
  .navbar__toggle {
    display: none;
  }
  .navbar__nav {
    display: block;
  }
  .navbar__cta {
    display: inline-flex;
  }
}

/* ==========================================================================
   Mobile / tablet full-screen navigation overlay
   ========================================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow: hidden;
  background: radial-gradient(120% 120% at 80% 10%, var(--color-plum-700) 0%, var(--color-plum-800) 45%, var(--color-plum-900) 100%);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0s;
}

.mobile-menu__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.mobile-menu__orb--a {
  top: -15%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.35), transparent 65%);
  animation: orbA 14s ease-in-out infinite;
}
.mobile-menu__orb--b {
  bottom: -15%;
  left: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.28), transparent 65%);
  animation: orbB 16s ease-in-out infinite;
}

.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.mobile-menu__close span {
  position: absolute;
  width: 1.25rem;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
}
.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}
.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}
.mobile-menu__close:hover, .mobile-menu__close:focus-visible {
  background: var(--color-teal);
  border-color: var(--color-teal);
  transform: rotate(90deg);
}

.mobile-menu__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vh, 3rem);
  padding: 5rem 1.5rem 3rem;
  overflow-y: auto;
}

.mobile-menu__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}
.mobile-menu__brand img {
  height: 2.25rem;
  width: auto;
}
.mobile-menu__brand span {
  color: var(--color-white);
  font-size: 1.375rem;
  font-weight: 800;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.375rem;
}
.mobile-menu__links li {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.mobile-menu.is-open .mobile-menu__links li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open .mobile-menu__links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.is-open .mobile-menu__links li:nth-child(5) { transition-delay: 0.34s; }

.mobile-menu__links a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.375rem, 6vw, 1.875rem);
  font-weight: 800;
  text-decoration: none;
  padding: 0.2em 0.5em;
  transition: color 0.3s ease;
}
.mobile-menu__links a::after {
  content: '';
  position: absolute;
  right: 50%;
  bottom: 0.05em;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
  transform: translateX(50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out-strong);
}
.mobile-menu__links a:hover,
.mobile-menu__links a:focus-visible,
.mobile-menu__links a:active,
.mobile-menu__links a.active {
  color: var(--color-gold);
}
.mobile-menu__links a:hover::after,
.mobile-menu__links a:focus-visible::after,
.mobile-menu__links a:active::after,
.mobile-menu__links a.active::after {
  transform: translateX(50%) scaleX(1);
}

.mobile-menu__cta {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.45s ease 0.3s, transform 0.45s ease 0.3s;
}
.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}

.no-scroll {
  overflow: hidden;
}

@media (min-width: 64em) {
  .mobile-menu {
    display: none;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
@keyframes scrollDot { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.4; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(1.5rem); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatLogo { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-1.125rem); } }
@keyframes floatShadow { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(0.65); opacity: 0.22; } }
@keyframes orbA { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(40px, -30px) scale(1.15); } }
@keyframes orbB { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-50px, 40px) scale(1.1); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinRev { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes lineGrow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes rise { from { opacity: 0; transform: translateY(2.5rem); } to { opacity: 1; transform: translateY(0); } }

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 120% at 80% 10%, var(--color-plum-700) 0%, var(--color-plum-800) 45%, var(--color-plum-900) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}
.hero__orb--a {
  top: -7.5rem;
  right: -5rem;
  width: 32.5rem;
  height: 32.5rem;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.42), transparent 65%);
  animation: orbA 14s ease-in-out infinite;
}
.hero__orb--b {
  bottom: -8.75rem;
  left: -3.75rem;
  width: 35rem;
  height: 35rem;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.32), transparent 65%);
  filter: blur(34px);
  animation: orbB 16s ease-in-out infinite;
}
.hero__orb--c {
  top: 30%;
  left: 38%;
  width: 23.75rem;
  height: 23.75rem;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.22), transparent 68%);
  filter: blur(40px);
  animation: orbA 18s ease-in-out infinite;
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.6;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 15, 30, 0.2), rgba(26, 15, 30, 0.55));
}

.hero__container {
  position: relative;
  z-index: 2;
  padding-block: clamp(5.5rem, 14vw, 9.375rem) clamp(4rem, 8vw, 6.875rem);
  width: 100%;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 64em) {
  .hero__content {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.75rem;
  }
}

.hero__copy {
  text-align: center;
  animation: rise 1s var(--ease-out-strong) both;
}
@media (min-width: 64em) {
  .hero__copy { text-align: right; }
}

.eyebrow--hero {
  justify-content: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 64em) {
  .eyebrow--hero { justify-content: flex-end; flex-direction: row-reverse; margin-bottom: 1rem; }
}

.hero__title {
  color: var(--color-white);
  font-size: clamp(2.75rem, 11vw, 5.125rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
@media (min-width: 64em) {
  .hero__title { line-height: 1.05; margin-bottom: 1.625rem; }
}
.hero__title-gradient {
  display: block;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title-light {
  display: block;
  font-weight: 300;
  opacity: 0.92;
}

.hero__rule {
  width: 7.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), transparent);
  margin: 0 auto 2rem;
  transform-origin: center;
  animation: lineGrow 1.2s ease 0.4s both;
}
@media (min-width: 64em) {
  .hero__rule { margin: 0 0 1.625rem auto; transform-origin: right; }
}

.hero__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 4vw, 1.125rem);
  line-height: 1.9;
  margin: 0 auto 2.5rem;
  max-width: 28.75rem;
}
@media (min-width: 64em) {
  .hero__desc { font-size: clamp(0.9375rem, 1.6vw, 1.0625rem); line-height: 1.95; margin-inline: 0 0; }
}

/* Hidden on mobile/tablet per design — restored as a row of CTAs on desktop. */
.hero__actions {
  display: none;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 64em) {
  .hero__actions { display: flex; justify-content: flex-end; flex-direction: row-reverse; }
}

/* Mobile/tablet: graphic leads, text follows. Desktop restores source order
   (copy right, emblem left) via the min-width override below. */
.hero__emblem {
  order: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rise 1.1s var(--ease-out-strong) 0.15s both;
}
@media (min-width: 64em) {
  .hero__emblem { order: 0; }
}

.emblem {
  position: relative;
  width: min(48%, 12rem);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 64em) {
  .emblem { width: min(100%, 27.5rem); }
}
.emblem__glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.28), transparent 60%);
  filter: blur(20px);
}
.emblem__ring {
  position: absolute;
  border-radius: 50%;
}
.emblem__ring--outer {
  inset: 4%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top-color: rgba(255, 195, 0, 0.7);
  border-right-color: rgba(255, 122, 0, 0.5);
  animation: spinSlow 18s linear infinite;
}
.emblem__ring--inner {
  inset: 15%;
  border: 1px dashed rgba(46, 196, 182, 0.35);
  animation: spinRev 26s linear infinite;
}
.emblem__logo-wrap {
  position: relative;
  width: 64%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.emblem__logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: floatLogo 4s ease-in-out infinite;
}
.emblem__shadow {
  position: absolute;
  bottom: -0.875rem;
  width: 58%;
  height: 1.375rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, transparent 72%);
  animation: floatShadow 4s ease-in-out infinite;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
@media (min-width: 40em) {
  .hero__scroll-cue { display: flex; }
}
.hero__scroll-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}
.hero__scroll-pill {
  width: 1.75rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.875rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: scrollDot 1.5s ease infinite;
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 6.875rem);
  background: radial-gradient(120% 120% at 15% 0%, var(--color-plum-700) 0%, var(--color-plum-800) 50%, var(--color-plum-900) 100%);
  overflow: hidden;
}
.stats__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.stats__orb--a {
  top: -6.25rem;
  left: -3.75rem;
  width: 28.75rem;
  height: 28.75rem;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.22), transparent 65%);
}
.stats__orb--b {
  bottom: -7.5rem;
  right: -2.5rem;
  width: 26.25rem;
  height: 26.25rem;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.24), transparent 65%);
}

.stats__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 64em) {
  .stats__container {
    grid-template-columns: repeat(auto-fit, minmax(21.25rem, 1fr));
    gap: 3.75rem;
    align-items: center;
  }
}

.stats__col { text-align: center; }
@media (min-width: 64em) {
  .stats__col { text-align: right; }
  .eyebrow--teal { justify-content: flex-end; flex-direction: row-reverse; }
}
.eyebrow--teal { justify-content: center; }

.section-desc--light.section-desc { margin-inline: auto; }
@media (min-width: 64em) {
  .stats__col .section-desc { margin-inline: 0; }
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.75rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 1.875rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}
.stat-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.stat-card__value {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.stat-card__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.stats__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: clamp(18.75rem, 40vw, 31.25rem);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}
.stats__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stats__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 30, 0.5), transparent 50%);
}
.stats__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 1.125rem 1.625rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
}
.stats__badge-value {
  background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.875rem;
  font-weight: 900;
}
.stats__badge-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
}

/* ==========================================================================
   About / Why Us
   ========================================================================== */
.about {
  padding-block: clamp(4.5rem, 9vw, 6.875rem);
  background: var(--color-white);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 64em) {
  .about__container {
    grid-template-columns: repeat(auto-fit, minmax(22.5rem, 1fr));
    gap: 4.375rem;
    align-items: center;
  }
}

.about__col { text-align: center; }
@media (min-width: 64em) {
  .about__col { text-align: right; }
  .eyebrow--orange { justify-content: flex-end; flex-direction: row-reverse; }
}
.eyebrow--orange { justify-content: center; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin: 2rem 0 2.375rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-align: right;
}

.feature__icon {
  width: 3.25rem;
  height: 3.25rem;
  background: linear-gradient(135deg, #FFF1E0, #FFE1D0);
  border: 1px solid #FFE1BB;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
}

.feature__title {
  font-weight: 800;
  color: var(--color-ink);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.feature__desc {
  color: var(--color-ink-soft);
  font-size: 0.875rem;
  line-height: 1.7;
}

.about__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.875rem;
  height: clamp(20rem, 45vw, 33.75rem);
  margin-top: 2rem;
}
@media (min-width: 64em) {
  .about__gallery { margin-top: 0; }
}

.about__gallery-tall {
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-row: 1 / 3;
  box-shadow: 0 20px 50px -24px rgba(43, 29, 46, 0.4);
}
.about__gallery-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px -24px rgba(43, 29, 46, 0.4);
}
.about__gallery-tall img,
.about__gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__badge {
  position: absolute;
  bottom: -1rem;
  left: 0.75rem;
  z-index: 3;
  background: linear-gradient(135deg, var(--color-ink), var(--color-plum-700));
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: 0 24px 60px -18px rgba(43, 29, 46, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: right;
  display: flex;
  flex-direction: column;
}
@media (min-width: 40em) {
  .about__badge { bottom: -1.625rem; left: -1.625rem; padding: 1.375rem 1.75rem; }
}
.about__badge-value {
  color: var(--color-gold);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
}
.about__badge-star { font-size: 1.125rem; }
.about__badge-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Service Highlights
   ========================================================================== */
.highlights {
  padding-block: clamp(4rem, 8vw, 6.25rem);
  background: var(--color-cream);
}

.highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 48em) {
  .highlights__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.highlight-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #f0e9db;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease-out-strong), box-shadow 0.4s ease;
}
.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.highlight-card__media {
  height: clamp(14rem, 30vw, 18.75rem);
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}
.highlight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-card__body {
  padding: clamp(1.5rem, 3vw, 2.375rem) clamp(1.5rem, 3vw, 2.125rem);
  text-align: right;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.highlight-card__title {
  font-size: clamp(1.375rem, 2.4vw, 1.6875rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.highlight-card__desc {
  color: var(--color-ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}
.highlight-card__arrow-row {
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.services {
  padding-block: clamp(4rem, 8vw, 6.25rem);
  background: var(--color-white);
}

/* Mobile: stacked and centered. Desktop: RTL row — heading block stays in
   normal (unreversed) flex order so it reads at the right (inline-start in
   RTL) and the CTA lands at the far left (inline-end). A row-reverse here
   would double-flip against the inherited `direction: rtl` and push the
   button back to the right — deliberately avoided. */
.services__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
}
@media (min-width: 48em) {
  .services__head {
    flex-direction: row;
    align-items: center;
    text-align: right;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 40em) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 64em) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #efe9df;
  box-shadow: 0 10px 40px -12px rgba(43, 29, 46, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out-strong), box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}

.service-card__media {
  height: clamp(12.5rem, 25vw, 14.375rem);
  overflow: hidden;
  background: #f0f0f0;
  position: relative;
}
.service-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 29, 46, 0.55), transparent 55%);
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}
.service-card__number {
  position: absolute;
  bottom: 0.75rem;
  left: 1.25rem;
  z-index: 1;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
}

.service-card__body {
  padding: 1.75rem 1.75rem 1.875rem;
}
.service-card__title {
  color: var(--color-ink);
  font-size: 1.3125rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  text-align: right;
  letter-spacing: -0.01em;
}
.service-card__desc {
  color: #6b6258;
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: right;
  margin-bottom: 1.5rem;
}
.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-top: 1.125rem;
  border-top: 1px solid #f2ece2;
}
.service-card__cta {
  color: var(--color-ink);
  font-size: 0.875rem;
  font-weight: 700;
}
.service-card .icon-circle {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
}

/* ==========================================================================
   Partners logo wall
   ========================================================================== */
.partners {
  padding-block: clamp(4rem, 8vw, 6.25rem);
  background: var(--color-cream);
}

.partners__head {
  margin-bottom: 3rem;
  text-align: center;
}

/* Mobile: 2 per row. Tablet: 3 per row. Desktop: 6 per row. */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 40em) {
  .partners__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 64em) {
  .partners__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 6rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid #f0ece4;
  box-shadow: 0 8px 26px -12px rgba(43, 29, 46, 0.16);
  padding: 1rem 1.25rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.partner-logo:hover,
.partner-logo:focus-within {
  box-shadow: 0 16px 36px -14px rgba(43, 29, 46, 0.26);
  transform: translateY(-3px);
}

.partner-logo img {
  max-height: 3.125rem;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.partner-logo:hover img,
.partner-logo:focus-within img {
  transform: scale(1.06);
}
@media (min-width: 64em) {
  .partner-logo {
    min-height: 7.5rem;
    padding: 1.25rem 1.5rem;
  }
  .partner-logo img {
    max-height: 4.375rem;
  }
}

/* ==========================================================================
   Contact / Start Project
   ========================================================================== */
.contact {
  padding-block: clamp(3.5rem, 7vw, 3.75rem);
  padding-inline: 0;
  background: var(--color-cream-deep);
}

.contact__panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid #FFDD8B;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3rem);
  background: linear-gradient(30deg, #FFB7555C, #FFFFFF, #FFFFFF, #FFFFFF, #FFFFFF, #FFB75558);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 64em) {
  .contact__grid {
    grid-template-columns: repeat(auto-fit, minmax(22.5rem, 1fr));
    gap: 3.5rem;
    align-items: center;
  }
}

.contact__info {
  text-align: center;
}
@media (min-width: 64em) {
  .contact__info { text-align: right; }
}
.contact__info .eyebrow--teal {
  justify-content: center;
}
@media (min-width: 64em) {
  .contact__info .eyebrow--teal { justify-content: flex-end; flex-direction: row-reverse; }
}
.contact__info .section-desc { margin-inline: auto; }
@media (min-width: 64em) {
  .contact__info .section-desc { margin-inline: 0; }
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  margin-top: 2rem;
  align-items: flex-start;

}

/* Icon is the first DOM child, so with the inherited `direction: rtl` and a
   plain (unreversed) row it lands on the RIGHT of the label/value text —
   exactly the reading order Arabic expects. justify-content: flex-end pins
   the whole pair to the right edge on every breakpoint, not just desktop. */
.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.875rem;
  text-align: right;
}
.contact-item__icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #FFF1E0;
  border: 1px solid #FFE1BB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.contact-item__label {
  display: block;
  color: #94a3b8;
  font-size: 0.8125rem;
  margin-bottom: 0.125rem;
}
.contact-item__value {
  display: block;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 800;
}

.contact-form {
  background: var(--color-white);
  border: 1px solid #f0ece4;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 30em) {
  .contact-form__row { grid-template-columns: 1fr 1fr; }
}

.field {
  margin-bottom: 1rem;
}
.contact-form__row .field {
  margin-bottom: 0;
}

.field__input {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #e5e0d8;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-align: right;
  background: var(--color-white);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field__input:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.14);
}
.field__input--select {
  appearance: auto;
  color: var(--color-ink);
}
.field__input--textarea {
  resize: vertical;
}

.contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-ink);
  color: var(--color-white);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  direction: rtl;
  text-align: right;
}

/* Explicit RTL pin for the footer container and every child element
   (headings, paragraphs, link lists, sub-texts) — stated directly rather
   than relying on inheritance from body/html. */
.site-footer,
.site-footer .footer-brand,
.site-footer .footer-col,
.site-footer__grid,
.footer-col__title,
.footer-brand__desc,
.footer-col__list,
.footer-col__list a,
.footer-contact-list,
.footer-contact-list li,
.footer-contact-list li span:last-child,
.social-list,
.site-footer__bottom,
.site-footer__legal {
  direction: rtl;
  text-align: right;
}

/* Footer flows RTL on every breakpoint: brand column lands in the
   rightmost grid track (grid column 1 is inline-start, i.e. the right
   edge, under direction: rtl), with subsequent columns flowing left —
   already correct since no column is explicitly placed. Text/heading
   alignment is pinned right at all sizes rather than centering on mobile. */
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 40em) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 3rem;
  }
}

.footer-brand__logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  color: var(--color-white);
}
.footer-brand__logo-row img {
  height: 2.125rem;
  width: auto;
}
.footer-brand__logo-row span {
  font-size: 1.375rem;
  font-weight: 900;
}

.footer-brand__desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  max-width: 17.5rem;
  margin-inline: 0 0;
}

.social-list {
  display: flex;
  gap: 0.625rem;
  justify-content: flex-start;
}
.social-list a {
  width: 2.375rem;
  height: 2.375rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.social-list a:hover, .social-list a:focus-visible {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
}

.footer-col__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--color-white);
}

.footer-col__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    justify-content: flex-start;
    align-items: flex-start;
}
.footer-col__list a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer-col__list a:hover, .footer-col__list a:focus-visible, .footer-col__list a.active {
  color: var(--color-teal);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
}
/* Icon span is the first DOM child, so a plain row under the inherited
   direction: rtl already places it on the RIGHT of the text — a
   flex-direction: row-reverse here would double-flip it to the left, so
   it's deliberately not used. */
.footer-contact-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: right;
}
.footer-contact-list li span:first-child {
  font-size: 1.125rem;
  flex-shrink: 0;
}
.footer-contact-list li span:last-child {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.5;
}

.site-footer__bottom {
  padding-block: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
@media (min-width: 40em) {
  .site-footer__bottom { flex-direction: row; text-align: right; }
}
.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
}
.site-footer__legal {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-start;
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8125rem;
  text-decoration: none;
  transition: color 0.25s ease;
}
.site-footer__legal a:hover, .site-footer__legal a:focus-visible {
  color: var(--color-teal);
}

/* ==========================================================================
   Mobile/tablet vertical rhythm — extra breathing room between stacked
   Arabic text blocks (heading → description, label → value, etc.) so lines
   never read as crowded on small screens. Desktop spacing is untouched.
   ========================================================================== */
@media (max-width: 63.9375em) {
  p {
    line-height: 1.9;
  }

  .eyebrow {
    margin-bottom: 1.25rem;
  }

  .section-head {
    margin-bottom: 2.75rem;
  }

  .section-desc {
    margin-top: 1.25rem;
    line-height: 1.95;
  }

  .feature-list {
    gap: 1.5rem;
  }
  .feature__title {
    margin-bottom: 0.5rem;
  }
  .feature__desc {
    line-height: 1.8;
  }

  .highlight-card__body {
    gap: 1.75rem;
  }
  .highlight-card__title {
    margin-bottom: 1.25rem;
  }
  .highlight-card__desc {
    line-height: 1.9;
  }

  .service-card__body {
    padding-block: 2rem 2.125rem;
  }
  .service-card__title {
    margin-bottom: 1rem;
  }
  .service-card__desc {
    margin-bottom: 1.75rem;
    line-height: 1.85;
  }

  .stat-card__label {
    margin-top: 0.75rem;
    line-height: 1.5;
  }

  .contact-list {
    gap: 1.75rem;
  }
  .contact-item__label {
    margin-bottom: 0.375rem;
  }

  .footer-brand__desc {
    line-height: 2;
  }
  .footer-col__title {
    margin-bottom: 1.75rem;
  }
  .footer-col__list {
    gap: 0.875rem;
  }
  .footer-contact-list {
    gap: 1.25rem;
  }
}

/* ==========================================================================
   About page — Page banner / breadcrumb
   ========================================================================== */
.page-banner {
  position: relative;
  overflow: hidden;
  padding-block: clamp(7.5rem, 20vw, 10rem) clamp(2.5rem, 5vw, 3.25rem);
  background: radial-gradient(120% 120% at 80% 10%, var(--color-plum-700) 0%, var(--color-plum-800) 45%, var(--color-plum-900) 100%);
}
.page-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}
.page-banner__orb--a {
  top: -6rem;
  right: -4rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.35), transparent 65%);
}
.page-banner__orb--b {
  bottom: -7rem;
  left: -3rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.28), transparent 65%);
}
.page-banner__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-banner__title {
  color: var(--color-white);
  font-size: clamp(1.875rem, 5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}
.page-banner__crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
}
.page-banner__crumbs a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}
.page-banner__crumbs a:hover, .page-banner__crumbs a:focus-visible {
  color: var(--color-gold);
}
.page-banner__crumbs-sep {
  color: rgba(255, 255, 255, 0.35);
}
.page-banner__crumbs [aria-current="page"] {
  color: var(--color-gold);
}

/* ==========================================================================
   404 — Not Found page
   ========================================================================== */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-block: clamp(6rem, 14vw, 8rem);
}
.error-page__desc {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 28rem;
  margin: 1rem auto 0;
}
.error-page__action {
  margin-top: 2rem;
  display: inline-block;
}

/* ==========================================================================
   About page — Intro (التسويق على أصوله)
   ========================================================================== */
.intro {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 7.5rem);
  background: radial-gradient(130% 130% at 15% 0%, var(--color-plum-700) 0%, var(--color-plum-800) 48%, var(--color-plum-900) 100%);
}

.intro__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.intro__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
}
.intro__orb--a {
  top: -6rem;
  left: -4rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.26), transparent 65%);
  animation: orbA 16s ease-in-out infinite;
}
.intro__orb--b {
  bottom: -8rem;
  right: -5rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.2), transparent 65%);
  animation: orbB 18s ease-in-out infinite;
}
.intro__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(85% 85% at 50% 20%, #000 40%, transparent 100%);
  mask-image: radial-gradient(85% 85% at 50% 20%, #000 40%, transparent 100%);
}
.intro__beam {
  position: absolute;
  top: -12%;
  inset-inline-end: 6%;
  width: 20rem;
  height: 46rem;
  background: linear-gradient(180deg, rgba(255, 195, 0, 0.14), transparent 70%);
  transform: rotate(18deg);
  filter: blur(8px);
}

.intro__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 64em) {
  .intro__container {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    align-items: center;
  }
}

.intro__copy { text-align: center; }
@media (min-width: 64em) {
  .intro__copy { text-align: right; }
}

.intro__title {
  font-size: clamp(2.25rem, 6vw, 3.875rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-white);
}
.intro__title-accent {
  display: block;
  margin-top: 0.25rem;
}

.intro__lede {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}
.intro__lede-strong {
  color: var(--color-white);
  font-weight: 700;
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  line-height: 1.85;
}
.intro__lede-soft {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.9;
  max-width: 34rem;
  margin-inline: auto;
}
@media (min-width: 64em) {
  .intro__lede-soft { margin-inline: 0 0; }
}

.intro__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin: 2.25rem 0 0;
}
@media (min-width: 30em) {
  .intro__features { grid-template-columns: 1fr 1fr; }
}

.intro__feature {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9375rem 1.125rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s var(--ease-out-strong), border-color 0.35s ease, background 0.35s ease, opacity 0.7s var(--ease-out-strong);
}
@media (min-width: 64em) {
  .intro__feature { justify-content: flex-end; }
}
.intro__feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 195, 0, 0.35);
  background: rgba(255, 255, 255, 0.07);
}
.intro__feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 100% 0%, rgba(255, 195, 0, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.intro__feature:hover::before {
  opacity: 1;
}
.intro__feature-icon {
  position: relative;
  z-index: 1;
  width: 2.125rem;
  height: 2.125rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient-warm);
  color: var(--color-plum-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 900;
}
.intro__feature-label {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-white);
}

.intro__visual {
  position: relative;
  padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
}
.intro__frame-ring {
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  inset-inline-start: -1rem;
  inset-inline-end: 1.25rem;
  border: 1px solid rgba(255, 195, 0, 0.3);
  border-radius: var(--radius-xl);
}
.intro__frame {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: clamp(19rem, 36vw, 26.25rem);
  box-shadow: var(--shadow-lift);
}
.intro__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro__frame-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 30, 0.72) 0%, transparent 55%);
}

.intro__vision {
  position: absolute;
  z-index: 2;
  inset-inline-start: -0.75rem;
  inset-inline-end: 1.75rem;
  bottom: -1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.375rem 1.625rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(43, 29, 46, 0.94), rgba(20, 12, 24, 0.98));
  border: 1px solid rgba(255, 195, 0, 0.22);
  box-shadow: var(--shadow-lift);
  text-align: right;
}
@media (min-width: 40em) {
  .intro__vision {
    inset-inline-start: -2.25rem;
    bottom: -2.25rem;
    padding: 1.75rem 2rem;
  }
}
.intro__vision-year {
  flex-shrink: 0;
  font-size: clamp(2.125rem, 5vw, 2.875rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.intro__vision-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.intro__vision-title {
  display: block;
  color: var(--color-white);
  font-weight: 800;
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}
.intro__vision-desc {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8125rem;
  line-height: 1.8;
}

/* ==========================================================================
   About page — Story (عن مراسم التسويق)
   ========================================================================== */
.story {
  padding-block: clamp(4rem, 8vw, 6.25rem);
  background: var(--color-cream);
}

.story__lead {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  color: var(--color-plum-700);
  font-size: clamp(1.0625rem, 2.2vw, 1.3125rem);
  font-weight: 800;
  line-height: 1.9;
}
.story__desc {
  max-width: 40rem;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--color-ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.story__banner {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.5rem, 6vw, 3.75rem);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, var(--color-plum-700) 0%, var(--color-plum-800) 55%, var(--color-plum-900) 100%);
  box-shadow: var(--shadow-lift);
}
.story__banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255, 195, 0, 0.18), transparent 65%);
  pointer-events: none;
}
.story__banner-year {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(3.5rem, 12vw, 7rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.story__banner-label {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   About page — من نحن؟
   ========================================================================== */
.whoweare {
  padding-block: clamp(4.5rem, 9vw, 6.875rem);
  background: var(--color-white);
}

.whoweare__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 64em) {
  .whoweare__container {
    grid-template-columns: repeat(auto-fit, minmax(22.5rem, 1fr));
    gap: 4.375rem;
    align-items: center;
  }
}

.whoweare__copy { text-align: center; }
@media (min-width: 64em) {
  .whoweare__copy { text-align: right; }
  .whoweare__copy .eyebrow--orange { justify-content: flex-end; flex-direction: row-reverse; }
}
.whoweare__copy .eyebrow--orange { justify-content: center; }

.whoweare__media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: clamp(20rem, 42vw, 30rem);
  box-shadow: var(--shadow-lift);
}
.whoweare__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.whoweare__media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 30, 0.65), rgba(26, 15, 30, 0.1) 55%);
}

.whoweare__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 1.5rem;
}
.whoweare__play-icon {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.whoweare__play:hover .whoweare__play-icon,
.whoweare__play:focus-visible .whoweare__play-icon {
  transform: scale(1.08);
  background: var(--gradient-orange-red);
  border-color: transparent;
}
.whoweare__play-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.whoweare__play-title {
  color: var(--color-white);
  font-size: 1.0625rem;
  font-weight: 800;
}
.whoweare__play-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
}

.whoweare__bars {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  margin-top: 2rem;
}
.bar-item__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
@media (min-width: 64em) {
  .bar-item__row { justify-content: flex-end; flex-direction: row-reverse; }
}
.bar-item__label {
  color: var(--color-ink);
  font-weight: 700;
  font-size: 0.9375rem;
}
.bar-item__value {
  background: linear-gradient(135deg, var(--color-ink), var(--color-plum-700));
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25em 0.75em;
  border-radius: var(--radius-pill);
}
.bar-item__track {
  width: 100%;
  height: 0.5rem;
  border-radius: var(--radius-pill);
  background: #f0ece4;
  overflow: hidden;
}
.bar-item__fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--gradient-teal-navy);
  animation: lineGrow 1.4s var(--ease-out-strong) both;
  transform-origin: right;
}
.bar-item__fill--99 { width: 99%; }
.bar-item__fill--90 { width: 90%; }
.bar-item__fill--91 { width: 91%; }

/* ==========================================================================
   About page — حقائقنا وأرقامنا
   ========================================================================== */
.facts {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 6rem) clamp(3.5rem, 7vw, 5rem);
  background: radial-gradient(120% 120% at 15% 0%, var(--color-plum-700) 0%, var(--color-plum-800) 50%, var(--color-plum-900) 100%);
  overflow: visible;
}
.facts__pill {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: var(--color-white);
  font-weight: 800;
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  padding: 0.9em 2em;
  border-radius: var(--radius-pill);
  box-shadow: 0 16px 40px -12px rgba(13, 59, 102, 0.5);
  white-space: nowrap;
}
.facts__container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 1.5rem;
}
.facts__desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 34rem;
  margin: 0 auto clamp(2.5rem, 6vw, 3.5rem);
}

.facts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}
@media (min-width: 40em) {
  .facts__grid { grid-template-columns: repeat(4, 1fr); }
}

.fact-item__value {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.fact-item__label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.5em 1.125em;
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   About page — انضم إلينا
   ========================================================================== */
.join {
  padding-block: clamp(4rem, 8vw, 6.25rem);
  background: var(--color-white);
}
.join__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
}
.join__mail {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--color-ink);
}
.join__mail a {
  color: var(--color-navy);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.join__mail a:hover, .join__mail a:focus-visible {
  color: var(--color-teal);
}

.join__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  background: linear-gradient(150deg, rgba(13, 59, 102, 0.06), rgba(46, 196, 182, 0.08));
  border: 1px solid rgba(13, 59, 102, 0.12);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 6vw, 3.5rem);
}
@media (min-width: 48em) {
  .join__card {
    flex-direction: row-reverse;
    justify-content: space-between;
    text-align: right;
  }
}
.join__card-title {
  color: var(--color-ink);
  font-size: 1.375rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
}
.join__card-info .footer-contact-list li span:last-child {
  color: var(--color-ink-soft);
}
.join__card-info .footer-contact-list {
  align-items: center;
}
@media (min-width: 48em) {
  .join__card-info .footer-contact-list {
    align-items: flex-end;
  }
}
