/* ==========================================================================
   MEET YOUR SOUL — Stylesheet
   ==========================================================================
   Design system:
   Color   — deep midnight navy, warm cream, muted antique gold, a soft
             dusty lavender used sparingly as a third accent.
   Type    — Fraunces (display, used with restraint) + Karla (body/UI).
   Layout  — generous whitespace, alternating midnight/cream sections.
   Signature — a hand-drawn-feeling constellation motif (thin gold lines
             connecting small points) used as the one recurring visual
             idea: hero backdrop, section divider, and the connective
             line through the "how it works" steps. Ties directly to
             Akshic Records / reflection without leaning on tarot-card
             or sparkle-emoji cliches.
   ========================================================================== */

:root {
  --midnight: #12142C;
  --midnight-soft: #1C1F45;
  --midnight-line: #34366A;
  --cream: #F8F3EA;
  --cream-deep: #EFE6D3;
  --ink: #1C1B2E;
  --ink-soft: #6B6785;
  --ink-faint: #9A96B3;
  --on-dark: #E9E6F5;
  --on-dark-soft: #ABA7CC;
  --gold: #B08A3E;
  --gold-deep: #8C6B2C;
  --gold-tint: #F1E4C2;
  --lavender: #8F7FB0;
  --lavender-tint: #ECE6F5;
  --line: #E6DDC9;
  --white: #FFFFFF;
  --good: #4C7A5B;
  --bad: #B4483F;

  --radius: 22px;
  --radius-sm: 12px;
  --font-display: 'Fraunces', ui-serif, Georgia, serif;
  --font-body: 'Karla', ui-sans-serif, system-ui, sans-serif;
  --shadow-lg: 0 30px 70px -30px rgba(18, 20, 44, 0.35);
  --shadow-sm: 0 10px 30px -14px rgba(18, 20, 44, 0.2);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; font-weight: 600; letter-spacing: -0.01em; }
p { margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 16px; height: 1px; background: var(--gold); display: inline-block; }
.on-dark .eyebrow { color: var(--gold-tint); }
.on-dark .eyebrow::before { background: var(--gold-tint); }

