/* ============================================================
   Beauty Baar Spa — Custom CSS
   Brand: Warm Sanctuary palette + Playfair Display + Plus Jakarta Sans
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&amp;family=Plus+Jakarta+Sans:wght@300;400;500;600;700&amp;display=swap');

/* ---------- CSS Variables / Brand Tokens ---------- */
:root {
  --bg:          hsl(42, 33%, 96%);
  --bg-warm:     hsl(48, 100%, 98%);
  --fg:          hsl(22, 25%, 12%);
  --primary:     hsl(43, 74%, 49%);
  --primary-rgb: 212, 160, 42;
  --secondary:   hsl(22, 25%, 12%);
  --muted:       hsl(22, 10%, 52%);
  --white:       #ffffff;
  --green-wa:    #25D366;
  --radius-full: 9999px;
  --transition:  0.3s ease;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Plus Jakarta Sans', system-ui, sans-serif;
  --container:   1280px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ---------- Utility: Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2.5rem; } }

/* ---------- Font helpers ---------- */
.font-serif { font-family: var(--font-serif); }

/* ---------- Keyframes ---------- */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ping {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50%       { transform: scale(1.4); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
@keyframes slideInRight {
  from { transform: translateX(80px); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}
@keyframes slideOutRight {
  from { transform: translateX(0);    opacity: 1; }
  to   { transform: translateX(80px); opacity: 0; }
}

/* ---------- Scroll-reveal (JS adds .revealed) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- Utility Bar ---------- */
#utility-bar {
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 60;
  border-bottom: 1px solid rgba(212,160,42,0.2);
}
#utility-bar .ub-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
#utility-bar .ub-left { display: flex; align-items: center; gap: 0.5rem; }
#utility-bar .stars { color: var(--primary); display: flex; }
#utility-bar .stars svg { width: 12px; height: 12px; fill: currentColor; }
#utility-bar .ub-right { display: none; align-items: center; gap: 1rem; }
#utility-bar .ub-right a { display: flex; align-items: center; gap: 0.375rem; transition: color var(--transition); }
#utility-bar .ub-right a svg { width: 12px; height: 12px; }
#utility-bar .ub-mobile { display: flex; align-items: center; gap: 1rem; }
#utility-bar .ub-mobile a { display: flex; align-items: center; gap: 0.25rem; font-size: 0.7rem; }
#utility-bar .ub-mobile a svg { width: 16px; height: 16px; }
@media (min-width: 768px) {
  #utility-bar .ub-right  { display: flex; }
  #utility-bar .ub-mobile { display: none; }
  #utility-bar .dot-sep   { display: inline; }
}
#utility-bar .phone-link { color: var(--primary); font-weight: 600; }
#utility-bar .dot-sep    { display: none; opacity: 0.6; }
#utility-bar .sep        { opacity: 0.6; margin-inline: 0.25rem; }
@media (min-width: 1024px) {
  #utility-bar .reviews-count { display: inline; }
}

/* ---------- Navbar ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  height: 4rem;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
#navbar {
  margin-top:3rem;
}
#navbar.scrolled {
  background: var(--bg);
  box-shadow: 0 4px 20px -2px rgba(0,0,0,0.05);
  margin-top:0rem;
}
#navbar.hidden-up { transform: translateY(-100%); }
#navbar .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 768px) { #navbar .nav-inner { padding-inline: 2rem; height: 4rem; } }

/* Logo */
.nav-logo { display: flex; flex-direction: column; align-items: flex-start; z-index: 50; }
.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
  color: white;
  transition: color var(--transition);
}
.nav-logo-sub {
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo-main { color: var(--secondary); }
#navbar.scrolled .nav-logo-sub  { color: var(--primary); }
.mobile-menu-open .nav-logo-main { color: var(--secondary) !important; }
.mobile-menu-open .nav-logo-sub  { color: var(--primary) !important; }

/* Desktop nav links */
.nav-links { display: none; align-items: center; gap: 2.5rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--primary); }
#navbar.scrolled .nav-links a { color: rgba(34,20,12,0.8); }
#navbar.scrolled .nav-links a:hover { color: var(--primary); }

/* Book Now CTA */
.nav-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  padding: 0 1.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  transition: all var(--transition);
  margin-left: 1rem;
}
.nav-book-btn:hover { background: var(--primary); color: white; }
#navbar.scrolled .nav-book-btn {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 20px rgba(212,160,42,0.3);
  border-color: var(--primary);
}
.nav-desktop-actions { display: none; align-items: center; }
@media (min-width: 1024px) { .nav-desktop-actions { display: flex; } }

/* Hamburger */
.nav-hamburger {
  display: flex;
  align-items: center;
  z-index: 50;
  color: white;
  padding: 0.5rem;
  transition: color var(--transition);
}
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
#navbar.scrolled .nav-hamburger { color: var(--secondary); }
.mobile-menu-open .nav-hamburger { color: var(--secondary); }
.nav-hamburger svg { width: 24px; height: 24px; }

/* Mobile Menu Overlay */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
  padding-inline: 1.5rem;
  padding-bottom: 3rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  flex: 1;
}
.mobile-nav-links a {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  color: var(--secondary);
  transition: color var(--transition);
}
.mobile-nav-links a:hover { color: var(--primary); }
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.btn-primary-full {
  width: 100%;
  border-radius: var(--radius-full);
  height: 3.5rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.btn-primary-full:hover { background: rgba(212,160,42,0.9); }
.btn-outline-full {
  width: 100%;
  border-radius: var(--radius-full);
  height: 3.5rem;
  border: 1px solid rgba(34,20,12,0.2);
  color: var(--secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.btn-outline-full:hover { background: rgba(34,20,12,0.05); }
.btn-outline-full svg, .btn-primary-full svg { width: 18px; height: 18px; }

/* ---------- Hero Section ---------- */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--secondary);
  color: white;
  overflow: hidden;
  padding-top: 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transform: scale(1.05);
}
.hero-bg-overlay1 { position: absolute; inset: 0; background: rgba(34,20,12,0.4); mix-blend-mode: multiply; }
.hero-bg-overlay2 { position: absolute; inset: 0; background: linear-gradient(to top, var(--secondary), rgba(34,20,12,0.6) 40%, transparent); }
.hero-bg-overlay3 { position: absolute; inset: 0; background: linear-gradient(to right, var(--secondary), rgba(34,20,12,0.4) 50%, transparent); }
.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 1rem;
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}
@media (min-width: 768px) { .hero-content { padding: 5rem 2rem; } }
@media (min-width: 1024px) { .hero-content { padding: 8rem 2.5rem; } }
.hero-stars { display: flex; gap: 0.125rem; color: var(--primary); margin-bottom: 2rem; }
.hero-stars svg { width: 14px; height: 14px; fill: currentColor; }
.hero-rating {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-left: 0.75rem;
}
.hero-stars-row { display: flex; align-items: center; }
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  max-width: 800px;
}
.hero-h1 span { color: var(--primary); font-style: italic; font-weight: 400; }
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .hero-desc { font-size: 1.125rem; } }
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 3.5rem; padding: 0 2rem; border-radius: var(--radius-full);
  background: var(--primary); color: white; font-weight: 600; font-size: 0.875rem;
  box-shadow: 0 0 35px rgba(212,160,42,0.45);
  transition: all var(--transition);
}
.btn-hero-primary:hover { background: rgba(212,160,42,0.9); transform: scale(1.05); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 3.5rem; padding: 0 2rem; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25);
  color: white; font-size: 0.875rem;
  transition: all var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); }
