﻿/* ============================================
   LK HOME MASSAGES BALI â€” DESIGN SYSTEM
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --wine: #4A0E1A;
  --wine-dark: #320913;
  --wine-light: #6B1728;
  --warm-white: #F8F5F2;
  --gold: #C6A769;
  --gold-light: #D4BA82;
  --gold-dark: #A08850;
  --charcoal: #2B2B2B;
  --grey: #6B6B6B;
  --grey-light: #E8E4E0;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* INSANE LEVEL TRANSITIONS (Apple / Stripe style) */
  --transition-slow: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-med: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-spring: 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transition-smooth: 1s cubic-bezier(0.075, 0.82, 0.165, 1);

  /* PREMIUM, DEEP SHADOWS */
  --shadow-sm: 0 4px 24px rgba(43, 43, 43, 0.06);
  --shadow-md: 0 12px 48px rgba(43, 43, 43, 0.12);
  --shadow-lg: 0 30px 90px rgba(43, 43, 43, 0.2);
  --shadow-gold: 0 10px 40px rgba(198, 167, 105, 0.4);
  --shadow-glow: 0 0 60px rgba(198, 167, 105, 0.15);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: none;
}

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

/* --- CUSTOM CURSOR --- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear, width var(--transition-med), height var(--transition-med), background var(--transition-med);
  mix-blend-mode: exclusion;
  will-change: transform, width, height;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(198, 167, 105, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s linear, width var(--transition-med), height var(--transition-med), background var(--transition-med), border-color var(--transition-med), opacity var(--transition-med);
  will-change: transform, width, height;
}

body.cursor-hover .cursor-dot {
  width: 0px; height: 0px;
  opacity: 0;
}

body.cursor-hover .cursor-ring {
  width: 80px; height: 80px;
  background: rgba(248, 245, 242, 0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-color: transparent;
  mix-blend-mode: exclusion;
}

/* --- NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition-smooth), padding var(--transition-smooth), box-shadow var(--transition-smooth), backdrop-filter var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(248, 245, 242, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 18px 60px;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.navbar-logo-main {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 2px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.navbar.scrolled .navbar-logo-main {
  color: var(--wine);
}

.navbar-logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.navbar-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248, 245, 242, 0.85);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar.scrolled .navbar-links a {
  color: var(--grey);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition-med);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}

.navbar.scrolled .navbar-links a:hover,
.navbar.scrolled .navbar-links a.active {
  color: var(--wine);
}

.navbar-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wine-dark) !important;
  background: var(--gold);
  padding: 12px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: all var(--transition-fast) !important;
}

.navbar-cta::after { display: none !important; }

.navbar-cta:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
  color: var(--wine-dark) !important;
}

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

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

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

/* --- PREMIUM SCROLL ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(40px) scale(0.96) translateZ(0);
  filter: blur(8px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth), filter var(--transition-smooth);
  will-change: opacity, transform, filter;
}

.fade-in {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.02);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1) translateZ(0);
  filter: blur(0);
}

.fade-in.visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

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

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wine-dark);
}

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

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(50, 9, 19, 0.78) 0%,
    rgba(74, 14, 26, 0.55) 50%,
    rgba(50, 9, 19, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 60px 100px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.05;
  letter-spacing: -1px;
  max-width: 800px;
  margin-bottom: 28px;
}

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

.hero-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(248, 245, 242, 0.78);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 50px;
  letter-spacing: 0.2px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: rgba(248, 245, 242, 0.72);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wine-dark);
  background: var(--gold);
  padding: 18px 40px;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-spring);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: 0s;
  z-index: -1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: -2;
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px) scale(1.02);
  letter-spacing: 3px;
}

.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover::before {
  left: 200%;
  transition: 0.8s ease-in-out;
}
.btn-primary:active { transform: translateY(0) scale(0.96); }

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

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(248, 245, 242, 0.8);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(198, 167, 105, 0.4);
  transition: color 0.45s ease, border-color 0.45s ease, gap 0.45s ease, transform 0.45s ease;
}

.btn-ghost::before {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(198, 167, 105, 0.2) 20%, rgba(198, 167, 105, 0.95) 50%, rgba(198, 167, 105, 0.2) 80%, transparent 100%);
  transform: translateX(-120%);
  opacity: 0;
}

.btn-ghost svg {
  transition: transform 0.45s ease, opacity 0.45s ease;
  animation: ghostArrowFloat 2.8s ease-in-out infinite;
}

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

.btn-ghost:hover::before {
  opacity: 1;
  animation: ghostSweep 1.2s ease forwards;
}

.btn-ghost:hover svg {
  transform: translateY(4px) scale(1.08);
}

@keyframes ghostSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes ghostArrowFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.5s ease-in-out infinite;
}

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

.scroll-text {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

.hero-badge {
  position: absolute;
  bottom: 50px;
  right: 60px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(74, 14, 26, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(198, 167, 105, 0.25);
  border-radius: 4px;
  padding: 16px 24px;
}

.hero-badge-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-badge-text {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(248, 245, 242, 0.7);
  line-height: 1.6;
}

/* --- SECTION COMMONS --- */
section {
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.section-eyebrow-line {
  width: 30px; height: 1px;
  background: var(--gold);
}

.section-eyebrow-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

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

/* --- PROBLEM SECTION --- */
.problem-section {
  background: var(--wine-dark);
  padding: 120px 0;
  overflow: hidden;
}

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

.problem-image-wrap {
  position: relative;
  height: 580px;
  border-radius: 2px;
  overflow: hidden;
}

.problem-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.problem-image-wrap:hover img {
  transform: scale(1.04);
}

.problem-image-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(50, 9, 19, 0.6) 0%, transparent 50%);
  z-index: 1;
}

