/* ================================================================
   SOLO SPA — Editorial redesign
   Keeps the original brand palette and application behaviour while
   giving the public website an independent visual system.
   ================================================================ */

:root {
  --radius: 10px;
  --radius-lg: 18px;
  --eg-ink: #07150b;
  --eg-green: #2e8b4a;
  --eg-green-deep: #123e22;
  --eg-mint: #b9dfc4;
  --eg-paper: #f3f0e8;
  --eg-line: rgba(201, 165, 93, 0.24);
  --eg-display: var(--font-serif);
}

[data-theme="dark"] {
  --bg-body: #07150b;
  --bg-section: #0b1d10;
  --bg-section2: #102817;
  --bg-card: #0e2214;
  --cream: #f5f2e9;
  --cream-2: #d8e8dc;
  --text-light: #9ab2a0;
  --nav-bg: rgba(7, 21, 11, 0.93);
  --border: rgba(201, 165, 93, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-sm: 0 12px 34px rgba(0, 0, 0, 0.22);
}

[data-theme="light"] {
  --bg-body: #f3f0e8;
  --bg-section: #e9eee5;
  --bg-section2: #dfe9df;
  --bg-card: #fbfaf6;
  --cream: #102817;
  --cream-2: #244d30;
  --text-light: #5e7764;
  --nav-bg: rgba(243, 240, 232, 0.94);
  --border: rgba(167, 125, 53, 0.2);
  --shadow: 0 28px 70px rgba(29, 71, 39, 0.13);
  --shadow-sm: 0 12px 30px rgba(29, 71, 39, 0.09);
}

body.solo-eg-theme {
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 165, 93, 0.09), transparent 28rem),
    var(--bg-body);
}

.solo-eg-theme .container {
  width: min(100% - 48px, 1340px);
  max-width: none;
  padding: 0;
}

.solo-eg-theme .section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.solo-eg-theme .section__label,
.solo-eg-theme .page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.solo-eg-theme .section__label::before,
.solo-eg-theme .page-hero__label::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.solo-eg-theme .section__title {
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

html[lang="ar"] .solo-eg-theme .section__title {
  letter-spacing: 0;
  line-height: 1.3;
}

.solo-eg-theme .btn {
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 4px;
  letter-spacing: 0.09em;
}

.solo-eg-theme .btn--primary {
  box-shadow: 7px 7px 0 rgba(201, 165, 93, 0.18);
}

.solo-eg-theme .btn--primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 10px 10px 0 rgba(201, 165, 93, 0.24);
}

/* Floating editorial navigation */
.solo-eg-theme .nav {
  top: 16px;
  left: 3vw;
  right: 3vw;
  width: auto;
  min-height: 78px;
  padding: 8px 12px 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(6, 24, 11, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
}

html[dir="rtl"] .solo-eg-theme .nav {
  padding: 8px 18px 8px 12px;
}

.solo-eg-theme .nav.scrolled {
  top: 8px;
  padding: 6px 12px 6px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--nav-bg);
}

.solo-eg-theme .nav__logo-mark,
.solo-eg-theme .nav__logo-img {
  width: 66px;
  height: 66px;
}

.solo-eg-theme .nav__links {
  gap: clamp(10px, 1.35vw, 24px);
  padding: 0 12px;
}

.solo-eg-theme .nav__link {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.solo-eg-theme .nav__link::after {
  bottom: -9px;
  height: 3px;
}

.solo-eg-theme .nav__cta {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  color: #f5f2e9;
}

.solo-eg-theme .theme-toggle__track {
  border-radius: 5px;
}

/* Asymmetric split hero */
.solo-eg-theme .hero {
  min-height: max(760px, 100svh);
  justify-content: flex-start;
  background:
    linear-gradient(120deg, rgba(201, 165, 93, 0.08), transparent 42%),
    var(--bg-body);
  padding: 150px 6vw 94px;
}

.solo-eg-theme .hero::before {
  content: "SOLO";
  position: absolute;
  left: 4vw;
  bottom: -0.18em;
  z-index: 0;
  font-family: var(--eg-display);
  font-size: clamp(8rem, 20vw, 20rem);
  font-weight: 600;
  line-height: 0.72;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 165, 93, 0.16);
  pointer-events: none;
}

html[dir="rtl"] .solo-eg-theme .hero::before {
  left: auto;
  right: 4vw;
}

.solo-eg-theme .hero__bg {
  inset: 118px 4vw 46px auto;
  width: 50%;
  border-radius: 16px 16px 110px 16px;
  box-shadow: var(--shadow);
}

html[dir="rtl"] .solo-eg-theme .hero__bg {
  right: auto;
  left: 4vw;
  border-radius: 16px 16px 16px 110px;
}

.solo-eg-theme .hero__bg picture,
.solo-eg-theme .hero__bg-img {
  border-radius: inherit;
}

.solo-eg-theme .hero__gradient {
  background:
    linear-gradient(180deg, rgba(3, 18, 7, 0.06), rgba(3, 18, 7, 0.43)),
    linear-gradient(90deg, rgba(3, 18, 7, 0.28), transparent 42%);
}

.solo-eg-theme .hero__content {
  width: 44%;
  max-width: 680px;
  padding: 0;
  text-align: start;
}

.solo-eg-theme .hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
  letter-spacing: 0.22em;
  color: var(--gold-light);
}

.solo-eg-theme .hero__eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--gold);
}

.solo-eg-theme .hero__title {
  max-width: 650px;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: var(--green-light);
  overflow: visible;
}

.solo-eg-theme .hero .hero__title .reveal-line {
  color: var(--green-light);
  text-shadow: 0 3px 26px rgba(0, 0, 0, 0.16);
}

.solo-eg-theme .hero .hero__title .reveal-line.italic {
  color: var(--gold-light);
}

html[lang="ar"] .solo-eg-theme .hero__title {
  font-size: clamp(3rem, 5.3vw, 5.7rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.solo-eg-theme .hero__title .italic {
  margin-inline-start: clamp(20px, 5vw, 78px);
}

.solo-eg-theme .hero__subtitle {
  margin: 0 0 34px;
  max-width: 520px;
  color: var(--cream-2);
}

[data-theme="light"] .solo-eg-theme .hero__eyebrow {
  color: var(--gold-dark);
}

[data-theme="light"] .solo-eg-theme .hero .hero__title .reveal-line {
  color: var(--green-dark);
  text-shadow: 0 3px 24px rgba(26, 92, 48, 0.12);
}

[data-theme="light"] .solo-eg-theme .hero .hero__title .reveal-line.italic {
  color: var(--gold-dark);
}

[data-theme="light"] .solo-eg-theme .hero__subtitle {
  color: #244d30;
}

.solo-eg-theme .hero__actions {
  justify-content: flex-start;
}

.solo-eg-theme .hero__scroll-indicator {
  left: 6vw;
  transform: none;
  align-items: flex-start;
}

html[dir="rtl"] .solo-eg-theme .hero__scroll-indicator {
  left: auto;
  right: 6vw;
}

.solo-eg-theme .hero__card {
  border-radius: 8px;
  background: rgba(7, 21, 11, 0.86);
  border: 1px solid rgba(227, 199, 125, 0.25);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.solo-eg-theme .hero__card strong {
  color: #f5f2e9;
}

.solo-eg-theme .hero__card small {
  color: #ddd1ad;
}

.solo-eg-theme .hero__card--1 {
  left: auto;
  right: 40%;
  bottom: 11%;
}

.solo-eg-theme .hero__card--2 {
  right: 1%;
  top: 27%;
}

html[dir="rtl"] .solo-eg-theme .hero__card--1 {
  right: auto;
  left: 40%;
}

html[dir="rtl"] .solo-eg-theme .hero__card--2 {
  right: auto;
  left: 1%;
}

.solo-eg-theme .marquee-wrap {
  padding: 0;
  background: var(--eg-green);
  border: 0;
  transform: rotate(-1deg) scale(1.02);
  position: relative;
  z-index: 9;
}

.solo-eg-theme .marquee-track {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.solo-eg-theme .marquee-track .sep {
  color: var(--gold-light);
}

/* Story section */
.solo-eg-theme .about {
  background:
    radial-gradient(circle at 5% 2%, rgba(201, 165, 93, 0.18), transparent 30rem),
    linear-gradient(110deg, #f7f1e3 0%, #fff 55%, #f4faf5 100%);
  color: #183e28;
}

.solo-eg-theme .about-story {
  width: min(100% - 64px, 1500px);
}

.solo-eg-theme .about-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(56px, 7vw, 118px);
  align-items: stretch;
}

.solo-eg-theme .about-story__media {
  position: relative;
  isolation: isolate;
  min-height: 780px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 26px 60px rgba(63, 73, 39, 0.14);
}

.solo-eg-theme .about-story__slides {
  position: absolute;
  inset: 0;
}

.solo-eg-theme .about-story__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity 0.75s ease, visibility 0.75s ease, transform 1.1s ease;
}

.solo-eg-theme .about-story__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.solo-eg-theme .about-story__media img {
  width: 100%;
  height: 100%;
  min-height: 780px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}

.solo-eg-theme .about-story__media:hover img {
  transform: scale(1.025);
}

.solo-eg-theme .about-story__slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 203, 127, 0.55);
  border-radius: 50%;
  color: #f1cb7f;
  background: rgba(7, 21, 11, 0.68);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.solo-eg-theme .about-story__slider-arrow:hover {
  color: #07150b;
  background: var(--gold);
  transform: translateY(-50%) scale(1.06);
}

.solo-eg-theme .about-story__slider-arrow--prev {
  left: 22px;
}

.solo-eg-theme .about-story__slider-arrow--next {
  right: 22px;
}

html[dir="rtl"] .solo-eg-theme .about-story__slider-arrow--prev {
  left: auto;
  right: 22px;
}

html[dir="rtl"] .solo-eg-theme .about-story__slider-arrow--next {
  right: auto;
  left: 22px;
}

.solo-eg-theme .about-story__slider-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(7, 21, 11, 0.58);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.solo-eg-theme .about-story__slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}

.solo-eg-theme .about-story__slider-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold-light);
}