.btn-hero-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 3.5rem; padding: 0 1.5rem; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2); color: white; background: transparent; font-size: 0.875rem;
  transition: all var(--transition);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); }
@media (max-width: 639px) { .btn-hero-outline { display: none; } }
.hero-btns svg { width: 20px; height: 20px; }
.hero-location-note {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 1rem;
}
.hero-location-note::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: linear-gradient(to right, rgba(212,160,42,0.5), transparent);
}
.hero-location-note p {
  font-size: 0.75rem; color: var(--primary); font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-trust-bar {
  position: absolute;
  bottom: 2rem; left: 1rem; right: 1rem;
  display: none;
}
@media (min-width: 768px) { .hero-trust-bar { display: block; left: 2rem; right: 2rem; } }
.hero-trust-line { width: 100%; height: 1px; background: linear-gradient(to right, rgba(212,160,42,0.5), rgba(255,255,255,0.1), transparent); margin-bottom: 1.5rem; }
.hero-trust-items { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust-item .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(212,160,42,0.8); }
.hero-trust-rating { color: rgba(255,255,255,0.8); }

/* ---------- Google Trust Bar ---------- */
#google-trust-bar {
  background: #FFFDF5;
  border-top: 1px solid #F5E6B3;
  border-bottom: 1px solid #F5E6B3;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 20;
}
.gtb-inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 768px) { .gtb-inner { flex-direction: row; justify-content: space-between; } }
.gtb-left { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; font-size: 0.875rem; font-weight: 500; color: var(--secondary); justify-content: center; }
@media (min-width: 768px) { .gtb-left { justify-content: flex-start; } }
.gtb-g { width: 24px; height: 24px; border-radius: 4px; background: white; box-shadow: 0 1px 3px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.125rem; color: #4285F4; }
.gtb-stars { display: flex; color: var(--primary); }
.gtb-stars svg { width: 16px; height: 16px; fill: currentColor; }
.gtb-open { display: flex; align-items: center; gap: 0.5rem; }
.gtb-open-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }
.gtb-right { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.btn-gtb-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: white; padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 0 15px rgba(212,160,42,0.3);
  transition: all var(--transition);
}
.btn-gtb-primary:hover { opacity: 0.9; }
.btn-gtb-wa {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: rgba(37,211,102,0.1); color: var(--green-wa);
  border: 1px solid rgba(37,211,102,0.2);
  padding: 0.5rem 1rem; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  transition: all var(--transition);
}
.btn-gtb-wa:hover { background: rgba(37,211,102,0.2); }
.btn-gtb-dir, .btn-gtb-reviews {
  display: inline-flex; align-items: center; gap: 0.375rem;
  background: white; border: 1px solid rgba(34,20,12,0.1);
  padding: 0.5rem 1rem; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--secondary); transition: all var(--transition);
}
.btn-gtb-dir:hover { border-color: var(--primary); }
.btn-gtb-reviews { background: var(--secondary); color: white; }
.btn-gtb-reviews:hover { opacity: 0.9; }
.gtb-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(34,20,12,0.3); }
svg.icon { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---------- Trust Metrics ---------- */
#trust-metrics {
  padding: 6rem 1rem;
  background: var(--secondary);
  color: white;
  position: relative;
  overflow: hidden;
}
.tm-bg { position: absolute; inset: 0; }
.tm-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.1; }
.tm-bg-overlay { position: absolute; inset: 0; background: rgba(34,20,12,0.85); }
.tm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px)  { .tm-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .tm-grid { grid-template-columns: repeat(6, 1fr); gap: 1rem; } }
.tm-item { text-align: center; }
.tm-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.tm-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.tm-cta { text-align: center; position: relative; z-index: 1; }
.tm-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.tm-cta-btns { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 640px) { .tm-cta-btns { flex-direction: row; justify-content: center; } }

/* ---------- General Buttons ---------- */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: white;
  border-radius: var(--radius-full); padding: 0 2.5rem; height: 3.5rem;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 0 30px rgba(212,160,42,0.4);
  transition: all var(--transition);
}
.btn-gold:hover { background: rgba(212,160,42,0.9); }
.btn-gold svg { width: 20px; height: 20px; }
.btn-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(37,211,102,0.5); color: var(--green-wa);
  border-radius: var(--radius-full); padding: 0 2rem; height: 3.5rem;
  font-size: 0.9rem; background: transparent;
  transition: all var(--transition);
}
.btn-wa:hover { background: rgba(37,211,102,0.1); }
.btn-wa svg { width: 18px; height: 18px; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2); color: white;
  border-radius: var(--radius-full); padding: 0 2rem; height: 3.5rem;
  font-size: 0.9rem; background: transparent;
  transition: all var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-outline-white svg { width: 18px; height: 18px; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(34,20,12,0.2); color: var(--secondary);
  border-radius: var(--radius-full); padding: 0 2rem; height: 3.5rem;
  font-size: 0.9rem; background: transparent;
  transition: all var(--transition);
}
.btn-outline-dark:hover { background: rgba(34,20,12,0.05); }

/* ---------- Flash Offer Banner ---------- */
#flash-offer {
  background: var(--secondary);
  color: white;
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212,160,42,0.2);
  border-bottom: 1px solid rgba(212,160,42,0.2);
}
.flash-glow1 {
  position: absolute; top: 0; right: 0;
  width: 500px; height: 500px;
  background: rgba(212,160,42,0.05);
  border-radius: 50%; filter: blur(100px);
  transform: translate(30%, -50%);
  pointer-events: none;
}
.flash-glow2 {
  position: absolute; bottom: 0; left: 0;
  width: 300px; height: 300px;
  background: rgba(212,160,42,0.05);
  border-radius: 50%; filter: blur(80px);
  transform: translate(-50%, 50%);
  pointer-events: none;
}
.flash-inner {
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  position: relative; z-index: 1; max-width: var(--container); margin-inline: auto;
}
@media (min-width: 1024px) { .flash-inner { flex-direction: row; justify-content: space-between; } }
.flash-text { flex: 1; max-width: 640px; text-align: center; }
@media (min-width: 1024px) { .flash-text { text-align: left; } }
.flash-badges { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.25rem; }
@media (min-width: 1024px) { .flash-badges { justify-content: flex-start; } }
.flash-slot-badge {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(239,68,68,0.8); border: 1px solid #ef4444;
  padding: 0.25rem 0.75rem; border-radius: var(--radius-full);
  box-shadow: 0 0 15px rgba(239,68,68,0.3);
}
.flash-countdown {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--primary); font-family: monospace; font-size: 1.125rem; font-weight: 700; letter-spacing: 0.15em;
}
.flash-countdown svg { width: 20px; height: 20px; animation: pulse 2s infinite; }
.flash-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.flash-h2 span { color: var(--primary); font-style: italic; }
.flash-desc {
  color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 300;
  max-width: 480px; margin-inline: auto;
  margin-bottom: 0;
}
@media (min-width: 1024px) { .flash-desc { margin-inline: 0; } }
.flash-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; flex-shrink: 0; }
@media (min-width: 1024px) { .flash-btns { justify-content: flex-end; } }
.btn-flash-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 3.5rem; padding: 0 2rem; border-radius: var(--radius-full);
  background: var(--primary); color: white; font-weight: 500;
  box-shadow: 0 0 20px rgba(212,160,42,0.3);
  transition: all var(--transition);
}
.btn-flash-primary:hover { opacity: 0.9; transform: scale(1.02); }
.btn-flash-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 3.5rem; padding: 0 2rem; border-radius: var(--radius-full);
  background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
  color: var(--green-wa); transition: all var(--transition);
}
.btn-flash-wa:hover { background: rgba(37,211,102,0.2); }
.btn-flash-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 3.5rem; padding: 0 2rem; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2); color: white; background: transparent;
  transition: all var(--transition);
}
.btn-flash-call:hover { background: rgba(255,255,255,0.1); }
.btn-flash-primary svg, .btn-flash-wa svg, .btn-flash-call svg { width: 18px; height: 18px; }