.problem-image-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: var(--gold);
  color: var(--wine-dark);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
}

.problem-content .section-eyebrow-text { color: var(--gold); }

.problem-heading {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

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

.problem-copy {
  font-size: 15px;
  font-weight: 300;
  color: rgba(248, 245, 242, 0.72);
  line-height: 1.9;
  margin-bottom: 20px;
  letter-spacing: 0.1px;
}

.problem-copy strong {
  color: var(--warm-white);
  font-weight: 500;
}

.problem-list {
  list-style: none;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(248, 245, 242, 0.7);
  line-height: 1.6;
}

.problem-list li::before {
  content: '';
  flex-shrink: 0;
  width: 14px; height: 1px;
  background: var(--gold);
  margin-top: 11px;
}

/* --- SOLUTION SECTION --- */
.solution-section {
  background: var(--warm-white);
  padding: 140px 0;
}

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

.solution-heading {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.05;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.solution-heading em {
  font-style: italic;
  color: var(--gold-dark);
}

.solution-copy {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.9;
  margin-bottom: 18px;
  font-weight: 300;
}

.solution-copy strong {
  color: var(--charcoal);
  font-weight: 500;
}

.solution-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat-block {
  padding: 24px;
  border: 1px solid var(--grey-light);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.stat-block:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--grey);
}

.solution-image-wrap {
  position: relative;
  height: 600px;
}

.solution-image-frame {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  overflow: hidden;
}

.solution-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution-image-frame:hover img { transform: scale(1.04); }

.solution-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px; height: 160px;
  background: var(--gold);
  border-radius: 2px;
  z-index: -1;
}

/* --- SERVICES SECTION --- */
.services-section {
  background: var(--wine);
  padding: 140px 0;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header .section-heading {
  color: var(--warm-white);
}

.services-header .section-eyebrow-text { color: var(--gold); }

.services-sub {
  font-size: 15px;
  color: rgba(248, 245, 242, 0.65);
  max-width: 580px;
  margin: 20px auto 0;
  line-height: 1.8;
  font-weight: 300;
}

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

.service-card {
  position: relative;
  background: rgba(248, 245, 242, 0.02);
  border: 1px solid rgba(198, 167, 105, 0.08);
  padding: 48px 36px;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-spring);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(0);
  border-radius: 8px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition-spring);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(198, 167, 105, 0.1), transparent 40%);
  opacity: 0;
  transition: opacity var(--transition-med);
  z-index: 0;
  pointer-events: none;
}

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

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

.service-card:hover {
  background: rgba(198, 167, 105, 0.05);
  border-color: rgba(198, 167, 105, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), var(--shadow-glow);
  z-index: 10;
}

.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 28px;
  opacity: 0.7;
}