.solo-eg-theme .about-story__badge {
  position: absolute;
  z-index: 3;
  top: 34px;
  inset-inline-end: 34px;
  width: clamp(160px, 13vw, 220px);
  aspect-ratio: 1;
  padding: 22px;
  border: 2px solid rgba(29, 116, 56, 0.34);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #1d7438;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(16, 45, 32, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.solo-eg-theme .about-story__badge-num {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 0.85;
}

.solo-eg-theme .about-story__badge-label {
  max-width: 160px;
  font-size: clamp(0.8rem, 1.1vw, 1.05rem);
  font-weight: 600;
  line-height: 1.3;
}

.solo-eg-theme .about-story__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0 18px;
}

.solo-eg-theme .about-story__eyebrow {
  margin: 0 0 28px;
  color: #a77d35;
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.solo-eg-theme .about-story__title {
  margin: 0;
  color: #1d7438;
  font-family: var(--font-serif);
  font-size: clamp(3.15rem, 5vw, 5.6rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

html[lang="ar"] .solo-eg-theme .about-story__title {
  font-family: var(--font-sans);
  font-size: clamp(2.65rem, 4.5vw, 4.7rem);
  line-height: 1.3;
  letter-spacing: 0;
}

.solo-eg-theme .about-story__title em {
  color: inherit;
  font-style: normal;
}

.solo-eg-theme .about-story__ornament {
  position: relative;
  width: 280px;
  height: 74px;
  margin: 26px 0 22px;
}

.solo-eg-theme .about-story__ornament::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 15px 34px rgba(33, 86, 48, 0.1);
}

.solo-eg-theme .about-story__ornament span {
  position: absolute;
  top: 32px;
  left: 55px;
  width: 205px;
  height: 3px;
  background: linear-gradient(90deg, #1d7438, #c9a55d);
}

html[dir="rtl"] .solo-eg-theme .about-story__ornament::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .solo-eg-theme .about-story__ornament span {
  left: auto;
  right: 55px;
}

.solo-eg-theme .about-story__body {
  max-width: 790px;
  margin: 0;
  color: #4c6656;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 2;
}

.solo-eg-theme .about-story__locations {
  width: 100%;
  margin-top: auto;
  padding-top: clamp(44px, 5vw, 76px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
}

.solo-eg-theme .about-story__stats {
  margin-top: clamp(52px, 6vw, 88px);
  padding: clamp(34px, 4vw, 54px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  color: #0d2618;
  background: #e3f1e8;
}

.solo-eg-theme .about-story__stat {
  min-width: 0;
  padding-inline-start: clamp(20px, 2.6vw, 38px);
  border-inline-start: 4px solid #1d7438;
}

.solo-eg-theme .about-story__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.solo-eg-theme .about-story__stat-label {
  display: block;
  margin-top: 16px;
  color: #326b45;
  font-size: clamp(0.78rem, 1.15vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.solo-eg-theme .about-location {
  --about-icon-cutout: #fff;
  --about-float-base: 0px;
  position: relative;
  isolation: isolate;
  min-height: 300px;
  padding: 44px 30px 38px;
  overflow: hidden;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  will-change: transform;
  animation: aboutLocationFloat 5.2s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.solo-eg-theme .about-location::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -55%;
  bottom: -55%;
  left: -58%;
  width: 34%;
  pointer-events: none;
  opacity: 0;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  animation: aboutLocationShine 6.4s ease-in-out infinite;
}

.solo-eg-theme .about-location:hover {
  animation-play-state: paused;
}

.solo-eg-theme .about-location--light {
  color: #0c1d13;
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid rgba(203, 164, 94, 0.28);
  box-shadow: 0 24px 65px rgba(33, 86, 48, 0.1);
}

.solo-eg-theme .about-location--dark {
  --about-icon-cutout: #102d20;
  --about-float-base: 34px;
  min-height: 278px;
  color: #efc77d;
  background: #102d20;
  border: 1px solid rgba(239, 199, 125, 0.35);
  box-shadow: 0 26px 60px rgba(16, 45, 32, 0.2);
  animation-delay: -2.6s;
}

.solo-eg-theme .about-location--dark:hover {
  animation-play-state: paused;
}

.solo-eg-theme .about-location__pattern {
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -105px;
  width: 270px;
  height: 270px;
  transform: translateX(-50%);
  opacity: 0.1;
  border: 2px solid #efc77d;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 13px, #efc77d 14px 15px, transparent 16px 26px),
    repeating-conic-gradient(from 22.5deg, transparent 0 12deg, #efc77d 13deg 14deg, transparent 15deg 30deg);
  animation: aboutLocationPattern 22s linear infinite;
}

.solo-eg-theme .about-location__icon {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 66px;
  margin-bottom: 20px;
  color: currentColor;
  transform-origin: 50% 80%;
  animation: aboutLocationPin 3.2s ease-in-out infinite;
}

.solo-eg-theme .about-location__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.solo-eg-theme .about-location strong {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: currentColor;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
}

.solo-eg-theme .about-location > span:last-child {
  position: relative;
  z-index: 1;
  color: #426050;
  font-size: clamp(0.9rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

.solo-eg-theme .about-location--dark > span:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.solo-eg-theme .about-location--dark .about-location__icon {
  animation-delay: -1.6s;
}

@keyframes aboutLocationFloat {
  0%, 100% {
    transform: translate3d(0, var(--about-float-base), 0) rotate(-0.12deg);
  }
  50% {
    transform: translate3d(0, calc(var(--about-float-base) - 13px), 0) rotate(0.12deg);
  }
}

@keyframes aboutLocationPin {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 8px 9px rgba(17, 55, 31, 0.08));
  }
  48% {
    transform: translateY(-8px) scale(1.035);
    filter: drop-shadow(0 14px 12px rgba(17, 55, 31, 0.16));
  }
  58% {
    transform: translateY(-6px) scale(1.02);
  }
}

@keyframes aboutLocationShine {
  0%, 18% {
    left: -58%;
    opacity: 0;
  }
  28% {
    opacity: 0.55;
  }
  48%, 100% {
    left: 126%;
    opacity: 0;
  }
}

@keyframes aboutLocationPattern {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

/* Services: two-column editorial cards */
.solo-eg-theme .services {
  background:
    radial-gradient(circle at 92% 4%, rgba(201, 165, 93, 0.13), transparent 26rem),
    var(--bg-body);
}

.solo-eg-theme .services__bg-shape {
  top: 70px;
  right: 3vw;
  width: 160px;
  height: 160px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
}

.solo-eg-theme .services__bg-shape::before,
.solo-eg-theme .services__bg-shape::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid var(--border);
  border-radius: inherit;
}

.solo-eg-theme .services__bg-shape::after {
  inset: 48px;
}

.solo-eg-theme .services__tabs {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 58px;
  padding: 6px;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--bg-card);
}

.solo-eg-theme .tab-btn {
  padding: 11px 22px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--text-light);
  box-shadow: none;
}

.solo-eg-theme .tab-btn.active {
  background: linear-gradient(135deg, var(--eg-green-deep), var(--eg-green));
  color: var(--gold-light);
  box-shadow: none;
}

.solo-eg-theme .services-slider__track {
  gap: 24px;
}

.solo-eg-theme .service-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 460px;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(170px, 42%) minmax(0, 58%);
  min-height: 322px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.solo-eg-theme .services--show-all .services-slider__track {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.solo-eg-theme .service-card--link:hover {
  transform: translateY(-5px);
  box-shadow: 10px 12px 0 rgba(201, 165, 93, 0.18);
}

.solo-eg-theme .service-card__img {
  height: 100%;
  min-height: 322px;
}

.solo-eg-theme .service-card__body {
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
}

.solo-eg-theme .service-card__tag {
  order: -1;
}

.solo-eg-theme .service-card__title {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

html[lang="ar"] .solo-eg-theme .service-card__title {
  line-height: 1.45;
}

.solo-eg-theme .service-card__footer {
  margin-top: auto;
}

.solo-eg-theme .services-slider__arrow {
  width: 52px;
  height: 64px;
  border-radius: 4px;
}

/* Home highlights */
.solo-eg-theme .solo-highlights {
  position: relative;
  isolation: isolate;
  width: calc(100% - 36px);
  min-height: 700px;
  margin: 18px;
  padding: clamp(96px, 9vw, 146px) clamp(34px, 6vw, 110px);
  overflow: hidden;
  border-radius: 38px 38px 0 0;
  background:
    radial-gradient(circle at 88% 72%, rgba(137, 151, 73, 0.42), transparent 31%),
    radial-gradient(circle at 9% 8%, rgba(201, 165, 93, 0.18), transparent 28%),
    linear-gradient(115deg, #182318 0%, #0c2a1f 52%, #135b31 100%);
  box-shadow: inset 0 0 0 1px rgba(234, 198, 128, 0.1);
}

.solo-eg-theme .solo-highlights::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 26px;
  border: 1px solid rgba(234, 198, 128, 0.2);
  border-bottom: 0;
  border-radius: 32px 32px 0 0;
  pointer-events: none;
}

.solo-eg-theme .solo-highlights::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 560px;
  height: 560px;
  right: -160px;
  bottom: -270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 165, 93, 0.22), transparent 67%);
  filter: blur(8px);
  pointer-events: none;
}

html[dir="rtl"] .solo-eg-theme .solo-highlights::after {
  right: auto;
  left: -160px;
}

.solo-eg-theme .solo-highlights__sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.solo-eg-theme .solo-highlights__grid {
  width: min(100%, 1560px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 38px);
}

.solo-eg-theme .solo-highlight-card {
  min-height: 220px;
  padding: 28px 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f8f1e5;
  text-align: center;
  border: 1px solid rgba(238, 226, 202, 0.2);
  border-radius: 24px;
  background: rgba(238, 236, 217, 0.105);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.solo-eg-theme .solo-highlight-card:hover {
  transform: translateY(-8px);
  color: #fff;
  border-color: rgba(239, 201, 128, 0.52);
  background: rgba(238, 236, 217, 0.17);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.2);
}

.solo-eg-theme .solo-highlight-card__icon {
  position: relative;
  isolation: isolate;
  width: 78px;
  height: 78px;
  margin-bottom: 27px;
  display: grid;
  place-items: center;
  color: #edc981;
  border: 1px solid rgba(237, 201, 129, 0.34);
  border-radius: 50%;
  background: rgba(230, 190, 112, 0.14);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.18);
  animation: soloHighlightIconFloat 3.8s ease-in-out infinite;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.solo-eg-theme .solo-highlight-card__icon::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -8px;
  border: 1px solid rgba(237, 201, 129, 0.36);
  border-radius: inherit;
  opacity: 0;
  animation: soloHighlightIconPulse 3.8s ease-out infinite;
}

.solo-eg-theme .solo-highlight-card:nth-child(2n) .solo-highlight-card__icon,
.solo-eg-theme .solo-highlight-card:nth-child(2n) .solo-highlight-card__icon::after {
  animation-delay: -0.9s;
}

.solo-eg-theme .solo-highlight-card:nth-child(3n) .solo-highlight-card__icon,
.solo-eg-theme .solo-highlight-card:nth-child(3n) .solo-highlight-card__icon::after {
  animation-delay: -1.8s;
}

.solo-eg-theme .solo-highlight-card:nth-child(4n) .solo-highlight-card__icon,
.solo-eg-theme .solo-highlight-card:nth-child(4n) .solo-highlight-card__icon::after {
  animation-delay: -2.7s;
}

.solo-eg-theme .solo-highlight-card:hover .solo-highlight-card__icon {
  background: rgba(230, 190, 112, 0.22);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
}

.solo-eg-theme .solo-highlight-card__icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: center;
  animation: soloHighlightGlyphSway 4.6s ease-in-out infinite;
}

.solo-eg-theme .solo-highlight-card:nth-child(even) .solo-highlight-card__icon svg {
  animation-direction: reverse;
  animation-delay: -1.2s;
}

@keyframes soloHighlightIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  45% {
    transform: translateY(-9px) rotate(-2deg);
  }
  60% {
    transform: translateY(-7px) rotate(2deg);
  }
}

@keyframes soloHighlightIconPulse {
  0%, 20% {
    opacity: 0;
    transform: scale(0.82);
  }
  45% {
    opacity: 0.55;
  }
  78%, 100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes soloHighlightGlyphSway {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  35% {
    transform: rotate(-5deg) scale(1.04);
  }
  68% {
    transform: rotate(4deg) scale(0.98);
  }
}

.solo-eg-theme .solo-highlight-card strong {
  color: inherit;
  font-size: clamp(1.08rem, 1.45vw, 1.42rem);
  font-weight: 700;
  line-height: 1.35;
}

html[lang="ar"] .solo-eg-theme .solo-highlight-card strong {
  line-height: 1.65;
}

/* Full-width promise block */
.solo-eg-theme .parallax-banner {
  width: min(94%, 1480px);
  height: min(680px, 72vw);
  min-height: 460px;
  margin: 0 auto;
  border-radius: 14px 120px 14px 14px;
}

html[dir="rtl"] .solo-eg-theme .parallax-banner {
  border-radius: 120px 14px 14px 14px;
}

.solo-eg-theme .parallax-banner__bg {
  filter: brightness(0.42) saturate(0.8);
}

.solo-eg-theme .parallax-banner__content {
  max-width: 840px;
}

.solo-eg-theme .parallax-banner__title {
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.92;
}

/* Visual Stories: balanced desktop grid, swipeable mobile reels */
.solo-eg-theme .gallery--videos {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(201, 165, 93, 0.13), transparent 25rem),
    radial-gradient(circle at 92% 86%, rgba(46, 139, 74, 0.1), transparent 28rem),
    var(--bg-section);
}

.solo-eg-theme .gallery--videos .section__header {
  margin-bottom: clamp(38px, 5vw, 68px);
}

.solo-eg-theme .gallery__videos-slider {
  padding-inline: 58px;
}

.solo-eg-theme .gallery__grid--videos {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 8px 4px 24px;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(18px, 2.3vw, 32px);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.solo-eg-theme .gallery__grid--videos::-webkit-scrollbar {
  display: none;
}

.solo-eg-theme .gallery__grid--videos .gallery__video-card {
  flex: 0 0 clamp(310px, 29vw, 370px);
  width: clamp(310px, 29vw, 370px);
  max-height: none;
  aspect-ratio: 9 / 14;
  scroll-snap-align: start;
  border: 1px solid rgba(201, 165, 93, 0.28);
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(7, 21, 11, 0.16);
  transform: none;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.solo-eg-theme .gallery__video-card:nth-child(even) {
  transform: none;
}

.solo-eg-theme .gallery__video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 165, 93, 0.62);
  box-shadow: 0 30px 70px rgba(7, 21, 11, 0.24);
}

.solo-eg-theme .gallery__video-thumb img,
.solo-eg-theme .gallery__video {
  transition: transform 0.7s ease;
}

.solo-eg-theme .gallery__video-card:hover .gallery__video-thumb img,
.solo-eg-theme .gallery__video-card:hover .gallery__video {
  transform: scale(1.035);
}

.solo-eg-theme .gallery__video-toggle {
  background: linear-gradient(180deg, rgba(7, 21, 11, 0.06), rgba(7, 21, 11, 0.28));
}

.solo-eg-theme .gallery__video-icon {
  width: 70px;
  height: 70px;
  color: #f1cb7f;
  border-color: rgba(241, 203, 127, 0.85);
  background: rgba(7, 21, 11, 0.66);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.solo-eg-theme .gallery__video-title {
  padding: 76px 26px 24px;
  color: #fff8e9;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: linear-gradient(transparent, rgba(7, 21, 11, 0.9));
}

.solo-eg-theme .gallery__nav {
  display: flex !important;
  width: 48px;
  height: 48px;
  border-color: rgba(201, 165, 93, 0.72);
  background: #123e22;
  color: #f1cb7f;
  box-shadow: 0 13px 34px rgba(7, 21, 11, 0.2);
}

.solo-eg-theme .gallery__nav[hidden] {
  display: none !important;
}

.solo-eg-theme .gallery__nav:hover {
  background: var(--gold);
  color: #07150b;
}

.solo-eg-theme .testimonials {
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 165, 93, 0.13), transparent 28rem),
    var(--eg-green-deep);
}

.solo-eg-theme .testimonials .section__title,
.solo-eg-theme .testimonials .section__label {
  color: #f5f2e9;
}

.solo-eg-theme .testimonial-card {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.15);
}