/* ---------- Therapies Section ---------- */
#therapies {
  padding: 6rem 1rem;
  background: var(--bg);
  position: relative;
}
@media (min-width: 768px) { #therapies { padding: 8rem 2rem; } }
.section-label {
  display: inline-block;
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--secondary); line-height: 1.1;
  margin-bottom: 1.5rem;
}
.section-desc { color: var(--muted); font-size: 1.125rem; font-weight: 300; line-height: 1.75; }
.section-header { text-align: center; max-width: 768px; margin-inline: auto; margin-bottom: 4rem; }

/* Filter Tabs */
.filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.5rem 1.25rem; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  background: white; color: rgba(34,20,12,0.6); border: 1px solid rgba(34,20,12,0.1);
  transition: all var(--transition); cursor: pointer;
}
.filter-btn:hover { border-color: rgba(212,160,42,0.5); color: var(--secondary); }
.filter-btn.active { background: var(--secondary); color: white; box-shadow: 0 4px 12px rgba(0,0,0,0.15); border-color: var(--secondary); }

/* Therapy Cards */
.therapies-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 6rem;
}
@media (min-width: 768px)  { .therapies-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .therapies-grid { grid-template-columns: repeat(3, 1fr); } }
.therapy-card {
  background: white; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 10px 40px -15px rgba(0,0,0,0.05);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.therapy-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -15px rgba(0,0,0,0.1); }
