/* ============================================================
   BOHO BODY SCULPTING SPA — main.css
   Global styles, design tokens, layout, components
   ============================================================ */

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

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --primary:        #C8847A;
  --primary-dark:   #A8625A;
  --primary-light:  #E8ADA7;
  --gold:           #C9A96E;
  --gold-light:     #E8CFA0;
  --gold-dark:      #A07D45;
  --cream:          #FAF6F1;
  --cream-dark:     #F2EBE2;
  --dark:           #1E1A18;
  --charcoal:       #3D3330;
  --muted:          #8C7B76;
  --white:          #FFFFFF;
  --glass:          rgba(255,248,242,0.72);
  --glass-dark:     rgba(30,26,24,0.65);
  --glass-border:   rgba(255,255,255,0.28);
  --shadow-soft:    0 4px 24px rgba(200,132,122,0.15);
  --shadow-md:      0 8px 40px rgba(30,26,24,0.18);
  --shadow-deep:    0 20px 60px rgba(30,26,24,0.25), 0 4px 16px rgba(200,132,122,0.2);
  --shadow-glow:    0 0 40px rgba(200,132,122,0.4);
  --shadow-gold:    0 0 30px rgba(201,169,110,0.3);
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  32px;
  --r-xl:  60px;
  --ease:  cubic-bezier(0.25, 0.8, 0.25, 1);
  --t:     all 0.38s var(--ease);
  --font-display: 'Cormorant Garamond', serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Jost', sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.72;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }
::selection { background: var(--primary-light); color: var(--dark); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
body { padding-bottom: 0; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.18;
  font-weight: 400;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--charcoal); line-height: 1.78; }

.script-label {
  font-family: var(--font-script);
  color: var(--primary);
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}
.section-label {
  font-family: var(--font-script);
  color: var(--primary);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::before {
  content: '';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container { width: 90%; max-width: 1240px; margin: 0 auto; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }
.gap-sm { gap: 16px; }
.gap-md { gap: 28px; }
.gap-lg { gap: 48px; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-xl);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-3px);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.55);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 10px 22px; font-size: 0.8rem; }
.btn-lg { padding: 18px 44px; font-size: 0.95rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: var(--t);
}
.site-nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(30,26,24,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-main {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--primary);
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
}
.site-nav.scrolled .nav-logo-sub { color: var(--charcoal); }
.site-nav:not(.scrolled) .nav-logo-sub { color: rgba(255,255,255,0.75); }
.site-nav:not(.scrolled) .nav-logo-main { color: var(--primary-light); }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  position: relative;
  transition: var(--t);
  color: var(--white);
}
.site-nav.scrolled .nav-links a { color: var(--charcoal); }
.nav-links a::after {
  content: '';
  position: absolute; bottom: 2px; left: 10px; right: 10px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.site-nav.scrolled .nav-links a:hover { color: var(--primary); }
.site-nav:not(.scrolled) .nav-links a:hover { color: var(--gold-light); }

.nav-cta { flex-shrink: 0; }
.nav-book-btn {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--r-xl);
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--t) !important;
  box-shadow: var(--shadow-soft);
}
.nav-book-btn:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-glow) !important;
}
.nav-book-btn::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
}
.site-nav.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  color: var(--white);
  letter-spacing: 0.03em;
  padding: 8px 0;
  transition: var(--t);
  opacity: 0;
  transform: translateY(20px);
}
.mobile-menu.open a {
  opacity: 1; transform: translateY(0);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-book {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-menu .mobile-contact {
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  animation: kenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(145deg, rgba(30,26,24,0.62) 0%, rgba(200,132,122,0.18) 60%, rgba(30,26,24,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 860px;
}
.hero-pre {
  font-family: var(--font-script);
  color: var(--gold-light);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 12px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-title {
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s var(--ease) 0.55s forwards;
  font-weight: 300;
}
.hero-title em {
  font-style: italic;
  color: var(--primary-light);
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem; font-weight: 300;
  margin: 18px 0 36px;
  letter-spacing: 0.04em;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}
.hero-actions {
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) 1s forwards;
}
.hero-badge {
  position: absolute; bottom: 40px; right: 40px;
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: fadeIn 1s var(--ease) 1.4s both;
}
.hero-badge .stars { color: var(--gold); font-size: 1rem; }
.hero-badge .badge-text {
  font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark); font-weight: 500;
  margin-top: 4px;
}
.hero-badge .badge-phone {
  font-size: 0.85rem; color: var(--primary-dark);
  font-weight: 600; margin-top: 4px;
}
.scroll-arrow {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: bounce 2s ease-in-out infinite;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
}

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 420px; padding: 120px 0 70px;
  display: flex; align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,26,24,0.72) 0%, rgba(200,132,122,0.25) 100%);
}
.page-hero-content {
  position: relative; z-index: 2; color: var(--white);
}
.page-hero-content h1 { color: var(--white); font-weight: 300; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px; text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px 16px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 300;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  font-weight: 400;
}

