/* =============================================
   KUSUM'S HAIR & BEAUTY STUDIO — DESIGN SYSTEM
   Warm Luxe Local · Glenroy, VIC
   ============================================= */

/* ----- Custom Properties ----- */
:root {
  /* Primary Palette */
  --champagne: #F5E6D3;
  --rose-dust: #D4A5A5;
  --mocha: #8B6355;
  --pearl: #FAF7F4;
  --charcoal: #2C2416;

  /* Accent Palette */
  --gold: #C9A96E;
  --blush-glow: #F0C4B8;
  --sage: #8FAF96;
  --whatsapp: #25D366;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-blur: 20px;
  --glass-shadow: 0 8px 32px rgba(139, 99, 85, 0.15);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #F5E6D3 0%, #D4A5A5 50%, #C9A96E 100%);
  --gradient-section: linear-gradient(180deg, #FAF7F4 0%, #F5E6D3 100%);
  --gradient-cta: linear-gradient(135deg, #8B6355 0%, #C9A96E 100%);

  /* Shadows */
  --shadow-soft: 0 2px 16px rgba(139, 99, 85, 0.08);
  --shadow-medium: 0 8px 32px rgba(139, 99, 85, 0.15);
  --shadow-strong: 0 24px 64px rgba(44, 36, 22, 0.20);
  --shadow-glow: 0 0 40px rgba(201, 169, 110, 0.35);

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-accent: "Italiana", serif;

  /* Container */
  --container: 1280px;
  --gutter: 48px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--pearl);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.15; }
::selection { background: var(--rose-dust); color: #fff; }

/* ----- Layout ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow { max-width: 780px; }
.section-pad { padding: var(--space-4xl) 0; }

/* ----- Typography ----- */
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}
.section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--mocha);
}
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold); }
.section-sub {
  font-size: 17px;
  color: rgba(44,36,22,0.65);
  max-width: 540px;
  margin: 0 auto;
}
.section-sub.light { color: rgba(255,255,255,0.75); }
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.section-pill {
  display: inline-block;
  padding: 6px 20px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

/* ----- Glass Card ----- */
.glass-card {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-medium);
}
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  background: transparent;
  color: var(--mocha);
  border: 2px solid var(--mocha);
}
.btn-secondary:hover {
  background: var(--mocha);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid rgba(44,36,22,0.2);
}
.btn-ghost:hover {
  border-color: var(--charcoal);
  background: rgba(44,36,22,0.05);
}

.btn-whatsapp { border-color: var(--whatsapp); color: var(--whatsapp); }
.btn-whatsapp:hover { background: var(--whatsapp); color: #fff; }
.btn-whatsapp .wa-icon { flex-shrink: 0; }

.btn-full { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Shimmer effect */
.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -80%; }
  40%, 100% { left: 120%; }
}

/* =============================================
   SECTION 01: NAVIGATION
   ============================================= */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.main-nav.scrolled {
  background: rgba(250, 247, 244, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(139,99,85,0.1);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  color: var(--gold);
  z-index: 1001;
}
.logo-icon {
  font-size: 22px;
  animation: float 3s ease-in-out infinite;
}
.nav-links {
  display: flex;
  gap: var(--space-lg);
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--mocha);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  animation: pulse-ring-nav 3s infinite;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: var(--gold);
  transform: scale(1.05);
}
@keyframes pulse-ring-nav {
  0%, 100% { box-shadow: 0 0 0 0 rgba(139,99,85,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(139,99,85,0); }
}
.nav-cta-icon { font-size: 14px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(250,247,244,0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-inner { text-align: center; }
.mobile-nav-links { margin-bottom: var(--space-xl); }
.mobile-nav-links li { margin-bottom: var(--space-md); }
.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.3s;
}
.mobile-nav-links a:hover { color: var(--gold); }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: var(--space-sm); max-width: 300px; margin: 0 auto; }

/* =============================================
   SECTION 02: HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 72px;
}
.hero-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero BG elements */
.hero-blobs { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
  opacity: 0.18;
  animation: blob-drift 8s ease-in-out infinite alternate;
}
.blob-1 {
  width: 500px; height: 500px;
  background: var(--rose-dust);
  top: -10%; left: -5%;
  animation-duration: 8s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  top: 30%; right: -8%;
  animation-duration: 12s;
  animation-delay: -4s;
}
.blob-3 {
  width: 350px; height: 350px;
  background: var(--blush-glow);
  bottom: -10%; left: 30%;
  animation-duration: 16s;
  animation-delay: -8s;
}
@keyframes blob-drift {
  0% { border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%; transform: translate(0,0) scale(1); }
  33% { border-radius: 55% 45% 50% 50% / 60% 40% 60% 40%; }
  66% { border-radius: 45% 55% 40% 60% / 50% 55% 45% 55%; }
  100% { border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%; transform: translate(30px, -20px) scale(1.05); }
}

.hero-watermark {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(300px, 40vw, 600px);
  font-weight: 700;
  color: rgba(44,36,22,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

/* Hero particles */
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% { opacity: 0; transform: translateY(0); }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100vh); }
}