.therapy-card::before {
  content: ''; position: absolute; inset: 0;
  border: 2px solid var(--primary); border-radius: 1rem;
  opacity: 0; transition: opacity 0.5s; z-index: 20; pointer-events: none;
}
.therapy-card:hover::before { opacity: 1; }
.therapy-card-img {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.therapy-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.therapy-card:hover .therapy-card-img img { transform: scale(1.05); }
.therapy-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
  opacity: 0.8; transition: opacity 0.5s;
}
.therapy-card:hover .therapy-card-img-overlay { opacity: 0.9; }
.therapy-card-title {
  position: absolute; bottom: 1rem; left: 1.5rem; right: 1.5rem; z-index: 10;
}
.therapy-card-title h3 { font-family: var(--font-serif); font-size: 1.5rem; color: white; margin-bottom: 0.25rem; }
.therapy-card-title p { color: rgba(212,160,42,0.9); font-size: 0.875rem; font-weight: 500; }
.therapy-card-body { padding: 1.5rem; flex: 1; border-bottom: 1px solid rgba(34,20,12,0.05); }
.therapy-duration { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: rgba(34,20,12,0.6); margin-bottom: 0.25rem; }
.therapy-duration svg { width: 16px; height: 16px; color: var(--primary); }
.therapy-ideal { font-size: 0.75rem; color: rgba(34,20,12,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.therapy-card-footer { padding: 1.25rem 1.5rem; }
.therapy-btns { display: flex; flex-direction: column; gap: 0.5rem; }
.btn-therapy-call {
  display: flex; align-items: center; justify-content: center; gap: 0.375rem;
  width: 100%; height: 2.5rem; border-radius: var(--radius-full);
  background: var(--primary); color: white; font-size: 0.75rem; font-weight: 700;
  transition: all var(--transition);
}
.btn-therapy-call:hover { opacity: 0.9; }
.btn-therapy-call svg { width: 14px; height: 14px; }
.therapy-row-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.btn-therapy-wa, .btn-therapy-book {
  display: flex; align-items: center; justify-content: center; gap: 0.375rem;
  height: 2.25rem; border-radius: var(--radius-full); font-size: 0.75rem;
  border: 1px solid; transition: all var(--transition);
}
.btn-therapy-wa { border-color: rgba(37,211,102,0.3); color: var(--green-wa); background: transparent; }
.btn-therapy-wa:hover { background: rgba(37,211,102,0.1); }
.btn-therapy-book { border-color: rgba(34,20,12,0.2); color: var(--secondary); background: transparent; }
.btn-therapy-book:hover { background: rgba(34,20,12,0.05); }
.btn-therapy-wa svg, .btn-therapy-book svg { width: 14px; height: 14px; }
.therapy-card[data-hidden] { display: none; }

/* Divider */
.section-divider { display: flex; justify-content: center; margin: 4rem 0; }
.section-divider-line { width: 1px; height: 3rem; background: rgba(212,160,42,0.3); }

/* Therapy Guide Table */
.therapy-guide { max-width: 56rem; margin-inline: auto; }
.tg-table-wrap { overflow-x: auto; border-radius: 1rem; box-shadow: 0 10px 40px -15px rgba(0,0,0,0.05); }
.tg-table { width: 100%; min-width: 320px; border-collapse: collapse; background: white; border-radius: 1rem; overflow: hidden; }
.tg-table thead tr { background: var(--secondary); }
.tg-table thead th { color: rgba(255,255,255,0.9); font-family: var(--font-serif); font-size: 1rem; padding: 1.25rem 2rem; text-align: left; font-weight: 400; }
@media (min-width: 768px) { .tg-table thead th { font-size: 1.125rem; padding: 1.5rem 2rem; } }
.tg-table tbody tr { border-bottom: 1px solid rgba(34,20,12,0.05); transition: background var(--transition); }
.tg-table tbody tr:hover { background: rgba(34,20,12,0.02); }
.tg-table tbody td { padding: 1rem 2rem; font-size: 0.875rem; }
@media (min-width: 768px) { .tg-table tbody td { padding: 1.25rem 2rem; font-size: 1rem; } }
.tg-table tbody td:first-child { color: rgba(34,20,12,0.8); font-weight: 300; }
.tg-table tbody td:last-child  { color: var(--primary); font-weight: 500; }

/* ---------- Booking CTA Block ---------- */
.booking-cta-block {
  background: #FFFDF5;
  border-top: 1px solid rgba(212,160,42,0.2);
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.booking-cta-block h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  color: var(--secondary); margin-bottom: 1rem;
}
.booking-cta-block p { color: rgba(34,20,12,0.7); font-weight: 300; font-size: 1.125rem; margin-bottom: 2.5rem; }
.booking-cta-btns { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; margin-bottom: 1rem; }
@media (min-width: 640px) { .booking-cta-btns { flex-direction: row; justify-content: center; } }
.booking-cta-note { color: rgba(34,20,12,0.4); font-size: 0.875rem; font-weight: 300; }

/* ---------- Why Choose Us ---------- */
#why-choose-us {
  padding: 4rem 1rem;
  background: var(--secondary); color: white;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { #why-choose-us { padding: 8rem 2rem; } }
@media (min-width: 1024px) { #why-choose-us { padding: 10rem 2.5rem; } }
.wcu-inner { display: flex; flex-direction: column; gap: 2.5rem; }
@media (min-width: 1024px) { .wcu-inner { flex-direction: row; gap: 6rem; } }
.wcu-sidebar { flex-shrink: 0; }
@media (min-width: 1024px) { .wcu-sidebar { width: 33.33%; position: sticky; top: 8rem; align-self: flex-start; } }
.wcu-sidebar h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem; line-height: 1.1;
}
.wcu-sidebar p { color: rgba(255,255,255,0.7); font-size: 1.125rem; font-weight: 300; line-height: 1.75; margin-bottom: 2.5rem; }
.wcu-sidebar-btns { display: none; flex-direction: column; gap: 1rem; }
@media (min-width: 1024px) { .wcu-sidebar-btns { display: flex; } }
.wcu-therapist-photo {
  display: none;
  margin-top: 2.5rem; border-radius: 1.5rem; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3); ring: 1px solid rgba(212,160,42,0.2);
}
@media (min-width: 1024px) { .wcu-therapist-photo { display: block; } }
.wcu-therapist-photo img { width: 100%; height: 224px; object-fit: cover; }
.wcu-therapist-caption {
  background: rgba(255,255,255,0.05); padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.wcu-therapist-caption p:first-child { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); }
.wcu-therapist-caption p:last-child { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 300; margin-top: 0.125rem; }
.wcu-pillars { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 768px) { .wcu-pillars { grid-template-columns: repeat(2, 1fr); gap: 4rem 3rem; } }
.wcu-pillar { display: flex; gap: 1.5rem; }
.wcu-pillar-num { font-family: var(--font-serif); font-size: 2.5rem; color: rgba(255,255,255,0.1); transition: color var(--transition); flex-shrink: 0; padding-top: 0.5rem; }
.wcu-pillar:hover .wcu-pillar-num { color: rgba(212,160,42,0.3); }
.wcu-pillar h3 { font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 0.75rem; }
.wcu-pillar p { color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.75; }
.wcu-mobile-btns { display: flex; flex-direction: column; gap: 1rem; margin-top: 4rem; }
@media (min-width: 640px) { .wcu-mobile-btns { flex-direction: row; } }
@media (min-width: 1024px) { .wcu-mobile-btns { display: none; } }

/* ---------- Spa Journey ---------- */
#spa-journey {
  padding: 4rem 1rem;
  background: var(--bg);
  position: relative;
}
@media (min-width: 768px) { #spa-journey { padding: 8rem 2rem; } }
@media (min-width: 1024px) { #spa-journey { padding: 10rem 2.5rem; } }
.journey-steps-wrap { position: relative; max-width: 72rem; margin-inline: auto; }
.journey-connector {
  position: absolute; top: 40px; left: 10%; right: 10%;
  height: 1px; background: rgba(212,160,42,0.2); display: none;
}
@media (min-width: 768px) { .journey-connector { display: block; } }
.journey-steps { display: grid; grid-template-columns: 1fr; gap: 3rem; position: relative; z-index: 10; }
@media (min-width: 768px) { .journey-steps { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } }
.journey-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.journey-step-num {
  width: 5rem; height: 5rem; border-radius: 50%;
  background: white; border: 1px solid rgba(212,160,42,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2rem; position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.5s;
}
.journey-step:hover .journey-step-num { transform: translateY(-8px); }
.journey-step-num span { font-family: var(--font-serif); font-size: 1.25rem; color: var(--secondary); transition: color var(--transition); }
.journey-step:hover .journey-step-num span { color: var(--primary); }
.journey-step-mobile-line {
  position: absolute; top: 100%; left: 50%; width: 1px; height: 3rem;
  background: rgba(212,160,42,0.2); transform: translateX(-50%);
}
@media (min-width: 768px) { .journey-step-mobile-line { display: none; } }
.journey-step h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--secondary); margin-bottom: 0.75rem; }
.journey-step p { font-size: 0.875rem; color: var(--muted); font-weight: 300; line-height: 1.75; padding-inline: 0.5rem; }
.journey-photo {
  margin: 6rem 0 4rem;
  border-radius: 2rem; overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.12);
  height: 400px; position: relative;
  ring: 1px solid rgba(34,20,12,0.1);
}
@media (min-width: 768px) { .journey-photo { height: 520px; } }
.journey-photo img { width: 100%; height: 100%; object-fit: cover; }
.journey-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(34,20,12,0.6), transparent, transparent); }
.journey-photo-caption { position: absolute; bottom: 2rem; left: 2rem; right: 2rem; color: white; }
.journey-photo-caption p:first-child { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 1.875rem); margin-bottom: 0.25rem; }
.journey-photo-caption p:last-child { color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 300; }
.journey-btns { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 640px) { .journey-btns { flex-direction: row; justify-content: center; } }

