/* ================================================================
   SOLO SPA — Main Stylesheet
   ================================================================ */

/* ── Design tokens (shared) ── */
:root {
  --green:       #2e8b4a;
  --green-light: #4db86a;
  --green-dark:  #1a5c30;
  --radius:      16px;
  --radius-lg:   28px;
  --transition:  0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', system-ui, sans-serif;
}

/* Arabic — Cairo for body & headings */
html[lang="ar"] {
  --font-sans:  'Cairo', 'Segoe UI', Tahoma, sans-serif;
  --font-serif: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

/* ── Dark theme (default) ── */
:root,
[data-theme="dark"] {
  --gold:        #2e8b4a;
  --gold-light:  #4db86a;
  --gold-dark:   #1a5c30;

  --dark:        #060d07;
  --dark-2:      #0c1a0e;
  --dark-3:      #111f13;

  --cream:       #edf5ee;
  --cream-2:     #d6eadb;
  --text:        #1e3a22;
  --text-light:  #6a9070;
  --white:       #fff;

  --bg-body:     #060d07;
  --bg-section:  #0c1a0e;
  --bg-section2: #111f13;
  --bg-card:     #0c1a0e;
  --border:      rgba(46,139,74,0.18);

  --glass-bg:    rgba(46,139,74,0.07);
  --glass-border:rgba(46,139,74,0.22);

  --shadow:      0 20px 60px rgba(0,0,0,0.4);
  --shadow-sm:   0 8px 24px rgba(0,0,0,0.2);

  --nav-bg:      rgba(6,13,7,0.92);
  --input-bg:    rgba(255,255,255,0.05);
  --input-border:rgba(46,139,74,0.15);


  color-scheme: dark;
}

/* ── Light theme ── */
[data-theme="light"] {
  --gold:        #1a6b35;
  --gold-light:  #2e8b4a;
  --gold-dark:   #0d4520;

  --dark:        #f0f8f2;
  --dark-2:      #e2f0e6;
  --dark-3:      #d4e9da;

  --cream:       #0c1a0e;
  --cream-2:     #1e3a22;
  --text:        #0c1a0e;
  --text-light:  #3d6b48;
  --white:       #fff;

  --bg-body:     #f0f8f2;
  --bg-section:  #e2f0e6;
  --bg-section2: #d4e9da;
  --bg-card:     #ffffff;
  --border:      rgba(26,107,53,0.15);

  --glass-bg:    rgba(255,255,255,0.65);
  --glass-border:rgba(26,107,53,0.2);

  --shadow:      0 20px 60px rgba(26,107,53,0.12);
  --shadow-sm:   0 8px 24px rgba(26,107,53,0.1);

  --nav-bg:      rgba(240,248,242,0.94);
  --input-bg:    rgba(255,255,255,0.8);
  --input-border:rgba(26,107,53,0.2);


  color-scheme: light;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--cream);
  overflow-x: hidden;
  cursor: auto;
  transition: background 0.4s ease, color 0.4s ease;
}

/* custom-cursor disabled site-wide for stability */

img { display: block; max-width: 100%; height: auto; }
img.cover { width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
@media (pointer: fine) {
  body.custom-cursor button { cursor: pointer; }
  body.custom-cursor .fab { cursor: pointer; }
}
input, select, textarea { font-family: var(--font-sans); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; position: relative; }
.text-center { text-align: center; }

/* ── Custom Cursor ── */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(46,139,74,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
}

.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.cursor-dot.hovered {
  width: 40px; height: 40px;
  background: var(--gold-light);
}

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-body);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.preloader__logo {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 32px;
  flex-shrink: 0;
}

.preloader__logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.72; }
}

@keyframes spinFade {
  0%, 100% { opacity: 1; transform: rotate(0deg); }
  50% { opacity: 0.4; transform: rotate(180deg); }
}

.preloader__bar {
  width: 220px;
  height: 2px;
  background: rgba(46,139,74,0.2);
  border-radius: 99px;
  overflow: hidden;
}

.preloader__fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 99px;
  animation: loadFill 1.8s ease-out forwards;
}

@keyframes loadFill { to { width: 100%; } }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-105%);
  transition: transform 0.4s ease;
  border-radius: inherit;
}

.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--gold);
  color: #0c1a0e;
}

.btn--primary:hover {
  background: var(--gold-light);
  color: #0c1a0e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46,139,74,0.4);
}

.btn--outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: #0c1a0e;
  transform: translateY(-2px);
}

.btn--ghost {
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--sm { padding: 10px 22px; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* ── Glass morphism ── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── Section headings ── */
.section__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 20px;
}

.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section__header { margin-bottom: 60px; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 40px;
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.nav__logo-mark {
  position: relative;
  flex-shrink: 0;
  width: 76px;
  height: 76px;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.nav__brand-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: rgba(245, 240, 232, 0.95);
}

.nav__brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.25;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav__brand-desc {
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(245, 240, 232, 0.72);
  max-width: 240px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nav__logo-img,
.footer__logo-img,
.preloader__logo-img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav__logo-img {
  height: 76px;
  width: auto;
  object-fit: contain;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  filter: none;
}

/* Light mode → colored logo | Dark mode → white logo (never stack) */
.nav__logo-mark .nav__logo-img.logo-img--dark,
.nav__logo-mark .nav__logo-img.logo-img--light,
.footer__logo-img.logo-img--dark,
.footer__logo-img.logo-img--light {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav__logo-mark .nav__logo-img--custom {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.preloader__logo-img--custom {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}

.logo-img--dark {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.logo-img--light {
  opacity: 1;
  visibility: visible;
}

[data-theme="dark"] .logo-img--dark {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

[data-theme="dark"] .logo-img--light {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.footer__logo {
  position: relative;
  min-height: 100px;
}

.preloader__logo-img.logo-img--dark,
.preloader__logo-img.logo-img--light {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav__logo:hover .nav__logo-img {
  opacity: 0.88;
  transform: translateY(-50%) scale(1.04);
}

.nav__logo:hover .nav__brand-name {
  color: var(--gold-light);
}

.nav__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .nav__links .nav__link {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
}

.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

[data-theme="dark"] .nav__link:hover {
  color: var(--cream);
}

[data-theme="light"] .nav__link:hover {
  color: var(--gold);
}

.nav__link:hover::after { width: 100%; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__cta {
  position: relative;
  z-index: 3;
  white-space: nowrap;
  flex-shrink: 0;
}

button.btn {
  appearance: none;
  -webkit-appearance: none;
}

button.nav__link {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  width: 100%;
}

.nav__book-li {
  display: none;
}

.nav__cta.btn--outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #0c1a0e;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin: 0;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
}

.hero__bg:has(.hero__bg-img)::before {
  content: none;
}

@media (min-width: 769px) {
  .hero__bg-img {
    transform-origin: center center;
    animation: heroBreath 16s ease-in-out infinite;
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-img { animation: none; will-change: auto; transform: none; }
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: url('../assets/images/hero-spa-mobile.webp');
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  transform-origin: center center;
  animation: heroBreath 16s ease-in-out infinite;
  will-change: transform;
}

@media (min-width: 769px) {
  .hero__bg::before {
    background-image: url('../assets/images/hero-spa.webp');
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg::before { animation: none; will-change: auto; }
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4,14,6,0.55) 0%,
    rgba(6,20,8,0.25) 45%,
    rgba(4,14,6,0.65) 100%
  ),
  radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 75%);
}

@keyframes heroBreath {
  0%, 100% {
    transform: scale(1.06);
    filter: brightness(0.92) saturate(1.05);
  }
  50% {
    transform: scale(1.14);
    filter: brightness(1.02) saturate(1.1);
  }
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle var(--dur) var(--delay) infinite ease-in-out;
}

@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; transform: translateY(-30px) scale(1); }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 1;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
  overflow: hidden;
}

.reveal-line {
  display: block;
  opacity: 1;
  transform: none;
}

.reveal-line.italic {
  font-style: italic;
  color: var(--gold);
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(245,240,232,0.75);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 1;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.5s ease-out forwards;
}

.hero__scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

.hero__card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: 0.8rem;
}

.hero__card strong { display: block; font-weight: 600; color: var(--cream); }
.hero__card small { color: var(--text-light); font-size: 0.72rem; }
.hero__card-icon { font-size: 1.4rem; }

.hero__card--1 {
  bottom: 18%;
  left: 6%;
  animation: float 4s ease-in-out infinite;
}

.hero__card--2 {
  top: 28%;
  right: 6%;
  animation: float 4s 1.5s ease-in-out infinite;
}

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

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--bg-section2);
  border-top: 1px solid rgba(46,139,74,0.12);
  border-bottom: 1px solid rgba(46,139,74,0.12);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(245,240,232,0.5);
  white-space: nowrap;
}

.marquee-track .sep { color: var(--gold); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── About ── */
.services__view-all {
  margin-top: 28px;
}

.page-hero--split .page-hero__media picture,
.page-hero--split .page-hero__media .hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: heroBreath 16s ease-in-out infinite;
  will-change: transform;
}

.about {
  background: var(--bg-section);
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__visuals {
  position: relative;
}

/* About image slider */
.about-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 1.2s ease;
  pointer-events: none;
}

.about-slider__slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}

.about-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14,12,10,0.55);
  border: 1px solid rgba(46,139,74,0.35);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  cursor: pointer;
}

