:root {
  --ink: #1a1208;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e9c8;
  --cream: #faf6ed;
  --cream-dark: #f0e8d5;
  --deep: #332210;
  --muted: #7a6a52;
  --accent: #7a3b2e;
  --indigo: #2a2560;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(26,18,8,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-decoration: none;
  display: flex; flex-direction: column; line-height: 1.2;
}
.nav-logo span { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--gold-light); font-weight: 400; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif; font-size: 0.82rem; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.75rem;
  letter-spacing: 0.15em; padding: 0.55rem 1.4rem; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
}
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.nav-icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex-shrink: 0;
  color: rgba(255,255,255,0.55); transition: color 0.25s; text-decoration: none;
}
.nav-icon-btn:hover { color: var(--gold); }
.nav-icon-btn--wa:hover { color: #25D366; }
@media (max-width: 900px) { .nav-icon-btn { display: none; } }

/* ── NAV DROPDOWN (Services) ── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 0.3rem; cursor: pointer; }
.nav-dropdown-caret { font-size: 0.55rem; transition: transform 0.25s; }
.nav-dropdown:hover .nav-dropdown-caret,
.nav-dropdown:focus-within .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  background: rgba(26,18,8,0.97); border: 1px solid rgba(201,168,76,0.25);
  padding: 0.6rem 0; min-width: 200px; text-align: left;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a { display: block; padding: 0.65rem 1.4rem; white-space: nowrap; }

/* nested flyout (Reiki Healing -> Crystal Box / Wish Box) */
.nav-dropdown-nested { position: relative; }
.nav-dropdown-nested > a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-dropdown-nested-caret { font-size: 0.5rem; opacity: 0.55; }
.nav-dropdown-nested-menu {
  position: absolute; top: 0; left: 100%; margin-left: 1px;
  background: rgba(26,18,8,0.97); border: 1px solid rgba(201,168,76,0.25);
  padding: 0.6rem 0; min-width: 190px; text-align: left;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-dropdown-nested:hover .nav-dropdown-nested-menu,
.nav-dropdown-nested:focus-within .nav-dropdown-nested-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-dropdown-nested-menu a { display: block; padding: 0.65rem 1.4rem; white-space: nowrap; }

/* ── MOBILE NAV TOGGLE ── */
.nav-toggle {
  display: none; background: none; border: none; color: var(--gold-light);
  font-size: 1.6rem; cursor: pointer; line-height: 1; padding: 0.2rem 0.3rem;
}

/* ── HERO (home page only) ── */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(122,59,46,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 80% 80% at 50% 100%, rgba(42,37,96,0.2) 0%, transparent 60%);
}
/* Mandala / sacred geometry background */
.mandala-bg {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0.18;
}
.mandala-bg svg { width: min(80vw, 80vh); height: min(80vw, 80vh); animation: slowspin 80s linear infinite; }
@keyframes slowspin { to { transform: rotate(360deg); } }

/* floating numbers */
.float-nums {
  position: absolute; inset: 0; pointer-events: none;
  font-family: 'Cormorant Garamond', serif; color: var(--gold);
}
.float-nums span {
  position: absolute; opacity: 0.07; font-size: clamp(2rem, 5vw, 4rem);
  animation: floatup 12s ease-in-out infinite;
}
@keyframes floatup {
  0%, 100% { transform: translateY(0); opacity: 0.05; }
  50% { transform: translateY(-20px); opacity: 0.1; }
}

.hero-content { position: relative; text-align: center; padding: 2rem; max-width: 780px; }
.hero-badge {
  display: inline-block; border: 1px solid rgba(201,168,76,0.4);
  padding: 0.4rem 1.5rem; margin-bottom: 2rem;
  font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.35em;
  color: var(--gold-light); animation: fadein 1s ease forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  font-size: clamp(3rem, 8vw, 6.5rem); color: var(--cream); line-height: 1;
  margin-bottom: 0.3rem; animation: fadein 1.2s ease forwards;
  letter-spacing: -0.01em;
}
.hero-title strong { font-weight: 600; font-style: normal; color: var(--gold); }
.hero-subtitle {
  font-family: 'Cinzel', serif; font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  letter-spacing: 0.35em; color: var(--gold-light); margin-bottom: 1.6rem;
  margin-top: 0.6rem; animation: fadein 1.4s ease forwards;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 1.5rem 0;
  animation: fadein 1.5s ease forwards;
}
.hero-divider::before, .hero-divider::after {
  content: ''; flex: 1; max-width: 120px; height: 1px; background: linear-gradient(to right, transparent, var(--gold));
}
.hero-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.hero-divider-symbol { color: var(--gold); font-size: 1rem; }

.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.9;
  max-width: 560px; margin: 0 auto 2.5rem; animation: fadein 1.6s ease forwards;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadein 1.8s ease forwards; }