/* Hero content */
.hero-content { padding: var(--space-xl) 0; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--mocha);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}
.pill-star { font-size: 14px; }

.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: var(--space-md);
}
.headline-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
}
.headline-word.accent { color: var(--mocha); }

.hero-sub {
  font-size: 17px;
  color: rgba(44,36,22,0.7);
  max-width: 480px;
  margin-bottom: var(--space-lg);
}
.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 22px;
  background: rgba(255,255,255,0.35);
  border-radius: var(--radius-full);
  animation: float 3s ease-in-out infinite;
}
.trust-stars { font-weight: 700; color: var(--gold); font-size: 16px; }
.trust-divider { width: 1px; height: 20px; background: rgba(44,36,22,0.15); }
.trust-text { font-size: 14px; font-weight: 500; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: flex-end; }
.hero-image-wrap { position: relative; }
.hero-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  transform: rotate(-2deg);
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  top: 30px;
  right: -20px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(255,255,255,0.35);
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--mocha);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--mocha);
  border-radius: 2px;
  animation: scroll-pulse 1.5s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.3; transform: translateY(10px); }
}
.scroll-indicator span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mocha);
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =============================================
   SECTION 03: TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--mocha);
  padding: 16px 0;
  overflow: hidden;
}
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-inner {
  display: inline-flex;
  gap: 24px;
  animation: marquee 40s linear infinite;
  will-change: transform;
}
.marquee-inner span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}
.marquee-diamond { color: var(--gold); font-size: 10px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   SECTION 04: SERVICES BENTO
   ============================================= */
.services-section { background: var(--gradient-section); }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: var(--space-md);
}
.bento-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--pearl);
  border: 1px solid rgba(201,169,110,0.15);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.bento-tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium), 0 0 0 1px var(--gold);
}
.bento-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.bento-tile:hover .bento-bg { transform: scale(1.05); }
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,36,22,0.1) 0%, rgba(44,36,22,0.7) 100%);
  transition: background 0.4s ease;
}
.bento-tile:hover .bento-overlay {
  background: linear-gradient(180deg, rgba(44,36,22,0.2) 0%, rgba(44,36,22,0.85) 100%);
}
.bento-content {
  position: relative;
  z-index: 1;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  color: #fff;
}
.bento-hero { grid-column: span 2; grid-row: span 2; min-height: 420px; }
.bento-hero .bento-content h3 { font-size: 28px; }
.bento-icon {
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.bento-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}
.bento-content p {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}
.bento-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: var(--space-sm);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.bento-tile:hover .bento-link { opacity: 1; transform: translateY(0); }

/* Tiles without bg image — lighter style */
.bento-tile:not(.bento-hero):not(.bento-cta) {
  background: linear-gradient(135deg, rgba(139,99,85,0.08) 0%, rgba(201,169,110,0.12) 100%);
}
.bento-tile:not(.bento-hero):not(.bento-cta) .bento-content { color: var(--charcoal); }
.bento-tile:not(.bento-hero):not(.bento-cta) .bento-overlay { display: none; }

