/* ============================================
   EN PROVENCE - LUXURY LADIES SALON
   Premium CSS Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --lavender: #C8A2C8;
  --lavender-light: #DEC8DE;
  --lavender-dark: #A87CA8;
  --lavender-pale: #F0E8F0;
  --cream: #F8F4EF;
  --cream-dark: #EDE8E0;
  --white: #FFFFFF;
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark: #B8960E;
  --charcoal: #222222;
  --charcoal-light: #444444;
  --charcoal-mid: #333333;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --gray-pale: #F5F5F5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm: 0 2px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-xl: 0 40px 80px rgba(0,0,0,0.2);

  --navbar-height: 100px;
  --max-width: 1400px;
}

/* ============================================
   ICON SVG SIZING
   ============================================ */
.welcome-feature-icon svg {
  width: 14px;
  height: 14px;
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.star svg {
  width: 14px;
  height: 14px;
  display: block;
}

.counter-suffix-icon {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-left: 4px;
}

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

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav svg {
  width: 18px;
  height: 18px;
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

.service-menu-arrow svg {
  width: 18px;
  height: 18px;
}

.ba-handle-icon {
  width: 8px;
  height: 8px;
  display: inline-block;
}

.ba-handle-circle {
  gap: 2px;
}

.sub-link-icon {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-right: 6px;
  display: inline-block;
}

.btn-check-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  display: inline-block;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background-color: var(--cream);
  overflow-x: hidden;
  cursor: default;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

input, textarea, select {
  font-family: var(--font-sans);
  outline: none;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--lavender);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--lavender-dark);
}

/* ============================================
   SVG ICON SIZING
   ============================================ */
.contact-icon svg,
.contact-detail-icon svg,
.booking-highlight-icon svg,
.spa-icon svg,
.spa-item-icon svg {
  width: 1em;
  height: 1em;
  display: block;
  stroke: currentColor;
}

.btn-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
}

.btn-icon path,
.btn-icon circle,
.btn-icon rect,
.btn-icon line,
.btn-icon polyline,
.btn-icon polygon {
  fill: currentColor;
  stroke: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--lavender);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: multiply;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid var(--lavender);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

.cursor.hover {
  width: 6px;
  height: 6px;
  background: var(--gold);
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  max-width: 600px;
}

.gold-text { color: var(--gold); }
.lavender-text { color: var(--lavender-dark); }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-padding {
  padding: 120px 0;
}

.section-padding-sm {
  padding: 80px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px auto;
}

.divider-left {
  margin: 24px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform var(--transition);
}

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

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
}