.btn-primary {
  background: var(--gold); color: var(--ink); border: none;
  font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.2em;
  padding: 1rem 2.2rem; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--cream); border: 1px solid rgba(255,255,255,0.35);
  font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.2em;
  padding: 1rem 2.2rem; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

@keyframes fadein { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.3); font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 0.25em;
  animation: bob 2.5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent); }

/* ── PAGE HERO (sub-pages: tarot, numerology, reiki, booking, about, faq, contact) ── */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--deep);
  padding: 11rem 4rem 5rem;
  text-align: center;
}
.page-hero-inner { position: relative; max-width: 760px; margin: 0 auto; }
.page-hero .section-tag { display: block; margin-bottom: 1.1rem; }
.breadcrumb {
  position: relative;
  display: inline-block; margin-bottom: 1.6rem;
  font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.2em;
  color: var(--gold-light); text-decoration: none; opacity: 0.75; transition: opacity 0.25s;
}
.breadcrumb:hover { opacity: 1; }
.page-title {
  position: relative;
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  font-size: clamp(2.4rem, 6vw, 4rem); color: var(--cream); line-height: 1.1;
}
.page-title strong { font-weight: 600; font-style: normal; color: var(--gold); }
.page-subtitle {
  position: relative;
  font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.85;
  max-width: 580px; margin: 1.4rem auto 0;
}

/* ── SERVICE DETAIL PAGE ── */
.service-detail { padding: 6rem 4rem; background: var(--cream-dark); }
.service-detail-inner {
  max-width: 700px; margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.18);
  box-shadow: 0 4px 28px rgba(26,18,8,0.06);
  padding: 3.5rem 3.5rem;
}
.service-detail-inner h2 {
  font-family: 'Cinzel', serif; font-size: 1.05rem; letter-spacing: 0.08em;
  color: var(--deep); margin: 2.4rem 0 1rem; text-transform: uppercase;
  font-weight: 600;
}
.service-detail-inner h2:first-child { margin-top: 0; }
.service-detail-inner p { color: var(--muted); line-height: 2; font-size: 1rem; margin-bottom: 1.4rem; }
.service-detail-inner ul { list-style: none; margin: 1.2rem 0 2rem; }
.service-detail-inner ul li {
  padding: 0.75rem 0; border-bottom: 1px solid var(--cream-dark);
  color: var(--ink); font-size: 0.95rem; display: flex; align-items: flex-start; gap: 0.75rem;
}
.service-detail-inner ul li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; margin-top: 0.4rem; flex-shrink: 0; }
.service-cta {
  background: var(--cream-dark); padding: 3rem 2.5rem; text-align: center; margin-top: 3.5rem;
  border: 1px solid rgba(201,168,76,0.2);
}

.service-cta h3 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 300;
  font-size: 1.7rem; color: var(--deep); margin-bottom: 1.3rem;
}
.service-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.steps-accordion { margin: 1.2rem 0 2.2rem; border-top: 1px solid var(--cream-dark); }
.steps-accordion .faq-item { border-bottom: 1px solid var(--cream-dark); }
.steps-accordion .faq-q { font-size: 0.82rem; }