.solo-eg-theme .testimonial-card__text,
.solo-eg-theme .testimonial-card__author strong {
  color: #f5f2e9;
}

/* Home: keep the booking and Find Us sections visually connected. */
.solo-eg-theme .booking.section {
  padding-bottom: 0;
}

.solo-eg-theme .contact.section {
  padding-top: 40px;
}

/* Inner page hero */
.solo-eg-theme .page-hero {
  min-height: 680px;
  padding: 160px 5vw 70px;
  display: flex;
  align-items: flex-end;
  background: var(--bg-section);
  overflow: hidden;
}

.solo-eg-theme .page-hero::after {
  content: "";
  position: absolute;
  left: 5vw;
  right: 5vw;
  bottom: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 3;
}

.solo-eg-theme .page-hero__bg {
  inset: 112px 4vw 58px 47%;
  border-radius: 10px 10px 100px 10px;
  background-position: center;
}

html[dir="rtl"] .solo-eg-theme .page-hero__bg {
  inset: 112px 47% 58px 4vw;
  border-radius: 10px 10px 10px 100px;
}

.solo-eg-theme .page-hero__overlay {
  background: linear-gradient(90deg, var(--bg-section) 2%, rgba(7, 21, 11, 0.8) 42%, transparent 70%);
}

html[dir="rtl"] .solo-eg-theme .page-hero__overlay {
  background: linear-gradient(-90deg, var(--bg-section) 2%, rgba(7, 21, 11, 0.8) 42%, transparent 70%);
}