.bento-cta {
  grid-column: span 2;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-cta .bento-content {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  color: #fff;
}
.bento-cta span { font-size: 16px; font-weight: 500; }
.bento-cta .btn { background: #fff; color: var(--mocha); }
.bento-cta .btn:hover { transform: scale(1.04); box-shadow: var(--shadow-medium); }

/* =============================================
   SECTION 05: ABOUT
   ============================================= */
.about-section { background: var(--pearl); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}
.about-float-card {
  position: absolute;
  top: 30px; right: -16px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.4);
  animation: float 3s ease-in-out infinite;
}
.float-icon { font-size: 18px; }
.about-women-badge {
  position: absolute;
  bottom: 24px; left: 16px;
  padding: 8px 16px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold);
  border-radius: var(--radius-full);
}
.about-text-col p {
  margin-bottom: var(--space-sm);
  color: rgba(44,36,22,0.75);
}

/* Team cards */
.team-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.team-card {
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  background: rgba(255,255,255,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { box-shadow: var(--shadow-medium), var(--shadow-glow); }
.team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
}
.team-info h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; }
.team-info span { font-size: 13px; color: var(--mocha); display: block; }
.team-quote {
  font-family: var(--font-accent);
  font-size: 13px;
  color: rgba(44,36,22,0.5);
  margin-top: 4px;
}

/* =============================================
   SECTION 06: STATS
   ============================================= */
.stats-section {
  background: var(--charcoal);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.08), transparent);
  animation: stats-sweep 4s ease-in-out infinite;
}
@keyframes stats-sweep {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label-stars {
  color: var(--gold);
  font-size: 16px;
  margin: 4px 0;
  letter-spacing: 2px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* =============================================
   SECTION 07: SPOTLIGHT
   ============================================= */
.spotlight-section {
  background: var(--champagne);
  position: relative;
  overflow: hidden;
}
.spotlight-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='1' height='1' fill='%238B6355' fill-opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.spotlight-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  object-fit: cover;
}

.feature-list {
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
}
.feature-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* =============================================
   SECTION 08: TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--gradient-section); }
.testimonials-track {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-md);
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  min-width: 340px;
  max-width: 380px;
  flex-shrink: 0;
  padding: var(--space-lg);
  scroll-snap-align: start;
  background: rgba(255,255,255,0.25);
  border-radius: 24px;
  position: relative;
  transition: transform 0.4s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}
.testi-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.google-icon { flex-shrink: 0; }
.testi-quote {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(44,36,22,0.8);
  margin-bottom: var(--space-md);
  position: relative;
}
.testi-deco {
  font-family: var(--font-display);
  font-size: 60px;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -20px; left: -8px;
  line-height: 1;
  pointer-events: none;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-author strong { font-size: 14px; display: block; }
.testi-author span { font-size: 12px; color: rgba(44,36,22,0.5); }
.testi-cta { text-align: center; margin-top: var(--space-xl); }

/* =============================================
   SECTION 09: GALLERY
   ============================================= */
.gallery-section { background: var(--pearl); }
.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}
.gallery-tab {
  padding: 8px 22px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--mocha);
  background: transparent;
  border: 1.5px solid rgba(139,99,85,0.2);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}
.gallery-tab.active,
.gallery-tab:hover {
  background: var(--mocha);
  color: #fff;
  border-color: var(--mocha);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/5;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,165,165,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.4s ease;
}
.gallery-item:hover .gallery-overlay { background: rgba(212,165,165,0.3); }
.gallery-label, .gallery-expand {
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease 0.1s;
}
.gallery-item:hover .gallery-label,
.gallery-item:hover .gallery-expand {
  opacity: 1;
  transform: translateY(0);
}
.gallery-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.gallery-expand { font-size: 28px; }
.gallery-item[hidden] { display: none; }