.service-number {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  color: var(--warm-white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.service-tagline {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-desc {
  font-size: 13px;
  color: rgba(248, 245, 242, 0.58);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.service-duration {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(198, 167, 105, 0.8);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.service-price {
  font-family: var(--font-heading);
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 24px;
}

.service-price span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248, 245, 242, 0.58);
  font-family: var(--font-body);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap var(--transition-fast);
}

.service-link:hover { gap: 14px; }

.service-link-button {
  margin-top: 24px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 105, 0.26);
  background: rgba(198, 167, 105, 0.07);
}

.service-link-button:hover {
  background: rgba(198, 167, 105, 0.14);
  border-color: rgba(198, 167, 105, 0.42);
}

.service-link-compact {
  margin-top: 18px;
}

/* --- HOW IT WORKS --- */
.howitworks-section {
  background: var(--warm-white);
  padding: 140px 0;
}

.howitworks-header {
  text-align: center;
  margin-bottom: 90px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(198, 167, 105, 0.2), var(--gold));
}

.step {
  text-align: center;
  position: relative;
}

.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
  transition: all var(--transition-med);
}

.step:hover .step-circle {
  background: var(--gold);
  box-shadow: var(--shadow-gold);
}

.step:hover .step-circle svg { color: var(--wine-dark); }
.step:hover .step-circle .step-num { color: var(--wine-dark); }

.step-num {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition-fast);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--wine);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.8;
  font-weight: 300;
  max-width: 240px;
  margin: 0 auto;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: var(--wine-dark);
  padding: 140px 0;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-header .section-heading { color: var(--warm-white); }
.testimonials-header .section-eyebrow-text { color: var(--gold); }

.testimonials-slider-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.testimonials-slider {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  padding-bottom: 40px;
  /* Premium edge fade mask */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 0;
}

.slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(43, 43, 43, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 167, 105, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-med);
  box-shadow: var(--shadow-md);
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--wine-dark);
  transform: translateY(-50%) scale(1.1);
  border-color: var(--gold);
}

.slider-prev { left: 40px; }
.slider-next { right: 40px; }

.testimonial-card {
  width: 420px;
  scroll-snap-align: center;
  flex-shrink: 0;
  background: rgba(248, 245, 242, 0.04);
  border: 1px solid rgba(198, 167, 105, 0.15);
  padding: 40px 32px;
  border-radius: 2px;
  transition: all var(--transition-med);
  position: relative;
}

.testimonial-card:hover {
  background: rgba(198, 167, 105, 0.07);
  border-color: rgba(198, 167, 105, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 700;
  color: rgba(198, 167, 105, 0.12);
  line-height: 1;
}

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

.star {
  width: 14px; height: 14px;
  fill: var(--gold);
  color: var(--gold);
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: var(--warm-white);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(198, 167, 105, 0.1);
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--wine-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--warm-white);
  flex-shrink: 0;
}

.author-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 0.5px;
}

.author-loc {
  font-size: 11px;
  color: rgba(198, 167, 105, 0.7);
  letter-spacing: 1px;
  margin-top: 2px;
}

.trust-bar {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 60px;
  border-top: 1px solid rgba(198, 167, 105, 0.1);
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.trust-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248, 245, 242, 0.5);
}

/* --- CTA SECTION --- */
.cta-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  background: var(--warm-white);
}

.cta-bg-accent {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 167, 105, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.08;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.cta-heading em {
  font-style: italic;
  color: var(--gold-dark);
}

.cta-sub {
  font-size: 15px;
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.8;
  font-weight: 300;
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 14, 26, 0.06);
  border: 1px solid rgba(74, 14, 26, 0.12);
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 40px;
}

.urgency-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wine-light);
  animation: pulse 2s ease-in-out infinite;
}

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