.btn-primary::before {
  background: var(--gold);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline::before {
  background: var(--white);
}

.btn-outline:hover {
  color: var(--charcoal);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid var(--gold);
}

.btn-gold::before {
  background: var(--charcoal);
}

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

.btn-lavender {
  background: var(--lavender);
  color: var(--white);
  border: 1px solid var(--lavender);
}

.btn-lavender::before {
  background: var(--lavender-dark);
}

.btn-lavender:hover {
  color: var(--white);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: 1px solid #25D366;
}

.btn-whatsapp::before {
  background: #128C7E;
}

.btn-whatsapp:hover {
  color: var(--white);
}

.btn span {
  position: relative;
  z-index: 1;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 50px;
}

.navbar.scrolled {
  background: rgba(248, 244, 239, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 30px rgba(0,0,0,0.08);
  height: 70px;
}

.navbar.dark-mode.scrolled {
  background: rgba(34, 34, 34, 0.97);
}

.nav-logo img {
  height: 90px;
  width: auto;
  transition: var(--transition);
 
}

.navbar.light-logo .nav-logo img {
  filter: invert(1) brightness(1);
  mix-blend-mode: multiply;
}

.navbar.scrolled .nav-logo img {
  height: 75px;
   filter: invert(1) brightness(1);
  mix-blend-mode: multiply;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  display: block;
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-link {
  color: var(--charcoal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--gold);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-top: 2px solid var(--gold);
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.dropdown-link:hover {
  background: var(--lavender-pale);
  color: var(--lavender-dark);
  padding-left: 28px;
}

.nav-cta {
  margin-left: 20px;
}

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

.hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .hamburger span {
  background: var(--charcoal);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--charcoal);
  z-index: 999;
  transition: right var(--transition);
  padding: 100px 40px 40px;
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-link {
  display: block;
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: var(--gold);
  padding-left: 10px;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 20px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.mobile-sub-link:hover {
  color: var(--lavender);
  padding-left: 30px;
}

.mobile-menu-contact {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-contact p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.mobile-menu-contact a {
  color: var(--lavender);
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 10s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(34,34,34,0.75) 0%,
    rgba(34,34,34,0.4) 50%,
    rgba(200,162,200,0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--lavender-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--lavender-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(50px, 8vw, 110px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -1px;
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--lavender-light);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* Hero Decorative */
.hero-logo-watermark {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 2;
  opacity: 0.12;
}

.hero-logo-watermark img {
  width: 280px;
  filter: invert(1) brightness(1);
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome-section {
  padding: 100px 0;
  background: var(--cream);
  overflow: hidden;
}

.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.welcome-image {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

.welcome-image:hover img {
  transform: scale(1);
}

.welcome-image-overlay {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--white);
  padding: 30px 40px;
  box-shadow: var(--shadow-lg);
  max-width: 200px;
}

.welcome-stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--lavender-dark);
  line-height: 1;
}

.welcome-stat-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
}

.welcome-content {
  background: var(--white);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-content .section-subtitle {
  margin-bottom: 30px;
}

.welcome-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.welcome-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.welcome-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--lavender-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--lavender-dark);
  font-size: 14px;
}

.welcome-feature-text h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.welcome-feature-text p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8A2C8' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.why-section .section-label {
  color: var(--lavender);
}

.why-section .section-title {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 70px;
  border: 1px solid rgba(255,255,255,0.06);
}

.why-card {
  background: rgba(255,255,255,0.02);
  padding: 50px 35px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover {
  background: rgba(200,162,200,0.08);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 22px;
  color: var(--gold);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================
   FEATURED SERVICES
   ============================================ */
.featured-services {
  padding: 130px 0;
  background: var(--cream);
}

.featured-services .section-header {
  max-width: 600px;
}

.services-grid-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.service-card-featured {
  position: relative;
  overflow: hidden;
  height: 480px;
}

.service-card-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34,34,34,0.85) 0%, rgba(34,34,34,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  transition: var(--transition);
}

.service-card-featured:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(34,34,34,0.95) 0%, rgba(34,34,34,0.4) 60%, rgba(200,162,200,0.1) 100%);
}

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

.service-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card-desc {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

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

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

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

.service-card-link svg {
  transition: transform var(--transition);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* ============================================
   HAIR COLLECTION
   ============================================ */
.hair-collection {
  padding: 120px 0;
  background: var(--white);
}

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

.collection-layout.reverse {
  direction: rtl;
}

.collection-layout.reverse > * {
  direction: ltr;
}

.collection-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.collection-images .img-main {
  grid-column: 1 / -1;
  height: 350px;
  overflow: hidden;
}

.collection-images .img-secondary {
  height: 220px;
  overflow: hidden;
}

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

.collection-images img:hover {
  transform: scale(1.04);
}

.collection-services-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.collection-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--charcoal-light);
  transition: var(--transition);
}

.collection-service-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--lavender);
  border-radius: 50%;
  flex-shrink: 0;
}

.collection-service-item:hover {
  color: var(--lavender-dark);
  padding-left: 6px;
}

/* ============================================
   SPA COLLECTION
   ============================================ */
.spa-collection {
  background: var(--cream);
  padding: 120px 0;
  position: relative;
}

.spa-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
  margin-bottom: 80px;
}

.spa-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.spa-banner:hover img {
  transform: scale(1.06);
}

.spa-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,162,200,0.7), rgba(34,34,34,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.spa-banner-content {
  color: var(--white);
}

.spa-banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
}