.about-slider__arrow:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.about-slider__arrow--prev { left: 16px; }
.about-slider__arrow--next { right: 16px; }

.about-slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.about-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.about-slider__dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 8px;
}

.about__badge {
  position: absolute;
  top: 40px;
  right: 24px;
  z-index: 5;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  padding: 12px;
}

.about__badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.about__badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  line-height: 1.3;
}

.about__body {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 1rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.about__stat { border-left: 2px solid var(--gold); padding-left: 16px; }

.about__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.about__stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 4px;
  display: block;
}

/* ── Services preview (home) ── */
.services-preview {
  position: relative;
  overflow: hidden;
}
.services-preview .section__header { margin-bottom: 32px; }

/* ── Services ── */
.services {
  position: relative;
  z-index: 8;
  background: var(--bg-body);
  overflow: hidden;
  isolation: isolate;
  content-visibility: visible;
}

.services .container {
  position: relative;
  z-index: 2;
}

.services__bg-shape {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,139,74,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.services__tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
  z-index: 30;
  pointer-events: auto;
  isolation: isolate;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 60px;
  border: 1.5px solid rgba(77, 184, 106, 0.55);
  background: rgba(46, 139, 74, 0.14);
  color: rgba(237, 245, 238, 0.92);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
}

.tab-btn:hover {
  background: rgba(46, 139, 74, 0.32);
  border-color: var(--green-light);
  color: #fff;
}

.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(46, 139, 74, 0.35);
}

/* Services filter (CSS-driven — reliable on mobile) */
#services[data-filter="massage"] .service-card--link:not([data-category="massage"]),
#services[data-filter="body-care"] .service-card--link:not([data-category="body"]):not([data-category="body-care"]),
#services[data-filter="skincare"] .service-card--link:not([data-category="skincare"]) {
  display: none !important;
}

#services[data-filter] .service-card--link {
  opacity: 1;
  transform: none;
}

/* Services slider */
.services-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.services-slider__viewport {
  overflow: hidden;
  flex: 1;
  border-radius: var(--radius-lg);
}

.services-slider__track {
  display: flex;
  gap: 28px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 8px 4px 16px;
}

.services-slider__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--cream);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  cursor: pointer;
}

.services-slider__arrow:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.services-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.services-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(46,139,74,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.services-slider__dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 8px;
}

/* All tab: show every service in a grid (no slider) */
.services--show-all .services-slider-wrap {
  display: block;
}

.services--show-all .services-slider__arrow,
.services--show-all .services-slider__dots {
  display: none !important;
}

.services--show-all .services-slider__viewport {
  overflow: visible;
}

.services--show-all .services-slider__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  transform: none !important;
  padding: 8px 0 16px;
}

.services--show-all .service-card {
  flex: none;
  min-width: 0;
  max-width: none;
  width: 100%;
}

@media (max-width: 1024px) {
  .services--show-all .services-slider__track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services--show-all .services-slider__track {
    grid-template-columns: 1fr;
  }
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  transform: translateY(0);
  flex: 0 0 calc(33.333% - 19px);
  min-width: 300px;
  max-width: 360px;
}

.service-card--link {
  position: relative;
  z-index: 2;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

body.custom-cursor .service-card--link {
  cursor: pointer;
}

.service-card--link:hover {
  transform: translateY(-8px);
  border-color: rgba(46,139,74,0.35);
  box-shadow: var(--shadow);
}

.service-card.hidden { display: none !important; }

.service-card__view {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 12px 24px;
  border: 1.5px solid #ffffff;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-card__view {
  color: #ffffff;
  background: var(--gold);
  border-color: var(--gold);
}

.service-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.08);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,12,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover .service-card__overlay { opacity: 1; }

.service-card__body { padding: 24px; }

.service-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 400;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(46,139,74,0.1);
}

.service-card__duration {
  font-size: 0.78rem;
  color: var(--text-light);
}

.service-card__price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
}

/* ── Parallax Banner ── */
.parallax-banner {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-banner__bg {
  position: absolute;
  inset: -80px;
  background-image: url('../assets/images/hero-photo-1519823551278-64ac92734fb1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  filter: brightness(0.35);
}

@media (max-width: 768px) {
  .parallax-banner__bg {
    inset: 0;
    background-attachment: scroll;
  }
}

.parallax-banner__content { position: relative; z-index: 1; text-align: center; padding: 0 24px; }

/* Dark imagery — keep light text in both themes */
.parallax-banner .section__label {
  color: #8ae0a3;
}

.parallax-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: #ffffff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
  line-height: 1.2;
  margin-bottom: 36px;
}

.parallax-banner__title em { font-style: italic; color: #b8f0c8; }

/* ── Gallery ── */
.gallery { background: var(--bg-section); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery__grid--videos {
  grid-auto-rows: auto;
  gap: 24px;
}

.gallery__video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  max-height: 520px;
  min-height: 0;
  width: 100%;
  background: var(--bg-body);
  cursor: pointer;
  isolation: isolate;
}

.gallery__video,
.gallery__video-thumb {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000;
}

.gallery__video {
  object-fit: cover;
  display: block;
}

.gallery__video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__youtube-player {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
}

.gallery__youtube-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gallery__video-card--no-poster .gallery__video-toggle {
  background: rgba(14, 12, 10, 0.15);
}

.gallery__video-card.is-playing .gallery__youtube-player {
  z-index: 2;
}

.gallery__video-toggle {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 12, 10, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.35s ease, opacity 0.35s ease;
}

.gallery__video-card.is-playing .gallery__video-toggle {
  opacity: 0;
  pointer-events: none;
}

.gallery__video-card.has-error .gallery__video-toggle {
  opacity: 1;
  pointer-events: auto;
  background: rgba(80, 20, 20, 0.45);
}

.gallery__video-card.is-playing:hover .gallery__video-toggle {
  opacity: 1;
  pointer-events: auto;
  background: rgba(14, 12, 10, 0.35);
}

.gallery__video-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  background: rgba(14, 12, 10, 0.45);
  transition: transform 0.35s ease;
}

.gallery__video-card:hover .gallery__video-icon { transform: scale(1.05); }

.gallery__video-icon--pause { display: none; font-size: 0.95rem; letter-spacing: -0.15em; }
.gallery__video-card.is-playing .gallery__video-icon--play { display: none; }
.gallery__video-card.is-playing .gallery__video-icon--pause { display: flex; }

.gallery__video-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 48px 20px 18px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5f0e8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  background: linear-gradient(transparent, rgba(14, 12, 10, 0.82));
  pointer-events: none;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img { transform: scale(1.06); }

.gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(14,12,10,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery__item:hover .gallery__hover { opacity: 1; }

.gallery__hover span {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transform: scale(0.7);
  transition: transform 0.4s;
}

.gallery__item:hover .gallery__hover span { transform: scale(1); }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  overflow: hidden;
}

.lightbox__img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 1.5rem;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.3s;
  cursor: pointer;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--cream);
  opacity: 0.6;
  padding: 0 20px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.lightbox__arrow:hover { opacity: 1; }
.lightbox__arrow--prev { left: 10px; }
.lightbox__arrow--next { right: 10px; }

/* ── Testimonials ── */
.testimonials { background: var(--bg-body); overflow: hidden; }

.testimonials__slider {
  overflow: hidden;
  border-radius: var(--radius-lg);
  container-type: inline-size;
  container-name: testimonials-slider;
}

.testimonials__track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100cqw - 56px) / 3);
  width: calc((100cqw - 56px) / 3);
  min-width: calc((100cqw - 56px) / 3);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  box-sizing: border-box;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-sizing: border-box;
}

/* Dark mode: light avatar background so client logos/photos stay visible */
:root .testimonial-card__author img,
[data-theme="dark"] .testimonial-card__author img {
  background: var(--cream);
  object-fit: contain;
  padding: 5px;
}

[data-theme="light"] .testimonial-card__author img {
  background: transparent;
  object-fit: cover;
  padding: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--cream);
  margin-bottom: 2px;
}