/* ── Section Intro ──────────────────────────────────────────── */
.section-intro {
  max-width: 660px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-intro p {
  color: var(--muted);
  font-size: 1.02rem;
  margin-top: 14px;
  line-height: 1.78;
}
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 18px auto 0;
}

/* ── About Intro ────────────────────────────────────────────── */
.about-intro { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  bottom: 14px; left: 14px;
  border: 2px solid var(--gold);
  border-radius: var(--r-md);
  z-index: 0;
  pointer-events: none;
}
.about-img {
  position: relative; z-index: 1;
  width: 100%; height: 500px;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-deep);
}
.about-img-placeholder {
  position: relative; z-index: 1;
  width: 100%; height: 500px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--primary-light) 40%, var(--gold-light) 100%);
  box-shadow: var(--shadow-deep);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about-img-placeholder img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r-md);
}
.about-text .script-label { font-size: 1.3rem; }
.about-text h2 { margin-bottom: 22px; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; padding-bottom: 2px;
}
.about-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.about-link:hover::after { transform: scaleX(1); }
.about-link:hover { color: var(--primary-dark); }

/* ── Service Cards ──────────────────────────────────────────── */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  border: 1px solid rgba(200,132,122,0.1);
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover {
  box-shadow: var(--shadow-deep);
}
.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-img-wrap { overflow: hidden; position: relative; }
.service-card-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-xl);
  box-shadow: var(--shadow-soft);
}
.service-card-body { padding: 26px 24px 28px; }
.service-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--cream-dark), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--primary-dark);
  font-size: 1.2rem;
}
.service-card-body h3 {
  font-size: 1.3rem; margin-bottom: 10px;
  color: var(--dark);
}
.service-card-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: gap 0.3s var(--ease), color 0.2s;
}
.service-card-link:hover { gap: 10px; color: var(--primary-dark); }

/* ── Why Choose Us ──────────────────────────────────────────── */
.why-section {
  position: relative;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.why-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,26,24,0.84) 0%, rgba(30,26,24,0.7) 100%);
}
.why-content { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.why-card {
  background: var(--glass-dark);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 36px 28px;
  text-align: center;
  transition: var(--t);
}
.why-card:hover {
  background: rgba(200,132,122,0.15);
  border-color: rgba(200,132,122,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Google Reviews ─────────────────────────────────────────── */
.reviews-section { background: var(--cream-dark); }
.review-tabs {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.review-tab {
  padding: 9px 22px;
  border-radius: var(--r-xl);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: transparent;
  border: 1.5px solid rgba(200,132,122,0.35);
  color: var(--muted);
  transition: var(--t); cursor: pointer;
}
.review-tab.active, .review-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(200,132,122,0.1);
  position: relative;
  transition: var(--t);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: var(--gold-light);
  pointer-events: none;
}
.review-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  flex-shrink: 0;
}
.reviewer-info strong {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
}
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
.google-badge {
  width: 22px; height: 22px; margin-left: auto; flex-shrink: 0;
}
.review-text {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}
.review-date {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.review-summary {
  display: flex; align-items: center;
  gap: 20px;
  margin-top: 50px;
  justify-content: center;
  flex-wrap: wrap;
}
.review-big-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--dark);
  line-height: 1;
  font-weight: 300;
}
.review-big-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.review-total {
  font-size: 0.85rem; color: var(--muted); margin-top: 4px;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 60%, rgba(200,132,122,0.2) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,132,122,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 38px; }
.cta-banner .btn-group { justify-content: center; }

/* ── Inquiry Form ───────────────────────────────────────────── */
.form-section { background: var(--white); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-wrap { }
.form-wrap h2 { margin-bottom: 8px; }
.form-wrap p { color: var(--muted); margin-bottom: 32px; }
.inquiry-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border: 1.5px solid rgba(200,132,122,0.25);
  border-radius: var(--r-sm);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--t);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,132,122,0.12);
}
.form-group textarea { min-height: 120px; }
.form-success {
  display: none;
  text-align: center; padding: 40px 20px;
  color: var(--primary-dark);
}
.form-success .check-icon { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 { margin-bottom: 8px; }

.contact-info-card {
  background: var(--dark);
  border-radius: var(--r-md);
  padding: 40px 36px;
  color: var(--white);
  box-shadow: var(--shadow-deep);
}
.contact-info-card h3 {
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(200,132,122,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-item-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  margin-bottom: 3px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}
.contact-item-text a:hover { color: var(--primary-light); }
.social-links-row {
  display: flex; gap: 12px; margin-top: 28px;
}
.social-link {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--t);
  font-size: 1rem;
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* ── Map ────────────────────────────────────────────────────── */
.map-section { line-height: 0; }
.map-section iframe {
  width: 100%; height: 440px;
  border: none; display: block;
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-grid {
  columns: 3; gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,26,24,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.06em;
}

/* ── Services Full Page ─────────────────────────────────────── */
.service-category-title {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.service-item-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 30px;
  margin-bottom: 16px;
  border: 1px solid rgba(200,132,122,0.12);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: var(--t);
}
.service-item-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,132,122,0.3);
}
.service-item-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--cream-dark), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.service-item-info { flex: 1; }
.service-item-info h4 { color: var(--dark); margin-bottom: 5px; font-size: 1.1rem; }
.service-item-info p { color: var(--muted); font-size: 0.9rem; margin: 0; }
.service-item-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.service-duration, .service-price {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em;
}
.service-duration { color: var(--muted); }
.service-price { color: var(--primary); }