.spa-banner-content p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
}

.spa-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.spa-service-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.spa-service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lavender), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.spa-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.spa-service-card:hover::after {
  transform: scaleX(1);
}

.spa-icon {
  font-size: 32px;
  margin-bottom: 18px;
  display: block;
}

.spa-service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.spa-service-card p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   MAKEUP SECTION
   ============================================ */
.makeup-section {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.makeup-section::before {
  content: 'BEAUTY';
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 800;
  color: rgba(200,162,200,0.04);
  white-space: nowrap;
  pointer-events: none;
}

.makeup-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.makeup-content .section-label { color: var(--lavender); }
.makeup-content .section-title { color: var(--white); }
.makeup-content .section-subtitle { color: rgba(255,255,255,0.6); }

.makeup-services {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.makeup-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

.makeup-service-item:hover {
  padding-left: 10px;
}

.makeup-service-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

.makeup-service-badge {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 12px;
  border: 1px solid rgba(212,175,55,0.3);
}

.makeup-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 500px;
}

.makeup-images .img-tall {
  grid-row: 1 / 3;
  overflow: hidden;
}

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

.makeup-images img:hover {
  transform: scale(1.04);
}

/* ============================================
   WAXING SECTION
   ============================================ */
.waxing-section {
  padding: 120px 0;
  background: var(--lavender-pale);
}

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

.waxing-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.waxing-category {
  background: var(--white);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.waxing-category h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lavender-pale);
}

.waxing-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--charcoal-light);
}

.waxing-list li::before {
  content: '';
  width: 5px;
  height: 1px;
  background: var(--lavender);
  flex-shrink: 0;
}

.waxing-image {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.waxing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-preview {
  padding: 120px 0;
  background: var(--white);
}

.gallery-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 8px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

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

.gallery-item:nth-child(1) {
  grid-column: span 2;
  height: 380px;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
  height: 380px;
}

.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6),
.gallery-item:nth-child(7) {
  height: 260px;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,34,34,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transform: scale(0.7);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay-icon {
  transform: scale(1);
}

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.before-after-section {
  padding: 80px 0;
  background: var(--charcoal);
}

.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  height: 500px;
  overflow: hidden;
  cursor: col-resize;
}

.ba-image {
  position: absolute;
  inset: 0;
}

.ba-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--charcoal);
  font-size: 14px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.ba-label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ba-label.before { left: 20px; }
.ba-label.after { right: 20px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 130px 0;
  background: var(--cream);
  overflow: hidden;
}

.testimonials-slider {
  margin-top: 70px;
  position: relative;
}

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

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--white);
  padding: 50px 40px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--lavender-pale);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.star {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--charcoal-light);
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--lavender-pale);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.author-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--lavender-dark);
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  justify-content: center;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.slider-btn:hover {
  background: var(--lavender-dark);
  border-color: var(--lavender-dark);
  color: var(--white);
}

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

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--lavender-dark);
  transform: scale(1.3);
}

/* ============================================
   COUNTER SECTION
   ============================================ */