.testimonial-card__author small {
  font-size: 0.75rem;
  color: var(--text-light);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(46,139,74,0.3);
  transition: var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 8px;
}

/* ── Booking ── */
.booking {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.booking__bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.booking__desc {
  color: var(--text-light);
  line-height: 1.8;
  margin: 20px 0 32px;
}

.booking__perks {
  margin-bottom: 40px;
}

.booking__perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.875rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(46,139,74,0.1);
}

.perk-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.booking__contact-info { display: flex; flex-direction: column; gap: 16px; }

.bci {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
}

.bci > span { font-size: 1.2rem; }

.bci strong { display: block; color: var(--cream); font-weight: 500; }
.bci a, .bci span { color: var(--text-light); }
.bci a:hover { color: var(--gold); }

/* Booking Form */
.booking__form-wrap {
  padding: 44px;
  border-radius: var(--radius-lg);
}

.booking__form-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 32px;
  font-weight: 400;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.form__phone {
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--input-border);
  background: var(--input-bg);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form__phone:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(46,139,74,0.12);
  background: rgba(46,139,74,0.04);
}

.form__phone-code {
  flex: 0 0 auto;
  width: auto;
  min-width: 108px;
  max-width: 132px;
  padding: 13px 10px;
  border: none;
  border-right: 1.5px solid var(--input-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.88rem;
}

.form__phone input {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.form__phone input:focus {
  box-shadow: none;
  background: transparent;
}

.form__group {
  position: relative;
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.form__group:focus-within label { color: var(--gold); }

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 10px;
  color: var(--cream);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  appearance: none;
}

.form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232e8b4a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.form__group select option {
  background: var(--bg-section);
  color: var(--cream);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(46,139,74,0.12);
  background: rgba(46,139,74,0.04);
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(122,106,88,0.6);
}

.form__group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7);
  cursor: pointer;
}

.form__group textarea { resize: vertical; }

.form__group.error input,
.form__group.error select,
.form__group.error textarea {
  border-color: #e05c5c;
}

.form__error {
  display: block;
  font-size: 0.72rem;
  color: #e05c5c;
  margin-top: 5px;
  opacity: 0;
  transition: opacity 0.3s;
}

.form__group.error .form__error { opacity: 1; }

.booking__form-error {
  color: #e85d5d;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 16px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(232, 93, 93, 0.12);
  border: 1px solid rgba(232, 93, 93, 0.35);
}

.booking__form-error[hidden] {
  display: none;
}

/* ── Success Modal ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.modal.open { opacity: 1; visibility: visible; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
}

.modal__box {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
  border-radius: var(--radius-lg);
  text-align: center;
  max-width: 440px;
  width: 90%;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}

.modal.open .modal__box { transform: scale(1); }

.modal__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: popIn 0.5s 0.3s ease-out both;
}

@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 16px;
  font-weight: 400;
}

.modal__text {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.modal__close:hover {
  background: rgba(255,255,255,0.16);
  transform: scale(1.05);
}

.modal__box--booking {
  max-width: 640px;
  width: min(94vw, 640px);
  max-height: 90vh;
  overflow-y: auto;
  text-align: left;
  padding: 36px 32px 32px;
  -webkit-overflow-scrolling: touch;
}

.modal--booking .booking__form-title {
  margin-bottom: 8px;
  padding-inline-end: 40px;
}

.booking-modal__desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal--booking .booking__form {
  margin-top: 0;
}

[data-theme="light"] .modal__close {
  background: rgba(12,26,14,0.06);
  color: var(--text-dark);
}

[data-theme="light"] .modal__close:hover {
  background: rgba(12,26,14,0.12);
}

/* ── Contact ── */
.contact { background: var(--bg-body); }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact__card {
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.contact__card:hover {
  transform: translateY(-5px);
  border-color: rgba(46,139,74,0.3);
}

.contact__card-icon { font-size: 2rem; margin-bottom: 16px; }
.contact__card h4 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 8px; }
.contact__card p, .contact__card a { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }
.contact__card a:hover { color: var(--gold); }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(46,139,74,0.15);
}

.contact__map iframe { width: 100%; height: 100%; border: none; filter: invert(0.9) hue-rotate(180deg); }

/* ── Footer ── */
.footer { background: var(--bg-section2); }

.footer--rich {
  position: relative;
  margin-top: 0;
  background: linear-gradient(180deg, var(--green-dark) 0%, #0c1a0e 38%, var(--dark) 100%);
  color: #fff;
  overflow: hidden;
}

.footer--rich::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(77,184,106,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(46,139,74,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.footer--rich::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold-light) 50%, var(--green-dark));
  z-index: 2;
}

.footer__top {
  position: relative;
  z-index: 1;
  padding: 64px 0 72px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer__logo {
  position: relative;
  min-height: 96px;
  margin-bottom: 14px;
}

.footer__logo-img {
  height: 96px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

.footer--rich .footer__logo-img--white {
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto;
  display: block !important;
}

.footer--rich .footer__logo-img--custom {
  filter: brightness(0) invert(1);
}

[data-theme="light"] .footer--rich .footer__logo-img--white,
[data-theme="dark"] .footer--rich .footer__logo-img--white {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.footer__addresses {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(77,184,106,0.22);
}

.footer__address-item {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 12px;
}

.footer__address-item:last-child {
  margin-bottom: 0;
}

.footer__address-link {
  display: inline-block;
  color: rgba(255,255,255,0.88);
  transition: color 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__address-link:hover {
  color: #b8f0c8;
  transform: translateX(3px);
}

html[dir="rtl"] .footer__address-link:hover {
  transform: translateX(-3px);
}

[data-theme="light"] .footer--rich .footer__address-link {
  color: rgba(255,255,255,0.92);
}

[data-theme="light"] .footer--rich .footer__address-link:hover {
  color: #d4ffe0;
}

.footer__brand-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}

.footer__brand-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.footer__brand-desc {
  color: rgba(237,245,238,0.78);
  font-size: 0.84rem;
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 22px;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer--rich .social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(77,184,106,0.35);
  background: rgba(46,139,74,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.footer--rich .social-btn svg { width: 17px; height: 17px; }

.footer--rich .social-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46,139,74,0.35);
}

.footer__col h5 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #fff;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(77,184,106,0.45);
}

.footer__col .footer__links {
  gap: 2px;
}

.footer__links li {
  line-height: 1.2;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  margin: 0 -10px;
  border-radius: 10px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.88);
  transform: translate3d(0, 0, 0);
  transition:
    color 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__links a:hover {
  color: #fff;
  background: rgba(77,184,106,0.18);
  transform: translate3d(5px, 0, 0);
  box-shadow: 0 2px 12px rgba(46,139,74,0.15);
}

.footer__link-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.55s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__links a:hover .footer__link-icon {
  transform: translate3d(0, 0, 0) scale(1.06);
  box-shadow: 0 3px 12px rgba(77,184,106,0.4);
}

.footer__link-icon--quick,
.footer__link-icon--explore {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5fd080 0%, var(--gold) 100%);
  color: #0a3318;
  box-shadow: 0 2px 8px rgba(46,139,74,0.35);
}

.footer__links a:hover .footer__link-icon--quick,
.footer__links a:hover .footer__link-icon--explore {
  background: linear-gradient(135deg, #72e090 0%, var(--gold-light) 100%);
}

.footer__link-icon--quick svg,
.footer__link-icon--explore svg {
  width: 13px;
  height: 13px;
}

.footer__link-icon--arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5fd080 0%, var(--gold) 100%);
  color: #0a3318;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(46,139,74,0.35);
}