/* ── Team Cards ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--t);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}
.team-img {
  width: 100%; height: 320px;
  object-fit: cover;
}
.team-img-placeholder {
  width: 100%; height: 320px;
  background: linear-gradient(135deg, var(--cream-dark), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: var(--primary-dark);
}
.team-info { padding: 24px 20px 28px; }
.team-info h3 { margin-bottom: 4px; }
.team-role {
  font-size: 0.78rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
  font-weight: 500; margin-bottom: 12px;
}
.team-info p { font-size: 0.88rem; color: var(--muted); }

/* ── Shop ───────────────────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--t);
  border: 1px solid rgba(200,132,122,0.1);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-deep);
}
.product-img {
  width: 100%; height: 260px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.04); }
.product-img-wrap { overflow: hidden; }
.product-body { padding: 22px 20px 24px; }
.product-body h3 { margin-bottom: 8px; font-size: 1.15rem; }
.product-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--primary);
  margin-bottom: 16px; display: block;
}

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(200,132,122,0.2);
}
.faq-question {
  width: 100%; text-align: left;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--dark);
  cursor: pointer;
  transition: color 0.2s;
  background: transparent;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.2rem;
  transition: var(--t);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: var(--white); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--muted); font-size: 0.95rem; line-height: 1.75;
}

/* ── Process Steps ──────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::after {
  content: '';
  position: absolute;
  top: 36px; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 70px; height: 70px;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem; color: var(--gold);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}
.step-item h3 { margin-bottom: 8px; }
.step-item p { font-size: 0.9rem; color: var(--muted); }

/* ── Floating Decor ─────────────────────────────────────────── */
.float-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.4;
}
.float-decor-1 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--primary-light), transparent);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.float-decor-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--gold-light), transparent);
  bottom: -60px; left: -60px;
  animation: float 10s ease-in-out infinite 2s;
}
.float-decor-3 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 40%; right: 5%;
  animation: float 7s ease-in-out infinite 1s;
}

/* ── Image Placeholders (for demo — replace with real photos) ── */
.img-placeholder {
  background: linear-gradient(135deg, var(--cream-dark) 0%, #e8d0ca 50%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.8rem;
  text-align: center; font-style: italic;
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-main { color: var(--primary-light); font-size: 2.2rem; }
.footer-brand .nav-logo-sub { color: rgba(255,255,255,0.4); }
.footer-tagline {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin: 16px 0 24px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px; font-weight: 600;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-item a:hover { color: var(--primary-light); }
.footer-book-btn {
  display: inline-flex;
  margin-top: 18px;
}
.footer-bottom {
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.credit-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--t);
  text-shadow: 0 0 12px rgba(201,169,110,0.45);
}
.credit-link:hover {
  color: var(--gold-light);
  text-shadow: 0 0 22px rgba(201,169,110,0.9);
}

/* ── Sticky CTA Bar (mobile) ────────────────────────────────── */
.sticky-cta-bar { display: none; }

/* ── Dividers / Wave Shapes ─────────────────────────────────── */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9998;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 88vh;
  border-radius: var(--r-sm);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  color: var(--white); font-size: 2.4rem;
  cursor: pointer; transition: color 0.2s;
  z-index: 9999;
}
.lightbox-close:hover { color: var(--primary-light); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(4)::after { display: none; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::after { display: none; }
}
@media (max-width: 768px) {
  .section-pad { padding: 65px 0; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .reviews-track { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badge { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .steps-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  /* Sticky CTA bar — mobile */
  .sticky-cta-bar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: var(--dark);
    border-top: 1.5px solid var(--gold);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.45);
  }
  .sticky-btn {
    flex: 1; display: flex;
    flex-direction: column; align-items: center;
    padding: 10px 6px 8px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.64rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: background 0.2s;
    gap: 3px;
  }
  .sticky-btn:active { transform: scale(0.96); }
  .sticky-call { color: var(--white); }
  .sticky-call:hover { background: rgba(255,255,255,0.07); }
  .sticky-book { color: var(--gold); background: rgba(200,132,122,0.12); }
  .sticky-book:hover { background: rgba(200,132,122,0.25); }
  .sticky-whatsapp { color: #25D366; }
  .sticky-whatsapp:hover { background: rgba(37,211,102,0.07); }
  .sticky-btn svg { width: 20px; height: 20px; }
  body { padding-bottom: 66px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
  .shop-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { justify-content: center; }
  .service-item-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .service-item-meta { align-items: flex-start; flex-direction: row; }
}
