/* ================================================================
   BASE RESET (inlined from shared/base.css)
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
#toast-container {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 99999; display: flex; flex-direction: column; align-items: center;
  gap: 8px; pointer-events: none;
}
.hidden { display: none !important; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
button, a, [onclick] { -webkit-tap-highlight-color: transparent; }
body { padding-top: env(safe-area-inset-top); padding-bottom: env(safe-area-inset-bottom); }

/* ================================================================
   SALVIA LION — Spiritual Healing & Guidance
   Theme: Deep midnight indigo + warm gold + soft rose glow
   ================================================================ */

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg:         #07090c;
  --bg-2:       #0b0e12;
  --bg-3:       #0e1318;
  --gold:       #14b8a6;
  --gold-light: #2dd4bf;
  --gold-glow:  rgba(20, 184, 166, 0.3);
  --rose:       #8b5cf6;
  --rose-glow:  rgba(139, 92, 246, 0.25);
  --lavender:   #a78bfa;
  --text:       #eef4f4;
  --text-muted: #8faaa8;
  --card-bg:    rgba(20, 184, 166, 0.04);
  --card-border:rgba(20, 184, 166, 0.15);
  --radius:     16px;
  --font-head:  'Cormorant Garamond', serif;
  --font-body:  'Lato', sans-serif;
}

/* ─── GLOBAL ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-style: normal;
  color: var(--lavender);
  text-shadow: 0 0 20px var(--rose-glow), 0 0 40px var(--rose-glow);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), #0a7a6e);
  color: #070c0b;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 24px var(--gold-glow), 0 4px 16px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px var(--gold-glow), 0 8px 24px rgba(0,0,0,0.5);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: transform 0.2s, background 0.2s;
  cursor: pointer;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(20,184,166,0.08);
}
.bundle-btn { margin-left: 12px; }

.btn-primary.btn-large {
  padding: 18px 48px;
  font-size: 1.25rem;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ─── NAV ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(7, 9, 12, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20, 184, 166, 0.1);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-shadow: 0 0 16px var(--gold-glow);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.btn-book {
  display: inline-block;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-book:hover {
  background: var(--gold);
  color: #07090c;
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 24px 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, rgba(20, 184, 166, 0.06) 50%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0.85;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
  text-shadow: 0 0 60px rgba(139, 92, 246, 0.2);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.hero-lion {
  position: absolute;
  right: -6vw;
  bottom: 0;
  width: clamp(280px, 35vw, 520px);
  opacity: 0.7;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-lion {
    position: relative;
    right: auto;
    bottom: auto;
    width: 80vw;
    max-width: 320px;
    margin: 32px auto 0;
    display: block;
    opacity: 0.9;
    mix-blend-mode: normal;
  }
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-wrap {
  background: rgba(201, 162, 39, 0.07);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 36s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.marquee-track .dot {
  color: var(--gold);
  opacity: 0.3;
  font-size: 0.6rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTION HEADERS ────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.9;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 32px;
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
.about {
  padding: 70px 0;
  background: var(--bg-2);
}

.about-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}

.about-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 28px;
}

.about-story p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
  font-style: italic;
}

.about-why {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 2px solid var(--rose);
  border-radius: var(--radius);
  padding: 32px 40px;
  backdrop-filter: blur(8px);
  margin-top: 32px;
}

.about-why-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-why-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-why h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.about-why p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
}

.about-quote {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--lavender);
  line-height: 1.6;
}

.about-banner-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  height: 70vh;
  overflow: hidden;
  margin-bottom: 48px;
}

.about-banner-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7,9,12,0.1), rgba(7,9,12,0.6));
  pointer-events: none;
}

.about-banner {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  mix-blend-mode: multiply;
  filter: brightness(0.9) saturate(1.1);
}

.about-photo {
  width: 75%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  margin: 0 auto 20px;
  display: block;
}

.about-credential {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--accent);
  font-size: 1.05rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(20, 184, 166, 0.25);
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-why { flex-direction: column; gap: 20px; padding: 24px 20px; }
  .about-why-left { flex: none; }
  .about-why h3 { font-size: 1rem; margin-bottom: 8px; }
  .about-quote { font-size: 1rem; }
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services {
  padding: 70px 0;
  background: var(--bg-2);
}

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

.service-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.15s;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transform-style: preserve-3d;
  cursor: default;
}

.service-card:hover {
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 0 40px rgba(20, 184, 166, 0.12), 0 0 20px rgba(139, 92, 246, 0.08), 0 8px 32px rgba(0,0,0,0.4);
}

.card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.service-pricing {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.service-pricing span {
  font-size: 0.85rem;
  color: var(--accent);
  border: 1px solid rgba(20,184,166,0.35);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}

.card-icon {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-credential {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.service-collab-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 4px;
  opacity: 0.8;
}

.collab-name {
  display: block;
  font-size: 0.85em;
  color: var(--lavender);
  font-style: italic;
  font-weight: 300;
}

.service-collab-discount {
  font-size: 0.82rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 10px;
  opacity: 0.9;
}

.collab-book-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 22px;
  border: 1px solid var(--lavender);
  border-radius: 50px;
  color: var(--lavender);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.collab-book-btn:hover {
  background: var(--lavender);
  color: #07090c;
}

.card-img-wrap {
  margin: -36px -28px 24px;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}

.card-img-wrap .books-img {
  object-fit: cover;
  object-position: center 55%;
}

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

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

/* ─── MEMBERSHIP ─────────────────────────────────────────────── */
.membership {
  padding: 100px 0;
  background: var(--bg);
}