.footer__links a:hover .footer__link-icon--arrow {
  background: linear-gradient(135deg, #72e090 0%, var(--gold-light) 100%);
}

.footer__branch-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer__branch-value {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.02em;
  transition: color 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__links a:hover .footer__branch-value {
  color: #b8f0c8;
}

.footer__links--branch a {
  align-items: flex-start;
}

.footer__links .footer__contact-label {
  color: #b8f0c8;
  transition: color 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__links a:hover .footer__contact-label {
  color: #fff;
}

.footer__contact-block {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(77,184,106,0.2);
}

.footer__contact-block p {
  font-size: 0.8rem;
  color: rgba(237,245,238,0.75);
  line-height: 1.65;
  margin-bottom: 10px;
}

.footer__contact-block a {
  color: rgba(237,245,238,0.88);
  transition: color 0.3s;
}

.footer__contact-block a:hover { color: var(--gold-light); }

.footer__contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b8f0c8;
  margin-bottom: 3px;
}

.footer__col ul:not(.footer__links) { display: flex; flex-direction: column; gap: 12px; }

.footer__col:not(.footer__brand) > a:not(.social-btn) {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}

.footer__col > p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(46,139,74,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.social-btn svg { width: 16px; height: 16px; }

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

.footer__newsletter {
  display: flex;
  gap: 8px;
}

.footer__newsletter input {
  flex: 1;
  padding: 11px 16px;
  background: var(--input-bg);
  border: 1.5px solid var(--input-border);
  border-radius: 60px;
  color: var(--cream);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.3s;
}

.footer__newsletter input:focus { border-color: var(--gold); }
.footer__newsletter input::placeholder { color: rgba(122,106,88,0.6); }

.footer__bottom {
  position: relative;
  z-index: 1;
  padding: 22px 0;
  border-top: 1px solid rgba(77,184,106,0.18);
  text-align: center;
  background: rgba(0,0,0,0.15);
}

.footer--rich .footer__bottom {
  background: rgba(6,13,7,0.45);
}

.footer__bottom p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.footer--rich .footer__bottom p {
  color: rgba(237,245,238,0.65);
}

.footer--rich .footer__bottom a {
  color: var(--gold-light);
}

.footer--rich .footer__bottom a:hover {
  color: #fff;
}

html[dir="rtl"] .footer__links a:hover {
  transform: translate3d(-5px, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .footer__links a,
  .footer__link-icon,
  .footer__branch-value,
  .footer__links .footer__contact-label {
    transition: none;
  }

  .footer__links a:hover,
  .footer__links a:hover .footer__link-icon {
    transform: none;
  }
}

[data-theme="light"] .footer--rich {
  background: linear-gradient(180deg, #1a6b35 0%, #0d4520 38%, #0a3318 100%);
}

[data-theme="light"] .footer--rich .footer__col h5,
[data-theme="light"] .footer--rich .footer__brand-title,
[data-theme="light"] .footer--rich .footer__brand-tagline {
  color: #fff;
}

[data-theme="light"] .footer--rich .footer__brand-desc,
[data-theme="light"] .footer--rich .footer__address-item {
  color: rgba(255,255,255,0.88);
}

[data-theme="light"] .footer--rich .footer__links a {
  color: rgba(255,255,255,0.9);
}

[data-theme="light"] .footer--rich .footer__links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

[data-theme="light"] .footer--rich .footer__branch-value {
  color: rgba(255,255,255,0.95);
}

[data-theme="light"] .footer--rich .footer__links .footer__contact-label,
[data-theme="light"] .footer--rich .footer__contact-label {
  color: #c8f5d4;
}

[data-theme="light"] .footer--rich .footer__link-icon--quick,
[data-theme="light"] .footer--rich .footer__link-icon--explore,
[data-theme="light"] .footer--rich .footer__link-icon--arrow {
  background: linear-gradient(135deg, #8ee8a8 0%, #4db86a 100%);
  color: #0a3318;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

[data-theme="light"] .footer--rich .footer__links a:hover .footer__link-icon--quick,
[data-theme="light"] .footer--rich .footer__links a:hover .footer__link-icon--explore,
[data-theme="light"] .footer--rich .footer__links a:hover .footer__link-icon--arrow {
  background: linear-gradient(135deg, #a8f0bc 0%, #5fd080 100%);
}

[data-theme="light"] .footer--rich .social-btn {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

[data-theme="light"] .footer--rich .social-btn:hover {
  background: #fff;
  color: #0d4520;
}

/* ── Back to Top ── */
/* ── Floating action buttons (WhatsApp · Call · Up) ── */
body > .fab-stack {
  position: fixed;
  inset-inline-end: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  visibility: visible;
  opacity: 1;
  pointer-events: none;
}

body > .fab-stack > * {
  pointer-events: auto;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transition: var(--transition);
  text-decoration: none;
  border: none;
  flex-shrink: 0;
}

.fab svg { width: 24px; height: 24px; }

.fab:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.fab--whatsapp {
  background: #25D366;
  color: #fff;
}

.fab--call {
  background: var(--gold);
  color: var(--dark);
}

.fab-stack .back-to-top {
  position: static;
  width: 52px;
  height: 52px;
  background: var(--gold);
  color: var(--dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: scale(1);
  transition: var(--transition);
  cursor: pointer;
}

.fab-stack .back-to-top:hover {
  background: var(--gold-light);
  transform: scale(1.06) translateY(-4px);
}

/* ── Scroll Reveal (below-fold only; above-fold stays visible) ── */
[data-reveal] {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
  [data-reveal]:not(.revealed) {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
  }

  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about__grid { gap: 48px; }
  .booking__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about__badge { right: -10px; }
}

@media (max-width: 768px) {
  body.custom-cursor { cursor: auto; }

  .preloader,
  .leaves-scene,
  .cursor-glow,
  .cursor-dot,
  .music-player {
    display: none !important;
  }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--bg-body);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
    padding: 96px 24px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__links.open .nav__link {
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    color: var(--text) !important;
  }

  [data-theme="dark"] .nav__links.open .nav__link {
    color: var(--cream) !important;
  }

  .nav__links.open .nav__link:hover,
  .nav__links.open .nav__link--active {
    color: var(--gold) !important;
  }

  .nav.nav--open {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .nav.nav--open .nav__logo,
  .nav.nav--open .nav__right {
    position: relative;
    z-index: 1001;
  }

  .nav.nav--open .nav__hamburger span {
    background: var(--gold);
  }

  [data-theme="light"] .nav.nav--open .nav__logo-img--custom {
    filter: none;
  }

  [data-theme="light"] .nav.nav--open .logo-img--light {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  [data-theme="light"] .nav.nav--open .logo-img--dark {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .hero__card { display: none; }

  .hero {
    min-height: 100svh;
    padding: 96px 0 40px;
  }

  .hero__bg::before {
    inset: 0;
    animation: none;
    will-change: auto;
    transform: none;
  }

  .hero__content {
    padding: 0 20px;
    max-width: 100%;
  }

  .hero__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 3.25rem);
    line-height: 1.08;
    margin-bottom: 20px;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .hero__actions {
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    min-height: 48px;
  }

  .hero__scroll-indicator { display: none; }

  .nav {
    padding: 14px 18px;
  }

  .nav__logo-mark {
    width: 58px;
    height: 58px;
  }

  .nav__logo-img {
    height: 58px;
  }

  .about__grid { grid-template-columns: 1fr; }
  .about-slider { height: 340px; }
  .about__badge { right: 16px; top: 20px; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about__text > .btn {
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
  }
  .about__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery__grid--videos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-template-columns: unset;
    grid-auto-rows: unset;
  }
  .gallery__video-card {
    flex: none;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .testimonial-card {
    flex: 0 0 100cqw;
    width: 100cqw;
    min-width: 100cqw;
    padding: 28px;
  }

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

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  body > .fab-stack {
    inset-inline-end: max(16px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 9998;
    gap: 12px;
  }
  body > .fab-stack .fab { width: 48px; height: 48px; }

  .form__row { grid-template-columns: 1fr; }
  .form__row--3 { grid-template-columns: 1fr; }
  .booking__form-wrap { padding: 28px; }

}

@media (max-width: 480px) {
  .nav { padding: 12px 16px; }
  .section { padding: 64px 0; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__grid--videos { gap: 24px; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__title { font-size: clamp(1.85rem, 8.5vw, 2.75rem); }
  .parallax-banner { height: 360px; }
  .parallax-banner__title { font-size: clamp(1.5rem, 6.5vw, 2.2rem); }
}

/* ── 3D Falling Leaves ── */
.leaves-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 35;
  overflow: hidden;
  background: transparent;
}

.leaves-perspective {
  width: 100%;
  height: 100%;
  perspective: 1100px;
  perspective-origin: 50% 0%;
  transform-style: preserve-3d;
  position: relative;
  background: transparent;
}

.leaf {
  position: absolute;
  top: -120px;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform, opacity;
  pointer-events: none;
  background: none;
  animation: leafFall var(--leaf-dur, 18s) ease-in-out forwards;
}

.leaf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform-style: preserve-3d;
  transform-origin: center center;
  backface-visibility: visible;
  pointer-events: none;
  user-select: none;
  background: none;
  animation: leafTumble var(--leaf-dur, 18s) ease-in-out forwards;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.2))
          drop-shadow(0 3px 8px rgba(0, 0, 0, 0.1));
}

@keyframes leafFall {
  0% {
    transform: translate3d(0, -120px, var(--tz-start)) rotateZ(var(--rz-start));
    opacity: 0;
  }
  6%  { opacity: var(--leaf-opacity); }
  50% {
    transform: translate3d(var(--drift-mid), 55vh, var(--tz-mid)) rotateZ(var(--rz-mid));
    opacity: var(--leaf-opacity);
  }
  94% { opacity: calc(var(--leaf-opacity) * 0.35); }
  100% {
    transform: translate3d(var(--drift-end), 115vh, var(--tz-end)) rotateZ(var(--rz-end));
    opacity: 0;
  }
}

@keyframes leafTumble {
  0% {
    transform: rotateX(var(--rx-start)) rotateY(var(--ry-start));
  }
  50% {
    transform: rotateX(var(--rx-mid)) rotateY(var(--ry-mid));
  }
  100% {
    transform: rotateX(var(--rx-end)) rotateY(var(--ry-end));
  }
}

/* ── Music Player ── */
.music-player {
  position: fixed;
  bottom: 78px;
  right: 108px;
  z-index: 1200;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 60px;
  padding: 10px 18px 10px 10px;
  cursor: pointer;
  pointer-events: auto;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.music-player:hover {
  box-shadow: 0 12px 40px rgba(46,139,74,0.25);
  transform: translateY(-2px);
}

.music-player__btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  overflow: hidden;
}

.music-player__btn:hover {
  background: var(--gold-light);
  transform: scale(1.08);
}

.music-player__btn.playing {
  animation: musicPulse 2s ease-in-out infinite;
}

@keyframes musicPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,139,74,0.4); }
  50%       { box-shadow: 0 0 0 10px rgba(46,139,74,0); }
}

.music-player__icon {
  position: relative;
  z-index: 1;
  display: flex;
  color: #fff;
}

.music-player__icon svg { width: 20px; height: 20px; }

/* Sound waves (only visible while playing) */
.music-player__waves {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.music-player.playing .music-player__waves { opacity: 1; }
.music-player.playing .music-player__icon svg { opacity: 0; }

.music-player__waves span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: #fff;
  animation: waveBar 1.2s ease-in-out infinite;
}

.music-player__waves span:nth-child(1) { height: 6px;  animation-delay: 0.0s; }
.music-player__waves span:nth-child(2) { height: 14px; animation-delay: 0.2s; }
.music-player__waves span:nth-child(3) { height: 20px; animation-delay: 0.1s; }
.music-player__waves span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.music-player__waves span:nth-child(5) { height: 6px;  animation-delay: 0.15s; }

@keyframes waveBar {
  0%, 100% { transform: scaleY(0.4); opacity: 0.6; }
  50%       { transform: scaleY(1.0); opacity: 1; }
}

.music-player__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.music-player__title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.music-player__status {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition: color 0.3s;
}

/* volume ring on hover */
.music-player__vol {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.music-player:hover .music-player__vol { display: flex; }

/* Music player: icon-only on mobile, stacked above FABs */
@media (max-width: 768px) {
  .music-player {
    --fab-size: 48px;
    --fab-gap: 12px;
    --fab-bottom: max(20px, env(safe-area-inset-bottom));
    inset-inline-end: max(16px, env(safe-area-inset-right));
    bottom: calc(var(--fab-bottom) + var(--fab-size) * 3 + var(--fab-gap) * 3);
    padding: 0;
    gap: 0;
    border-radius: 50%;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .music-player:hover {
    transform: none;
    box-shadow: none;
  }

  .music-player__btn {
    width: var(--fab-size);
    height: var(--fab-size);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  }

  .music-player__label {
    display: none;
  }
}

/* ── Service Detail Page ── */
.service-detail:empty {
  min-height: 50vh;
  background: linear-gradient(90deg, var(--bg-section) 0%, rgba(46, 139, 74, 0.05) 50%, var(--bg-section) 100%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}

.service-detail__hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-top: 120px;
  overflow: hidden;
}

.service-detail__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroBreath 16s ease-in-out infinite;
  will-change: transform;
}

.service-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,13,7,0.55) 0%, rgba(6,13,7,0.9) 100%);
}

/* Dark hero imagery — light foreground in both themes (home + inner pages) */
.hero,
.service-detail__hero,
.page-hero {
  --hero-fg: #ffffff;
  --hero-fg-muted: rgba(245, 240, 232, 0.92);
  --hero-accent: #8ae0a3;
  --hero-accent-strong: #6fcf89;
  --hero-accent-em: #b8f0c8;
}

.hero .hero__title,
.hero .hero__title .reveal-line {
  color: var(--hero-fg);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero .hero__title .reveal-line.italic {
  color: var(--hero-accent-em);
}

.hero .hero__eyebrow {
  color: var(--hero-accent);
}

.hero .hero__subtitle {
  color: var(--hero-fg-muted);
}

.hero .btn--ghost {
  border-color: rgba(245, 240, 232, 0.6);
  color: #f5f0e8;
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #f5f0e8;
  color: #fff;
}

.service-detail__hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
  color: var(--hero-fg-muted);
}

.service-detail__back {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hero-accent);
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-detail__back:hover { color: var(--hero-fg); }

.service-detail__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--hero-fg);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
  margin: 12px 0 20px;
  line-height: 1.1;
}

.service-detail__hero .service-card__tag {
  color: var(--hero-accent);
  border-color: rgba(138, 224, 163, 0.45);
}

.service-detail__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
  color: var(--hero-fg-muted);
}

.service-detail__price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--hero-accent-strong);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.service-detail__body {
  position: relative;
  z-index: 10;
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-detail__main h2,
.service-detail__main h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}

.service-detail__main h2 { font-size: 2rem; margin-top: 0; }
.service-detail__main h3 { font-size: 1.4rem; margin-top: 36px; }

.service-detail__desc {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.service-detail__faqs {
  margin-top: 8px;
}

.service-detail__faq {
  margin-bottom: 24px;
}

.service-detail__faq strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.service-detail__faq p {
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.92rem;
  margin: 0;
}

.service-detail__ideal {
  color: var(--text-light);
  line-height: 1.7;
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: var(--glass-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.service-detail__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail__benefits li {
  padding-left: 24px;
  position: relative;
  color: var(--cream);
  line-height: 1.6;
}

.service-detail__benefits li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-detail__sidebar {
  padding: 36px;
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
  z-index: 11;
  isolation: isolate;
}

.service-detail__sidebar h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 20px;
}

.service-detail__includes {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.service-detail__includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--cream);
}

.service-detail__includes li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-detail__sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.service-detail__sidebar-meta div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
}

.service-detail__sidebar-meta span {
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 600;
}

.service-detail__sidebar-meta strong {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.service-detail__sidebar .btn--full + .btn--full {
  margin-top: 12px;
}

.service-detail__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.service-detail__notfound {
  text-align: center;
  padding: 160px 24px 80px;
}

.service-detail__notfound h1 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.beauty-center__grid .services-slider__track {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .beauty-center__grid .services-slider__track {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

.footer__bottom a {
  color: var(--gold);
  margin-left: 8px;
}

.footer__bottom a:hover { text-decoration: underline; }

@media (max-width: 1024px) {
  .service-card { flex: 0 0 calc(50% - 14px); min-width: 280px; }
  .service-detail__grid { grid-template-columns: 1fr; }
  .service-detail__sidebar { position: static; }
  .service-detail__related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-slider__arrow { width: 40px; height: 40px; font-size: 1.4rem; }
  .service-card { flex: 0 0 85%; min-width: 260px; }
  .service-detail__related-grid { grid-template-columns: 1fr; }
}

/* ── Theme Toggle Button ── */
.theme-toggle {
  --toggle-w: 52px;
  --toggle-h: 28px;
  --thumb-size: 20px;
  --thumb-pad: 3px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--toggle-w);
  height: var(--toggle-h);
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 30px;
}

.theme-toggle__input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.theme-toggle__track {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(46,139,74,0.2);
  border: 1.5px solid rgba(46,139,74,0.35);
  transition: background 0.4s ease, border-color 0.4s ease;
  pointer-events: none;
}

.theme-toggle__input:checked + .theme-toggle__track {
  background: var(--green);
  border-color: var(--green);
}

.theme-toggle__thumb {
  position: absolute;
  top: 50%;
  left: var(--thumb-pad);
  width: var(--thumb-size);
  height: var(--thumb-size);
  border-radius: 50%;
  background: var(--green-light);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  transform: translateY(-50%);
  z-index: 1;
}

.theme-toggle__input:checked ~ .theme-toggle__thumb {
  transform: translateY(-50%) translateX(calc(var(--toggle-w) - var(--thumb-size) - var(--thumb-pad) * 2));
  background: #fff;
}

/* icons inside thumb */
.theme-toggle__thumb::before {
  content: '🌙';
  font-size: 10px;
}

.theme-toggle__input:checked ~ .theme-toggle__thumb::before {
  content: '☀️';
}

/* Light mode overrides for specific elements */
[data-theme="light"] .section__title,
[data-theme="light"] .section__desc,
[data-theme="light"] .hero__subtitle,
[data-theme="light"] .about__body,
[data-theme="light"] .booking__desc,
[data-theme="light"] .testimonial-card__text,
[data-theme="light"] .service-card__desc,
[data-theme="light"] .contact__card p,
[data-theme="light"] .contact__card a,
[data-theme="light"] .footer__brand p,
[data-theme="light"] .footer__col p,
[data-theme="light"] .footer__bottom p {
  color: var(--text-light);
}

[data-theme="light"] .footer--rich .footer__brand p,
[data-theme="light"] .footer--rich .footer__col p,
[data-theme="light"] .footer--rich .footer__bottom p {
  color: rgba(255,255,255,0.75);
}

[data-theme="light"] .service-card__title,
[data-theme="light"] .offer-card__title,
[data-theme="light"] .offer-featured h2,
[data-theme="light"] .offer-list li,
[data-theme="light"] .contact__card h4,
[data-theme="light"] .testimonial-card__author strong,
[data-theme="light"] .about__stat-num,
[data-theme="light"] .booking__form-title {
  color: var(--text);
}

/* Light mode nav: white links/logo over dark hero, dark when scrolled */
[data-theme="light"] .nav:not(.scrolled) .nav__link {
  color: rgba(245, 240, 232, 0.9);
}

[data-theme="light"] .nav:not(.scrolled) .nav__link:hover,
[data-theme="light"] .nav:not(.scrolled) .nav__link--active {
  color: #8ae0a3;
}

[data-theme="light"] .nav.scrolled .nav__link {
  color: rgba(12, 26, 14, 0.75);
}

[data-theme="light"] .nav.scrolled .nav__link:hover,
[data-theme="light"] .nav.scrolled .nav__link--active {
  color: var(--gold);
}

[data-theme="light"] .nav:not(.scrolled) .nav__cta {
  border-color: rgba(245, 240, 232, 0.75);
  color: #f5f0e8;
}

[data-theme="light"] .nav:not(.scrolled) .nav__cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

[data-theme="light"] .nav:not(.scrolled) .nav__hamburger span {
  background: #f5f0e8;
}

.nav.scrolled .nav__brand-name {
  color: var(--cream);
}

[data-theme="light"] .nav.scrolled .nav__brand-name {
  color: var(--text);
}

[data-theme="light"] .nav:not(.scrolled) .nav__brand-name {
  color: #f5f0e8;
}

[data-theme="light"] .nav:not(.scrolled) .nav__brand-tag {
  color: rgba(245, 240, 232, 0.72);
}

[data-theme="light"] .nav:not(.scrolled) .nav__brand-desc {
  color: rgba(245, 240, 232, 0.65);
}

.nav.scrolled .nav__brand-desc {
  color: rgba(237, 245, 238, 0.7);
}

[data-theme="light"] .nav.scrolled .nav__brand-desc {
  color: var(--text-light);
}

[data-theme="light"] .nav:not(.scrolled) .nav__logo:hover .nav__brand-name {
  color: #8ae0a3;
}

[data-theme="light"] .nav:not(.scrolled) .logo-img--light {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

[data-theme="light"] .nav:not(.scrolled) .logo-img--dark {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

[data-theme="light"] .nav.scrolled .logo-img--light {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

[data-theme="light"] .nav.scrolled .logo-img--dark {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Uploaded logo: white over dark hero; original colors on light scrolled nav */
.nav:not(.scrolled) .nav__logo-img--custom {
  filter: brightness(0) invert(1);
}

[data-theme="light"] .nav.scrolled .nav__logo-img--custom {
  filter: none;
}

[data-theme="dark"] .nav.scrolled .nav__logo-img--custom {
  filter: brightness(0) invert(1);
}

[data-theme="light"] .hero .hero__title,
[data-theme="light"] .hero .hero__title .reveal-line {
  color: var(--hero-fg);
}

[data-theme="light"] .hero .hero__title .reveal-line.italic {
  color: var(--hero-accent-em);
}

[data-theme="light"] .hero .hero__eyebrow {
  color: var(--hero-accent);
}

[data-theme="light"] .hero .hero__subtitle {
  color: var(--hero-fg-muted);
}

[data-theme="light"] .hero .btn--ghost {
  border-color: rgba(245, 240, 232, 0.6);
  color: #f5f0e8;
}

[data-theme="light"] .hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #f5f0e8;
  color: #fff;
}

[data-theme="light"] .btn--ghost {
  border-color: rgba(12,26,14,0.35);
  color: var(--text);
}

[data-theme="light"] .btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

[data-theme="light"] .btn--primary,
[data-theme="light"] .btn--primary:hover {
  color: #fff;
}

[data-theme="light"] .btn--outline:hover {
  color: #fff;
}

[data-theme="light"] .btn--outline.btn--full {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

[data-theme="light"] .btn--outline.btn--full:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}

[data-theme="light"] .nav.scrolled .nav__cta {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

[data-theme="light"] .nav.scrolled .nav__cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #fff;
}

[data-theme="light"] .nav:not(.scrolled) .nav__cta:hover {
  color: #fff;
}

[data-theme="light"] .marquee-track {
  color: rgba(12,26,14,0.45);
}

[data-theme="light"] .tab-btn {
  color: var(--text);
  border-color: rgba(26, 107, 53, 0.45);
  background: rgba(255, 255, 255, 0.72);
}

[data-theme="light"] .tab-btn:hover {
  background: rgba(26, 107, 53, 0.12);
  border-color: var(--gold);
  color: var(--text);
}

[data-theme="light"] .tab-btn.active {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

[data-theme="light"] .hero__scroll-text {
  color: rgba(245,240,232,0.7);
}

[data-theme="light"] .dot {
  background: rgba(26,107,53,0.3);
}

[data-theme="light"] .dot.active {
  background: var(--gold);
}

[data-theme="light"] .social-btn {
  border-color: rgba(26,107,53,0.25);
  color: var(--text-light);
}

[data-theme="light"] .social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

[data-theme="light"] .form__group input,
[data-theme="light"] .form__group select,
[data-theme="light"] .form__group textarea {
  color: var(--text);
}

[data-theme="light"] .form__group select option {
  background: #fff;
  color: var(--text);
}

[data-theme="light"] .booking__perks li {
  color: var(--text);
}

[data-theme="light"] .bci strong {
  color: var(--text);
}

[data-theme="light"] .bci a,
[data-theme="light"] .bci > div > span {
  color: var(--text-light);
}

[data-theme="light"] .hero__card strong {
  color: var(--text);
}

[data-theme="light"] .hero__card small {
  color: var(--text-light);
}

[data-theme="light"] .footer__newsletter input {
  color: var(--text);
}

[data-theme="light"] .preloader {
  background: var(--bg-body);
}

/* ── Inner Pages (Packages, Blog, Contact…) ── */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 70px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroBreath 16s ease-in-out infinite;
  will-change: transform;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,7,0.92) 8%, rgba(6,13,7,0.6) 55%, rgba(6,13,7,0.4));
}

[data-theme="light"] .page-hero__overlay {
  background: linear-gradient(to top, rgba(6,13,7,0.9) 10%, rgba(6,13,7,0.55) 55%, rgba(6,13,7,0.38));
}

.page-hero__content {
  position: relative;
  z-index: 2;
  color: var(--hero-fg-muted);
}

/* Split hero: text + visible image (Packages, Programs, Pharaohs, Beauty) */
.page-hero--split {
  min-height: 52vh;
  align-items: center;
  padding: 130px 0 64px;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 42%);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  width: 100%;
}

.page-hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(138, 224, 163, 0.25);
  aspect-ratio: 4 / 5;
  max-height: 440px;
  justify-self: end;
  width: 100%;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: heroBreath 16s ease-in-out infinite;
  will-change: transform;
}

.page-hero--split .page-hero__bg {
  opacity: 0.35;
}

.page-hero--split .page-hero__overlay {
  background: linear-gradient(
    105deg,
    rgba(6, 13, 7, 0.95) 0%,
    rgba(6, 13, 7, 0.75) 45%,
    rgba(6, 13, 7, 0.5) 100%
  );
}

[data-theme="light"] .page-hero--split .page-hero__overlay {
  background: linear-gradient(
    105deg,
    rgba(6, 13, 7, 0.92) 0%,
    rgba(6, 13, 7, 0.7) 50%,
    rgba(6, 13, 7, 0.45) 100%
  );
}

.page-hero__label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hero-accent);
  margin-bottom: 12px;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--hero-fg);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.page-hero__title em { font-style: italic; color: var(--hero-accent); }

.page-hero__desc {
  margin-top: 16px;
  max-width: 560px;
  color: var(--hero-fg-muted);
  line-height: 1.7;
}

.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--hero-fg-muted);
  margin-bottom: 20px;
}