/* ---------- Wellness Packages ---------- */
#packages {
  padding: 6rem 1rem;
  background: rgba(34,20,12,0.03);
  position: relative;
}
@media (min-width: 768px) { #packages { padding: 8rem 2rem; } }
.packages-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px)  { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }
.pkg-card {
  background: white; border-radius: 1rem; overflow: hidden;
  display: flex; flex-direction: column; position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.5s, transform 0.5s;
}
.pkg-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.1); transform: translateY(-4px); }
.pkg-card.featured {
  box-shadow: 0 20px 60px -15px rgba(212,160,42,0.15);
  outline: 1px solid rgba(212,160,42,0.3);
  transform: scale(1.02);
  z-index: 1;
}
.pkg-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.pkg-popular-badge {
  position: absolute; top: 176px; left: 50%; transform: translate(-50%, -50%);
  z-index: 20; background: var(--primary); color: white;
  font-size: 0.625rem; font-weight: 700; padding: 0.375rem 1.5rem;
  border-radius: var(--radius-full); letter-spacing: 0.2em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.pkg-img { height: 11rem; overflow: hidden; position: relative; flex-shrink: 0; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.pkg-card:hover .pkg-img img { transform: scale(1.05); }
.pkg-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent, transparent, rgba(255,255,255,0.6)); }
.pkg-duration-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  color: var(--secondary); font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: var(--radius-full);
}
.pkg-header { text-align: center; padding: 1.5rem 2rem; position: relative; z-index: 10; }
.pkg-dur-pill {
  display: inline-block; background: rgba(34,20,12,0.05);
  color: rgba(34,20,12,0.6); font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: var(--radius-full); margin-bottom: 1rem;
}
.pkg-title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--secondary); margin-bottom: 0.5rem; }
.pkg-desc { font-size: 0.875rem; color: rgba(34,20,12,0.7); font-weight: 300; }
.pkg-includes { flex: 1; padding: 0 2rem; position: relative; z-index: 10; }
.pkg-includes ul { margin-top: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(34,20,12,0.1); display: flex; flex-direction: column; gap: 0.75rem; }
.pkg-includes li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: rgba(34,20,12,0.8); font-weight: 300; }
.pkg-check { width: 1rem; height: 1rem; border-radius: 50%; background: rgba(212,160,42,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pkg-check svg { width: 10px; height: 10px; color: var(--primary); stroke: currentColor; fill: none; stroke-width: 3; }
.pkg-footer { padding: 2rem; margin-top: auto; position: relative; z-index: 10; display: flex; flex-direction: column; gap: 0.75rem; }
.btn-pkg-call {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; height: 3rem; border-radius: var(--radius-full);
  background: var(--primary); color: white; font-weight: 600; font-size: 0.875rem;
  box-shadow: 0 0 20px rgba(212,160,42,0.25); transition: all var(--transition);
}
.btn-pkg-call:hover { opacity: 0.9; }
.btn-pkg-call svg { width: 16px; height: 16px; }
.btn-pkg-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; height: 3rem; border-radius: var(--radius-full);
  border: 1px solid rgba(37,211,102,0.3); color: var(--green-wa); background: transparent;
  font-size: 0.875rem; transition: all var(--transition);
}
.btn-pkg-wa:hover { background: rgba(37,211,102,0.05); }
.btn-pkg-wa svg { width: 16px; height: 16px; }

/* ---------- Location SEO ---------- */
#location {
  padding: 6rem 1rem;
  background: white;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { #location { padding: 8rem 2rem; } }
.location-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: repeat(2, 1fr); gap: 6rem; } }
.location-info h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 2rem; line-height: 1.1; color: var(--secondary); }
.location-info > p { color: rgba(34,20,12,0.7); font-size: 1.125rem; font-weight: 300; line-height: 1.75; margin-bottom: 3rem; }
.location-items { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 3rem; }
.location-item { display: flex; align-items: flex-start; gap: 1.5rem; }
.location-icon {
  width: 3rem; height: 3rem; border-radius: 50%; background: rgba(212,160,42,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--transition);
}
.location-item:hover .location-icon { background: rgba(212,160,42,0.2); }
.location-icon svg { width: 20px; height: 20px; color: var(--primary); stroke: currentColor; fill: none; stroke-width: 2; }
.location-item h4 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--secondary); margin-bottom: 0.5rem; }
.location-item p { color: rgba(34,20,12,0.7); font-weight: 300; line-height: 1.75; }
.location-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.location-badge {
  font-size: 0.625rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(34,20,12,0.05); border: 1px solid rgba(34,20,12,0.1);
  padding: 0.375rem 0.75rem; border-radius: var(--radius-full); color: rgba(34,20,12,0.8);
}
.location-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.location-map {
  border-radius: 2rem; overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.1);
  height: 500px; position: relative;
  outline: 1px solid rgba(34,20,12,0.1);
}
@media (min-width: 1024px) { .location-map { height: 600px; } }
.location-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.1) brightness(0.95); }
.location-seo-tags { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid rgba(34,20,12,0.08); }
.location-seo-tags p { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(34,20,12,0.3); margin-bottom: 1.25rem; text-align: center; }
.location-seo-tags .tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.seo-pill { font-size: 0.6875rem; color: rgba(34,20,12,0.4); background: rgba(34,20,12,0.04); border: 1px solid rgba(34,20,12,0.08); padding: 0.25rem 0.75rem; border-radius: var(--radius-full); font-weight: 300; }

/* ---------- Lifestyle Wellness ---------- */
#lifestyle { padding: 4rem 1rem; background: white; }
@media (min-width: 768px) { #lifestyle { padding: 8rem 2rem; } }
@media (min-width: 1024px) { #lifestyle { padding: 10rem 2.5rem; } }
.lifestyle-cards { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .lifestyle-cards { grid-template-columns: repeat(2, 1fr); margin-bottom: 6rem; } }
.lifestyle-card {
  border-radius: 2rem; overflow: hidden; position: relative;
}
.lifestyle-card-img { height: 13rem; overflow: hidden; position: relative; flex-shrink: 0; }
.lifestyle-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }
.lifestyle-card:hover .lifestyle-card-img img { transform: scale(1.05); }
.lifestyle-card-dark { background: var(--secondary); color: white; }
.lifestyle-card-light { background: rgba(34,20,12,0.03); }
.lifestyle-card-body { padding: 2.5rem 3.5rem; position: relative; z-index: 10; }
@media (max-width: 640px) { .lifestyle-card-body { padding: 1.5rem; } }
.lifestyle-card-icon { width: 40px; height: 40px; margin-bottom: 1.5rem; }
.lifestyle-card-icon svg { width: 40px; height: 40px; stroke-width: 1.5; }
.lifestyle-card-dark .lifestyle-card-icon svg { color: var(--primary); }
.lifestyle-card-light .lifestyle-card-icon svg { color: rgba(34,20,12,0.8); opacity: 0.8; }
.lifestyle-card h3 { font-family: var(--font-serif); font-size: clamp(1.875rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.lifestyle-card-dark h3 { color: white; }
.lifestyle-card-light h3 { color: var(--secondary); }
.lifestyle-card-dark p { color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.75; margin-bottom: 2rem; }
.lifestyle-card-light p { color: rgba(34,20,12,0.7); font-weight: 300; line-height: 1.75; margin-bottom: 2rem; }
.lifestyle-card-detail { border-left: 1px solid rgba(212,160,42,0.3); padding-left: 1rem; margin-bottom: 2.5rem; }
.lifestyle-card-detail .detail-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.lifestyle-card-dark .detail-text { color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 300; line-height: 1.75; }
.lifestyle-card-light .detail-text { color: rgba(34,20,12,0.6); font-size: 0.875rem; font-weight: 300; line-height: 1.75; }
.lifestyle-card-light .lifestyle-card-detail { border-color: rgba(34,20,12,0.2); }
.lifestyle-card-btns { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .lifestyle-card-btns { flex-direction: row; } }

/* Oils section */
.oils-header { text-align: center; max-width: 48rem; margin-inline: auto 0; margin-inline: auto; margin-bottom: 4rem; }
.oils-hero-img {
  margin-bottom: 3rem; border-radius: 2rem; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); height: 220px; position: relative;
}
@media (min-width: 768px) { .oils-hero-img { height: 280px; } }
.oils-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.oils-hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(34,20,12,0.6), transparent); }
.oils-hero-img-text { position: absolute; inset: 0; display: flex; align-items: center; padding: 2.5rem; }
.oils-hero-img-text .label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.5rem; }
.oils-hero-img-text .title { font-family: var(--font-serif); font-size: clamp(1.25rem, 2.5vw, 1.875rem); color: white; }
.oils-hero-img-text .list { color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 300; margin-top: 0.5rem; }
.oils-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px)  { .oils-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .oils-grid { grid-template-columns: repeat(6, 1fr); margin-bottom: 5rem; } }
.oil-card {
  background: var(--bg); border: 1px solid rgba(34,20,12,0.1);
  border-radius: 1.5rem; padding: 1.5rem; text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.oil-card:hover { border-color: rgba(212,160,42,0.5); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.oil-icon { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(212,160,42,0.05); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.oil-icon svg { width: 20px; height: 20px; color: var(--primary); stroke: currentColor; fill: none; stroke-width: 1.5; }
.oil-card h4 { font-family: var(--font-serif); color: var(--secondary); margin-bottom: 0.5rem; font-size: 1.125rem; }
.oil-card p { font-size: 0.75rem; color: var(--muted); font-weight: 300; line-height: 1.6; }
.lifestyle-bottom { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .lifestyle-bottom { grid-template-columns: repeat(2, 1fr); gap: 6rem; } }
.lifestyle-type h3 { font-family: var(--font-serif); font-size: 1.875rem; color: var(--secondary); margin-bottom: 2rem; }
.lifestyle-type-items { display: flex; flex-direction: column; gap: 2rem; }
.lifestyle-type-item { padding-left: 1.5rem; border-left: 1px solid rgba(212,160,42,0.5); }
.lifestyle-type-item h4 { font-family: var(--font-serif); color: var(--secondary); font-size: 1.25rem; margin-bottom: 0.5rem; transition: color var(--transition); }
.lifestyle-type-item:hover h4 { color: var(--primary); }
.lifestyle-type-item .desc { font-size: 0.875rem; color: var(--muted); font-weight: 300; line-height: 1.75; margin-bottom: 0.75rem; }
.lifestyle-type-item .recommend { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); }
.seasonal-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.seasonal-card { border-radius: 1.5rem; padding: 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.seasonal-card svg { width: 32px; height: 32px; stroke-width: 1.5; margin-bottom: 1rem; }
.seasonal-card h4 { font-family: var(--font-serif); color: var(--secondary); margin-bottom: 0.5rem; font-size: 1.125rem; }
.seasonal-card p { font-size: 0.75rem; color: var(--muted); font-weight: 300; line-height: 1.6; }
.seasonal-summer { background: #FFFDF5; border: 1px solid #F5E6B3; }
.seasonal-summer svg { color: #D4AF37; }
.seasonal-monsoon { background: rgba(148,163,184,0.1); border: 1px solid rgba(148,163,184,0.3); }
.seasonal-monsoon svg { color: #94a3b8; }
.seasonal-winter { background: rgba(34,20,12,0.03); border: 1px solid rgba(34,20,12,0.1); }
.seasonal-winter svg { color: rgba(34,20,12,0.6); }

/* ---------- Membership ---------- */
#membership {
  padding: 6rem 1rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { #membership { padding: 8rem 2rem; } }
.membership-photo {
  margin-bottom: 4rem; border-radius: 2rem; overflow: hidden;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.1);
  height: 300px; position: relative;
}
@media (min-width: 768px) { .membership-photo { height: 380px; } }
.membership-photo img { width: 100%; height: 100%; object-fit: cover; }
.membership-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(34,20,12,0.7), rgba(34,20,12,0.3), transparent); }
.membership-photo-text { position: absolute; inset: 0; display: flex; align-items: center; padding: 2.5rem 4rem; }
@media (max-width: 640px) { .membership-photo-text { padding: 1.5rem; } }
.membership-photo-text-inner { max-width: 24rem; }
.membership-photo-text .label { font-size: 0.625rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary); margin-bottom: 0.75rem; }
.membership-photo-text h3 { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.5rem); color: white; line-height: 1.2; margin-bottom: 1rem; }
.membership-photo-text p { color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 300; }
.tiers-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 72rem; margin-inline: auto; margin-bottom: 3rem; }
@media (min-width: 768px) { .tiers-grid { grid-template-columns: repeat(3, 1fr); align-items: start; } }
.tier-card {
  background: white; border-radius: 1rem;
  display: flex; flex-direction: column; position: relative;
  transition: all 0.5s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  outline: 1px solid rgba(34,20,12,0.05);
}
.tier-card.featured {
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.1);
  outline: 1px solid rgba(212,160,42,0.2);
  z-index: 1;
}
@media (min-width: 768px) { .tier-card.featured { margin-top: -1.5rem; margin-bottom: 1.5rem; } }
.tier-popular-badge {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--secondary); color: white;
  font-size: 0.625rem; font-weight: 700; padding: 0.375rem 1.5rem;
  border-radius: var(--radius-full); letter-spacing: 0.2em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.tier-header { text-align: center; padding: 3rem 2rem 2rem; }