.membership-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.membership-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(20, 184, 166, 0.3);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 60px rgba(20, 184, 166, 0.08), 0 0 30px rgba(139, 92, 246, 0.05);
}

.membership-includes {
  padding: 48px;
  border-right: 1px solid var(--card-border);
}

.includes-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0.9;
}

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.includes-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.include-icon {
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 5px;
  flex-shrink: 0;
  text-shadow: 0 0 8px var(--gold-glow);
}

.includes-list strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 3px;
}

.includes-list span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.membership-pricing {
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: rgba(20, 184, 166, 0.02);
}

.founding-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
}

.founding-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-tag {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}

.price-period {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.founding-note {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: -8px;
}

.standard-price-row {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 12px 16px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  width: 100%;
}

.standard-price-row strong {
  color: var(--text);
}

.membership-disclaimer {
  font-size: 0.8rem;
  color: rgba(143, 170, 168, 0.45);
  line-height: 1.6;
  margin-top: -4px;
}

@media (max-width: 768px) {
  .membership { padding: 48px 0; }
  .membership-card { grid-template-columns: 1fr; }
  .membership-includes { border-right: none; border-bottom: 1px solid var(--card-border); padding: 32px 24px; }
  .membership-pricing { padding: 32px 24px; }
  .price-tag { font-size: 3rem; }
}

/* ─── BATH SALTS ─────────────────────────────────────────────── */
.bath-salts {
  padding: 100px 0;
  background: var(--bg-2);
}

.bath-salts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.bath-salts-video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 0 40px var(--gold-glow);
}

.bath-salts-video {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.bath-salts-product-img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.bath-salts-product-img.fading {
  opacity: 0;
}

.bath-salts-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bath-salts-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.bath-salts-ritual {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  font-style: italic;
  opacity: 0.85;
}

.bundle-only-note {
  font-size: 0.8rem;
  color: var(--accent);
  opacity: 0.75;
  margin-top: 0.5rem;
  font-style: italic;
}

.scents-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.scent-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scent-pill {
  padding: 10px 22px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 999px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--lavender);
  background: rgba(139, 92, 246, 0.1);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.scent-pill:hover {
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.18);
}

.scent-pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(20, 184, 166, 0.08);
}