.page-breadcrumb a {
  color: var(--hero-accent);
  transition: color 0.3s;
}

.page-breadcrumb a:hover {
  color: var(--hero-fg);
}

/* Offer / package pages */
.offers-section {
  background: var(--bg-section);
  padding-bottom: 120px;
}

html[dir="rtl"] .page-breadcrumb {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Offer / package cards */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.offer-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  height: 100%;
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.offer-card__img {
  position: relative;
  aspect-ratio: 3 / 2;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-card__img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.offer-card:hover .offer-card__img img {
  transform: scale(1.06);
}

.offers-section .offer-card__body {
  flex: 1;
  min-height: 20rem;
}

.offers-section .offer-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  min-height: 3.6rem;
}

.offers-section .offer-card__desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  min-height: 4.35rem;
  flex-shrink: 0;
}

.offers-section--packages .offer-card__body {
  min-height: 0;
}

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

.offers-section--packages .offer-card__desc {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
  min-height: 0;
}

.offers-section .offer-card__body .offer-list {
  flex: 0 0 auto;
  overflow: visible;
}

.offer-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-wrap: break-word;
}

.offer-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.offer-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.offer-card__desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  min-width: 0;
}

.rte-content p {
  margin: 0 0 0.75em;
}

.rte-content p:last-child {
  margin-bottom: 0;
}

