/* =====================
   SHARED STYLES
   Cho LCSW, LLC
   ===================== */

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

:root {
  --bg: #FDF8FB;
  --bg-tint: #F7EEF5;
  --lilac-pale: #EDD9F0;
  --lilac: #CFB0DA;
  --lilac-deep: #AA7DBB;
  --blush: #F2DCE6;
  --text: #2D1F33;
  --text-mid: #6B5474;
  --text-light: #A58FB0;
  --white: #FFFFFF;
  --radius: 18px;
  --font-serif: 'Newsreader', serif;
  --font-sans: 'Figtree', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  background: rgba(253,248,251,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(207,176,218,0.2);
}
.site-nav-logo {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: #AA7DBB;
  text-decoration: none;
}
.site-nav-logo:hover { color: #2D1F33; }
.site-nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.site-nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B5474;
  text-decoration: none;
  transition: color 0.3s;
}
.site-nav-links a:hover { color: #AA7DBB; }
.site-nav-links a[aria-current="page"] { color: #AA7DBB; }
.site-nav-cta {
  background: #CFB0DA;
  color: #FFFFFF !important;
  padding: 8px 22px;
  border-radius: 50px;
  letter-spacing: 0.08em !important;
  font-size: 0.75rem !important;
  transition: background 0.3s !important;
}
.site-nav-cta:hover { background: #AA7DBB !important; }

/* ---- LAYOUT ---- */
section { padding: 110px 60px; }
.container { max-width: 1060px; margin: 0 auto; }

/* ---- TYPOGRAPHY ---- */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lilac-deep);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 56px;
  font-weight: 300;
  line-height: 1.8;
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--lilac-deep);
  color: var(--white);
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #986AAA; transform: translateY(-1px); }
.btn-ghost {
  color: var(--text-mid);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid var(--lilac);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--lilac-deep); border-color: var(--lilac-deep); }

/* ---- DIVIDER ---- */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 60px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--lilac-pale), transparent);
}
.divider-icon { font-size: 1rem; color: var(--lilac); }

/* ---- PAGE HERO ---- */
.page-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  background: var(--bg-tint);
  position: relative;
  overflow: hidden;
}
.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.35;
}
.page-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #E8C8F0 0%, transparent 70%);
  top: -100px; right: -100px;
}
.page-hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac-deep);
  background: var(--lilac-pale);
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.page-hero h1 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--lilac-deep); }
.page-hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 540px;
  line-height: 1.85;
  font-weight: 300;
}

/* ---- QUOTE ---- */
.quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,4vw,3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--lilac-deep);
  line-height: 1.4;
  max-width: 680px;
  margin: 0 auto 20px;
}
.quote-author {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

/* ---- FOOTER ---- */
footer {
  padding: 36px 60px;
  border-top: 1px solid rgba(207,176,218,0.2);
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
footer a { color: var(--text-light); text-decoration: none; }
footer a:hover { color: var(--lilac-deep); }
footer nav { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }

/* ---- SCROLL REVEAL ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 1; transform: none; transition: opacity 0.8s ease, transform 0.8s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(24px); }
.js-ready .reveal.visible { opacity: 1; transform: none; }

/* ---- HAMBURGER ---- */
.nav-hamburger { display: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .site-nav {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .site-nav-logo {
    font-size: 0.95rem;
  }
  .site-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    justify-content: center;
    width: 100%;
    padding: 6px 0 2px;
  }
  .site-nav-links a {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }
  .site-nav-cta {
    padding: 6px 14px;
    font-size: 0.65rem !important;
  }
  section { padding: 80px 24px; }
  .divider { padding: 0 24px; }
  footer { padding: 36px 24px; }
  .page-hero { padding: 160px 24px 60px; }
}