/* ── SERVICE DETAIL META CARDS (Duration / Investment / Format) ── */
.detail-meta-row { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.detail-meta-card {
  flex: 1; min-width: 180px; text-align: center;
  background: var(--cream-dark); border: 1px solid rgba(201,168,76,0.25);
  padding: 2rem 1.5rem;
}
.detail-meta-icon { display: block; font-size: 2.4rem; margin-bottom: 1rem; line-height: 1; }
.detail-meta-label {
  display: block; font-family: 'Cinzel', serif; font-size: 0.68rem;
  letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.6rem;
}
.detail-meta-value {
  display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 500; color: var(--deep);
}
@media (max-width: 600px) {
  .detail-meta-row { gap: 1rem; }
  .detail-meta-card { min-width: 100%; padding: 1.6rem 1.5rem; }
}
.btn-dark {
  background: var(--deep); color: var(--cream); border: 1px solid var(--deep);
  font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.2em;
  padding: 0.95rem 2rem; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-dark:hover { background: var(--ink); }
.btn-dark-outline {
  background: transparent; color: var(--deep); border: 1px solid var(--deep);
  font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.2em;
  padding: 0.95rem 2rem; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-dark-outline:hover { background: var(--deep); color: var(--cream); }

/* related services row */
.related-services { padding: 1rem 4rem 6rem; background: var(--cream-dark); }
.related-services-inner { max-width: 1000px; margin: 0 auto; }
.related-services-inner .section-tag {
  display: block; text-align: center; margin-bottom: 1.8rem;
  font-size: 1.0rem; letter-spacing: 0.28em; color: var(--accent);
}

/* ── SECTION BASE ── */
section { position: relative; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.35em;
  color: var(--gold); display: block; margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem); color: var(--deep); line-height: 1.15;
}
.section-title strong { font-weight: 600; font-style: normal; }
.section-rule {
  width: 50px; height: 1px; background: var(--gold); margin: 1.2rem auto 0;
}
.light-section .section-title { color: var(--cream); }
.light-section .section-tag { color: var(--gold-light); }
.light-section .section-rule { background: var(--gold-light); }

/* ── ABOUT ── */
#about {
  padding: 6rem 4rem 8rem;
  background: var(--cream-dark);
}
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-wrap {
  position: relative;
}
.about-portrait {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border: none; display: block;
}
/* decorative frame */
.about-img-wrap::before {
  content: ''; position: absolute; inset: -12px; border: 1px solid var(--gold);
  pointer-events: none; z-index: 0; opacity: 0.4;
}
.about-img-wrap::after {
  content: ''; position: absolute; top: -12px; left: -12px; right: -12px; bottom: -12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  z-index: 1; pointer-events: none;
}
/* placeholder portrait */
.portrait-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(160deg, #2b1d0e 0%, #1a1208 60%, #2a2560 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; position: relative; overflow: hidden;
}
.portrait-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(201,168,76,0.15), transparent 65%);
}
.portrait-symbol { font-size: 4rem; opacity: 0.5; }
.portrait-name { font-family: 'Cormorant Garamond', serif; color: var(--gold); font-size: 1.3rem; letter-spacing: 0.1em; }

.about-text {}
.about-text h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: 2.8rem; color: var(--deep); margin-bottom: 0.3rem; }
.about-text h2 em { font-style: italic; color: var(--accent); }
.about-text .about-title { font-family: 'Cinzel', serif; font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 1.8rem; display: block; }
.about-text p { color: var(--muted); line-height: 1.95; margin-bottom: 1.3rem; font-size: 0.95rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--cream-dark); }
.stat-item {}
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); font-weight: 500; line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; margin-top: 0.3rem; }

/* ── SERVICES (home page teaser grid) ── */
#services {
  padding: 6rem 4rem 8rem;
  background: var(--cream-dark);
}
.services-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.service-card {
  padding: 3.5rem 3rem; border: 1px solid rgba(201,168,76,0.2);
  position: relative; overflow: hidden; transition: all 0.4s; cursor: default;
  background: var(--cream);
}
.service-card:hover { background: var(--deep); }
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 1.5rem; display: block; }
.service-num {
  position: absolute; top: 2rem; right: 2.5rem;
  font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: rgba(201,168,76,0.08);
  font-weight: 600; line-height: 1; transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(201,168,76,0.12); }
.service-card h3 {
  font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 0.15em;
  color: var(--deep); margin-bottom: 1rem; transition: color 0.4s;
}
.service-card:hover h3 { color: var(--gold); }
.service-card p {
  font-size: 0.88rem; color: var(--muted); line-height: 1.85; transition: color 0.4s;
}
.service-card:hover p { color: rgba(255,255,255,0.6); }
.service-link {
  display: inline-flex; align-items: center; gap: 0.6rem; margin-top: 2rem;
  font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.2em;
  color: var(--deep); text-decoration: none;
  background: var(--cream-dark);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 0.65rem 1.2rem;
  transition: all 0.3s;
}
.service-link:hover {
  background: var(--deep);
  border-color: var(--gold);
  color: var(--gold);
  gap: 0.9rem;
}
.service-card:hover .service-link {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
}
.service-card:hover .service-link:hover {
  background: rgba(255,255,255,0.14);
}
.service-link .arrow { font-size: 0.8rem; }