.rte-content strong,
.rte-content b {
  color: var(--text-light);
  font-weight: 600;
}

.offer-card__desc.rte-content :is(p, li, span, strong, b, em, i, u),
.offer-featured__desc.rte-content :is(p, li, span, strong, b, em, i, u) {
  color: var(--text-light);
}

.offer-card__desc.rte-content [style],
.offer-featured__desc.rte-content [style] {
  color: var(--text-light) !important;
  float: none !important;
  width: auto !important;
  max-width: 100% !important;
  position: static !important;
}

.offer-card__desc.rte-content :is(p, div, ul, ol) {
  max-width: 100%;
  overflow-wrap: break-word;
}

.rte-content ul,
.rte-content ol {
  margin: 0.5em 0 0.75em;
  padding-inline-start: 1.25em;
}

.rte-content li {
  margin-bottom: 0.35em;
}

.offer-featured__desc {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.offer-card__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  width: 100%;
}

.offer-card__footer .btn--full {
  margin-top: 8px;
}

.offer-card__price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--gold);
}

.offer-price {
  display: inline;
  font-family: var(--font-serif);
  color: var(--gold);
}

.offer-price--featured {
  display: block;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 4px;
}

.offer-price__current {
  font-weight: 600;
}

.offer-price__unit {
  font-size: 0.92em;
  color: var(--gold-light);
}

