/* ══════════════════════════════════════════════════════════
   HOLISTIC SOUL CO — Shared Stylesheet
   ══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:           #F7F0EC;
  --bg-2:         #FBF6F3;
  --bg-3:         #F0E7E2;
  --surface:      #FDFAF8;
  --divider:      #E0D4CE;
  --border:       #D0C4BC;
  --text:         #3D2A24;
  --text-muted:   #7A5C52;
  --text-faint:   #B09A90;
  --mauve:        #B07880;
  --mauve-hover:  #8F5C64;
  --mauve-light:  #EDD8DC;
  --mauve-mid:    #C48890;
  --sage:         #6B8A72;
  --sage-light:   #C8DFCF;
  --sage-dark:    #3D5E46;
  --gold:         #C8A45A;
  --gold-light:   #F0E4C0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --t-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --t-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --t-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --t-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --t-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --t-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --t-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --ease: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1120px;
}

/* ── BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: var(--t-base); color: var(--text); background: var(--bg); line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: clamp(1.5rem, 5vw, 4rem); }
.sec { padding-block: clamp(4rem, 8vw, 8rem); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes pulse-mauve {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176,120,128,0.38); }
  50%       { box-shadow: 0 0 0 12px rgba(176,120,128,0); }
}
@keyframes pulse-sage {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,138,114,0.35); }
  50%       { box-shadow: 0 0 0 10px rgba(107,138,114,0); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-mauve {
  background: var(--mauve); color: #fff;
  padding: 0.85rem 2rem; border-radius: 999px;
  font-size: var(--t-sm); font-weight: 600; display: inline-block;
  transition: background var(--ease), transform var(--ease);
  animation: pulse-mauve 2.8s ease-in-out infinite;
}
.btn-mauve:hover { background: var(--mauve-hover); color: #fff; transform: translateY(-2px); }

.btn-outline {
  border: 1.5px solid var(--mauve); color: var(--mauve);
  padding: 0.85rem 1.8rem; border-radius: 999px;
  font-size: var(--t-sm); font-weight: 600; display: inline-block;
  transition: all var(--ease);
}
.btn-outline:hover { background: var(--mauve); color: #fff; }

.btn-sage {
  background: var(--sage); color: #fff;
  padding: 0.85rem 2rem; border-radius: 999px;
  font-size: var(--t-sm); font-weight: 600; display: inline-block;
  transition: all var(--ease);
  animation: pulse-sage 2.8s ease-in-out infinite;
}
.btn-sage:hover { background: var(--sage-dark); color: #fff; transform: translateY(-2px); }

.btn-cream {
  background: var(--bg); color: var(--mauve);
  padding: 0.85rem 2rem; border-radius: 999px;
  font-size: var(--t-sm); font-weight: 700; display: inline-block;
  transition: all var(--ease);
}
.btn-cream:hover { background: #fff; transform: translateY(-2px); }

.btn-white {
  background: #fff; color: var(--mauve);
  padding: 0.85rem 2rem; border-radius: 999px;
  font-size: var(--t-sm); font-weight: 600; display: inline-block;
  transition: all var(--ease);
}
.btn-white:hover { background: var(--bg); transform: translateY(-2px); }

/* ── LABELS & HEADINGS ──────────────────────────────────── */
.label {
  font-size: var(--t-xs); font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mauve);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem;
}
.label::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--mauve); }
.h2 {
  font-family: var(--font-display); font-size: var(--t-2xl);
  font-weight: 600; line-height: 1.18; color: var(--text); margin-bottom: 1rem;
}
.h2 em { font-style: italic; color: var(--mauve); }
.h3 {
  font-family: var(--font-display); font-size: var(--t-xl);
  font-weight: 600; line-height: 1.25; color: var(--text); margin-bottom: 0.75rem;
}
.body-lg { font-size: var(--t-base); color: var(--text-muted); line-height: 1.75; max-width: 56ch; }