.tier-icon-wrap {
  width: 5rem; height: 5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.tier-icon-wrap svg { width: 32px; height: 32px; stroke-width: 1.5; }
.tier-silver .tier-icon-wrap { background: rgba(34,20,12,0.05); }
.tier-silver .tier-icon-wrap svg { color: rgba(34,20,12,0.5); }
.tier-gold   .tier-icon-wrap { background: rgba(212,160,42,0.1); }
.tier-gold   .tier-icon-wrap svg { color: var(--primary); }
.tier-platinum .tier-icon-wrap { background: rgba(34,20,12,0.1); }
.tier-platinum .tier-icon-wrap svg { color: var(--secondary); }
.tier-name { font-family: var(--font-serif); font-size: 1.875rem; color: var(--secondary); }
.tier-benefits { flex: 1; padding: 0 2.5rem; display: none; }
@media (min-width: 640px) { .tier-benefits { display: block; } }
.tier-benefits ul { display: flex; flex-direction: column; gap: 1.25rem; }
.tier-benefits li { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; }
.tier-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(212,160,42,0.6); flex-shrink: 0; }
.tier-benefits li span { color: rgba(34,20,12,0.8); font-weight: 300; }
.tier-footer { padding: 2rem 2rem 2.5rem; margin-top: auto; display: flex; flex-direction: column; gap: 0.75rem; }
.btn-tier-call, .btn-tier-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; height: 3rem; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500;
  transition: all var(--transition);
}
.btn-tier-call { background: var(--primary); color: white; box-shadow: 0 0 20px rgba(212,160,42,0.25); }
.btn-tier-call:hover { opacity: 0.9; }
.btn-tier-call svg { width: 16px; height: 16px; }
.btn-tier-wa { background: transparent; border: 1px solid rgba(34,20,12,0.2); color: var(--secondary); }
.btn-tier-wa:hover { background: rgba(34,20,12,0.05); }
.btn-tier-wa svg { width: 16px; height: 16px; }

