/* ═══════════════════════════════════════════════════════════
   LUXE BEAUTÉ — LUXURY SALON STYLESHEET
   Cinematic · Elegant · Premium · Feminine
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --black: #0a0a0a;
  --black-deep: #050505;
  --white: #f8f6f3;
  --cream: #faf5ef;
  --nude: #e8ddd3;
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --gold-bright: #e8c87a;
  --rose-gold: #d4a0a0;
  --rose-gold-glow: rgba(212, 160, 160, 0.3);
  --champagne: #f5e6d0;
  --pearl: #f0ece6;
  --lavender: #c4b5d4;
  --lavender-soft: rgba(196, 181, 212, 0.15);
  --deep-plum: #2a1a2e;
  --charcoal: #1a1a1a;
  --gray-dark: #2a2a2a;
  --gray-mid: #555;
  --gray-light: #999;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);

  --ff-display: 'Playfair Display', serif;
  --ff-body: 'Cormorant Garamond', serif;
  --ff-sans: 'Montserrat', sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --header-h: 80px;
}

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

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

body {
  font-family: var(--ff-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: none;
  font-family: inherit;
  color: inherit;
}

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

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

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-video { display: none; }
  .hero-particles { display: none; }
  .film-grain { display: none; }
  .hero-orbs { display: none; }
  .hero-light-rays { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   PAGE LOADER
   ═══════════════════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-deep);
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 2;
}

.loader-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rose-gold-glow) 0%, transparent 70%);
  filter: blur(60px);
  animation: loaderPulse 2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.loader-text-luxe {
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--gold);
  opacity: 0;
}

.loader-text-beaute {
  font-family: var(--ff-display);
  font-size: 20px;
  font-style: italic;
  letter-spacing: 12px;
  color: var(--rose-gold);
  opacity: 0;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: var(--glass-border);
  border-radius: 1px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  border-radius: 1px;
  transition: width 0.1s linear;
}

.loader-percent {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gray-light);
  opacity: 0;
}

.loader-overlay-left,
.loader-overlay-right {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--black-deep);
  z-index: 1;
}
.loader-overlay-left { left: 0; }
.loader-overlay-right { right: 0; }

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════════ */
.custom-cursor {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease-smooth);
}

.cursor-ring {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}

.cursor-glow {
  position: absolute;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(8px);
}

.custom-cursor.hovering .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

.custom-cursor.hovering .cursor-dot {
  transform: translate(-50%, -50%) scale(2);
  background: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.5s, backdrop-filter 0.5s, box-shadow 0.5s;
}

.main-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 var(--glass-border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--ff-display);
  font-size: 24px;
  letter-spacing: 2px;
  z-index: 10;
}

.logo-luxe {
  color: var(--gold);
  font-weight: 500;
}

.logo-beaute {
  color: var(--rose-gold);
  font-style: italic;
  font-weight: 400;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--studio {
  color: var(--lavender);
}

.nav-cta {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.4s var(--ease-out);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 10;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.mobile-nav-overlay.active {
  pointer-events: all;
  opacity: 1;
}

.mobile-nav-bg {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(30px);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 1;
}

.mobile-nav-links li {
  list-style: none;
  display: block;
  text-align: center;
}

.mobile-link {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}

.mobile-nav-overlay.active .mobile-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-overlay.active li:nth-child(1) .mobile-link { transition-delay: 0.05s; }
.mobile-nav-overlay.active li:nth-child(2) .mobile-link { transition-delay: 0.1s; }
.mobile-nav-overlay.active li:nth-child(3) .mobile-link { transition-delay: 0.15s; }
.mobile-nav-overlay.active li:nth-child(4) .mobile-link { transition-delay: 0.2s; }
.mobile-nav-overlay.active li:nth-child(5) .mobile-link { transition-delay: 0.25s; }
.mobile-nav-overlay.active li:nth-child(6) .mobile-link { transition-delay: 0.3s; }
.mobile-nav-overlay.active li:nth-child(7) .mobile-link { transition-delay: 0.35s; }
.mobile-nav-overlay.active li:nth-child(8) .mobile-link { transition-delay: 0.4s; }

.mobile-link--cta {
  color: var(--gold);
  font-size: 18px;
  padding: 12px 32px;
  border: 1px solid var(--gold);
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.3) 40%, rgba(5,5,5,0.7) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.5) 0%, transparent 50%, rgba(5,5,5,0.5) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Glow Orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--rose-gold-glow);
  top: 10%;
  left: -5%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(201, 169, 110, 0.2);
  top: 60%;
  right: -5%;
  animation: orbFloat2 15s ease-in-out infinite;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: var(--lavender-soft);
  bottom: 10%;
  left: 30%;
  animation: orbFloat3 18s ease-in-out infinite;
}

.orb-4 {
  width: 200px;
  height: 200px;
  background: rgba(212, 160, 160, 0.15);
  top: 30%;
  right: 25%;
  animation: orbFloat1 20s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -40px); }
  66% { transform: translate(-20px, 20px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-40px, 30px); }
  66% { transform: translate(20px, -30px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -20px); }
}