/* ── NAV ────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(247,240,236,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 0.9rem;
  max-width: var(--max); margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 4rem);
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.logo-mark { width: 32px; height: 32px; }
.nav-brand { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; letter-spacing: 0.03em; color: var(--text); }
.nav-links { display: flex; gap: 1.6rem; list-style: none; font-size: var(--t-sm); font-weight: 500; color: var(--text-muted); }
.nav-links a { white-space: nowrap; transition: color var(--ease); }
.nav-links a:hover { color: var(--mauve); }
.nav-cta {
  background: var(--mauve); color: #fff;
  padding: 0.5rem 1.4rem; border-radius: 999px;
  font-size: var(--t-sm); font-weight: 600; flex-shrink: 0;
  transition: background var(--ease), transform var(--ease);
  animation: pulse-mauve 2.8s ease-in-out infinite;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--mauve-hover); color: #fff; transform: translateY(-1px); }
.nav-hamburger { display: none; width: 28px; height: 20px; flex-direction: column; justify-content: space-between; cursor: pointer; }
.nav-hamburger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; }
.mobile-menu.open {
  display: flex; flex-direction: column; gap: 0.5rem;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg); padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 8px 24px rgba(61,42,36,0.1);
}
.mobile-menu a { font-size: var(--t-base); color: var(--text-muted); padding: 0.5rem 0; display: block; }
.mobile-menu a:hover { color: var(--mauve); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--bg-3); padding-block: 4rem; border-top: 1px solid var(--divider); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; }
.footer-brand { font-family: var(--font-display); font-size: var(--t-lg); font-weight: 600; color: var(--text); margin-bottom: 0.6rem; }
.footer-tag { font-size: var(--t-sm); color: var(--text-muted); max-width: 30ch; line-height: 1.65; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.6rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all var(--ease);
}
.footer-social a:hover { border-color: var(--mauve); color: var(--mauve); }
.footer-col-label { font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: var(--t-sm); color: var(--text-muted); transition: color var(--ease); }
.footer-links a:hover { color: var(--mauve); }
.footer-bottom { border-top: 1px solid var(--divider); margin-top: 3rem; padding-top: 1.5rem; font-size: var(--t-xs); color: var(--text-faint); text-align: center; }

/* ── PAGE HEADER (for inner pages) ──────────────────────── */
.page-header {
  background: var(--bg); padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-header .label { justify-content: center; }
.page-header .label::before { display: none; }
.page-header .h2 { margin-bottom: 0.5rem; }
.page-header .body-lg { margin-inline: auto; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--surface); border-radius: 20px; padding: 2rem;
  border: 1px solid var(--divider);
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover { box-shadow: 0 8px 32px rgba(61,42,36,0.09); transform: translateY(-3px); }
.card.featured { border-color: var(--mauve); }

/* ── OFFER CARDS ────────────────────────────────────────── */
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.offer-type { font-size: var(--t-xs); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.5rem; }
.offer-name { font-family: var(--font-display); font-size: var(--t-lg); font-weight: 600; color: var(--text); margin-bottom: 0.75rem; line-height: 1.3; }
.offer-desc { font-size: var(--t-sm); color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.offer-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.offer-price { font-family: var(--font-display); font-size: var(--t-xl); font-weight: 600; color: var(--text); }
.offer-price-note { font-size: var(--t-xs); color: var(--text-faint); margin-top: 0.15rem; }
.offer-badge {
  display: inline-block; background: var(--gold-light); color: #8A6020;
  font-size: var(--t-xs); font-weight: 700; letter-spacing: 0.06em;
  padding: 0.2rem 0.75rem; border-radius: 999px; margin-bottom: 0.5rem;
}

/* ── SPOT COUNTERS ──────────────────────────────────────── */
.spot-counter {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--t-xs); font-weight: 700; color: var(--mauve); margin-bottom: 0.5rem;
}
.spot-counter .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--mauve);
  animation: pulse-mauve 2s infinite;
}
.spot-counter.low .dot { background: #C44; animation: pulse-mauve 1s infinite; }
.spot-counter.low { color: #C44; }

/* ── FRAMEWORK CARDS ────────────────────────────────────── */
.framework-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.framework-icon {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.testi-card {
  background: var(--surface); border-radius: 16px; padding: 1rem;
  border: 1px solid var(--divider); transition: box-shadow var(--ease);
}
.testi-card:hover { box-shadow: 0 4px 16px rgba(61,42,36,0.08); }
.testi-screenshot { width: 100%; border-radius: 8px; box-shadow: 0 2px 8px rgba(61,42,36,0.07); }

/* ── REIKI ──────────────────────────────────────────────── */
.reiki-prices { display: flex; gap: 1rem; margin-block: 1.25rem 1rem; flex-wrap: wrap; }
.reiki-price-box {
  flex: 1; min-width: 120px; background: var(--bg-3); border-radius: 14px;
  padding: 1.1rem; text-align: center; border: 1px solid var(--divider);
}
.reiki-price-box strong { font-family: var(--font-display); font-size: var(--t-xl); font-weight: 600; color: var(--mauve); display: block; }
.reiki-price-box span { font-size: var(--t-xs); color: var(--text-faint); }
.reiki-price-box.package { background: var(--mauve-light); border-color: var(--mauve-light); }
.reiki-price-box.package strong { color: var(--mauve-hover); }
.reiki-checks { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.75rem; }
.reiki-check { display: flex; align-items: flex-start; gap: 0.65rem; font-size: var(--t-sm); color: var(--text-muted); line-height: 1.6; }
.check-dot {
  width: 18px; height: 18px; border-radius: 50%; background: var(--sage-light); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; margin-top: 3px;
}

/* ── FREEBIE BANNER ─────────────────────────────────────── */
.freebie-section {
  background: linear-gradient(135deg, var(--mauve) 0%, var(--mauve-mid) 100%);
  position: relative; overflow: hidden;
}
.freebie-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='52' height='52' viewBox='0 0 52 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='26' cy='26' r='4'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── SALES PAGE LAYOUTS ─────────────────────────────────── */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-grid.flip { direction: rtl; }
.split-grid.flip > * { direction: ltr; }
.value-item { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 1rem; }
.value-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; color: var(--sage-dark); font-size: 11px; font-weight: 700;
}
.value-text { font-size: var(--t-sm); color: var(--text-muted); line-height: 1.6; }
.value-text strong { color: var(--text); }

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer;
  font-family: var(--font-display); font-size: var(--t-lg); font-weight: 600; color: var(--text);
}
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--mauve); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  font-size: var(--t-sm); color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding-bottom: 1.25rem; }