.offer-price__instead {
  font-size: 0.82em;
  color: var(--text-light);
  font-family: var(--font-body, inherit);
}

.offer-price__was {
  text-decoration: line-through;
  opacity: 0.85;
}

.offer-featured__pricing {
  margin-bottom: 24px;
}

.offer-featured__duration {
  display: block;
  margin-top: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.offer-card__meta {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.4;
}

.offers-section .offer-card__price {
  line-height: 1.5;
}

.offers-section .offer-card__footer {
  gap: 6px;
  padding-top: 14px;
}

.offers-section .offer-card__footer .btn--full {
  margin-top: 12px;
}

.offer-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin-bottom: 56px;
}

.offer-featured__img {
  position: relative;
  align-self: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
}

.offer-featured__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.offer-featured h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 16px;
}

.offer-featured p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.offer-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(46, 139, 74, 0.1);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--cream);
}

.offer-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.offer-card__body .offer-list {
  margin-bottom: 16px;
  min-width: 0;
}

.offer-card__body .offer-list li {
  min-width: 0;
  overflow-wrap: break-word;
  font-size: 0.85rem;
  padding: 8px 0;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: block;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.blog-card__img {
  height: 200px;
  overflow: hidden;
}

.blog-card__img img {
  height: 100%;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.08);
}

.blog-card__body { padding: 24px; }

.blog-card__meta {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.blog-card__read {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Blog detail */
.blog-detail__hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 60px;
  overflow: hidden;
}

.blog-detail__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroBreath 16s ease-in-out infinite;
  will-change: transform;
}

.blog-detail__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-body) 5%, rgba(6,13,7,0.6));
}

.blog-detail__hero-content { position: relative; z-index: 2; }

.blog-detail__category {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-detail__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  max-width: 800px;
  line-height: 1.15;
}

.blog-detail__meta {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.blog-detail__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.blog-detail__content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
}

.blog-detail__content h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--cream);
  margin: 36px 0 16px;
}

.blog-detail__content p { margin-bottom: 20px; }

.blog-detail__content ul {
  margin: 0 0 24px 20px;
  list-style: disc;
}

.blog-detail__content li { margin-bottom: 8px; }

.blog-detail__sidebar {
  position: sticky;
  top: 100px;
  padding: 28px;
  border-radius: var(--radius);
}

.blog-detail__sidebar h4 {
  font-family: var(--font-serif);
  color: var(--cream);
  margin-bottom: 16px;
}

.blog-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Contact page */
.contact-page {
  position: relative;
  z-index: 2;
  margin-top: -28px;
  padding-top: 32px;
}

.contact-page__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 48px;
}

.contact-page__card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
  border: 1px solid rgba(46, 139, 74, 0.14);
  border-radius: 22px;
  padding: 34px 22px 38px;
  min-height: 228px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow:
    0 14px 40px rgba(12, 26, 14, 0.08),
    0 2px 0 rgba(255, 255, 255, 0.85) inset;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-page__card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 139, 74, 0.28);
  box-shadow:
    0 20px 48px rgba(12, 26, 14, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.9) inset;
}

.contact-page__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(46, 139, 74, 0.16), rgba(46, 139, 74, 0.05));
  border: 1px solid rgba(46, 139, 74, 0.2);
  color: #2e8b4a;
  flex-shrink: 0;
}

.contact-page__icon svg {
  display: block;
  width: 34px;
  height: 34px;
  stroke-width: 1.9;
}

.contact-page__card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: #153a24;
  margin: 0 0 12px;
  line-height: 1.25;
}

.contact-page__card p {
  margin: 0;
  margin-top: auto;
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 18rem;
}

.contact-page__card a {
  color: #2e8b4a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.contact-page__card a:hover {
  color: #1a6b38;
  text-decoration: underline;
}

.contact-page__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(46, 139, 74, 0.14);
  box-shadow: 0 14px 40px rgba(12, 26, 14, 0.08);
}

.contact-page__map iframe {
  filter: none;
}

[data-theme="light"] .contact-page__card {
  background: linear-gradient(180deg, #ffffff 0%, #f0f5f1 100%);
}

[data-theme="dark"] .contact-page__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 248, 245, 0.94) 100%);
}

[data-theme="dark"] .contact-page__card h3 {
  color: #153a24;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: stretch;
  margin-bottom: 48px;
}

.contact-page__form-wrap {
  padding: 36px;
  border-radius: var(--radius-lg);
  height: 100%;
}

.contact-page__form .form__group label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.86rem;
  font-weight: 500;
}

.contact-page__form .form__group {
  margin-bottom: 16px;
}

.contact-page__form .form__row .form__group {
  margin-bottom: 0;
}

.contact-page__form .form__row {
  margin-bottom: 16px;
}

.contact-page__grid .contact__map {
  height: 100%;
  min-height: 440px;
  margin-bottom: 0;
}

.contact-form-wrap {
  padding: 36px;
  border-radius: var(--radius-lg);
}

.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 24px;
}

[data-theme="dark"] .nav__link--active {
  color: var(--cream);
}

[data-theme="light"] .nav__link--active {
  color: var(--gold);
}