.solo-eg-theme .page-hero__content {
  width: min(44%, 670px);
  margin: 0;
  padding: 0;
}

.solo-eg-theme .page-hero__title {
  font-size: clamp(3.1rem, 6.2vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

html[lang="ar"] .solo-eg-theme .page-hero__title {
  line-height: 1.28;
  letter-spacing: 0;
}

.solo-eg-theme .page-hero--compact {
  min-height: 520px;
}

/* Offer/package pages */
.solo-eg-theme .offers-section {
  background:
    linear-gradient(90deg, transparent 49.95%, var(--border) 50%, transparent 50.05%),
    var(--bg-body);
}

.solo-eg-theme .offer-featured {
  border-radius: 12px 100px 12px 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

html[dir="rtl"] .solo-eg-theme .offer-featured {
  border-radius: 100px 12px 12px 12px;
}

.solo-eg-theme .offer-card,
.solo-eg-theme .blog-card,
.solo-eg-theme .contact-page__card {
  border-radius: 7px;
  box-shadow: var(--shadow-sm);
}

.solo-eg-theme .offer-card:hover,
.solo-eg-theme .blog-card:hover,
.solo-eg-theme .contact-page__card:hover {
  transform: translateY(-5px);
  box-shadow: 9px 10px 0 rgba(201, 165, 93, 0.17);
}

.solo-eg-theme .offer-card__img,
.solo-eg-theme .blog-card__img {
  border-radius: 0;
}

/* Details, forms and content */
.solo-eg-theme .service-detail__hero {
  min-height: 760px;
  align-items: center;
  padding: 150px 0 70px;
}

.solo-eg-theme .service-detail__hero-bg {
  inset: 110px 4vw 50px 44%;
  border-radius: 12px 12px 110px 12px;
}

html[dir="rtl"] .solo-eg-theme .service-detail__hero-bg {
  inset: 110px 44% 50px 4vw;
  border-radius: 12px 12px 12px 110px;
}

.solo-eg-theme .service-detail__hero-overlay {
  background: linear-gradient(90deg, var(--bg-body) 6%, rgba(7, 21, 11, 0.9) 45%, transparent 76%);
}

html[dir="rtl"] .solo-eg-theme .service-detail__hero-overlay {
  background: linear-gradient(-90deg, var(--bg-body) 6%, rgba(7, 21, 11, 0.9) 45%, transparent 76%);
}

.solo-eg-theme .service-detail__hero-content {
  padding-bottom: 0;
}

.solo-eg-theme .service-detail__hero-copy {
  position: relative;
  width: min(620px, calc(44vw - max(24px, (100vw - 1340px) / 2) - 32px));
  padding: clamp(24px, 2.4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(201, 165, 93, 0.3);
  border-inline-start: 4px solid var(--gold);
  border-radius: 6px 44px 6px 6px;
  background:
    linear-gradient(135deg, rgba(16, 45, 32, 0.88), rgba(7, 21, 11, 0.54)),
    rgba(7, 21, 11, 0.52);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

html[dir="rtl"] .solo-eg-theme .service-detail__hero-copy {
  border-radius: 44px 6px 6px 6px;
}

.solo-eg-theme .service-detail__hero-copy::after {
  content: "";
  position: absolute;
  inset-inline-end: -42px;
  bottom: -58px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(201, 165, 93, 0.2);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px rgba(201, 165, 93, 0.055),
    0 0 0 48px rgba(201, 165, 93, 0.035);
  pointer-events: none;
}

.solo-eg-theme .service-detail__back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 26px;
  padding: 9px 16px;
  border: 1px solid rgba(138, 224, 163, 0.38);
  border-radius: 999px;
  color: #aaf0bd;
  background: rgba(138, 224, 163, 0.08);
  font-weight: 600;
}

.solo-eg-theme .service-detail__back:hover {
  color: #07150b;
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.solo-eg-theme .service-detail__hero .service-card__tag {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 13px;
  border: 1px solid rgba(201, 165, 93, 0.42);
  border-radius: 4px;
  color: var(--gold-light);
  background: rgba(201, 165, 93, 0.1);
  letter-spacing: 0.18em;
}

.solo-eg-theme .service-detail__title {
  max-width: 650px;
  margin: 0;
  font-size: clamp(3rem, 4.6vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

html[lang="ar"] .solo-eg-theme .service-detail__title {
  line-height: 1.25;
  letter-spacing: 0;
}

.solo-eg-theme .service-detail__meta:not(:empty) {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.solo-eg-theme .service-detail__sidebar,
.solo-eg-theme .contact-page__form-wrap {
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.solo-eg-theme input,
.solo-eg-theme select,
.solo-eg-theme textarea {
  border-radius: 4px;
}

.solo-eg-theme .faq-item,
.solo-eg-theme .service-detail__faq {
  border-radius: 4px;
}

/* Geometric footer */
.solo-eg-theme .footer--rich {
  width: calc(100% - 32px);
  margin: 16px;
  border-radius: 12px;
  background: #07150b;
  overflow: hidden;
}

.solo-eg-theme .footer--rich::before {
  opacity: 0.5;
}

.solo-eg-theme .footer__top {
  padding-top: 96px;
}

.solo-eg-theme .footer__grid {
  grid-template-columns: 1.35fr repeat(4, minmax(130px, 0.8fr));
}

.solo-eg-theme .footer__brand {
  padding-inline-end: 42px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.12);
}

.solo-eg-theme .footer__bottom {
  margin: 36px;
  padding: 24px 0 8px;
}

.solo-eg-theme .footer__legal-link--featured {
  color: var(--gold-light);
  font-weight: 700;
}

.solo-eg-theme .footer__legal-link--featured:hover {
  color: #fff;
}

.solo-eg-theme .legal-page__section h2 {
  color: var(--gold);
}

/* RTL motion and direction refinements */
html[dir="rtl"] .solo-eg-theme .section__label::before,
html[dir="rtl"] .solo-eg-theme .page-hero__label::before,
html[dir="rtl"] .solo-eg-theme .hero__eyebrow::before {
  order: 2;
}

html[dir="rtl"] .solo-eg-theme .service-card__footer,
html[dir="rtl"] .solo-eg-theme .footer__links a {
  direction: rtl;
}

@media (max-width: 1180px) {
  .solo-eg-theme .nav__links {
    gap: 10px;
  }

  .solo-eg-theme .nav__link {
    font-size: 0.64rem;
  }

  .solo-eg-theme .nav__cta {
    display: none;
  }

  .solo-eg-theme .hero__content {
    width: 47%;
  }

  .solo-eg-theme .hero__bg {
    width: 47%;
  }

  .solo-eg-theme .service-card {
    min-width: 400px;
  }

  .solo-eg-theme .solo-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solo-eg-theme .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .solo-eg-theme .nav {
    left: 18px;
    right: 18px;
    top: 12px;
  }

  .solo-eg-theme .nav.scrolled {
    top: 7px;
  }

  .solo-eg-theme .nav__links {
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--nav-bg);
    box-shadow: var(--shadow);
  }

  .solo-eg-theme .nav__link {
    font-size: 0.82rem;
  }

  .solo-eg-theme .nav__hamburger {
    display: flex;
  }

  .solo-eg-theme .hero {
    min-height: 860px;
    align-items: flex-end;
    padding: 150px 34px 88px;
  }

  .solo-eg-theme .hero__bg {
    inset: 106px 20px 24px;
    width: auto;
    border-radius: 12px 12px 76px 12px;
  }

  html[dir="rtl"] .solo-eg-theme .hero__bg {
    inset: 106px 20px 24px;
    border-radius: 12px 12px 12px 76px;
  }

  .solo-eg-theme .hero__gradient {
    background: linear-gradient(180deg, rgba(3, 18, 7, 0.18), rgba(3, 18, 7, 0.91) 78%);
  }

  .solo-eg-theme .hero__content {
    width: 100%;
    max-width: 690px;
    color: #fff;
  }

  .solo-eg-theme .hero__title {
    color: #fff;
  }

  [data-theme="light"] .solo-eg-theme .hero .hero__title .reveal-line,
  [data-theme="dark"] .solo-eg-theme .hero .hero__title .reveal-line {
    color: var(--green-light);
    text-shadow: 0 3px 24px rgba(0, 0, 0, 0.48);
  }

  [data-theme="light"] .solo-eg-theme .hero .hero__title .reveal-line.italic,
  [data-theme="dark"] .solo-eg-theme .hero .hero__title .reveal-line.italic {
    color: var(--gold-light);
  }

  .solo-eg-theme .hero__subtitle {
    color: rgba(255, 255, 255, 0.76);
  }

  .solo-eg-theme .hero__card,
  .solo-eg-theme .hero__scroll-indicator {
    display: none;
  }

  .solo-eg-theme .about {
    background:
      radial-gradient(circle at 5% 2%, rgba(201, 165, 93, 0.18), transparent 30rem),
      linear-gradient(110deg, #f7f1e3 0%, #fff 55%, #f4faf5 100%);
  }

  .solo-eg-theme .about-story__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .solo-eg-theme .about-story__media,
  .solo-eg-theme .about-story__media img {
    min-height: 660px;
    height: min(100vw, 760px);
  }

  .solo-eg-theme .about-story__content {
    padding-bottom: 34px;
  }

  .solo-eg-theme .about-story__locations {
    margin-top: 0;
    padding-top: 54px;
  }

  .solo-eg-theme .services--show-all .services-slider__track {
    grid-template-columns: 1fr;
  }

  .solo-eg-theme .solo-highlights {
    padding: 82px 42px;
  }

  .solo-eg-theme .page-hero {
    min-height: 700px;
    padding: 140px 32px 68px;
  }

  .solo-eg-theme .page-hero__bg,
  html[dir="rtl"] .solo-eg-theme .page-hero__bg {
    inset: 104px 20px 36px;
    border-radius: 12px 12px 74px 12px;
  }

  html[dir="rtl"] .solo-eg-theme .page-hero__bg {
    border-radius: 12px 12px 12px 74px;
  }

  .solo-eg-theme .page-hero__overlay,
  html[dir="rtl"] .solo-eg-theme .page-hero__overlay {
    background: linear-gradient(180deg, rgba(4, 15, 7, 0.12), rgba(4, 15, 7, 0.9) 78%);
  }

  .solo-eg-theme .page-hero__content {
    width: 100%;
    max-width: 640px;
  }

  .solo-eg-theme .service-detail__hero-bg,
  html[dir="rtl"] .solo-eg-theme .service-detail__hero-bg {
    inset: 100px 20px auto;
    height: clamp(310px, 68vw, 500px);
    border-radius: 12px 12px 74px 12px;
    background-position: center;
    animation: none;
  }

  html[dir="rtl"] .solo-eg-theme .service-detail__hero-bg {
    border-radius: 12px 12px 12px 74px;
  }

  .solo-eg-theme .service-detail__hero {
    min-height: calc(100px + clamp(310px, 68vw, 500px));
    align-items: center;
    padding: 100px 0 0;
  }

  .solo-eg-theme .service-detail__hero-overlay,
  html[dir="rtl"] .solo-eg-theme .service-detail__hero-overlay {
    display: block;
    inset: 100px 20px auto;
    height: clamp(310px, 68vw, 500px);
    border-radius: 12px 12px 74px 12px;
    background: linear-gradient(90deg, rgba(4, 15, 7, 0.68), rgba(4, 15, 7, 0.42));
  }

  html[dir="rtl"] .solo-eg-theme .service-detail__hero-overlay {
    border-radius: 12px 12px 12px 74px;
  }

  .solo-eg-theme .service-detail__hero-content {
    width: min(100% - 100px, 640px);
  }

  .solo-eg-theme .service-detail__hero-copy {
    width: 100%;
    max-width: 640px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .solo-eg-theme .service-detail__hero-copy::after {
    display: none;
  }

  .solo-eg-theme .service-detail__back {
    min-height: 0;
    margin-bottom: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #8ae0a3;
    background: transparent;
    font-size: 0.78rem;
  }

  .solo-eg-theme .service-detail__back:hover {
    color: #b8f0c8;
    background: transparent;
  }

  .solo-eg-theme .service-detail__hero .service-card__tag {
    margin-bottom: 16px;
    padding: 0;
    border: 0;
    color: #8ae0a3;
    background: transparent;
  }

  .solo-eg-theme .service-detail__title {
    font-size: clamp(2.7rem, 9vw, 4.3rem);
    line-height: 1;
  }

  .solo-eg-theme .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .solo-eg-theme .container {
    width: min(100% - 32px, 1340px);
  }

  .solo-eg-theme .section {
    padding: 72px 0;
  }

  .solo-eg-theme .service-detail__hero {
    min-height: calc(96px + clamp(300px, 82vw, 390px));
    padding: 96px 0 0;
  }

  .solo-eg-theme .service-detail__hero-bg,
  html[dir="rtl"] .solo-eg-theme .service-detail__hero-bg {
    inset: 96px 16px auto;
    height: clamp(300px, 82vw, 390px);
    border-radius: 10px 10px 52px 10px;
  }

  html[dir="rtl"] .solo-eg-theme .service-detail__hero-bg {
    border-radius: 10px 10px 10px 52px;
  }

  .solo-eg-theme .service-detail__hero-overlay,
  html[dir="rtl"] .solo-eg-theme .service-detail__hero-overlay {
    inset: 96px 16px auto;
    height: clamp(300px, 82vw, 390px);
    border-radius: 10px 10px 52px 10px;
  }

  html[dir="rtl"] .solo-eg-theme .service-detail__hero-overlay {
    border-radius: 10px 10px 10px 52px;
  }

  .solo-eg-theme .service-detail__hero-content {
    width: min(100% - 82px, 560px);
  }

  .solo-eg-theme .service-detail__hero-copy {
    padding: 0;
    border-radius: 0;
  }

  html[dir="rtl"] .solo-eg-theme .service-detail__hero-copy {
    border-radius: 0;
  }

  .solo-eg-theme .service-detail__back {
    min-height: 0;
    margin-bottom: 22px;
    padding: 0;
    font-size: 0.72rem;
  }

  .solo-eg-theme .service-detail__hero .service-card__tag {
    margin-bottom: 14px;
  }

  .solo-eg-theme .service-detail__title {
    font-size: clamp(2.35rem, 10.5vw, 3.5rem);
  }

  .solo-eg-theme .nav {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    min-height: 66px;
    left: 10px !important;
    right: 10px !important;
    padding: 5px 8px 5px 12px;
  }

  .solo-eg-theme .nav__logo-mark,
  .solo-eg-theme .nav__logo-img {
    width: 56px;
    height: 56px;
  }

  .solo-eg-theme .hero {
    display: block;
    min-height: 780px;
    padding: 134px 30px 70px;
  }

  .solo-eg-theme .hero__bg,
  html[dir="rtl"] .solo-eg-theme .hero__bg {
    inset: 92px 10px 12px;
  }

  .solo-eg-theme .hero__title {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  html[lang="ar"] .solo-eg-theme .hero__title {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 1.3;
  }

  .solo-eg-theme .hero__content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 70px;
    width: auto;
    max-width: none;
    padding: 0;
  }

  html[dir="rtl"] .solo-eg-theme .hero__content {
    text-align: right;
  }

  .solo-eg-theme .hero__title .italic {
    margin-inline-start: 18px;
  }

  .solo-eg-theme .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .solo-eg-theme .hero__actions .btn {
    width: 100%;
    max-width: none;
  }

  .solo-eg-theme .about-story {
    width: min(100% - 32px, 1500px);
  }

  .solo-eg-theme .about-story__media,
  .solo-eg-theme .about-story__media img {
    min-height: 0;
    height: 118vw;
    max-height: 590px;
    border-radius: 24px;
  }

  .solo-eg-theme .about-story__badge {
    top: 18px;
    inset-inline-end: 18px;
    width: 138px;
    padding: 16px;
    gap: 7px;
  }

  .solo-eg-theme .about-story__badge-num {
    font-size: 2.65rem;
  }

  .solo-eg-theme .about-story__badge-label {
    font-size: 0.75rem;
  }

  .solo-eg-theme .about-story__slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.65rem;
  }

  .solo-eg-theme .about-story__slider-arrow--prev {
    left: 14px;
  }

  .solo-eg-theme .about-story__slider-arrow--next {
    right: 14px;
  }

  html[dir="rtl"] .solo-eg-theme .about-story__slider-arrow--prev {
    right: 14px;
  }

  html[dir="rtl"] .solo-eg-theme .about-story__slider-arrow--next {
    left: 14px;
  }

  .solo-eg-theme .about-story__slider-dots {
    bottom: 16px;
  }

  .solo-eg-theme .about-story__title {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  html[lang="ar"] .solo-eg-theme .about-story__title {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .solo-eg-theme .about-story__ornament {
    width: 230px;
    margin: 20px 0 16px;
  }

  .solo-eg-theme .about-story__ornament span {
    width: 165px;
  }

  .solo-eg-theme .about-story__body {
    font-size: 1rem;
    line-height: 1.85;
  }

  .solo-eg-theme .about-story__locations {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 40px;
  }

  .solo-eg-theme .about-story__stats {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
    padding: 30px 24px;
  }

  .solo-eg-theme .about-story__stat {
    padding-inline-start: 22px;
  }

  .solo-eg-theme .about-story__stat-num {
    font-size: 3.5rem;
  }

  .solo-eg-theme .about-story__stat-label {
    margin-top: 10px;
  }

  .solo-eg-theme .about-location,
  .solo-eg-theme .about-location--dark {
    --about-float-base: 0px;
    min-height: 245px;
    transform: none;
    border-radius: 22px;
  }

  .solo-eg-theme .about-location--dark:hover {
    transform: translateY(-8px);
  }

  .solo-eg-theme .service-card {
    min-width: 82vw;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .solo-eg-theme .service-card__img {
    min-height: 240px;
    height: 240px;
  }

  .solo-eg-theme .services--show-all .service-card {
    min-width: 0;
  }

  .solo-eg-theme .services__tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
  }

  .solo-eg-theme .tab-btn {
    padding: 10px 14px;
  }

  .solo-eg-theme .services-slider__arrow {
    display: none;
  }

  .solo-eg-theme .solo-highlights {
    width: calc(100% - 16px);
    min-height: 0;
    margin: 8px;
    padding: 54px 18px;
    border-radius: 24px 24px 0 0;
  }

  .solo-eg-theme .solo-highlights::before {
    inset: 10px;
    border-radius: 19px 19px 0 0;
  }

  .solo-eg-theme .solo-highlights__grid {
    gap: 12px;
  }

  .solo-eg-theme .solo-highlight-card {
    min-height: 172px;
    padding: 21px 12px;
    border-radius: 17px;
  }

  .solo-eg-theme .solo-highlight-card__icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
  }

  .solo-eg-theme .solo-highlight-card__icon svg {
    width: 32px;
    height: 32px;
  }

  .solo-eg-theme .solo-highlight-card strong {
    font-size: 0.92rem;
  }

  .solo-eg-theme .parallax-banner {
    width: calc(100% - 20px);
    height: 620px;
    border-radius: 10px 72px 10px 10px;
  }

  html[dir="rtl"] .solo-eg-theme .parallax-banner {
    border-radius: 72px 10px 10px 10px;
  }

  .solo-eg-theme .gallery__grid--videos {
    width: calc(100vw - 36px);
    margin-inline: calc(50% - 50vw + 18px);
    padding: 8px 2px 24px;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .solo-eg-theme .gallery__videos-slider {
    padding-inline: 0;
  }

  .solo-eg-theme .gallery__nav {
    display: none !important;
  }

  .solo-eg-theme .gallery__grid--videos::-webkit-scrollbar {
    display: none;
  }

  .solo-eg-theme .gallery__grid--videos .gallery__video-card {
    flex: 0 0 min(76vw, 310px);
    width: min(76vw, 310px);
    aspect-ratio: 9 / 14;
    scroll-snap-align: center;
    border-radius: 22px;
  }

  .solo-eg-theme .gallery__video-card:nth-child(even),
  .solo-eg-theme .gallery__video-card:hover {
    transform: none;
  }

  .solo-eg-theme .page-hero {
    min-height: 650px;
    padding: 130px 24px 60px;
  }

  .solo-eg-theme .page-hero__bg,
  html[dir="rtl"] .solo-eg-theme .page-hero__bg {
    inset: 88px 10px 22px;
  }

  .solo-eg-theme .page-hero__title {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  .solo-eg-theme .footer--rich {
    width: calc(100% - 16px);
    margin: 8px;
  }

  .solo-eg-theme .footer__grid {
    grid-template-columns: 1fr;
  }

  .solo-eg-theme .footer__brand {
    padding-inline-end: 0;
    padding-bottom: 34px;
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .solo-eg-theme .footer__bottom {
    margin: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solo-eg-theme .marquee-wrap {
    transform: none;
  }

  .solo-eg-theme .solo-highlight-card__icon,
  .solo-eg-theme .solo-highlight-card__icon::after,
  .solo-eg-theme .solo-highlight-card__icon svg {
    animation: none;
  }
}

/* ================================================================
   Pharaohs Programs — temple-inspired page identity
   Scoped to this page so the shared offers template stays unchanged.
   ================================================================ */
body[data-page="pharaohs"] .page-hero--pharaohs {
  min-height: 760px;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 38%, rgba(218, 174, 83, 0.2), transparent 22rem),
    linear-gradient(135deg, #07150b 0%, #0c2d19 58%, #07150b 100%);
}

body[data-page="pharaohs"] .page-hero--pharaohs::before {
  content: "";
  position: absolute;
  inset: 108px 3vw 42px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(222, 180, 90, 0.5);
  background:
    linear-gradient(45deg, transparent 45%, rgba(222, 180, 90, 0.26) 46% 54%, transparent 55%) 0 0 / 22px 22px,
    linear-gradient(-45deg, transparent 45%, rgba(222, 180, 90, 0.16) 46% 54%, transparent 55%) 0 0 / 22px 22px;
  opacity: 0.52;
  clip-path: polygon(0 0, 100% 0, 100% 12px, 12px 12px, 12px calc(100% - 12px), 100% calc(100% - 12px), 100% 100%, 0 100%);
}

body[data-page="pharaohs"] .page-hero--pharaohs::after {
  left: 3vw;
  right: 3vw;
  bottom: 42px;
  height: 12px;
  background:
    linear-gradient(135deg, #c99f4c 25%, transparent 25%) 0 0 / 18px 18px,
    linear-gradient(225deg, #c99f4c 25%, transparent 25%) 0 0 / 18px 18px;
  opacity: 0.75;
}

body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__bg {
  inset: 106px 3vw 42px 48%;
  border: 2px solid rgba(222, 180, 90, 0.72);
  border-radius: 0;
  background-position: center;
  filter: sepia(0.2) saturate(0.92) contrast(1.04);
  clip-path: polygon(8% 0, 92% 0, 100% 9%, 100% 100%, 0 100%, 0 9%);
}

html[dir="rtl"] body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__bg {
  inset: 106px 48% 42px 3vw;
  border-radius: 0;
}

body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__overlay {
  background:
    linear-gradient(90deg, #07150b 3%, rgba(7, 21, 11, 0.94) 39%, rgba(7, 21, 11, 0.15) 74%),
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(218, 174, 83, 0.04) 69px 70px);
}

html[dir="rtl"] body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__overlay {
  background:
    linear-gradient(-90deg, #07150b 3%, rgba(7, 21, 11, 0.94) 39%, rgba(7, 21, 11, 0.15) 74%),
    repeating-linear-gradient(90deg, transparent 0 68px, rgba(218, 174, 83, 0.04) 69px 70px);
}

body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__inner {
  z-index: 4;
}

body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__content {
  width: min(46%, 700px);
}

body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__label {
  color: #efcc81;
}

body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__label::before {
  background: #efcc81;
}

body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__title {
  color: #f8e8bd;
  font-size: clamp(3.4rem, 6.4vw, 7rem);
  text-shadow: 0 3px 32px rgba(0, 0, 0, 0.58);
}

body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__desc {
  color: rgba(255, 248, 226, 0.78);
  font-size: 1.02rem;
}

body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__media {
  position: relative;
  border: 3px double #d6aa55;
  border-radius: 160px 160px 8px 8px;
  box-shadow:
    0 0 0 8px rgba(7, 21, 11, 0.72),
    0 0 0 9px rgba(214, 170, 85, 0.35),
    0 28px 70px rgba(0, 0, 0, 0.48);
}

body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__media::after {
  content: "◆  ☥  ◆";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 10px;
  color: #f0ca78;
  text-align: center;
  font-size: 1.15rem;
  letter-spacing: 0.7em;
  background: rgba(7, 21, 11, 0.86);
  border-top: 1px solid rgba(222, 180, 90, 0.55);
}

.pharaoh-hero__sun {
  position: absolute;
  top: 132px;
  inset-inline-end: 5.5vw;
  z-index: 5;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: #0b2a17;
  border: 1px solid #f4d58f;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f6dc9d, #c6953e 72%);
  box-shadow: 0 0 42px rgba(222, 180, 90, 0.34);
}

.pharaoh-hero__sun span {
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
}

.pharaoh-hero__pyramids {
  position: absolute;
  inset-inline-end: 40%;
  bottom: 42px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  opacity: 0.28;
  pointer-events: none;
}

.pharaoh-hero__pyramids i {
  display: block;
  width: 78px;
  height: 58px;
  background: linear-gradient(135deg, #edcb80 0 49%, #a6782f 50%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.pharaoh-hero__pyramids i:nth-child(2) {
  width: 122px;
  height: 96px;
}

.pharaoh-hero__pyramids i:nth-child(3) {
  width: 62px;
  height: 46px;
}

.pharaoh-hero__seal {
  display: flex;
  width: min(100%, 420px);
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  color: #e3bb68;
}

.pharaoh-hero__seal span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d7aa55);
}

.pharaoh-hero__seal span:last-child {
  background: linear-gradient(90deg, #d7aa55, transparent);
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(184, 135, 52, 0.14), transparent 28rem),
    linear-gradient(90deg, transparent 49.94%, rgba(150, 109, 39, 0.18) 50%, transparent 50.06%),
    #eee4cc;
}

[data-theme="dark"] body[data-page="pharaohs"] .offers-section--pharaohs-programs {
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 170, 82, 0.12), transparent 28rem),
    linear-gradient(90deg, transparent 49.94%, rgba(215, 170, 82, 0.15) 50%, transparent 50.06%),
    #09180e;
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  background-image: url("../assets/images/generated/pharaoh-statues-bg.webp");
  background-repeat: repeat-y;
  background-position: center 38px;
  background-size: 100% auto;
  filter: sepia(0.28) saturate(0.72);
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs > .container {
  position: relative;
  z-index: 1;
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-featured {
  position: relative;
  padding: 54px;
  border: 4px double #bd8c3b;
  border-radius: 120px 120px 10px 10px;
  background:
    linear-gradient(135deg, rgba(220, 178, 91, 0.08), transparent 38%),
    #0b2a17;
  box-shadow:
    0 0 0 8px rgba(189, 140, 59, 0.12),
    0 28px 70px rgba(54, 37, 12, 0.22);
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-featured::before {
  content: "☥";
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  color: #e7bf6c;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  transform: translateX(-50%);
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-featured__img {
  min-height: 430px;
  border: 1px solid rgba(229, 190, 108, 0.62);
  border-radius: 96px 96px 4px 4px;
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-featured h2,
body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-card__title {
  color: #e9bf68;
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-featured__desc,
body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-featured__desc.rte-content :is(p, li, span, strong, b, em, i, u),
body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-featured p,
body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-list li {
  color: rgba(255, 248, 228, 0.78);
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-card {
  position: relative;
  border: 1px solid rgba(164, 115, 40, 0.48);
  border-radius: 72px 72px 6px 6px;
  background:
    linear-gradient(180deg, rgba(206, 160, 72, 0.12), transparent 38%),
    #fffaf0;
  box-shadow: 0 18px 45px rgba(80, 55, 15, 0.13);
}

[data-theme="dark"] body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-card {
  background:
    linear-gradient(180deg, rgba(206, 160, 72, 0.1), transparent 38%),
    #0c2314;
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-card::before {
  content: "◆  ☥  ◆";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  min-width: 132px;
  padding: 8px 14px;
  color: #f1ce84;
  text-align: center;
  letter-spacing: 0.18em;
  background: #123e22;
  border: 1px solid rgba(212, 169, 82, 0.76);
  border-top: 0;
  transform: translateX(-50%);
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-card__img {
  border-radius: 70px 70px 0 0;
  border-bottom: 3px double rgba(175, 125, 45, 0.62);
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-card__body {
  position: relative;
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 5px 12px;
  color: #f0cd83;
  border: 1px solid rgba(214, 170, 85, 0.46);
  background: #123e22;
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .perk-icon {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #0b2a17;
  border-radius: 50%;
  background: #dfb55e;
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .btn--primary,
body[data-page="pharaohs"] .offers-section--pharaohs-programs .btn--outline {
  border-radius: 0;
  border-color: #c99d49;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
}

body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-card:hover {
  transform: translateY(-10px);
  border-color: #c99d49;
  box-shadow: 0 24px 54px rgba(80, 55, 15, 0.23);
}

@media (max-width: 900px) {
  body[data-page="pharaohs"] .page-hero--pharaohs {
    min-height: 0;
    padding: 130px 24px 56px;
    align-items: flex-start;
  }

  body[data-page="pharaohs"] .page-hero--pharaohs::before {
    inset: 88px 10px 22px;
  }

  body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__bg,
  html[dir="rtl"] body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__bg {
    inset: 88px 10px 22px;
  }

  body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__overlay,
  html[dir="rtl"] body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__overlay {
    background: linear-gradient(180deg, rgba(7, 21, 11, 0.2), rgba(7, 21, 11, 0.94) 72%);
  }

  body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__content {
    width: 100%;
  }

  body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__media {
    display: none;
  }

  .pharaoh-hero__sun {
    top: 112px;
    inset-inline-end: 28px;
    width: 68px;
    height: 68px;
  }

  .pharaoh-hero__sun span {
    font-size: 2.2rem;
  }

  .pharaoh-hero__pyramids {
    inset-inline-end: 18px;
    bottom: 22px;
  }

  body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-featured {
    padding: 44px 22px 28px;
    border-radius: 70px 70px 8px 8px;
  }

  body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-featured__img {
    min-height: 340px;
    border-radius: 54px 54px 4px 4px;
  }

  body[data-page="pharaohs"] .offers-section--pharaohs-programs::before {
    background-size: 650px auto;
    background-position: center 30px;
    opacity: 0.085;
  }
}

@media (max-width: 560px) {
  body[data-page="pharaohs"] .page-hero--pharaohs {
    padding-top: 125px;
  }

  body[data-page="pharaohs"] .page-hero--pharaohs .page-hero__title {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
  }

  body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-card {
    border-radius: 52px 52px 6px 6px;
  }

  body[data-page="pharaohs"] .offers-section--pharaohs-programs .offer-card__img {
    border-radius: 50px 50px 0 0;
  }
}

/* Home hero: use the light gold brand tone in dark mode. */
[data-theme="dark"] .solo-eg-theme .hero .hero__title,
[data-theme="dark"] .solo-eg-theme .hero .hero__title .reveal-line,
[data-theme="dark"] .solo-eg-theme .hero .hero__title .reveal-line.italic {
  color: #f1cb7f;
}

/* Home hero artwork: keep the complete portrait image visible inside its card. */
.solo-eg-theme .hero__bg {
  isolation: isolate;
  border: 1px solid rgba(201, 165, 93, 0.42);
  background:
    radial-gradient(circle at 50% 42%, rgba(201, 165, 93, 0.16), transparent 42%),
    linear-gradient(145deg, #102817, #07150b);
}

.solo-eg-theme .hero__bg picture {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(229, 190, 108, 0.12), transparent 44%),
    #0a1d10;
}

.solo-eg-theme .hero__bg:has(.hero__bg-img)::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: 0;
  background-image:
    linear-gradient(rgba(7, 21, 11, 0.2), rgba(7, 21, 11, 0.2)),
    var(--hero-artwork);
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.68) saturate(1.15);
  transform: scale(1.08);
  animation: soloHeroBackdropPulse 6s ease-in-out infinite;
}

.solo-eg-theme .hero__bg .hero__bg-img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  padding: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
  animation: soloHeroArtworkPulse 5s ease-in-out infinite;
  transform-origin: center;
  transition: transform 0.65s ease, filter 0.65s ease;
}

.solo-eg-theme .hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(
    112deg,
    transparent 18%,
    rgba(246, 220, 157, 0.03) 37%,
    rgba(246, 220, 157, 0.2) 48%,
    rgba(246, 220, 157, 0.04) 59%,
    transparent 78%
  );
  transform: translateX(-135%);
  animation: soloHeroArtworkShine 4.5s ease-in-out infinite;
  mix-blend-mode: screen;
}

.solo-eg-theme .hero__bg:hover .hero__bg-img {
  animation-play-state: paused;
  transform: scale(1);
  filter: brightness(1.08) saturate(1.08) contrast(1.02);
}

@keyframes soloHeroArtworkPulse {
  0%,
  100% {
    transform: scale(1);
    filter: brightness(0.94) saturate(0.96);
  }

  50% {
    transform: scale(1);
    filter: brightness(1.04) saturate(1.06);
  }
}

@keyframes soloHeroBackdropPulse {
  0%,
  100% {
    transform: scale(1.08);
    filter: blur(18px) brightness(0.66) saturate(1.08);
  }

  50% {
    transform: scale(1.13);
    filter: blur(15px) brightness(0.76) saturate(1.2);
  }
}

@keyframes soloHeroArtworkShine {
  0%,
  28% {
    transform: translateX(-135%);
    opacity: 0;
  }

  42% {
    opacity: 0.7;
  }

  62%,
  100% {
    transform: translateX(135%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .solo-eg-theme .hero__bg .hero__bg-img {
    animation: none;
    transform: none;
    filter: none;
  }

  .solo-eg-theme .hero__bg:has(.hero__bg-img)::before {
    animation: none;
  }

  .solo-eg-theme .hero__bg::after {
    animation: none;
    opacity: 0;
  }
}

/* Give the portrait artwork a wider editorial frame without stretching it. */
@media (min-width: 901px) {
  .solo-eg-theme .hero__bg,
  html[dir="rtl"] .solo-eg-theme .hero__bg {
    top: 118px;
    bottom: 52px;
    width: auto;
    height: auto;
    aspect-ratio: 1120 / 1103;
  }

  .solo-eg-theme .hero__bg .hero__bg-img {
    object-fit: cover;
    object-position: center;
  }

  .solo-eg-theme .hero__bg {
    right: 2vw;
    left: auto;
  }

  html[dir="rtl"] .solo-eg-theme .hero__bg {
    right: auto;
    left: 2vw;
  }
}

@media (max-width: 900px) {
  .solo-eg-theme .hero {
    min-height: 1207px;
  }

  .solo-eg-theme .hero__bg,
  html[dir="rtl"] .solo-eg-theme .hero__bg {
    top: 92px;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(calc(100% - 20px), 735px);
    height: auto;
    aspect-ratio: 735 / 1103;
    transform: translateX(-50%);
  }
}

@media (max-width: 560px) {
  .solo-eg-theme .hero {
    min-height: calc(150vw + 74px);
  }
}
/* Skip layout/paint work for long sections until they approach the viewport. */
@supports (content-visibility: auto) {
  main > section:not(:first-child),
  body > section:not(.hero):not(.page-hero),
  .parallax-banner,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
  }
}