/* ── SESSIONS / BOOKING ── */
#sessions {
  padding: 6rem 4rem 8rem;
  background: var(--cream-dark);
}
.sessions-inner { max-width: 1100px; margin: 0 auto; }
.sessions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }
.sessions-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin-left: auto; margin-right: auto; }
.session-format-badges { display: flex; gap: 0.6rem; margin-bottom: 1.5rem; }
.format-badge {
  font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 0.18em;
  border: 1px solid rgba(201,168,76,0.3); color: var(--muted);
  padding: 0.3rem 0.8rem;
}
.session-card {
  background: var(--cream); border: 5px solid rgba(201,168,76,0.2);
  padding: 3.2rem 2.6rem; transition: all 0.3s; position: relative;
}
.session-card.featured {
  background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.4);
  transform: scaleY(1.02); transform-origin: center;
}
.session-card.featured::before {
  content: 'FOUNDING CLIENTS'; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-family: 'Cinzel', serif;
  font-size: 0.5rem; letter-spacing: 0.25em; padding: 0.3rem 1rem;
}
.session-mode {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem;
  font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.2em; color: var(--gold);
}
.mode-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.session-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--deep); margin-bottom: 0.5rem;
}
.session-duration { font-size: 1.0rem; color: var(--muted); margin-bottom: 1.5rem; }
.session-price {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--gold);
  font-weight: 500; line-height: 1; margin-bottom: 1.5rem;
}
.session-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; }
.session-features { list-style: none; margin-bottom: 2rem; }
.session-features li {
  font-size: 1rem; color: var(--muted); padding: 0.5rem 0;
  border-bottom: 1px solid var(--cream-dark); display: flex; align-items: center; gap: 0.6rem;
}
.session-features li::before { content: '✦'; color: var(--gold); font-size: 0.5rem; }
.btn-session {
  width: 100%; padding: 1.2rem; border: 1px solid var(--deep);
  background: var(--deep); color: var(--cream); font-family: 'Cinzel', serif;
  font-size: 0.72rem; letter-spacing: 0.22em; cursor: pointer; transition: all 0.3s;
  display: block; text-align: center; text-decoration: none; box-sizing: border-box;
}
.session-card.featured .btn-session { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-session:hover { background: var(--ink); border-color: var(--ink); }

.sessions-note {
  text-align: center; margin-top: 2.5rem;
  font-size: 1rem; color: var(--muted); line-height: 1.8;
}
.sessions-note a { color: var(--gold); text-decoration: none; }

/* zoom badge */
.platform-badges {
  display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 4rem; flex-wrap: wrap;
}
.platform-badge {
  display: flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(201,168,76,0.3); padding: 0.6rem 1.4rem;
  font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--muted);
}
.platform-badge span { font-size: 1rem; }

/* ── FAQ ── */
#faq {
  padding: 6rem 4rem 8rem;
  background: var(--cream-dark);
}
.faq-inner {
  max-width: 760px; margin: 0 auto;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 3rem;
}
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 0; font-family: 'Cinzel', serif; font-size: 0.8rem;
  letter-spacing: 0.12em; color: var(--deep); transition: color 0.3s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon { color: var(--gold); font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  font-size: 0.88rem; color: var(--muted); line-height: 1.9; padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.5rem; }

/* ── CONTACT ── */
#contact {
  padding: 6rem 4rem 8rem;
  background: var(--cream-dark);
}
.contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: stretch; }
.contact-inner--single { grid-template-columns: 1fr; max-width: 640px; }
.contact-inner--single .whatsapp-panel-tag,
.contact-inner--single .whatsapp-panel-intro { text-align: center; }
.contact-inner--single .contact-details { align-items: center; }
.contact-inner--single .contact-detail { justify-content: center; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--deep); font-weight: 300; margin-bottom: 1.5rem; }
.contact-info p { font-size: 1.3rem; color: var(--muted); line-height: 1.9; margin-bottom: 2rem; }
.contact-info {
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail {
  display: flex; align-items: center; gap: 1rem;
  font-size: 1.3rem; color: var(--ink);
}
.detail-icon { color: var(--gold); font-size: 1.1rem; width: 20px; }
.contact-form {
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-family: 'Cinzel', serif; font-size: 0.6rem; letter-spacing: 0.2em; color: var(--muted); margin-bottom: 0.6rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.9rem 1rem; background: var(--cream-dark);
  border: 1px solid rgba(201,168,76,0.2); color: var(--ink);
  font-family: 'Lato', sans-serif; font-size: 0.88rem; outline: none; transition: border-color 0.3s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 1.1rem; background: var(--gold); border: none;
  color: var(--ink); font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.2em;
  cursor: pointer; transition: all 0.3s;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--deep); padding: 4rem 4rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.4rem; }