.bath-salts-size {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.bath-salts-pricing {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.price-option {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
}

.price-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.price-divider {
  width: 1px;
  height: 40px;
  background: var(--card-border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .bath-salts-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bath-salts-video {
    height: 300px;
  }
  .bath-salts-product-img {
    height: 280px;
    max-height: 280px;
    object-fit: cover;
    object-position: center 30%;
  }
  .quote { font-size: 0.92rem; line-height: 1.7; }
  .testimonial-card { padding: 20px 18px; }
  .result-badge { font-size: 0.7rem; }
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  padding: 70px 0;
  background: var(--bg-3);
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  backdrop-filter: blur(8px);
}

.result-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 24px;
}

.quote {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  max-width: 680px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-photo {
  width: 120px;
  height: 140px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center 60%;
  border: 2px solid var(--card-border);
  flex-shrink: 0;
}

.stars {
  color: var(--gold-light);
  font-size: 1rem;
  text-shadow: 0 0 8px var(--gold-glow);
}

.name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.carousel-btn {
  background: none;
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots .dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.2s;
}

.carousel-dots .dot-btn.active {
  background: var(--gold-light);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.how-it-works {
  padding: 70px 0;
  background: var(--bg-2);
}

.steps-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.steps-scroll:active { cursor: grabbing; }

.steps-scroll::-webkit-scrollbar { height: 4px; }
.steps-scroll::-webkit-scrollbar-thumb {
  background: var(--card-border);
  border-radius: 2px;
}

.step-card {
  min-width: 300px;
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px 28px;
  scroll-snap-align: start;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s;
}

.step-card:hover { border-color: rgba(20, 184, 166, 0.4); }

.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 300;
  color: var(--lavender);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq {
  padding: 70px 0;
  background: var(--bg-3);
}

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

.faq-item {
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 24px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover { color: var(--gold-light); }

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}

.faq-answer p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── CTA ────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-gradient-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #07090c, #0e0820, #071212, #0a0618);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 60px rgba(139, 92, 246, 0.2);
}

.cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  font-size: 0.95rem;
}
.cta-contact a {
  color: var(--text-muted);
  text-decoration: none;
}
.cta-contact a:hover { color: var(--teal); }
.cta-contact-divider { color: var(--text-muted); opacity: 0.5; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: 40px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(20, 184, 166, 0.1);
  text-align: center;
}

.footer-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  text-shadow: 0 0 16px var(--gold-glow);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 0.9rem;
}
.footer-contact a {
  color: var(--teal);
  text-decoration: none;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-contact span { color: var(--text-muted); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(143, 170, 168, 0.5);
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(143, 170, 168, 0.35);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── LIGHT MODE ─────────────────────────────────────────────── */
body.light-mode {
  --bg:         #f7f2ea;
  --bg-2:       #f0e9dc;
  --bg-3:       #e8dfd0;
  --gold:       #a8782a;
  --gold-light: #c49a3c;
  --gold-glow:  rgba(168, 120, 42, 0.3);
  --rose:       #7b2d64;
  --rose-glow:  rgba(123, 45, 100, 0.2);
  --lavender:   #6b2d5e;
  --text:       #1a1208;
  --text-muted: #5c4a32;
  --card-bg:    rgba(255, 250, 240, 0.8);
  --card-border:rgba(168, 120, 42, 0.2);
}

body.light-mode .nav {
  background: rgba(247, 242, 234, 0.94);
  border-bottom: 1px solid rgba(168, 120, 42, 0.2);
}

body.light-mode .nav-logo {
  text-shadow: 0 0 20px rgba(168, 120, 42, 0.3);
}

body.light-mode .hero-lion {
  mix-blend-mode: multiply;
  opacity: 0.25;
}

body.light-mode .about-banner {
  mix-blend-mode: normal;
  filter: brightness(1) saturate(1);
}

body.light-mode .about-banner-wrap::after {
  display: none;
}

body.light-mode em {
  text-shadow: 0 0 20px rgba(123, 45, 100, 0.2);
}

body.light-mode .hero-headline {
  text-shadow: 0 0 40px rgba(123, 45, 100, 0.1);
}

body.light-mode .cta-headline {
  text-shadow: none;
}

body.light-mode .cta-gradient-bg {
  background: linear-gradient(135deg, #f0e6d3, #ead5e8, #e8ddd0, #e4d0e8);
  background-size: 400% 400%;
}

body.light-mode .btn-primary {
  background: linear-gradient(135deg, #a8782a, #7a4f10);
  color: #fdf8f0;
  box-shadow: 0 0 24px rgba(168, 120, 42, 0.3), 0 4px 16px rgba(0,0,0,0.15);
}

body.light-mode .service-card,
body.light-mode .testimonial-card,
body.light-mode .step-card,
body.light-mode .about-why {
  box-shadow: 0 4px 24px rgba(168, 120, 42, 0.08);
}

body.light-mode .about-img {
  border-color: rgba(168, 120, 42, 0.25);
}

/* ─── THEME TOGGLE ───────────────────────────────────────────── */
.theme-toggle {
  background: none;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  transition: border-color 0.2s;
}

.theme-toggle:hover { border-color: var(--gold); }

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
/* ─── HAMBURGER BUTTON ───────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.nav-hamburger:hover { border-color: var(--gold); }

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: background 0.2s, transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV OVERLAY ─────────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 9, 12, 0.97);
  z-index: 999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.open {
  display: flex;
  opacity: 1;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-links a {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.mobile-nav-links a:hover { color: var(--gold-light); }

.mobile-nav-cta {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold-light) !important;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-book { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 90px 20px 36px; flex-direction: column; overflow: visible; justify-content: flex-start; }
  .hero-sub { font-size: 1rem; }
  .btn-primary.btn-large { padding: 14px 28px; font-size: 1rem; }

  /* Section paddings — reduce from 70px */
  .about { padding: 48px 0; }
  .services { padding: 48px 0; }
  .bath-salts { padding: 48px 0; }
  .testimonials { padding: 48px 0; }
  .how-it-works { padding: 48px 0; }
  .faq { padding: 48px 0; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 0 0 24px; }
  .service-card h3 { font-size: 1.3rem; }
  .card-img-wrap { height: 240px; }

  /* Testimonials */
  .testimonial-card { padding: 20px 18px; }
  .reviewer-photo { width: 80px; height: 96px; }

  /* How it works */
  .steps-scroll { flex-wrap: nowrap; }
  .step-card { min-width: 240px; padding: 24px 20px; }
  .step-number { font-size: 2rem; }
  .step-card h3 { font-size: 1.2rem; }

  /* FAQ */
  .faq-question { font-size: 1rem; padding: 14px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 16px; }

  /* Bath salts pricing */
  .price-amount { font-size: 1.5rem; }
  .bath-salts-pricing { padding: 16px 18px; gap: 16px; }

  /* CTA */
  .cta-section { padding: 56px 20px; }
  .cta-sub { font-size: 0.95rem; }
}