.urgency-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: none;
  color: var(--wine);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: #25D366;
  padding: 18px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-whatsapp:hover {
  background: #20BD5C;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.btn-wine {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-white);
  background: var(--wine);
  padding: 18px 36px;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-wine:hover {
  background: var(--wine-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* --- FOOTER --- */
footer {
  background: var(--wine-dark);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.footer-brand-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(248, 245, 242, 0.5);
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}

.footer-heading {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(248, 245, 242, 0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 300;
}

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

.footer-bottom {
  border-top: 1px solid rgba(198, 167, 105, 0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(248, 245, 242, 0.3);
  letter-spacing: 0.5px;
}

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

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(198, 167, 105, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(198, 167, 105, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* --- BOOKING PAGE --- */
.booking-hero {
  background: var(--wine-dark);
  padding: 160px 0 80px;
  text-align: center;
}

.booking-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 16px;
}

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

.booking-hero p {
  font-size: 14px;
  color: rgba(248, 245, 242, 0.6);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.booking-section {
  background: var(--warm-white);
  padding: 100px 0;
}

.booking-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.booking-form-header {
  background: var(--wine);
  padding: 40px 48px;
  text-align: center;
}

.booking-form-header h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 8px;
}

.booking-form-header p {
  font-size: 12px;
  color: rgba(248, 245, 242, 0.6);
  letter-spacing: 1px;
}

.booking-form-body {
  padding: 48px;
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--grey-light);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--warm-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 167, 105, 0.15);
}

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

.form-submit {
  margin-top: 8px;
}

.services-showcase {
  display: grid;
  gap: 56px;
}

.services-block-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.services-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(248, 245, 242, 0.6);
  margin-bottom: 12px;
}

.services-block-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--warm-white);
  font-weight: 400;
  margin-bottom: 12px;
}

.services-block-copy {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(248, 245, 242, 0.65);
}

.signature-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.massage-menu-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card-featured {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(248, 245, 242, 0.05), rgba(248, 245, 242, 0.02));
}

.service-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(198, 167, 105, 0.22);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-duration-stack {
  display: grid;
  gap: 10px;
  align-items: flex-start;
}

.service-duration-stack span {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(248, 245, 242, 0.74);
}

.service-duration-stack-premium {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(198, 167, 105, 0.12);
}

.service-tier {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(248, 245, 242, 0.05);
  border: 1px solid rgba(198, 167, 105, 0.12);
}

.service-tier-time {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248, 245, 242, 0.55);
}

.service-tier-price {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 500;
  color: var(--warm-white);
}

.service-tier-meta {
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(248, 245, 242, 0.68);
}

.service-price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.service-rate-chip {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(198, 167, 105, 0.14);
  background: rgba(248, 245, 242, 0.04);
}

.service-rate-chip span {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(248, 245, 242, 0.52);
}

.service-rate-chip strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  color: var(--warm-white);
}

.booking-hero-premium {
  position: relative;
  overflow: hidden;
  padding: 170px 0 110px;
  background:
    radial-gradient(circle at top left, rgba(198, 167, 105, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, var(--wine-dark), #22060d);
}

.booking-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 420px);
  gap: 36px;
  align-items: end;
}

.booking-hero-copy h1 {
  max-width: 760px;
}

.booking-hero-copy p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(248, 245, 242, 0.72);
}

.booking-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.booking-trust-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 105, 0.18);
  background: rgba(248, 245, 242, 0.04);
  color: rgba(248, 245, 242, 0.84);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.booking-highlight-card {
  padding: 34px 30px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 245, 242, 0.12), rgba(248, 245, 242, 0.05));
  border: 1px solid rgba(198, 167, 105, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.booking-highlight-label {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.booking-highlight-card h2 {
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--warm-white);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 12px;
}

.booking-highlight-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(248, 245, 242, 0.72);
}

.booking-highlight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(198, 167, 105, 0.16);
  color: rgba(248, 245, 242, 0.8);
}

.booking-highlight-meta strong {
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--gold);
  font-weight: 500;
}

.booking-section-premium {
  padding: 90px 0 110px;
  background:
    linear-gradient(180deg, rgba(248, 245, 242, 0.98), rgba(248, 245, 242, 1)),
    radial-gradient(circle at top left, rgba(198, 167, 105, 0.08), transparent 30%);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.booking-main {
  display: grid;
  gap: 24px;
}

.booking-panel,
.booking-summary-card,
.booking-info-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(198, 167, 105, 0.16);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(43, 43, 43, 0.08);
}

.booking-panel {
  padding: 36px;
}

.booking-panel-header {
  margin-bottom: 26px;
}

.booking-panel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.booking-panel-header h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  color: var(--wine);
  margin-bottom: 10px;
}