.counter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--lavender-dark), var(--lavender));
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.counter-item {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.counter-item:last-child {
  border-right: none;
}

.counter-number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.counter-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 8px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 120px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.faq-image {
  position: sticky;
  top: 100px;
  height: 500px;
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  transition: color var(--transition);
  gap: 20px;
}

.faq-question:hover {
  color: var(--lavender-dark);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 16px;
}

.faq-item.open .faq-question {
  color: var(--lavender-dark);
}

.faq-item.open .faq-icon {
  background: var(--lavender-dark);
  border-color: var(--lavender-dark);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  padding-bottom: 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================
   CONTACT CTA
   ============================================ */
.contact-cta {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.contact-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.contact-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact-cta .section-label {
  color: var(--lavender);
}

.contact-cta .section-title {
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
}

.contact-cta p {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 50px;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #111111;
  color: var(--white);
  padding-top: 80px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .footer-logo {
  margin-bottom: 24px;
}

.footer-brand .footer-logo img {
  height: 100px;
  filter: invert(0) brightness(1);
}

.footer-brand-desc {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--lavender);
  border-color: var(--lavender);
  color: var(--white);
  transform: translateY(-3px);
}

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

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

.footer-link {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link::before {
  content: '—';
  font-size: 10px;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--lavender-light);
  padding-left: 10px;
}

.footer-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(200,162,200,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lavender);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info {
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.contact-info a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-info a:hover {
  color: var(--lavender-light);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

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

.footer-bottom-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--lavender);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.floating-whatsapp .wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 4px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.floating-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 900;
  width: 46px;
  height: 46px;
  background: var(--lavender-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--charcoal);
  transform: translateY(-3px);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,34,34,0.8), rgba(200,162,200,0.3));
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-header-content .breadcrumb {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.page-header-content .breadcrumb a {
  color: var(--lavender-light);
  transition: color var(--transition);
}

.page-header-content .breadcrumb a:hover {
  color: var(--gold);
}

.page-header-content h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.1;
}

.page-header-content h1 em {
  font-style: italic;
  color: var(--lavender-light);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: 120px 0;
  background: var(--cream);
}

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

.about-images-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-img-1 {
  grid-column: 1 / -1;
  height: 300px;
  overflow: hidden;
}

.about-img-2,
.about-img-3 {
  height: 220px;
  overflow: hidden;
}

.about-images-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-images-collage img:hover {
  transform: scale(1.04);
}

.about-values {
  padding: 120px 0;
  background: var(--white);
}

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

.value-card {
  text-align: center;
  padding: 50px 30px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lavender), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--lavender-pale);
  line-height: 1;
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.value-card p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-overview {
  padding: 100px 0;
  background: var(--cream);
}

.services-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  margin-top: 60px;
}

.service-menu-item {
  background: var(--white);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}

.service-menu-item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-menu-img {
  height: 280px;
  overflow: hidden;
}

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

.service-menu-item:hover .service-menu-img img {
  transform: scale(1.06);
}

.service-menu-content {
  padding: 30px;
  background: var(--white);
  transition: var(--transition);
}

.service-menu-item:hover .service-menu-content {
  background: var(--charcoal);
}

.service-menu-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--charcoal);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.service-menu-item:hover .service-menu-content h3 {
  color: var(--white);
}

.service-menu-content p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  transition: color var(--transition);
}

.service-menu-item:hover .service-menu-content p {
  color: rgba(255,255,255,0.5);
}

.service-menu-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 30px 20px;
  background: var(--white);
  color: var(--lavender-dark);
  font-size: 18px;
  transition: var(--transition);
}

.service-menu-item:hover .service-menu-arrow {
  background: var(--charcoal);
  color: var(--gold);
}

/* ============================================
   HAIR SERVICES PAGE
   ============================================ */
.hair-services-page {
  padding: 100px 0;
  background: var(--cream);
}

.services-category {
  margin-bottom: 80px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.category-line {
  flex: 1;
  height: 1px;
  background: var(--lavender-pale);
}

.category-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--charcoal);
  white-space: nowrap;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
}

.service-item {
  background: var(--white);
  padding: 30px;
  transition: var(--transition);
  cursor: default;
}

.service-item:hover {
  background: var(--charcoal);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.service-item:hover h3 {
  color: var(--white);
}

.service-item p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  transition: color var(--transition);
}

.service-item:hover p {
  color: rgba(255,255,255,0.5);
}

.service-item-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.service-item:hover .service-item-tag {
  color: var(--gold);
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page {
  padding: 80px 0;
  background: var(--cream);
}

.gallery-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gray-light);
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.gallery-masonry {
  columns: 4;
  column-gap: 8px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-masonry-item:hover img {
  transform: scale(1.05);
}

.gallery-masonry-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(34,34,34,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-masonry-item:hover .overlay {
  opacity: 1;
}

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

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

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
  background: none;
}

.lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  background: none;
}