/* Membership comparison table */
.membership-comparison { max-width: 64rem; margin-inline: auto; margin-top: 6rem; }
.membership-comparison h3 { text-align: center; font-family: var(--font-serif); font-size: 1.5rem; color: var(--secondary); margin-bottom: 2.5rem; }
.mc-wrap { background: white; border-radius: 1rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); border: 1px solid rgba(34,20,12,0.1); overflow-x: auto; }
.mc-table { width: 100%; min-width: 600px; border-collapse: collapse; }
.mc-table th { font-family: var(--font-serif); color: var(--secondary); padding: 1.5rem 1.5rem; text-align: center; font-weight: 400; font-size: 1.125rem; border-bottom: 1px solid rgba(34,20,12,0.1); }
.mc-table th:first-child { text-align: left; font-size: 1.125rem; }
.mc-table th.gold-col { color: var(--primary); background: rgba(212,160,42,0.05); }
.mc-table td { padding: 1rem 1.5rem; font-size: 0.875rem; border-bottom: 1px solid rgba(34,20,12,0.05); text-align: center; }
.mc-table td:first-child { text-align: left; color: rgba(34,20,12,0.8); font-weight: 500; }
.mc-table td.gold-col { background: rgba(212,160,42,0.03); }
.mc-table tr:hover { background: rgba(34,20,12,0.02); }
.mc-check { width: 20px; height: 20px; margin-inline: auto; }
.mc-check.yes svg { color: #16a34a; stroke: currentColor; fill: none; stroke-width: 2.5; }
.mc-check.yes-gold svg { color: var(--primary); stroke: currentColor; fill: none; stroke-width: 2.5; }
.mc-check.yes-sec svg { color: var(--secondary); stroke: currentColor; fill: none; stroke-width: 2.5; }
.mc-check.no svg { color: rgba(34,20,12,0.2); stroke: currentColor; fill: none; stroke-width: 2; }

/* ---------- Testimonials ---------- */
#testimonials {
  padding: 6rem 1rem;
  background: var(--secondary); color: white;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { #testimonials { padding: 8rem 2rem; } }
.test-bg { position: absolute; inset: 0; z-index: 0; }
.test-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.15; transform: scale(1.05); }
.test-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(34,20,12,0.9), rgba(34,20,12,0.8), rgba(34,20,12,0.95)); }
.test-header { text-align: center; max-width: 48rem; margin-inline: auto; margin-bottom: 4rem; position: relative; z-index: 1; }
.test-stars { display: flex; justify-content: center; gap: 2px; margin-bottom: 1.5rem; }
.test-stars svg { width: 20px; height: 20px; fill: var(--primary); color: var(--primary); }
.test-rating-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  padding: 0.5rem 1.5rem; border-radius: var(--radius-full); margin-top: 1rem;
  font-size: 0.875rem;
}
.test-rating-badge .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); }
.test-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 80rem; margin-inline: auto;
  position: relative; z-index: 1; margin-bottom: 4rem;
}
@media (min-width: 768px)  { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }
.test-card {
  background: white; border-radius: 1rem; overflow: hidden;
  color: var(--secondary); box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.test-card-content { padding: 1.5rem; display: flex; flex-direction: column; height: 100%; }
.test-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.test-avatar-row { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem;
}
.test-avatar-name { font-weight: 700; font-size: 0.875rem; line-height: 1.2; }
.test-avatar-date { font-size: 0.75rem; color: rgba(34,20,12,0.5); }
.test-g { font-weight: 700; font-size: 1.25rem; color: #4285F4; }
.test-card-stars { display: flex; gap: 1px; margin-bottom: 0.75rem; }
.test-card-stars svg { width: 14px; height: 14px; fill: var(--primary); color: var(--primary); }
.test-card p { font-size: 0.875rem; color: rgba(34,20,12,0.8); font-weight: 300; line-height: 1.75; }
.test-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; position: relative; z-index: 1; }
@media (min-width: 640px) { .test-actions { flex-direction: row; justify-content: center; } }
.btn-test-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 3.5rem; padding: 0 2rem; border-radius: var(--radius-full);
  background: white; color: var(--secondary); font-weight: 500;
  transition: all var(--transition);
}
.btn-test-primary:hover { opacity: 0.9; }
.btn-test-primary svg { width: 16px; height: 16px; }
.btn-test-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 3.5rem; padding: 0 2rem; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2); color: white; background: transparent;
  transition: all var(--transition);
}
.btn-test-secondary:hover { background: rgba(255,255,255,0.1); }

/* ---------- FAQ Section ---------- */
#faq {
  padding: 6rem 1rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { #faq { padding: 8rem 2rem; } }
.faq-bg-text {
  position: absolute; top: 5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-serif); font-size: 20vw; font-weight: 700;
  color: rgba(34,20,12,0.02); pointer-events: none; user-select: none;
  z-index: 0; white-space: nowrap; letter-spacing: -0.05em;
}
.faq-inner { max-width: 56rem; margin-inline: auto; position: relative; z-index: 1; }
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-family: var(--font-serif); font-size: 1.5rem; color: var(--secondary);
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212,160,42,0.2);
}
.faq-item { border-bottom: 1px solid rgba(34,20,12,0.1); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 1.25rem 0; gap: 1rem;
  text-align: left; cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question-text {
  font-family: var(--font-serif); font-size: 1rem; color: inherit; flex: 1; line-height: 1.4;
}
@media (min-width: 768px) { .faq-question-text { font-size: 1.125rem; } }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  display: none; padding-bottom: 1.5rem; padding-top: 0.25rem;
  color: var(--muted); font-weight: 300; line-height: 1.75; font-size: 0.875rem;
}
@media (min-width: 768px) { .faq-answer { font-size: 1rem; } }
.faq-item.open .faq-answer { display: block; }
.faq-cta {
  margin-top: 5rem;
  background: linear-gradient(to right, rgba(34,20,12,0.05), rgba(34,20,12,0.02), rgba(34,20,12,0.05));
  border-radius: 1rem; padding: 2rem 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 2rem;
  border: 1px solid rgba(34,20,12,0.1);
}
@media (min-width: 768px) { .faq-cta { flex-direction: row; justify-content: space-between; } }
.faq-cta h3 { font-family: var(--font-serif); font-size: 1.5rem; color: var(--secondary); margin-bottom: 0.5rem; }
.faq-cta p { color: var(--muted); font-weight: 300; }
.faq-cta-btns { display: flex; flex-direction: column; gap: 1rem; flex-shrink: 0; width: 100%; }
@media (min-width: 640px) { .faq-cta-btns { flex-direction: row; width: auto; } }
.btn-faq-wa {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 3rem; padding: 0 2rem; border-radius: var(--radius-full);
  background: var(--primary); color: white; font-size: 0.9rem; font-weight: 500;
  transition: all var(--transition);
}
.btn-faq-wa:hover { opacity: 0.9; }
.btn-faq-wa svg { width: 20px; height: 20px; }
.btn-faq-call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 3rem; padding: 0 2rem; border-radius: var(--radius-full);
  border: 1px solid rgba(34,20,12,0.2); color: var(--secondary); background: transparent;
  font-size: 0.9rem; transition: all var(--transition);
}
.btn-faq-call:hover { background: rgba(34,20,12,0.05); }
.btn-faq-call svg { width: 20px; height: 20px; }

/* ---------- Final CTA ---------- */
#final-cta {
  position: relative;
  padding: 5rem 1rem;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 768px) { #final-cta { padding: 8rem 2rem; } }
@media (min-width: 1024px) { #final-cta { padding: 12rem 2.5rem; } }
.final-cta-bg { position: absolute; inset: 0; z-index: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; transform: scale(1.05); }
.final-cta-bg-overlay1 { position: absolute; inset: 0; background: rgba(34,20,12,0.8); mix-blend-mode: multiply; }
.final-cta-bg-overlay2 { position: absolute; inset: 0; background: linear-gradient(to top, var(--secondary), rgba(34,20,12,0.6) 40%, rgba(34,20,12,0.4)); }
.final-cta-inner { position: relative; z-index: 10; max-width: 56rem; margin-inline: auto; }
.final-cta-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: white; line-height: 1.1; margin-bottom: 2rem;
}
.final-cta-inner .subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: rgba(255,255,255,0.8); font-style: italic; font-weight: 400;
  line-height: 1.75; margin-bottom: 3rem;
}
.final-cta-btns { display: flex; flex-direction: column; gap: 1rem; justify-content: center; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .final-cta-btns { flex-direction: row; gap: 1.5rem; } }
.btn-final-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0 2.5rem; height: 4rem; border-radius: var(--radius-full);
  background: var(--primary); color: white; font-weight: 600; font-size: 1rem;
  box-shadow: 0 0 30px rgba(212,160,42,0.3);
  transition: all var(--transition);
}
.btn-final-primary:hover { opacity: 0.9; transform: scale(1.05); }
.btn-final-primary svg { width: 20px; height: 20px; }
.btn-final-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0 2.5rem; height: 4rem; border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2); color: white; background: transparent;
  font-size: 1rem; transition: all var(--transition);
}
.btn-final-outline:hover { background: rgba(255,255,255,0.1); }
.btn-final-outline svg { width: 20px; height: 20px; }
.final-cta-hours { color: rgba(255,255,255,0.5); font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 300; }