.booking-panel-header p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
  max-width: 620px;
}

.service-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.booking-service-groups {
  display: grid;
  gap: 28px;
}

.booking-service-group {
  display: grid;
  gap: 16px;
}

.booking-service-group-head {
  display: grid;
  gap: 6px;
}

.booking-service-group-head span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.booking-service-group-head p {
  color: var(--grey);
  font-size: 14px;
  line-height: 1.7;
}

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

.service-picker-card {
  text-align: left;
  border: 1px solid rgba(198, 167, 105, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,245,242,0.92));
  border-radius: 18px;
  padding: 18px;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.service-picker-card:hover,
.service-picker-card.active {
  transform: translateY(-3px);
  border-color: rgba(198, 167, 105, 0.45);
  box-shadow: 0 18px 44px rgba(198, 167, 105, 0.16);
}

.service-picker-type {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.service-picker-card strong {
  display: block;
  font-size: 18px;
  color: var(--wine);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.service-picker-card small {
  display: block;
  color: var(--grey);
  line-height: 1.6;
}

.booking-form-premium .form-group {
  margin-bottom: 20px;
}

.booking-form-premium .form-group input,
.booking-form-premium .form-group select,
.booking-form-premium .form-group textarea {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(248, 245, 242, 0.8);
  border-color: rgba(198, 167, 105, 0.16);
}

.booking-form-premium .form-group textarea {
  min-height: 120px;
}

.booking-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(198, 167, 105, 0.16);
}

.booking-form-assurance {
  display: grid;
  gap: 6px;
}

.booking-form-assurance strong {
  font-size: 13px;
  color: var(--wine);
}

.booking-form-assurance span {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 360px;
}

.booking-email-note {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
}

.booking-email-note a {
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 14, 26, 0.24);
}

.booking-submit {
  min-width: 280px;
  justify-content: center;
}

.booking-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 20px;
}

.booking-summary-card,
.booking-info-card {
  padding: 28px;
}

.booking-summary-service {
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.05;
  color: var(--wine);
  margin-bottom: 12px;
}

.booking-summary-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey);
}

.booking-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.booking-summary-grid div {
  padding: 16px;
  border-radius: 16px;
  background: rgba(248, 245, 242, 0.7);
  border: 1px solid rgba(198, 167, 105, 0.12);
}

.booking-summary-grid span,
.booking-mini-prices span {
  display: block;
  margin-bottom: 6px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.booking-summary-grid strong {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--wine);
  font-weight: 500;
}

.booking-summary-note {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(74, 14, 26, 0.04);
  color: var(--grey);
  line-height: 1.75;
  font-size: 13px;
}

.booking-info-card h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--wine);
  font-weight: 400;
  margin-bottom: 12px;
}

.booking-info-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.booking-info-card li {
  position: relative;
  padding-left: 18px;
  color: var(--grey);
  line-height: 1.75;
  font-size: 14px;
}

.booking-info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.booking-mini-prices {
  display: grid;
  gap: 12px;
}

.booking-mini-prices div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(198, 167, 105, 0.12);
}