/* ── ABOUT QUOTE ────────────────────────────────────────── */
.about-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: var(--t-xl); line-height: 1.4; color: var(--text);
  border-left: 3px solid var(--mauve); padding-left: 1.5rem;
  margin-block: 1.5rem;
}

/* ── CREDENTIAL PILLS ───────────────────────────────────── */
.cred-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.75rem; }
.cred-pill {
  background: var(--bg-3); border: 1px solid var(--divider);
  border-radius: 999px; padding: 0.35rem 1rem;
  font-size: var(--t-xs); font-weight: 600; color: var(--text-muted);
}
.cred-pill.highlight { background: var(--mauve-light); border-color: var(--mauve-light); color: var(--mauve-hover); }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--mauve-light); padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.cta-banner .h2 { margin-bottom: 1rem; }
.cta-banner .body-lg { margin-inline: auto; margin-bottom: 2rem; }

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider);
  padding-block: 0.85rem; overflow: hidden;
}
.marquee-track { display: flex; gap: 2.5rem; width: max-content; animation: marquee 40s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: var(--t-sm); font-weight: 500; color: var(--text-muted); white-space: nowrap;
}
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--mauve); flex-shrink: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .split-grid { grid-template-columns: 1fr; gap: 2rem; }
  .split-grid.flip { direction: ltr; }
  .offer-grid { grid-template-columns: 1fr; }
  .framework-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .testi-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