.footer-brand .tagline { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.2em; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.8; }
.footer-links h4 { font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1.5rem; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 1000;
  align-items: center; justify-content: center; backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--deep); border: 1px solid rgba(201,168,76,0.3);
  padding: 3rem; max-width: 500px; width: 90%; position: relative;
  animation: modalin 0.3s ease;
}
@keyframes modalin { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 1rem; right: 1.5rem; background: none; border: none;
  color: var(--muted); font-size: 1.5rem; cursor: pointer; transition: color 0.3s;
}
.modal-close:hover { color: var(--gold); }
.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream); margin-bottom: 0.5rem; }
.modal p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.modal .form-group label { color: rgba(255,255,255,0.5); }
.modal .form-group input, .modal .form-group select, .modal .form-group textarea {
  background: rgba(255,255,255,0.05); border-color: rgba(201,168,76,0.2); color: var(--cream);
}
.modal .form-group select option { background: var(--deep); }

/* ── FOUNDING CLIENTS POPUP ── */
#promo-popup {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  align-items: center; justify-content: center;
  background: rgba(10,6,2,0.75);
  backdrop-filter: blur(6px);
  padding: 1.5rem;
  animation: fadein 0.4s ease;
}
#promo-popup.active { display: flex; }
.promo-box {
  position: relative;
  background: var(--deep);
  border: 1px solid rgba(201,168,76,0.35);
  max-width: 480px; width: 100%;
  padding: 3rem 2.8rem 2.5rem;
  text-align: center;
  animation: modalin 0.4s ease;
  overflow: hidden;
}
/* top gold accent bar */
.promo-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--accent), var(--gold), var(--accent));
}
/* subtle mandala watermark */
.promo-box::after {
  content: '✦';
  position: absolute; bottom: -1.5rem; right: -0.5rem;
  font-size: 9rem; color: rgba(201,168,76,0.04);
  pointer-events: none; line-height: 1;
}
.promo-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.3); font-size: 1.4rem; line-height: 1;
  transition: color 0.25s; padding: 0.2rem 0.4rem;
}
.promo-close:hover { color: var(--gold); }
.promo-tag {
  display: inline-block;
  font-family: 'Cinzel', serif; font-size: 0.52rem; letter-spacing: 0.35em;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.3);
  padding: 0.35rem 1.2rem; margin-bottom: 1.6rem;
}
.promo-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--cream); line-height: 1.2;
  margin-bottom: 0.5rem;
}
.promo-title strong { font-weight: 600; font-style: normal; color: var(--gold); }
.promo-divider {
  width: 40px; height: 1px; background: var(--gold); margin: 1.2rem auto;
  opacity: 0.6;
}
.promo-body {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.85;
  margin-bottom: 1.8rem;
}
.promo-price {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  color: var(--gold-light); margin-bottom: 0.3rem; letter-spacing: 0.05em;
}
.promo-price s { color: var(--muted); font-size: 1.1rem; margin-right: 0.4rem; }
.promo-note {
  font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 0.2em;
  color: var(--muted); margin-bottom: 2rem;
}
.promo-btn {
  display: block; width: 100%;
  background: var(--gold); color: var(--ink); border: none;
  font-family: 'Cinzel', serif; font-size: 0.68rem; letter-spacing: 0.22em;
  padding: 1rem 2rem; cursor: pointer; transition: all 0.3s;
  margin-bottom: 0.9rem; text-decoration: none; text-align: center; box-sizing: border-box;
}
.promo-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.promo-skip {
  background: none; border: none; cursor: pointer;
  font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25); transition: color 0.25s;
}
.promo-skip:hover { color: rgba(255,255,255,0.5); }