.booking-mini-prices strong {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--wine);
  font-weight: 500;
  text-align: right;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
  .navbar { padding: 20px 30px; }
  .navbar.scrolled { padding: 14px 30px; }
  .navbar-links { gap: 24px; }
  .hero-content { padding: 130px 30px 80px; }
  .section-inner { padding: 0 30px; }
  .hero-badge { right: 30px; }
  .hero-scroll { left: 30px; }
  .problem-grid,
  .solution-grid { grid-template-columns: 1fr; gap: 50px; }
  .signature-grid,
  .massage-menu-grid,
  .booking-hero-inner,
  .booking-layout { grid-template-columns: 1fr; }
  .problem-image-wrap { height: 380px; order: -1; }
  .solution-image-wrap { height: 380px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .booking-sidebar { position: static; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
  .navbar-links { display: none; }
  .navbar-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 110px 24px 56px; }
  .hero-headline { font-size: 42px; line-height: 1.04; }
  .hero-sub,
  .hero-note,
  .services-sub,
  .solution-copy,
  .problem-copy,
  .step-desc,
  .cta-sub,
  .testimonial-text { font-size: 15px; line-height: 1.75; }
  .hero-badge { display: none; }
  .hero-scroll { display: none; }
  .section-inner { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 18px; flex-direction: column; align-items: stretch; }
  .trust-item { width: 100%; padding: 18px 0; border-bottom: 1px solid rgba(198, 167, 105, 0.12); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .solution-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-body { padding: 30px 24px; }
  .navbar { padding: 16px 20px; }
  .navbar.scrolled { padding: 12px 20px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; width: 100%; }
  .services-showcase { gap: 42px; }
  .service-price-row,
  .signature-grid { grid-template-columns: 1fr; }
  .service-tier { grid-template-columns: 1fr; gap: 6px; }
  .booking-panel,
  .booking-summary-card,
  .booking-info-card { padding: 22px; border-radius: 20px; }
  .booking-panel-header h2,
  .booking-summary-service,
  .booking-info-card h3,
  .booking-highlight-card h2 { font-size: 30px; line-height: 1.05; }
  .service-picker,
  .service-picker-signatures { grid-template-columns: 1fr; }
  .booking-form-footer { flex-direction: column; align-items: stretch; }
  .booking-submit { width: 100%; min-width: 0; }
  .booking-summary-grid { grid-template-columns: 1fr; }
  .service-card { padding: 30px 24px; }
  .service-price { font-size: 36px; }
  .service-rate-chip strong,
  .service-tier-price { font-size: 28px; }
  .service-link-button,
  .btn-primary,
  .btn-whatsapp,
  .btn-wine { width: 100%; justify-content: center; }
  .btn-ghost { width: 100%; justify-content: center; padding: 16px 0; }
  .service-link-button { min-height: 50px; }
  .btn-primary,
  .btn-whatsapp,
  .btn-wine { min-height: 54px; padding-left: 22px; padding-right: 22px; }
  .booking-hero-premium { padding: 118px 0 56px; }
  .booking-hero-inner { gap: 20px; }
  .booking-hero-copy p,
  .booking-panel-header p,
  .booking-summary-description,
  .booking-summary-note,
  .booking-info-card li { font-size: 14px; line-height: 1.75; }
  .booking-form-premium .form-group input,
  .booking-form-premium .form-group select,
  .booking-form-premium .form-group textarea { min-height: 54px; font-size: 16px; }
  .booking-form-premium .form-group textarea { min-height: 120px; }
  .booking-layout { gap: 18px; }
  .booking-main { gap: 18px; }
  .footer-links a { display: inline-block; padding: 6px 0; }
  .mobile-menu a { font-size: 28px; }
}

@media (max-width: 540px) {
  .navbar-logo-main { font-size: 18px; letter-spacing: 1.5px; }
  .navbar-logo-sub { font-size: 8px; letter-spacing: 2.8px; }
  .hero-content { padding: 102px 20px 52px; }
  .section-inner { padding: 0 20px; }
  .hero-headline,
  .section-heading,
  .problem-heading,
  .solution-heading,
  .cta-heading { font-size: 34px; }
  .services-header { margin-bottom: 56px; }
  .service-card { padding: 26px 20px; }
  .service-price { font-size: 32px; }
  .service-rate-chip { padding: 12px 14px; }
  .service-rate-chip strong,
  .service-tier-price { font-size: 26px; }
  .booking-panel,
  .booking-summary-card,
  .booking-info-card,
  .booking-highlight-card { padding: 20px; }
  .booking-panel-header h2,
  .booking-summary-service,
  .booking-info-card h3,
  .booking-highlight-card h2 { font-size: 26px; }
  .booking-highlight-meta strong { font-size: 28px; }
  .solution-stats { grid-template-columns: 1fr; }
  .stat-block { padding: 18px 16px; }
  .cta-actions,
  .hero-actions { gap: 12px; }
  .slider-arrow { display: none; }
  .testimonials-slider { mask-image: none; -webkit-mask-image: none; padding-bottom: 24px; }
  .testimonial-card { width: min(82vw, 320px); }
  .mobile-menu { gap: 28px; }
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--wine-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-med);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--warm-white);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color var(--transition-fast);
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  color: var(--warm-white);
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
}

/* --- Utility --- */
.text-gold { color: var(--gold); }
.text-wine { color: var(--wine); }
.divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 28px 0;
}