/* =============================================
   SECTION 10: CONTACT / BOOKING
   ============================================= */
.contact-section {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,99,85,0.3) 0%, rgba(44,36,22,0.9) 100%);
}
.contact-section .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.contact-form-wrap {
  padding: var(--space-xl);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Form */
.form-group {
  position: relative;
  margin-bottom: var(--space-md);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.2);
}
.form-group label {
  position: absolute;
  top: 14px; left: 16px;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  pointer-events: none;
  transition: all 0.25s ease;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 12px;
  font-size: 11px;
  color: var(--gold);
  background: var(--charcoal);
  padding: 0 6px;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--charcoal); color: #fff; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-divider {
  text-align: center;
  margin: var(--space-md) 0;
  position: relative;
}
.form-divider::before,
.form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }
.form-divider span {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  padding: 0 12px;
  position: relative;
}

.form-success {
  text-align: center;
  padding: var(--space-xl);
  color: #fff;
}
.success-icon { font-size: 48px; margin-bottom: var(--space-sm); }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: var(--space-sm);
}
.form-success p { color: rgba(255,255,255,0.7); margin-bottom: var(--space-md); }

/* Contact info */
.contact-info-wrap { display: flex; flex-direction: column; gap: var(--space-md); }
.contact-call-card {
  padding: var(--space-xl);
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.contact-call-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #fff;
  margin-bottom: var(--space-md);
}
.call-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  transition: color 0.3s ease;
}
.call-number:hover { color: var(--blush-glow); }
.contact-call-card span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.contact-trust {
  padding: var(--space-md);
  text-align: center;
}
.contact-trust p { font-size: 14px; color: rgba(255,255,255,0.45); }

/* Shake animation for errors */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15%, 45%, 75% { transform: translateX(-6px); }
  30%, 60%, 90% { transform: translateX(6px); }
}
.form-error { animation: shake 0.4s ease; }
.form-error input, .form-error select { border-color: #e74c3c !important; }

/* =============================================
   SECTION 11: FAQ
   ============================================= */
.faq-section { background: var(--gradient-section); }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(139,99,85,0.12);
}
.faq-question {
  width: 100%;
  padding: var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question:hover { color: var(--mocha); }
.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-question { color: var(--mocha); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq-item.open .faq-answer { opacity: 1; }
.faq-answer p {
  padding: 0 0 var(--space-md);
  color: rgba(44,36,22,0.7);
  font-size: 15px;
  line-height: 1.7;
}
.faq-item.open {
  background: rgba(201,169,110,0.04);
  border-left: 3px solid var(--gold);
  padding-left: var(--space-md);
}

/* =============================================
   SECTION 12: LOCATION
   ============================================= */
.location-section { background: var(--pearl); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.location-map iframe { width: 100%; }
.location-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}
.location-detail {
  display: flex;
  gap: 12px;
  margin-bottom: var(--space-md);
  font-size: 15px;
}
.loc-icon { font-size: 20px; flex-shrink: 0; }
.location-detail a { color: var(--mocha); font-weight: 600; }
.location-detail a:hover { color: var(--gold); }
.location-buttons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.location-landmarks {
  margin-top: var(--space-md);
  font-size: 13px;
  color: rgba(44,36,22,0.5);
}

/* =============================================
   SECTION 13: FOOTER
   ============================================= */
.site-footer {
  background: var(--charcoal);
  padding: var(--space-3xl) 0 var(--space-lg);
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.footer-tagline {
  font-family: var(--font-accent);
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-md);
}
.footer-social { display: flex; gap: var(--space-sm); }
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-links-col h4, .footer-contact-col h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: var(--space-md);
}
.footer-links-col li, .footer-contact-col li { margin-bottom: 10px; font-size: 14px; }
.footer-links-col a:hover, .footer-contact-col a:hover { color: var(--gold); }
.footer-badge {
  margin-top: var(--space-md);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius-full);
  display: inline-block;
}
.footer-hours { margin-top: var(--space-sm); font-size: 13px; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-women {
  margin-top: 6px;
  color: var(--gold);
  font-weight: 500;
}

/* =============================================
   FLOATING ELEMENTS
   ============================================= */

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold);
  z-index: 1001;
  transition: width 0.1s linear;
}