/* ── WHATSAPP CONTACT PANEL ── */
.whatsapp-panel {
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
}
.whatsapp-panel-tag {
  font-family: 'Cinzel', serif; font-size: 0.9rem; letter-spacing: 0.35em;
  color: var(--gold); margin-bottom: 1.2rem; display: block;
}
.whatsapp-panel-intro {
  font-size: 1.2rem; color: var(--muted); line-height: 1.85; margin-bottom: 2rem;
}
.whatsapp-options {
  display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem;
}
.whatsapp-option-btn {
  display: flex; align-items: center; gap: 0.9rem;
  background: #00531e; color: #fff;
  font-family: 'Cinzel', serif; font-size: 0.8rem; letter-spacing: 0.15em;
  padding: 0.9rem 1.2rem; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  border: none; cursor: pointer;
}
.whatsapp-option-btn:hover { background: #ade9c5; transform: translateY(-1px); }
.whatsapp-option-icon {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; background: rgba(255,255,255,0.2);
  border-radius: 50%; flex-shrink: 0;
}
.whatsapp-divider {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; color: var(--muted);
}
.whatsapp-divider::before, .whatsapp-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(201,168,76,0.2);
}
.whatsapp-divider span {
  font-family: 'Cinzel', serif; font-size: 0.55rem; letter-spacing: 0.2em;
  white-space: nowrap;
}
.social-icons {
  display: flex; gap: 1rem; justify-content: center;
}
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 80px; height: 80px;
  border: 2px solid rgba(201,168,76,0.35);
  color: var(--muted);
  text-decoration: none;
  transition: all 0.25s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }
.social-icon--wa { color: #25D366; border-color: rgba(37,211,102,0.35); }
.social-icon--wa:hover { border-color: #25D366; background: rgba(37,211,102,0.06); color: #25D366; }

/* ── FLOATING WHATSAPP WIDGET ── */
#wa-widget {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 400;
  display: flex; flex-direction: column; align-items: flex-end;
  font-family: 'Lato', sans-serif;
}
.wa-widget-panel {
  display: none; flex-direction: column;
  width: 320px; max-width: calc(100vw - 2rem);
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 40px rgba(26,18,8,0.22);
  overflow: hidden;
  margin-bottom: 1rem;
}
.wa-widget-header {
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.1rem; cursor: pointer;
}
.wa-widget-header-left { display: flex; align-items: center; gap: 0.65rem; font-size: 0.85rem; }
.wa-widget-body { background: #e9e6dd; padding: 1.1rem; }
.wa-widget-message { display: flex; gap: 0.6rem; align-items: flex-start; }
.wa-widget-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(160deg, #2b1d0e 0%, #2a2560 100%);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.wa-widget-bubble {
  background: #fff; padding: 0.8rem 0.9rem; max-width: 230px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.wa-widget-bubble .wa-name {
  display: block; font-family: 'Cinzel', serif; font-size: 0.62rem;
  letter-spacing: 0.06em; color: #1ea952; margin-bottom: 0.35rem;
}
.wa-widget-bubble p { font-size: 0.82rem; color: var(--ink); line-height: 1.6; margin: 0; }
.wa-widget-bubble .wa-time { display: block; font-size: 0.62rem; color: var(--muted); margin-top: 0.5rem; }
.wa-widget-footer {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1rem; background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.wa-widget-footer input {
  flex: 1; border: none; background: var(--cream-dark);
  padding: 0.7rem 0.9rem; font-size: 0.82rem; color: var(--ink);
  outline: none; font-family: 'Lato', sans-serif;
}
.wa-widget-send {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: #25D366; border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s;
}
.wa-widget-send:hover { background: #1ebe5d; }
.wa-widget-fab {
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-widget-fab:hover { transform: scale(1.06); }
@media (max-width: 600px) {
  #wa-widget { bottom: 1rem; right: 1rem; }
  .wa-widget-fab { width: 52px; height: 52px; }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; gap: 1rem; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links { display: none; }

  #about { padding: 4rem 2rem 5rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { margin: 0 auto; max-width: 420px; }
  #services { padding: 4rem 2rem 5rem; }
  .services-grid { grid-template-columns: 1fr; }
  #sessions { padding: 4rem 2rem 5rem; }
  .sessions-grid { grid-template-columns: 1fr; }
  .session-card.featured { transform: none; }
  #faq { padding: 4rem 2rem 5rem; }
  #contact { padding: 4rem 2rem 5rem; }
  footer { padding: 3rem 2rem 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
  #hero { padding-left: 1.5rem; padding-right: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 8rem 1.5rem 3.5rem; }
  .service-detail { padding: 4rem 1.5rem; }
  .service-detail-inner { max-width: 100%; padding: 2rem 1.5rem; }
  .faq-inner { max-width: 100%; padding: 1rem 1.5rem; }
  .related-services { padding: 1rem 1.5rem 4rem; }
  .service-cta { padding: 2.5rem 1.5rem; }
  .service-cta-btns { flex-direction: column; align-items: stretch; }
  .service-cta-btns .btn-dark,
  .service-cta-btns .btn-dark-outline { text-align: center; }
  .service-card { padding: 2.5rem 1.5rem; }
  .platform-badge { padding: 0.5rem 0.9rem; font-size: 0.55rem; }
  .sessions-note { font-size: 0.78rem; }
  .contact-detail { font-size: 0.85rem; }
  .session-card { padding: 2rem 1.4rem; }
  .promo-box { padding: 2.5rem 1.4rem 2rem; }
  .faq-q { font-size: 0.72rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 300px; text-align: center; }
}

@media (max-width: 600px) {
  .hero-badge { font-size: 0.5rem; letter-spacing: 0.12em; padding: 0.35rem 0.75rem; }
  .nav-toggle { font-size: 1.9rem; padding: 0.4rem 0.5rem; }
}
@media (max-width: 600px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── FULLSCREEN MOBILE MENU OVERLAY ── */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 5.5rem 2rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
#mobile-menu.open { display: flex; }

.mobile-menu-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 2.2rem; line-height: 1;
  cursor: pointer; padding: 0.3rem 0.5rem;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: var(--gold); }

.mobile-menu-logo {
  position: absolute;
  top: 1.3rem; left: 1.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem; letter-spacing: 0.18em;
  color: var(--gold); text-decoration: none;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
  width: 100%;
  max-width: 320px;
}
.mobile-menu-links li {
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.mobile-menu-links li:first-child {
  border-top: 1px solid rgba(201,168,76,0.12);
}
.mobile-menu-links a,
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0.9rem 0;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a.active,
.mobile-menu-toggle:hover,
.mobile-menu-toggle.active { color: var(--gold); }

.mobile-menu-caret {
  font-size: 0.6rem; margin-left: 0.5rem; transition: transform 0.25s;
  display: inline-block;
}
.mobile-menu-toggle.open .mobile-menu-caret { transform: rotate(180deg); }

.mobile-menu-sub {
  display: flex; flex-direction: column; gap: 0;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu-sub.open {
  max-height: 500px;
  padding: 0.3rem 0 0.8rem;
}
.mobile-menu-sub a {
  padding: 0.65rem 0;
  font-size: 0.88rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  border-bottom: none;
}
.mobile-menu-sub a:hover { color: var(--gold-light); }

.mobile-menu-toggle--nested {
  font-size: 0.88rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  padding: 0.65rem 0;
}
.mobile-menu-toggle--nested:hover,
.mobile-menu-toggle--nested.open { color: var(--gold-light); }
.mobile-menu-toggle--nested .mobile-menu-caret { font-size: 0.55rem; }

.mobile-menu-sub--nested {
  padding-left: 1rem;
  border-left: 1px solid rgba(201,168,76,0.15);
  margin-left: 0.4rem;
}
.mobile-menu-sub--nested.open {
  padding: 0.2rem 0 0.6rem 1rem;
}
.mobile-menu-sub--nested a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.mobile-menu-sub--nested a:hover { color: var(--gold-light); }

.mobile-menu-book {
  margin-top: 2rem;
  display: block; width: 100%; max-width: 320px;
  background: var(--gold); color: var(--ink);
  font-family: 'Cinzel', serif; font-size: 0.7rem; letter-spacing: 0.22em;
  padding: 1.1rem 2rem; text-align: center;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.3s;
}
.mobile-menu-book:hover { background: var(--gold-light); }
.mobile-menu-social {
  display: flex; gap: 1.5rem; justify-content: center; align-items: center;
  margin-top: 1.8rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  width: 100%; max-width: 320px;
}
.mobile-menu-social a {
  color: rgba(255,255,255,0.45); transition: color 0.2s; display: flex;
}
.mobile-menu-social a:hover { color: var(--gold); }

/* ── MOBILE REFINEMENTS ── */
@media (max-width: 900px) {
  .service-card { padding: 2.5rem 1.5rem; }
  .contact-detail { font-size: 0.85rem; }
}