@media (max-width: 1024px) {
  .offers-grid,
  .blog-grid,
  .blog-related { grid-template-columns: repeat(2, 1fr); }
  .offer-featured { grid-template-columns: 1fr; }
  .offer-featured__img {
    height: 300px;
    min-height: 0;
  }
  .blog-detail__layout { grid-template-columns: 1fr; }
  .blog-detail__sidebar { position: static; }
  .contact-page__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-page__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .offers-section .offer-card__body {
    min-height: 0;
  }

  .contact-page {
    margin-top: -12px;
    padding-top: 20px;
  }

  .contact-page__cards {
    grid-template-columns: 1fr;
    margin-top: 8px;
  }

  .contact-page__card {
    min-height: 0;
    padding: 28px 20px 32px;
  }

  .offers-grid,
  .blog-grid,
  .blog-related { grid-template-columns: 1fr; }
  .page-hero { min-height: 36vh; padding-top: 120px; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__media {
    max-height: 320px;
    aspect-ratio: 16 / 10;
    justify-self: stretch;
    order: -1;
  }
}

/* services grid is server-rendered; no loading skeleton */

/* ── Mobile comfort & responsiveness ── */
@media (pointer: coarse) {
  .cursor-glow,
  .cursor-dot,
  .leaves-scene { display: none !important; }
}

/* Mobile/tablet nav: keep the menu controlled by the hamburger up to iPad widths. */
@media (max-width: 1024px) {
  .nav {
    padding: 14px 18px;
    gap: 12px;
  }

  .nav.scrolled {
    padding: 12px 18px;
  }

  .nav__logo-mark {
    width: 62px;
    height: 62px;
  }

  .nav__logo-img {
    height: 62px;
  }

  .nav__links {
    display: none !important;
  }

  .nav__cta {
    display: none;
  }

  .nav__book-li {
    display: list-item;
    margin-top: 8px;
  }

  .nav__links.open .nav__link--book {
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: 60px;
    padding: 12px 28px;
    max-width: 280px;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__right {
    gap: 8px;
    margin-inline-start: auto;
  }

  .lang-switch {
    margin-inline-end: 2px;
  }

  .lang-switch__toggle {
    padding: 6px 10px;
    min-height: 40px;
  }

  .theme-toggle {
    --toggle-w: 54px;
    --toggle-h: 30px;
    --thumb-size: 22px;
    --thumb-pad: 3px;
  }

  .nav__links.open {
    display: flex !important;
    position: fixed;
    inset: 0;
    flex-direction: column !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    padding: 112px 24px 42px;
    min-height: 100svh;
    overflow-y: auto;
    background: var(--bg-body);
    z-index: 999;
    -webkit-overflow-scrolling: touch;
  }

  .nav__links.open li {
    width: 100%;
    text-align: center;
  }

  .nav__links.open .nav__link {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 10px 12px;
    font-size: clamp(1.05rem, 4.8vw, 1.45rem);
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: var(--text) !important;
  }

  [data-theme="dark"] .nav__links.open .nav__link {
    color: var(--cream) !important;
  }

  .nav__links.open .nav__link:hover,
  .nav__links.open .nav__link--active,
  .nav__links.open .nav__link.active {
    color: var(--gold) !important;
  }

  .nav.nav--open {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav.nav--open .nav__logo,
  .nav.nav--open .nav__right {
    position: relative;
    z-index: 1001;
  }

  .nav.nav--open .nav__hamburger span {
    background: var(--gold);
  }

  [data-theme="light"] .nav.nav--open .nav__logo-img--custom {
    filter: none;
  }
}

@media (max-width: 768px) {
  html { -webkit-text-size-adjust: 100%; }
  body { font-size: 16px; line-height: 1.65; }

  .hero__particles,
  .page-hero__bg {
    animation: none !important;
    will-change: auto;
  }

  .page-hero__media img {
    animation: none !important;
    will-change: auto;
  }

  .container { padding: 0 18px; }
  .section { padding: 72px 0; }
  .section__desc { font-size: 1rem; line-height: 1.7; }
  .nav { padding: 14px 18px; }
  .nav.scrolled { padding: 12px 18px; }
  .nav__logo { gap: 10px; }
  .nav__logo-mark { width: 64px; height: 64px; }
  .nav__logo-img { height: 64px; }
  .nav__brand-name { font-size: 0.95rem; max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .nav__brand-tag { max-width: 150px; }
  .nav__brand-desc { max-width: 150px; -webkit-line-clamp: 1; line-clamp: 1; font-size: 0.62rem; }
  .nav__right { gap: 8px; }
  .nav__hamburger span { width: 22px; }
  .theme-toggle {
    --toggle-w: 54px;
    --toggle-h: 30px;
    --thumb-size: 22px;
    --thumb-pad: 3px;
  }
  .services__tabs {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 4px;
  }
  .tab-btn {
    min-height: 44px;
    padding: 12px 18px;
    font-size: 0.75rem;
  }
  .parallax-banner { height: 300px; }
  .parallax-banner__title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  body > .fab-stack {
    inset-inline-end: max(16px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 9998;
    gap: 12px;
  }
  .booking__form-wrap { padding: 22px 18px; }
  .testimonial-card { padding: 24px 20px; }
  .service-card__title { font-size: 1.15rem; }
  .service-card__desc { font-size: 0.92rem; line-height: 1.6; }
  .page-hero__title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .services:not(.services--show-all) .services-slider__track { gap: 16px; }
}

@media (max-width: 480px) {
  .about__stats {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .hero__subtitle { font-size: 0.95rem; line-height: 1.65; }
  .hero__actions .btn { width: 100%; max-width: 280px; }
  .nav__logo-mark { width: 56px; height: 56px; }
  .nav__logo-img { height: 56px; }
  .nav__brand-name { font-size: 0.92rem; }
  .nav__brand-tag { display: none; }
  .nav__brand-desc { max-width: 110px; -webkit-line-clamp: 1; line-clamp: 1; font-size: 0.58rem; }
  .footer__grid { gap: 28px; }
}

/* ── Animations helper ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .cursor-glow, .cursor-dot { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  .back-to-top, .gallery__item, .tab-btn { cursor: pointer; }
  .hero__bg::before,
  .page-hero__bg,
  .service-detail__hero-bg,
  .blog-detail__hero-bg {
    animation: none;
    transform: scale(1);
  }
}

/* ── Language switcher (dropdown) ── */
.lang-switch {
  position: relative;
  margin-inline-end: 8px;
}
.lang-switch > summary {
  list-style: none;
  cursor: pointer;
}
.lang-switch > summary::-webkit-details-marker {
  display: none;
}
.lang-switch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 232, 0.92);
  border: 1px solid rgba(245, 240, 232, 0.45);
  border-radius: 999px;
  background: rgba(6, 13, 7, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  user-select: none;
}
.nav.scrolled .lang-switch__toggle {
  color: var(--cream);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.06);
}
.lang-switch[open] .lang-switch__toggle,
.lang-switch__toggle:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  background: rgba(46, 139, 74, 0.18);
}
.lang-switch__chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.85;
  transition: transform 0.2s;
}
.lang-switch[open] .lang-switch__chevron {
  transform: rotate(180deg);
}
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-end: 0;
  min-width: 128px;
  margin: 0;
  padding: 6px;
  list-style: none;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
  z-index: 1200;
}
.lang-switch__option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--cream);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
a.lang-switch__option:hover {
  color: var(--gold-light);
  background: rgba(46, 139, 74, 0.16);
}
.lang-switch__option.is-active {
  color: var(--gold-light);
  background: rgba(46, 139, 74, 0.2);
  cursor: default;
}

/* Light mode — match nav over hero / scrolled */
[data-theme="light"] .nav:not(.scrolled) .lang-switch__toggle {
  color: #f5f0e8;
  border-color: rgba(245, 240, 232, 0.75);
  background: rgba(6, 13, 7, 0.48);
}
[data-theme="light"] .nav:not(.scrolled) .lang-switch[open] .lang-switch__toggle,
[data-theme="light"] .nav:not(.scrolled) .lang-switch__toggle:hover {
  color: #8ae0a3;
  border-color: #8ae0a3;
  background: rgba(6, 13, 7, 0.62);
}
[data-theme="light"] .nav.scrolled .lang-switch__toggle {
  color: rgba(12, 26, 14, 0.88);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.92);
}
[data-theme="light"] .nav.scrolled .lang-switch[open] .lang-switch__toggle,
[data-theme="light"] .nav.scrolled .lang-switch__toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(46, 139, 74, 0.1);
}
[data-theme="light"] .lang-switch__menu {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(26, 107, 53, 0.22);
  box-shadow: 0 10px 28px rgba(26, 107, 53, 0.16);
}
[data-theme="light"] .lang-switch__option {
  color: var(--text);
}
[data-theme="light"] a.lang-switch__option:hover,
[data-theme="light"] .lang-switch__option.is-active {
  color: var(--gold);
  background: rgba(46, 139, 74, 0.1);
}

[dir="rtl"] .lang-switch {
  margin-inline-end: 0;
  margin-inline-start: 8px;
}
@media (max-width: 900px) {
  .lang-switch__toggle {
    padding: 5px 8px;
    font-size: 0.65rem;
  }
}