/* ---------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--midnight); }
.btn-gold:hover { background: var(--gold-deep); box-shadow: var(--shadow-sm); }
.btn-outline-dark { border-color: rgba(233,230,245,0.4); color: var(--on-dark); }
.btn-outline-dark:hover { border-color: var(--gold-tint); color: var(--gold-tint); }
.btn-outline-light { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-whatsapp { background: #2E7D5B; color: var(--white); }
.btn-whatsapp:hover { background: #256648; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ------------------------------ Header ---------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(18,20,44,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--midnight-line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.brand { font-family: var(--font-display); font-style: italic; font-size: 22px; font-weight: 600; color: var(--gold-tint); }
.brand span { color: var(--on-dark-soft); font-style: normal; font-size: 12px; letter-spacing: 0.08em; display: block; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: none; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 14px; font-weight: 600; color: var(--on-dark-soft); transition: color 0.15s ease; }
.nav-links a:hover { color: var(--gold-tint); }
.header-ctas { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: flex; flex-direction: column; gap: 4px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 20px; height: 1.8px; background: var(--on-dark); border-radius: 2px; }
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}
.mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  background: var(--midnight-soft); border-top: 1px solid var(--midnight-line);
  padding: 10px 24px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 4px; font-size: 15px; font-weight: 600; color: var(--on-dark); border-bottom: 1px solid var(--midnight-line); }
@media (min-width: 900px) { .mobile-menu { display: none !important; } }

/* ------------------------------- Hero ------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background: var(--midnight); color: var(--on-dark);
  padding: 84px 0 96px;
}
.hero-constellation { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; pointer-events: none; }
.hero-inner { position: relative; max-width: 720px; }
.hero h1 { font-size: clamp(38px, 6vw, 62px); line-height: 1.06; color: var(--white); }
.hero h1 em { font-style: italic; color: var(--gold-tint); }
.hero-sub { font-size: 17.5px; color: var(--on-dark-soft); margin: 22px 0 32px; max-width: 540px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 28px; font-size: 13px; color: var(--on-dark-soft); }
.hero-note strong { color: var(--on-dark); font-weight: 700; }

/* --------------------------- Section rhythm ------------------------------- */
.section { padding: 88px 0; }
.section-tight { padding: 60px 0; }
.on-dark { background: var(--midnight); color: var(--on-dark); }
.on-cream { background: var(--cream); }
.on-cream-deep { background: var(--cream-deep); }
.section-head { max-width: 620px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-h2 { font-size: clamp(28px, 4vw, 38px); line-height: 1.15; }
.on-dark .section-h2 { color: var(--white); }
.section-sub { margin-top: 14px; font-size: 16px; color: var(--ink-soft); line-height: 1.7; }
.on-dark .section-sub { color: var(--on-dark-soft); }

/* --------------------------- Divider (signature) --------------------------- */
.constellation-divider { display: flex; justify-content: center; margin: 0 auto 40px; width: 100%; max-width: 220px; }

/* --------------------------------- Intro ----------------------------------- */
.intro-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 860px) { .intro-grid { grid-template-columns: 0.85fr 1.15fr; } }
.intro-portrait {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(155deg, var(--lavender-tint), var(--cream-deep));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.intro-portrait .monogram { font-family: var(--font-display); font-style: italic; font-size: 56px; color: var(--gold-deep); opacity: 0.55; }
.intro-body p { color: var(--ink-soft); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.intro-body p:last-child { margin-bottom: 0; }

/* ------------------------------- Services ---------------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--gold-tint); }
.service-card.featured { background: var(--midnight); border-color: var(--midnight); color: var(--on-dark); }
.service-card.featured .service-price { color: var(--gold-tint); }
.service-card.featured .service-desc { color: var(--on-dark-soft); }
.featured-badge {
  align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--midnight); background: var(--gold-tint); padding: 4px 10px; border-radius: 999px;
}
.service-card.featured .featured-badge { background: var(--gold); color: var(--midnight); }
.service-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; }
.service-price { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--gold-deep); }
.service-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.65; flex-grow: 1; }

/* -------------------------------- Approach ---------------------------------- */
.approach-grid { display: grid; gap: 30px; }
@media (min-width: 760px) { .approach-grid { grid-template-columns: repeat(3, 1fr); } }
.approach-card { border-top: 1px solid var(--midnight-line); padding-top: 22px; }
.approach-card h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.approach-card p { font-size: 14.5px; color: var(--on-dark-soft); line-height: 1.7; }

/* ------------------------------ How it works --------------------------------- */
.steps-row { display: grid; gap: 36px; position: relative; }
@media (min-width: 860px) { .steps-row { grid-template-columns: repeat(4, 1fr); } }
.step-item { position: relative; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  margin-bottom: 16px; background: var(--cream); position: relative; z-index: 1;
}
.step-item h3 { font-size: 16.5px; margin-bottom: 8px; }
.step-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* -------------------------------- Booking ------------------------------------- */
.booking-panel {
  background: var(--midnight-soft); border: 1px solid var(--midnight-line);
  border-radius: var(--radius); padding: 8px;
}

/* -------------------------------- Testimonials --------------------------------- */
.testimonial-placeholder {
  border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 44px 30px; text-align: center; color: var(--ink-faint); font-size: 14.5px;
  max-width: 520px; margin: 0 auto;
}
.testimonial-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.testimonial-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.testimonial-card p.quote { font-family: var(--font-display); font-style: italic; font-size: 17px; line-height: 1.6; color: var(--ink); margin-bottom: 14px; }
.testimonial-card p.name { font-size: 13px; font-weight: 700; color: var(--gold-deep); }

/* ------------------------------------ FAQ --------------------------------------- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--ink);
}
.faq-q .plus { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--gold-deep); border-radius: 2px; transition: transform 0.2s ease; }
.faq-q .plus::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.faq-q .plus::after { width: 2px; height: 14px; top: 3px; left: 9px; }
.faq-item.open .faq-q .plus::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 260px; }
.faq-a-inner { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; }

/* ------------------------------------ Contact ------------------------------------- */
.contact-grid { display: grid; gap: 26px; }
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: var(--midnight-soft); border: 1px solid var(--midnight-line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 10px;
}
.contact-card h3 { font-size: 15px; color: var(--gold-tint); }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--on-dark-soft); }
.contact-card a:hover { color: var(--white); }

/* -------------------------------------- Footer -------------------------------------- */
.site-footer { background: var(--midnight); color: var(--on-dark-soft); border-top: 1px solid var(--midnight-line); padding: 50px 0 28px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.footer-brand .brand { display: block; margin-bottom: 10px; }
.footer-brand p { max-width: 320px; font-size: 13.5px; line-height: 1.7; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; }
.footer-col a:hover { color: var(--gold-tint); }
.footer-bottom { border-top: 1px solid var(--midnight-line); padding-top: 22px; font-size: 12.5px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }

/* --------------------------------- WhatsApp FAB --------------------------------------- */
.wa-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #2E7D5B; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 16px 34px -12px rgba(18,20,44,0.45);
  transition: transform 0.15s ease;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 26px; height: 26px; }

/* ----------------------------------- Utility ------------------------------------------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
/* Applied to contact links (phone / WhatsApp / Instagram / the WhatsApp FAB) while their
   config value in assets/config.js is still a placeholder — visibly inactive rather than
   a link that looks real but goes nowhere or opens a broken wa.me URL. */
.cfg-pending { opacity: 0.45; pointer-events: none; cursor: not-allowed; }