/* Light Rays */
.hero-light-rays {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.light-ray {
  position: absolute;
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.08), transparent);
  transform-origin: top center;
}

.ray-1 {
  width: 2px;
  height: 100%;
  left: 20%;
  top: 0;
  transform: rotate(-15deg);
  animation: rayPulse 6s ease-in-out infinite;
}

.ray-2 {
  width: 1px;
  height: 80%;
  left: 55%;
  top: 0;
  transform: rotate(5deg);
  animation: rayPulse 8s ease-in-out infinite 2s;
}

.ray-3 {
  width: 1px;
  height: 90%;
  right: 25%;
  top: 0;
  transform: rotate(10deg);
  animation: rayPulse 7s ease-in-out infinite 4s;
}

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

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-subtitle-wrap {
  overflow: hidden;
  margin-bottom: 16px;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(100%);
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.title-word--accent {
  font-style: italic;
  color: var(--rose-gold);
}

.hero-desc {
  font-family: var(--ff-body);
  font-size: 18px;
  color: var(--nude);
  max-width: 520px;
  margin: 0 auto 40px;
  opacity: 0;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover .btn-glow {
  transform: translateX(100%);
}

.btn--ghost {
  border: 1px solid var(--glass-border-hover);
  color: var(--white);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--large {
  padding: 18px 48px;
  font-size: 12px;
}

.btn-arrow {
  transition: transform 0.3s;
}

.btn--ghost:hover .btn-arrow {
  transform: translateX(4px);
}

/* Scroll Indicator */
.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;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-text {
  font-family: var(--ff-sans);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

.section-title em {
  color: var(--rose-gold);
  font-style: italic;
}

.section-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto 0;
}

/* ═══════════════════════════════════════════════════════════
   BEAUTY FLOW — CINEMATIC SLIDER
   ═══════════════════════════════════════════════════════════ */
.beauty-flow {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.beauty-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.slider-viewport {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
  border-radius: 2px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0s;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.4);
  transform: scale(1.1);
}

.slide-fg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  max-width: 440px;
  z-index: 2;
}

.slide-fg-img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 3;
}

.slide-number {
  display: block;
  font-family: var(--ff-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.slide-title {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
}

.slide-title em {
  font-style: italic;
  color: var(--rose-gold);
}

.slide-desc {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--nude);
  max-width: 360px;
}

.slide-light-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.05) 45%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 55%, transparent 60%);
  z-index: 4;
  transform: translateX(-100%);
  pointer-events: none;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--glass-border-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: all 0.3s;
}

.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.slider-progress {
  width: 200px;
  height: 1px;
  background: var(--glass-border);
  border-radius: 1px;
  overflow: hidden;
}

.slider-progress-bar {
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--rose-gold));
  transition: width 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--glass-border-hover);
  background: transparent;
  transition: all 0.3s;
  cursor: none;
}

.slider-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */
.services {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.service-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: none;
}

.service-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--glass-border), transparent, var(--glass-border));
  opacity: 0;
  transition: opacity 0.5s;
}

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

.service-card-inner {
  position: relative;
  padding: 48px 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.service-card:hover .service-card-inner {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--white);
}

.service-desc {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-price {
  opacity: 1;
  transform: translateY(0);
}

.price-from {
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
}

.price-value {
  font-family: var(--ff-display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 400;
}

.service-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transition: left 0.8s var(--ease-out);
}

.service-card:hover .service-shine {
  left: 150%;
}

/* ═══════════════════════════════════════════════════════════
   SIGNATURE TREATMENTS
   ═══════════════════════════════════════════════════════════ */
.signature {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.signature-items {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.sig-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sig-item--reverse {
  direction: rtl;
}

.sig-item--reverse > * {
  direction: ltr;
}

.sig-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 5;
}

.sig-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-out);
}

.sig-img-wrap:hover .sig-img {
  transform: scale(1.05);
}

.sig-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4));
}

.sig-content {
  padding: 20px 0;
}

.sig-number {
  display: block;
  font-family: var(--ff-display);
  font-size: 64px;
  color: var(--gold);
  opacity: 0.2;
  margin-bottom: 16px;
  line-height: 1;
}

.sig-title {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
}

.sig-desc {
  font-family: var(--ff-body);
  font-size: 17px;
  color: var(--nude);
  line-height: 1.8;
  margin-bottom: 24px;
}

.sig-duration {
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════════════
   TRANSFORMATION GALLERY
   ═══════════════════════════════════════════════════════════ */
.transformations {
  padding: 120px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.transform-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  grid-auto-rows: 280px;
}

.transform-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: none;
}

.transform-item--wide {
  grid-column: span 2;
}

.transform-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease-out);
}

.transform-item:hover .transform-img {
  transform: scale(1.08);
}

.transform-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.5s;
}

.transform-item:hover .transform-overlay {
  opacity: 1;
}

.transform-cat {
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.transform-title {
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
}

.transform-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
  padding: 120px 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-carousel {
  position: relative;
}

.testimonial-track {
  position: relative;
  min-height: 320px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  padding: 48px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), visibility 0s 0.6s;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), visibility 0s;
}