/* ---------- Footer ---------- */
#footer {
  background: var(--secondary); color: white;
  padding-top: 4rem; padding-bottom: 7rem;
  border-top: 3px solid var(--primary);
}
@media (min-width: 768px) { #footer { padding-top: 6rem; padding-bottom: 2rem; } }
.footer-logo { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 4rem; }
.footer-logo-main { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 3rem); letter-spacing: 0.2em; }
.footer-logo-sub { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--primary); font-weight: 500; margin-top: 0.5rem; }
.footer-logo-line { width: 3rem; height: 1px; background: rgba(212,160,42,0.4); margin-top: 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(5, 1fr); gap: 1.5rem; } }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.footer-about p { color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.75; font-size: 0.875rem; margin-bottom: 2rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: all var(--transition);
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }
.footer-social a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-contact p { color: rgba(255,255,255,0.7); font-weight: 300; font-size: 0.875rem; line-height: 1.75; margin-bottom: 1rem; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-contact a:hover { color: var(--primary); }
.footer-contact strong { color: white; font-weight: 600; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 300; transition: color var(--transition); display: flex; align-items: center; gap: 0.375rem; }
.footer-links a:hover { color: var(--primary); }
.footer-links a svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer-rating { font-weight: 500; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.footer-rating span { color: var(--primary); margin-right: 0.25rem; }
.footer-book-btn {
  display: inline-block; background: var(--primary); color: white;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.625rem 1.25rem; border-radius: var(--radius-full); margin-top: 1rem;
  transition: opacity var(--transition);
}
.footer-book-btn:hover { opacity: 0.9; }
.footer-seo { margin-bottom: 3rem; }
.footer-seo h4 { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1rem; }
.footer-seo .tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-seo-pill {
  font-size: 0.75rem; font-weight: 300; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05); color: rgba(255,255,255,0.4);
  padding: 0.375rem 0.75rem; border-radius: var(--radius-full);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.75rem; font-weight: 300; }
.footer-bottom-right { display: flex; align-items: center; gap: 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-bottom-right .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(212,160,42,0.5); }

/* ---------- Floating CTA ---------- */
/* Mobile bottom bar */
#floating-mobile {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  background: white; border-top: 1px solid rgba(34,20,12,0.1);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { #floating-mobile { display: none; } }
.floating-mobile-inner { display: flex; height: 4rem; }
.floating-mobile-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.25rem;
  border-right: 1px solid rgba(34,20,12,0.05);
  color: var(--secondary); transition: background var(--transition);
}
.floating-mobile-btn:last-child { border-right: none; }
.floating-mobile-btn:hover { background: rgba(34,20,12,0.03); }
.floating-mobile-btn.wa { color: var(--green-wa); }
.floating-mobile-btn.book { background: var(--primary); color: white; }
.floating-mobile-btn.book:hover { background: rgba(212,160,42,0.9); }
.floating-mobile-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.floating-mobile-btn span { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.05em; }

/* Desktop floating panel */
#floating-desktop {
  display: none;
  position: fixed; top: 50%; right: 1.5rem;
  transform: translateY(-50%);
  flex-direction: column; gap: 0.5rem;
  z-index: 45;
  transition: opacity 0.4s, transform 0.4s;
}
@media (min-width: 768px) { #floating-desktop { display: flex; } }
#floating-desktop.hidden-panel { opacity: 0; pointer-events: none; transform: translateY(-50%) translateX(80px); }
.float-btn {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.25rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: all var(--transition); cursor: pointer;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.05); }
.float-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; }
.float-btn span { font-size: 0.5625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.float-btn.book { background: var(--primary); color: white; }
.float-btn.chat { background: var(--green-wa); color: white; }
.float-btn.call { background: var(--secondary); color: white; }
.float-btn.map  { background: white; color: var(--secondary); border: 1px solid rgba(34,20,12,0.1); }
.float-rating {
  width: 3.5rem; background: white; border-radius: 0.75rem; padding: 0.5rem 0;
  margin-top: 0.5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid rgba(34,20,12,0.05);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.float-rating .star { font-size: 0.625rem; color: var(--primary); }
.float-rating .val { font-size: 0.5625rem; font-weight: 700; color: var(--secondary); line-height: 1.2; }
.float-rating .lbl { font-size: 0.5rem; color: rgba(34,20,12,0.6); }

/* WhatsApp concierge */
#concierge-widget {
  display: none;
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
}
@media (min-width: 768px) { #concierge-widget { display: block; } }
#concierge-bubble {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--green-wa); color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  cursor: pointer; position: relative;
}
#concierge-bubble::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--green-wa);
  animation: ping 2s infinite;
  opacity: 0.2;
}
#concierge-bubble svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }
#concierge-panel {
  position: absolute; bottom: 4.5rem; right: 0;
  width: 18rem;
  background: white; border-radius: 1rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 1px solid rgba(34,20,12,0.1);
  overflow: hidden;
  display: none;
}
#concierge-panel.open { display: block; }
.concierge-header {
  background: var(--secondary); padding: 1rem;
  color: white; position: relative;
}
.concierge-close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  color: rgba(255,255,255,0.6); transition: color var(--transition);
  background: none; border: none; cursor: pointer;
}
.concierge-close:hover { color: white; }
.concierge-close svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.concierge-header-inner { display: flex; align-items: center; gap: 0.75rem; }
.concierge-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,160,42,0.2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.concierge-avatar svg { width: 20px; height: 20px; color: var(--primary); stroke: currentColor; fill: none; stroke-width: 2; }
.concierge-avatar .online-dot {
  position: absolute; bottom: 0; right: 0;
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e; border: 2px solid var(--secondary);
}
.concierge-header h4 { font-family: var(--font-serif); font-size: 0.875rem; margin-bottom: 0.125rem; }
.concierge-header p { font-size: 0.625rem; color: rgba(255,255,255,0.6); }
.concierge-body { padding: 1rem; background: rgba(34,20,12,0.03); }
.concierge-msg {
  font-size: 0.75rem; color: rgba(34,20,12,0.8);
  background: white; padding: 0.75rem; border-radius: 0.75rem; border-radius-top-left: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(34,20,12,0.05);
  margin-bottom: 0.5rem;
}
.concierge-reply-time { font-size: 0.625rem; color: rgba(34,20,12,0.5); text-align: center; margin-bottom: 0.75rem; }
.concierge-start-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; background: var(--green-wa); color: white;
  border-radius: var(--radius-full); padding: 0.625rem;
  font-size: 0.875rem; font-weight: 500; transition: opacity var(--transition);
}
.concierge-start-btn:hover { opacity: 0.9; }
.concierge-start-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ---------- Responsive helpers ---------- */
.hidden-mobile { display: none !important; }
@media (min-width: 768px) { .hidden-mobile { display: flex !important; } }
