/* ================================================================
   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;
}

/* ── 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; 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;
}

body.custom-cursor { cursor: none; }

img { display: block; 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; }
body.custom-cursor button { cursor: none; }
body.custom-cursor .fab { cursor: none; }
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;
}

.preloader__inner { text-align: center; }

.preloader__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.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: none;
}

.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: var(--dark);
}

.btn--primary:hover {
  background: var(--gold-light);
  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: var(--dark);
  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 {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 140px;
  height: 64px;
}

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

.nav__logo-img {
  height: 64px;
  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-img.logo-img--dark,
.nav__logo-img.logo-img--light,
.footer__logo-img.logo-img--dark,
.footer__logo-img.logo-img--light,
.preloader__logo-img.logo-img--dark,
.preloader__logo-img.logo-img--light {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.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 {
  position: relative;
  min-height: 220px;
}

.preloader__logo-img.logo-img--dark,
.preloader__logo-img.logo-img--light {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
}

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

.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: 16px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: none;
}

.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::before {
  content: '';
  position: absolute;
  inset: -10%;
  background-image: url('../assets/images/hero-spa.png');
  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;
}

.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);
    filter: brightness(0.92) saturate(1.05);
  }
  50% {
    transform: scale(1.12);
    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: 0;
  animation: fadeUp 0.8s 0.2s ease-out forwards;
}

.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: 0;
  transform: translateY(60px);
  animation: slideUp 0.9s ease-out forwards;
}

.reveal-line:nth-child(1) { animation-delay: 0.4s; }
.reveal-line:nth-child(2) { animation-delay: 0.6s; }

.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: 0;
  animation: fadeUp 0.8s 0.9s ease-out forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease-out forwards;
}

.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 ── */
.about { background: var(--bg-section); }

.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: none;
}

.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: none;
  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: 6;
  background: var(--bg-body);
  overflow: hidden;
}

.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: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 60px;
  border: 1.5px solid rgba(46,139,74,0.25);
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: none;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  font-weight: 600;
}

/* 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: none;
}

.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: none;
  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: none;
}

.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 {
  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('https://images.unsplash.com/photo-1519823551278-64ac92734fb1?w=1800&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.35);
}

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

.parallax-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 36px;
}

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

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

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

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

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

.gallery__item img { 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: none;
}

.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: none;
  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);
}

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

.testimonial-card {
  min-width: calc(50% - 14px);
  padding: 40px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

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

.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: none;
}

.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__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; }

/* ── 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;
}

/* ── 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__top { padding: 80px 0; }

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

.footer__logo {
  margin-bottom: 16px;
}

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

.footer__brand p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer__social { display: flex; gap: 12px; }

.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__col h5 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }

.footer__col a {
  font-size: 0.875rem;
  color: var(--text-light);
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--gold); }

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

.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 {
  padding: 24px 0;
  border-top: 1px solid rgba(46,139,74,0.1);
  text-align: center;
}

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

/* ── Back to Top ── */
/* ── Floating action buttons (WhatsApp · Call · Up) ── */
.fab-stack {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.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;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
  transition: var(--transition);
  cursor: none;
}

.fab-stack .back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

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

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── 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) {
  .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-section);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav__links.open .nav__link {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }

  .hero__card { display: none; }
  .hero__title { font-size: clamp(2.8rem, 10vw, 5rem); }

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


  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }

  .testimonials__track .testimonial-card { min-width: calc(100% - 0px); }
  .testimonial-card { padding: 28px; }

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

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

  .fab-stack { right: 20px; bottom: 24px; }
  .fab { width: 48px; height: 48px; }

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

}

@media (max-width: 480px) {
  .nav { padding: 16px 20px; }
  .section { padding: 70px 0; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__actions { flex-direction: column; align-items: center; }
  .testimonials__track .testimonial-card { min-width: 100%; }
}

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

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

.leaf {
  position: absolute;
  top: -120px;
  will-change: transform, opacity;
  transform-style: preserve-3d;
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

.leaf img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Leaf fall keyframe — injected dynamically per leaf via inline style */
@keyframes leafFall {
  0% {
    transform: translateX(0) translateY(-100px) translateZ(var(--tz-start))
               rotateX(0deg) rotateY(0deg) rotateZ(var(--rz-start));
    opacity: 0;
  }
  5%  { opacity: var(--leaf-opacity); }
  50% {
    transform: translateX(var(--drift-mid)) translateY(55vh) translateZ(var(--tz-mid))
               rotateX(var(--rx-mid)) rotateY(180deg) rotateZ(var(--rz-mid));
    opacity: var(--leaf-opacity);
  }
  95% { opacity: calc(var(--leaf-opacity) * 0.4); }
  100% {
    transform: translateX(var(--drift-end)) translateY(115vh) translateZ(var(--tz-end))
               rotateX(var(--rx-end)) rotateY(360deg) rotateZ(var(--rz-end));
    opacity: 0;
  }
}

/* ── 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: none;
  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, above Call FAB */
@media (max-width: 768px) {
  .music-player {
    bottom: 204px;
    right: 20px;
    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: 48px;
    height: 48px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  }

  .music-player__label {
    display: none;
  }
}

/* ── Service Detail Page ── */
.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 — always light text (readable in light & dark theme) */
.service-detail__hero,
.page-hero {
  --hero-fg: #ffffff;
  --hero-fg-muted: rgba(245, 240, 232, 0.92);
  --hero-accent: #8ae0a3;
  --hero-accent-strong: #6fcf89;
}

.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__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__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;
}

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

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

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

.service-detail__sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.service-detail__sidebar-meta div {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.service-detail__sidebar-meta span { color: var(--text-light); }
.service-detail__sidebar-meta strong { color: var(--gold); }

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

.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 {
  position: relative;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
  cursor: none;
}

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

.theme-toggle__track {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  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;
  cursor: none;
}

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

.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  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);
}

.theme-toggle__input:checked ~ .theme-toggle__thumb {
  transform: translateX(24px);
  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 a,
[data-theme="light"] .footer__col p,
[data-theme="light"] .footer__bottom p {
  color: var(--text-light);
}

[data-theme="light"] .service-card__title,
[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);
}

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

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

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

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

/* Inner pages: nav over dark hero — light text in light mode (desktop bar) */
@media (min-width: 769px) {
  [data-theme="light"] body[data-page] .nav .nav__link {
    color: rgba(245, 240, 232, 0.9);
  }

  [data-theme="light"] body[data-page] .nav .nav__link:hover,
  [data-theme="light"] body[data-page] .nav .nav__link--active {
    color: #8ae0a3;
  }

  [data-theme="light"] body[data-page] .nav.scrolled {
    background: rgba(6, 13, 7, 0.88);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

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

  [data-theme="light"] body[data-page] .nav .nav__cta:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    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"] .marquee-track {
  color: rgba(12,26,14,0.45);
}

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

[data-theme="light"] .tab-btn:hover,
[data-theme="light"] .tab-btn.active {
  color: #ffffff;
  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 cards */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

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

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

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

.offer-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.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;
  flex: 1;
}

.offer-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

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

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

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

.offer-featured__img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
}

.offer-featured__img img { height: 100%; object-fit: cover; }

.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-bottom: 24px;
}

.offer-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--cream);
  font-size: 0.9rem;
}

.offer-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* 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__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.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; }
  .blog-detail__layout { grid-template-columns: 1fr; }
  .blog-detail__sidebar { position: static; }
  .contact-page__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .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;
  }
}

/* ── 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);
  }
}