.testimonial-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, var(--rose-gold-glow) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.testimonial-card.active .testimonial-glow {
  opacity: 0.15;
}

.testimonial-quote {
  font-family: var(--ff-display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--ff-body);
  font-size: 20px;
  line-height: 1.8;
  color: var(--nude);
  margin-bottom: 32px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--glass-border-hover);
}

.testimonial-name {
  display: block;
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.testimonial-role {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 2px;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--glass-border-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  transition: all 0.3s;
  cursor: none;
}

.testimonial-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--glass-border-hover);
  transition: all 0.3s;
}

.t-dot.active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   LUXURY EXPERIENCE
   ═══════════════════════════════════════════════════════════ */
.luxury-experience {
  position: relative;
  padding: 160px 40px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.experience-bg {
  position: absolute;
  inset: 0;
}

.experience-fog {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 160, 160, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(196, 181, 212, 0.06) 0%, transparent 50%);
  animation: fogDrift 20s ease-in-out infinite;
}

@keyframes fogDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.experience-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, var(--black-deep) 50%, var(--black) 100%);
}

.experience-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}

.experience-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}

.experience-title em {
  display: block;
  font-style: italic;
  color: var(--rose-gold);
}

.experience-desc {
  font-family: var(--ff-body);
  font-size: 18px;
  color: var(--nude);
  line-height: 1.9;
  margin-bottom: 48px;
}

.experience-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.exp-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gray-light);
}

.exp-feature-icon {
  color: var(--gold);
  font-size: 8px;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING / CTA
   ═══════════════════════════════════════════════════════════ */
.booking {
  position: relative;
  padding: 120px 40px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-bg-wrap {
  position: absolute;
  inset: 0;
}

.booking-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.25);
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(0,0,0,0.6) 50%, var(--black) 100%);
}

.booking-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  width: 100%;
}

.booking-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 16px;
}

.booking-title em {
  font-style: italic;
  color: var(--rose-gold);
}

.booking-desc {
  font-family: var(--ff-body);
  font-size: 18px;
  color: var(--nude);
  margin-bottom: 48px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  position: relative;
}

.form-group--full {
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border-hover);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.form-input::placeholder {
  color: var(--gray-mid);
}

.form-input:focus {
  border-color: var(--gold);
}

.form-select {
  cursor: none;
  appearance: none;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.form-input:focus ~ .form-line {
  width: 100%;
}

.booking-form .btn {
  align-self: center;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.main-footer {
  padding: 80px 40px 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--gray-light);
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer-col a {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--gray-light);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-divider {
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin-bottom: 40px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-copy {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: var(--gray-mid);
  letter-spacing: 1px;
}

.footer-studio {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-studio-label {
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gray-mid);
  text-transform: uppercase;
}

.footer-studio-link {
  position: relative;
  display: inline-block;
}

.studio-name {
  font-family: var(--ff-display);
  font-size: 18px;
  background: linear-gradient(135deg, #14B8A6, #8B5CF6, #C084FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.studio-glow {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #14B8A6, #8B5CF6, #C084FC);
  animation: studioGlowPulse 3s ease-in-out infinite;
}

@keyframes studioGlowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; box-shadow: 0 0 12px rgba(139, 92, 246, 0.4); }
}

.footer-studio-sub {
  font-family: var(--ff-sans);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gray-mid);
}

/* ═══════════════════════════════════════════════════════════
   FILM GRAIN OVERLAY
   ═══════════════════════════════════════════════════════════ */
.film-grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='6' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-size: 256px;
  animation: grainShift 0.5s steps(4) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-5%, -5%); }
  50% { transform: translate(5%, 0); }
  75% { transform: translate(0, 5%); }
  100% { transform: translate(-5%, 5%); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sig-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sig-item--reverse {
    direction: ltr;
  }

  .transform-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .footer-top {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .beauty-slider {
    padding: 0 20px;
  }

  .slider-viewport {
    height: 50vh;
    min-height: 400px;
  }

  .slide-fg {
    width: 65%;
  }

  .slide-content {
    bottom: 30px;
    left: 30px;
  }

  .slide-number {
    font-size: 48px;
  }

  .slide-title {
    font-size: 24px;
  }

  .services {
    padding: 80px 20px;
  }

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

  .signature {
    padding: 80px 20px;
  }

  .signature-items {
    gap: 80px;
  }

  .sig-img-wrap {
    aspect-ratio: 16 / 10;
  }

  .transformations {
    padding: 80px 20px;
  }

  .transform-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .transform-item--wide {
    grid-column: span 1;
  }

  .testimonials {
    padding: 80px 20px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-text {
    font-size: 17px;
  }

  .luxury-experience {
    padding: 100px 20px;
  }

  .experience-features {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .booking {
    padding: 80px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .main-footer {
    padding: 60px 20px 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  /* Hide custom cursor on touch */
  .custom-cursor {
    display: none;
  }

  body {
    cursor: auto;
  }

  button, a, [data-cursor] {
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .slider-controls {
    gap: 12px;
  }

  .slider-progress {
    width: 100px;
  }

  .section-title {
    font-size: 32px;
  }
}