.lightbox-nav:hover {
  background: var(--lavender-dark);
  border-color: var(--lavender-dark);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: 100px 0;
  background: var(--cream);
}

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

.contact-info-block {
  background: var(--charcoal);
  padding: 60px 50px;
  color: var(--white);
}

.contact-info-block h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-block .subtitle {
  font-family: var(--font-serif);
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  margin-bottom: 50px;
}

.contact-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-detail-icon {
  width: 46px;
  height: 46px;
  background: rgba(200,162,200,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lavender);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-family: var(--font-serif);
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  text-decoration: none;
  transition: color var(--transition);
}

.contact-detail-text a:hover {
  color: var(--lavender-light);
}

.contact-hours {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-hours h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font-serif);
  font-size: 14px;
}

.hours-day {
  color: rgba(255,255,255,0.6);
}

.hours-time {
  color: var(--lavender-light);
}

.map-container {
  height: 400px;
  overflow: hidden;
  margin-top: 60px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-page {
  padding: 100px 0;
  background: var(--cream);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.booking-info {
  background: var(--white);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.booking-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.booking-info p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 30px;
}

.booking-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.booking-highlight-icon {
  width: 34px;
  height: 34px;
  background: var(--lavender-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lavender-dark);
  font-size: 14px;
  flex-shrink: 0;
}

.booking-highlight-text {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--charcoal-light);
  line-height: 1.5;
}

.booking-highlight-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.booking-form-wrapper {
  background: var(--white);
  padding: 60px;
  box-shadow: var(--shadow-md);
}

.booking-form-wrapper h2 {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.booking-form-wrapper .subtitle {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 40px;
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-input,
.form-select,
.form-textarea {
  border: 1px solid var(--cream-dark);
  padding: 14px 18px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--lavender);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,162,200,0.1);
}

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

.form-select-wrapper {
  position: relative;
}

.form-select-wrapper::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.form-submit {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 12px;
  letter-spacing: 3px;
}

/* ============================================
   SPA PAGE SPECIFIC
   ============================================ */
.spa-intro {
  padding: 100px 0;
  background: var(--cream);
}

.spa-services-detailed {
  padding: 80px 0;
  background: var(--white);
}

.spa-category {
  margin-bottom: 80px;
}

.spa-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.spa-item-card {
  background: var(--cream);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}

.spa-item-card:hover {
  border-color: var(--lavender);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.spa-item-icon {
  font-size: 30px;
  margin-bottom: 12px;
  display: block;
}

.spa-item-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--charcoal);
}

/* ============================================
   SEMI PERMANENT MAKEUP PAGE
   ============================================ */
.spm-intro {
  padding: 100px 0;
  background: var(--cream);
}

.spm-services {
  padding: 80px 0;
  background: var(--white);
}

.spm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.spm-card {
  position: relative;
  overflow: hidden;
  height: 450px;
}

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

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

.spm-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(34,34,34,0.9), transparent);
  padding: 40px 30px 30px;
  color: var(--white);
  text-align: center;
}

.spm-card-content h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin-bottom: 8px;
}

.spm-card-content p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}

/* ============================================
   WAXING PAGE
   ============================================ */
.waxing-page {
  padding: 100px 0;
  background: var(--cream);
}

.waxing-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.waxing-full-category {
  background: var(--white);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.waxing-full-category h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.waxing-full-category .cat-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lavender-dark);
  margin-bottom: 24px;
  display: block;
}

.waxing-service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.waxing-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream);
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--charcoal-light);
  transition: var(--transition);
}

.waxing-service-row:hover {
  padding-left: 8px;
  color: var(--lavender-dark);
}

.waxing-service-row::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23D4AF37'%3E%3Cpath d='M12 0L13.5 8.5L22 12L13.5 15.5L12 24L10.5 15.5L2 12L10.5 8.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity var(--transition);
}