/* Custom Cursor */
.custom-cursor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  transform: translate(-50%, -50%);
  display: none;
}
.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .custom-cursor, .cursor-follower { display: block; }
  body { cursor: none; }
  a, button, [data-tilt], .bento-tile, .gallery-item, .faq-question { cursor: none; }
}
body.cursor-hover .custom-cursor {
  width: 40px;
  height: 40px;
  opacity: 0.15;
}
body.cursor-hover .cursor-follower {
  width: 56px;
  height: 56px;
  opacity: 0.3;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 998;
  animation: pulse-ring-wa 2.5s infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.12) rotate(10deg); }
@keyframes pulse-ring-wa {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--charcoal);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(250,247,244,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(139,99,85,0.1);
  z-index: 997;
}
.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--mocha);
  min-height: 44px;
}
.sticky-btn span { font-size: 18px; }
.sticky-btn:active { background: rgba(139,99,85,0.08); }

/* Exit Toast */
.exit-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: #fff;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  max-width: 500px;
  opacity: 0;
  transition: all 0.4s ease;
}
.exit-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.exit-toast p { font-size: 14px; flex: 1; }
.toast-close {
  position: absolute;
  top: 8px;
  right: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 20px;
}

/* =============================================
   ANIMATION STATES
   ============================================= */
.anim-item {
  opacity: 0;
  transform: translateY(30px);
}
.anim-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.anim-section {
  opacity: 0;
  transform: translateY(40px);
}
.anim-section.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gallery curtain reveal */
.gallery-item {
  clip-path: inset(100% 0% 0% 0%);
  transition: clip-path 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item.revealed {
  clip-path: inset(0% 0% 0% 0%);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1023px) {
  :root { --gutter: 28px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; justify-content: center; }
  .hero-img { max-width: 350px; }
  .hero-ctas { justify-content: center; }
  .hero-sub { margin: 0 auto var(--space-lg); }
  .hero-badge { right: 0; }
  .hero-headline { font-size: clamp(36px, 8vw, 52px); }
  .hero-trust-badge { margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-text-col { text-align: center; }
  .team-cards { justify-items: center; }

  .spotlight-grid { grid-template-columns: 1fr; }
  .spotlight-image-col { order: 2; }
  .spotlight-text-col { order: 1; text-align: center; }
  .feature-list { align-items: center; }

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

  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-hero { min-height: 280px; }
  .bento-cta { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

@media (max-width: 767px) {
  :root { --gutter: 20px; }
  .section-pad { padding: var(--space-3xl) 0; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-hero { grid-column: span 1; grid-row: span 1; min-height: 240px; }
  .bento-cta { grid-column: span 1; }
  .bento-cta .bento-content { flex-direction: column; text-align: center; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: 280px; }

  .mobile-sticky-bar { display: flex; }
  .whatsapp-float { bottom: 80px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .stat-number { font-size: clamp(36px, 10vw, 56px); }

  .team-cards { grid-template-columns: 1fr; }
  .scroll-indicator { display: none; }

  .exit-toast {
    bottom: 80px;
    left: var(--gutter);
    right: var(--gutter);
    transform: translateX(0) translateY(20px);
    max-width: none;
    flex-direction: column;
    text-align: center;
  }
  .exit-toast.visible { transform: translateX(0) translateY(0); }

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

@media (max-width: 479px) {
  .hero-headline { font-size: clamp(32px, 9vw, 42px); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-img { max-width: 280px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .anim-item, .anim-section {
    opacity: 1 !important;
    transform: none !important;
  }
  .gallery-item { clip-path: none !important; }
  .headline-word { opacity: 1 !important; transform: none !important; }
}