.waxing-service-row:hover::after {
  opacity: 1;
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo img {
  height: 110px;
  filter: invert(1) brightness(1);
  animation: logoBreath 2s ease infinite;
}

@keyframes logoBreath {
  0%, 100% { opacity: 0.5; transform: scale(0.97); }
  50% { opacity: 1; transform: scale(1); }
}

.loader-progress {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.loader-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  width: 100%;
  background: var(--gold);
  animation: loadProgress 1.2s ease forwards;
}

@keyframes loadProgress {
  to { left: 0; }
}

.loader-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1100px) {
  .container { padding: 0 30px; }
  .navbar-inner { padding: 0 30px; }
  
  .welcome-content { padding: 60px 50px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-featured { grid-template-columns: 1fr 1fr; }
  .services-grid-featured .service-card-featured:nth-child(3) { grid-column: 1 / -1; }
  .spa-services-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(50% - 15px); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .waxing-layout { gap: 40px; }
  .collection-layout { gap: 40px; }
  .makeup-layout { gap: 40px; }
  .faq-layout { gap: 50px; }
  .gallery-masonry { columns: 3; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-layout { gap: 30px; }
  .services-menu { grid-template-columns: repeat(2, 1fr); }
  .spm-grid { grid-template-columns: 1fr 1fr; }
  .spa-items-grid { grid-template-columns: repeat(3, 1fr); }
  .waxing-full-grid { grid-template-columns: 1fr; }
  .contact-layout { gap: 30px; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root { --navbar-height: 70px; }
  
  .container { padding: 0 20px; }
  .navbar-inner { padding: 0 20px; }
  .section-padding { padding: 80px 0; }
  
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  .nav-logo img { height: 70px; }
  .navbar.scrolled .nav-logo img { height: 60px; }
  
  .hero-title { font-size: 42px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-logo-watermark { display: none; }
  
  .welcome-inner { grid-template-columns: 1fr; }
  .welcome-image { height: 300px; }
  .welcome-content { padding: 50px 30px; }
  .welcome-features { grid-template-columns: 1fr; }
  
  .why-grid { grid-template-columns: 1fr; }
  
  .services-grid-featured { grid-template-columns: 1fr; }
  .service-card-featured { height: 350px; }
  .service-card-featured:nth-child(3) { grid-column: auto; }
  
  .collection-layout { grid-template-columns: 1fr; gap: 40px; }
  .collection-layout.reverse { direction: ltr; }
  .collection-services-list { grid-template-columns: 1fr; }
  
  .spa-services-grid { grid-template-columns: 1fr 1fr; }
  
  .makeup-layout { grid-template-columns: 1fr; }
  .makeup-images { height: 350px; }
  
  .waxing-layout { grid-template-columns: 1fr; }
  .waxing-image { height: 300px; }
  .waxing-services-grid { grid-template-columns: 1fr; }
  
  .gallery-grid-preview { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: auto; height: 200px; }
  .gallery-item:nth-child(4) { grid-column: auto; }
  .gallery-grid-preview .gallery-item { height: 200px; }
  
  .testimonial-card { min-width: 100%; }
  
  .counter-grid { grid-template-columns: 1fr 1fr; }
  
  .faq-layout { grid-template-columns: 1fr; }
  .faq-image { display: none; }
  
  .contact-cta .section-title { font-size: 28px; }
  
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  
  .gallery-masonry { columns: 2; }
  
  .about-story-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  
  .services-menu { grid-template-columns: 1fr; }
  .services-list-grid { grid-template-columns: 1fr; }
  
  .contact-layout { grid-template-columns: 1fr; }
  
  .booking-layout { grid-template-columns: 1fr; }
  .booking-form-wrapper { padding: 30px; }
  .form-grid { grid-template-columns: 1fr; }
  
  .spm-grid { grid-template-columns: 1fr; }
  .spa-items-grid { grid-template-columns: 1fr 1fr; }
  
  .cursor, .cursor-follower { display: none; }
  
  .page-header h1 { font-size: 36px; }
  
  .before-after-slider { height: 280px; }
}

@media (max-width: 480px) {
  .gallery-masonry { columns: 1; }
  .spa-services-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr; }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .spa-items-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 34px; }
  .hero-tagline { font-size: 16px; }
}
