/* ============================================
   PSYCHIC EXPERIENCE - Design System
   Mystical purple, elegant serif, warm cream
   ============================================ */

:root {
  /* Colors */
  --purple-deep: #3600A3;
  --purple-mystic: #630085;
  --purple-soft: #4A1B9E;
  --lavender: #C1B8FF;
  --lavender-tint: #ECE9FF;
  --cream: #FAF7F2;
  --cream-alt: #F4EFE7;
  --pearl: #FFFFFF;
  --ink: #2B2B2B;
  --ink-soft: #5A5560;
  --ink-muted: #8A8590;
  --gold-soft: #C9A87C;
  --border: #E6E0D5;
  --border-soft: rgba(99, 0, 133, 0.12);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 7rem);
  --container-max: 1180px;
  --container-narrow: 760px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--purple-mystic);
  letter-spacing: -0.005em;
}
h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 500;
}
h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  font-weight: 600;
}
h4 { font-size: 1.0625rem; font-weight: 600; }

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-deep);
}

p { color: var(--ink); }
p + p { margin-top: 1rem; }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--section-pad) 0; }
.section--cream { background: var(--cream); }
.section--cream-alt { background: var(--cream-alt); }
.section--pearl { background: var(--pearl); }
.section--lavender { background: var(--lavender-tint); }
.section--purple {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-mystic) 100%);
  color: var(--pearl);
}
.section--purple h1, .section--purple h2, .section--purple h3 { color: var(--pearl); }
.section--purple p { color: rgba(255, 255, 255, 0.88); }

.section-header { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-header--center { text-align: center; margin-left: auto; margin-right: auto; max-width: 720px; }
.section-header .label { margin-bottom: 0.75rem; display: inline-block; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--ink-soft); font-size: 1.0625rem; }

/* ============================================
   HEADER / NAV
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(135deg, rgba(54, 0, 163, 0.96) 0%, rgba(99, 0, 133, 0.96) 100%);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(201, 168, 124, 0.25);
  color: var(--pearl);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pearl);
  letter-spacing: 0.005em;
}
.logo__name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__name strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--pearl);
  letter-spacing: -0.005em;
}
.logo__name span {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-top: 2px;
}
.logo-mark {
  width: 42px; height: 42px;
  display: inline-block;
  flex-shrink: 0;
}
/* Footer logo (already on purple) */
footer .logo .logo__name strong { color: var(--pearl); }
footer .logo .logo__name span { color: var(--lavender); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9375rem;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--lavender); }
.nav-links a.btn {
  color: var(--purple-deep);
  background: var(--pearl);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.nav-links a.btn:hover {
  background: var(--lavender);
  color: var(--purple-deep);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--pearl);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 43, 43, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  z-index: 40;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(82vw, 360px);
    background: linear-gradient(160deg, var(--purple-deep) 0%, var(--purple-mystic) 100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 55;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
  }
  .nav-links.active { transform: translateX(0); }
  .nav-links a { font-size: 1.125rem; color: var(--pearl); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  background: var(--purple-deep);
  color: var(--pearl);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  box-shadow: 0 4px 16px rgba(54, 0, 163, 0.18);
}
.btn:hover {
  background: var(--purple-mystic);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(54, 0, 163, 0.28);
}
.btn--ghost {
  background: transparent;
  color: var(--purple-deep);
  border: 1.5px solid var(--purple-deep);
  box-shadow: none;
}
.btn--ghost:hover {
  background: var(--purple-deep);
  color: var(--pearl);
}
.btn--lg { padding: 1.05rem 2rem; font-size: 1rem; }

/* ============================================
   HERO (asymmetric)
   ============================================ */
.hero {
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(circle at 20% 0%, rgba(193, 184, 255, 0.45) 0%, transparent 55%),
    radial-gradient(circle at 90% 90%, rgba(99, 0, 133, 0.10) 0%, transparent 50%),
    var(--cream);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__copy .label { margin-bottom: 1rem; display: inline-block; }
.hero__copy h1 { margin-bottom: 1.25rem; }
.hero__copy h1 em { font-style: italic; color: var(--purple-deep); font-weight: 500; }
.hero__copy p.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--purple-deep) 0%, var(--purple-mystic) 50%, var(--lavender) 100%);
  box-shadow: 0 30px 80px rgba(54, 0, 163, 0.25);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(99, 0, 133, 0.4) 100%);
  pointer-events: none;
}
.hero__visual--placeholder { background: linear-gradient(160deg, var(--purple-deep), var(--purple-mystic), var(--lavender)); }
.hero__visual--placeholder::before {
  content: "✦";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(4rem, 10vw, 7rem);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-display);
  z-index: 1;
}
.hero__sun {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 84px;
  height: 84px;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(54, 0, 163, 0.3));
}
@media (max-width: 800px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  padding: 2.5rem 0;
  background: var(--pearl);
  border-bottom: 1px solid var(--border);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}
.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.trust-strip__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--lavender-tint);
  color: var(--purple-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.trust-strip__label {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--pearl);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(54, 0, 163, 0.12);
  border-color: var(--lavender);
}
.service-card__price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple-deep);
  letter-spacing: -0.01em;
}
.service-card h3 {
  font-size: 1.375rem;
  color: var(--purple-mystic);
  font-weight: 600;
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.55;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-top: 0.5rem;
}
.service-card__link::after { content: "→"; transition: transform 0.2s var(--ease); }
.service-card:hover .service-card__link::after { transform: translateX(4px); }
.service-card--minor { background: var(--cream-alt); }

/* Photo-bg service card variant — background-image inlined in HTML directly */
.service-card--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  color: var(--pearl);
  min-height: 320px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.service-card--photo > * { position: relative; z-index: 1; }
.service-card--photo h3 {
  color: var(--pearl);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  font-weight: 600;
}
.service-card--photo p {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.service-card--photo .service-card__price {
  color: var(--pearl);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
  font-weight: 600;
}
.service-card--photo .service-card__link {
  color: var(--pearl);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}
.service-card--photo:hover {
  border: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

/* ============================================
   ABOUT STRIP (asymmetric)
   ============================================ */
.about-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.about-strip__body { text-align: center; }
.about-strip__body p { margin-left: auto; margin-right: auto; max-width: 640px; }
.about-strip__photo {
  aspect-ratio: 1 / 1;
  width: clamp(220px, 32vw, 320px);
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lavender) 0%, var(--purple-deep) 100%);
  position: relative;
  box-shadow: 0 24px 64px rgba(54, 0, 163, 0.18);
}
.about-strip__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-strip__photo--placeholder::before {
  content: "Georgia";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
}
.about-strip__photo .moon-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 96px;
  height: 96px;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(99, 0, 133, 0.35));
}
.about-strip__body .label { margin-bottom: 1rem; display: inline-block; }
.about-strip__body h2 { margin-bottom: 1rem; }
.about-strip__body p { color: var(--ink-soft); font-size: 1.0625rem; line-height: 1.65; }
.about-strip__body p + p { margin-top: 1rem; }
.about-strip__body .btn { margin-top: 1.5rem; }
@media (max-width: 800px) { .about-strip { grid-template-columns: 1fr; } }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--pearl);
  margin-bottom: 1.25rem;
}
.testimonial__attribution {
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lavender);
}
.testimonial__decoration {
  font-family: var(--font-display);
  color: var(--lavender);
  font-size: 3rem;
  line-height: 0.5;
  margin-bottom: 1rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple-mystic);
  user-select: none;
}
.faq-item__q::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--purple-deep);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), margin 0.3s var(--ease);
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}
.faq-item.open .faq-item__a { max-height: 600px; margin-top: 0.75rem; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-mystic) 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  color: var(--pearl);
  text-align: center;
}
.cta-band h2 { color: var(--pearl); margin-bottom: 0.75rem; }
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  max-width: 540px;
  margin: 0 auto 2rem;
}
.cta-band__ctas { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--ghost {
  border-color: var(--pearl);
  color: var(--pearl);
}
.cta-band .btn--ghost:hover {
  background: var(--pearl);
  color: var(--purple-deep);
}

/* ============================================
   FORM
   ============================================ */
.form-wrap {
  background: var(--pearl);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 8px 32px rgba(54, 0, 163, 0.06);
}
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--purple-mystic);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple-deep);
  background: var(--pearl);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
}
.form-success {
  text-align: center;
  padding: 2rem 1rem;
}
.form-success__icon {
  width: 56px; height: 56px;
  background: var(--lavender-tint);
  color: var(--purple-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}
.form-microcopy {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  padding: 1rem 0 0;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.breadcrumbs a { color: var(--purple-deep); }
.breadcrumbs span[aria-current] { color: var(--ink-soft); }

/* ============================================
   PRICE CHIP
   ============================================ */
.price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--lavender-tint);
  color: var(--purple-deep);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}
.price-chip__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* ============================================
   PROSE (service + city + blog body)
   ============================================ */
.prose { max-width: 720px; }
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--purple-mystic);
}
.prose p { margin-bottom: 1rem; color: var(--ink); }
.prose ul, .prose ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.prose ul li, .prose ol li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.prose ol li { list-style: decimal; }
.prose a { color: var(--purple-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--purple-mystic); }
.prose blockquote {
  border-left: 3px solid var(--purple-deep);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--ink-soft);
}

/* ============================================
   SIBLING SERVICES (link grid)
   ============================================ */
.siblings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.sibling-card {
  background: var(--pearl);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.sibling-card:hover { border-color: var(--purple-deep); transform: translateY(-2px); }
.sibling-card h4 { color: var(--purple-mystic); margin-bottom: 0.25rem; }
.sibling-card p { color: var(--ink-soft); font-size: 0.875rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--purple-mystic);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3rem, 6vw, 4rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { color: var(--pearl); margin-bottom: 1rem; }
.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 1rem;
}
.footer-col ul li {
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--pearl); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   PAGE HERO (non-homepage)
   ============================================ */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(circle at 10% 10%, rgba(193, 184, 255, 0.4) 0%, transparent 50%),
    var(--cream);
}
.page-hero .label { margin-bottom: 1rem; display: inline-block; }
.page-hero h1 { margin-bottom: 1rem; max-width: 760px; }
.page-hero p.lead {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.6;
}

/* ============================================
   INSIDE THE PRACTICE (photo gallery)
   ============================================ */
.practice-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: clamp(420px, 60vw, 620px);
}
.practice-gallery__item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: var(--purple-deep);
  box-shadow: 0 12px 32px rgba(54, 0, 163, 0.12);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.practice-gallery__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(54, 0, 163, 0.22);
}
.practice-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.practice-gallery__item:hover img { transform: scale(1.04); }
.practice-gallery__item--lg {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.practice-gallery__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(43, 0, 122, 0.78);
  backdrop-filter: blur(6px);
  color: var(--pearl);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (max-width: 800px) {
  .practice-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    height: auto;
  }
  .practice-gallery__item--lg {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    aspect-ratio: 16 / 9;
  }
  .practice-gallery__item:not(.practice-gallery__item--lg) {
    aspect-ratio: 1 / 1;
  }
}

/* ============================================
   DECORATIVE BACKGROUNDS
   ============================================ */
.section--cream-pattern {
  background:
    radial-gradient(circle at 80% 10%, rgba(193, 184, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(201, 168, 124, 0.12) 0%, transparent 45%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.section--cream-pattern::before {
  content: "";
  position: absolute;
  top: 5%;
  right: 5%;
  width: 280px;
  height: 280px;
  background-image: radial-gradient(circle, rgba(99, 0, 133, 0.05) 1px, transparent 1.5px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}
.section--cream-pattern .container { position: relative; z-index: 1; }

.section--starfield {
  position: relative;
  background: linear-gradient(135deg, #1A0B47 0%, var(--purple-mystic) 60%, var(--purple-deep) 100%);
  color: var(--pearl);
  overflow: hidden;
}
.section--starfield::before,
.section--starfield::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section--starfield::before {
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 60% 20%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 80% 50%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 30% 70%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(2px 2px at 90% 80%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 15% 85%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 50% 40%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 75% 15%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 5% 55%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 40% 90%, rgba(255, 255, 255, 0.4), transparent);
  background-size: 100% 100%;
}
.section--starfield::after {
  background: radial-gradient(circle at 50% 50%, transparent 30%, rgba(11, 17, 32, 0.4) 100%);
}
.section--starfield .container { position: relative; z-index: 1; }
.section--starfield h2, .section--starfield h3 { color: var(--pearl); }
.section--starfield p { color: rgba(255, 255, 255, 0.85); }
.section--starfield .label { color: var(--lavender); }

/* ============================================
   DECORATIVE SVG SYMBOLS
   ============================================ */
.decor-sun, .decor-moon, .decor-eye {
  display: inline-block;
  vertical-align: middle;
}
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem auto;
  color: var(--purple-deep);
  opacity: 0.55;
}
.section-divider::before,
.section-divider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: currentColor;
}

/* ============================================
   ARTISTIC LAYER — full-bleed photo bgs, waves,
   tilted polaroids, scattered decorations
   ============================================ */

/* Full-bleed hero with background photo */
.hero--bleed {
  position: relative;
  min-height: 88vh;
  padding: clamp(5rem, 12vh, 9rem) 0 clamp(6rem, 14vh, 10rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--purple-mystic);
}
.hero--bleed .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero--bleed .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero--bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 30% 60%, rgba(99, 0, 133, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(11, 5, 40, 0.65) 0%, rgba(54, 0, 163, 0.7) 50%, rgba(43, 0, 80, 0.85) 100%);
}
.hero--bleed .container { position: relative; z-index: 1; }
.hero--bleed .hero__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero--bleed .label { color: var(--lavender); }
.hero--bleed h1 {
  color: var(--pearl);
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero--bleed h1 em {
  font-style: italic;
  display: block;
  font-weight: 500;
  color: var(--lavender);
  margin-top: 0.25rem;
}
.hero--bleed p.lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.0625rem, 1.75vw, 1.3125rem);
  line-height: 1.55;
  margin-bottom: 2.25rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}
.hero--bleed .hero__ctas { justify-content: center; }
.hero--bleed .btn--ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--pearl);
}
.hero--bleed .btn--ghost:hover {
  background: var(--pearl);
  color: var(--purple-deep);
  border-color: var(--pearl);
}

/* Scattered decorative SVGs */
.scatter {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
.scatter--top-right { top: 8%; right: 6%; }
.scatter--top-left { top: 14%; left: 5%; }
.scatter--mid-right { top: 50%; right: 4%; }
.scatter--bottom-left { bottom: 18%; left: 8%; }
.scatter--bottom-right { bottom: 12%; right: 12%; }
.scatter--rotate-15 { transform: rotate(15deg); }
.scatter--rotate-neg-20 { transform: rotate(-20deg); }

/* Wave SVG section divider */
.wave-divider {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 80px);
  margin: 0;
  padding: 0;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; height: 100%; }

/* Section over background photo */
.section--photo-bg {
  position: relative;
  overflow: hidden;
  color: var(--pearl);
  isolation: isolate;
}
.section--photo-bg .photo-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.section--photo-bg .photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section--photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(11, 5, 40, 0.88) 0%, rgba(54, 0, 163, 0.82) 50%, rgba(99, 0, 133, 0.92) 100%);
}
.section--photo-bg .container { position: relative; z-index: 1; }
.section--photo-bg h2, .section--photo-bg h3 { color: var(--pearl); }
.section--photo-bg p { color: rgba(255, 255, 255, 0.88); }
.section--photo-bg .label { color: var(--lavender); }

/* Variant: photo bg with deep dark overlay (for service cards on dark) */
.section--photo-bg-dark::before {
  background: linear-gradient(180deg, rgba(11, 5, 40, 0.92) 0%, rgba(43, 0, 90, 0.90) 50%, rgba(11, 5, 40, 0.94) 100%);
}
.section--photo-bg-dark .section-header h2 em { color: var(--lavender); }
.section--photo-bg-dark .section-header p { color: rgba(255, 255, 255, 0.78); }

/* Variant: photo bg with soft cream overlay (cards keep cream contrast) */
.section--photo-bg-soft {
  color: var(--ink);
}
.section--photo-bg-soft::before {
  background: linear-gradient(135deg, rgba(250, 247, 242, 0.88) 0%, rgba(193, 184, 255, 0.65) 50%, rgba(250, 247, 242, 0.86) 100%);
}
.section--photo-bg-soft h2, .section--photo-bg-soft h3 { color: var(--purple-mystic); }
.section--photo-bg-soft p { color: var(--ink-soft); }
.section--photo-bg-soft .label { color: var(--purple-deep); }

/* When service cards sit on dark photo bg, give them subtle border + shadow */
.section--photo-bg-dark .service-card {
  border-color: rgba(193, 184, 255, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.section--photo-bg-dark .service-card--minor {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
}
/* Override section text colors INSIDE service cards so they read on white */
.section--photo-bg-dark .service-card h3,
.section--photo-bg-soft .service-card h3 {
  color: var(--purple-mystic);
}
.section--photo-bg-dark .service-card p,
.section--photo-bg-soft .service-card p {
  color: var(--ink-soft);
}
.section--photo-bg-dark .service-card__price,
.section--photo-bg-soft .service-card__price {
  color: var(--purple-deep);
}
.section--photo-bg-dark .service-card__link,
.section--photo-bg-soft .service-card__link {
  color: var(--purple-deep);
}

/* Photo-variant cards INSIDE a photo-bg section: keep pearl text + shadows */
.section--photo-bg-dark .service-card--photo h3,
.section--photo-bg-soft .service-card--photo h3 {
  color: var(--pearl);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}
.section--photo-bg-dark .service-card--photo p,
.section--photo-bg-soft .service-card--photo p {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}
.section--photo-bg-dark .service-card--photo .service-card__price,
.section--photo-bg-soft .service-card--photo .service-card__price {
  color: var(--pearl);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}
.section--photo-bg-dark .service-card--photo .service-card__link,
.section--photo-bg-soft .service-card--photo .service-card__link {
  color: var(--pearl);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}
/* Drop the white-bg override for photo-variant minor cards */
.section--photo-bg-dark .service-card--photo.service-card--minor,
.section--photo-bg-soft .service-card--photo.service-card--minor {
  background: none;
  backdrop-filter: none;
}

/* Polaroid-style tilted photo */
.polaroid {
  background: var(--pearl);
  padding: 0.625rem 0.625rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 18px 48px rgba(11, 5, 40, 0.25), 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
}
.polaroid img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}
.polaroid__caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--purple-mystic);
  text-align: center;
  margin-top: 0.625rem;
}
.polaroid--tilt-l { transform: rotate(-3deg); }
.polaroid--tilt-r { transform: rotate(2.5deg); }
.polaroid--tilt-n { transform: rotate(-1deg); }
.polaroid:hover {
  transform: rotate(0) scale(1.03);
  box-shadow: 0 28px 64px rgba(11, 5, 40, 0.32);
  z-index: 2;
}

/* Editorial display heading variant */
.editorial-display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

/* Big pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--pearl);
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pull-quote::before,
.pull-quote::after {
  content: "❝";
  display: block;
  font-size: 4rem;
  color: var(--gold-soft);
  line-height: 0.5;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}
.pull-quote::after {
  content: "";
  display: none;
}

/* Painterly altar collage layout — centered intro, polaroids in a row below */
.altar-collage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(2rem, 4vw, 3rem);
}
.altar-collage > *:first-child {
  max-width: 720px;
  margin: 0 auto;
}
.altar-collage > *:first-child p { margin-left: auto; margin-right: auto; max-width: 600px; }
.altar-collage__stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  align-items: flex-start;
}
.altar-collage__stack > :nth-child(1) { margin-top: 2rem; }
.altar-collage__stack > :nth-child(2) { margin-top: 0; }
.altar-collage__stack > :nth-child(3) { margin-top: 1.25rem; }
@media (max-width: 720px) {
  .altar-collage__stack { grid-template-columns: 1fr; max-width: 360px; }
  .altar-collage__stack > * { margin-top: 0 !important; }
}

/* Marquee strip (small caps brand strip) */
.marquee-strip {
  background: var(--purple-mystic);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-align: center;
}
.marquee-strip__inner {
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.marquee-strip__dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold-soft);
  border-radius: 50%;
}

/* Section--ink (deep moody dark for FAQ etc) */
.section--ink {
  background:
    radial-gradient(circle at 15% 20%, rgba(99, 0, 133, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(54, 0, 163, 0.3) 0%, transparent 55%),
    #0F0628;
  color: var(--pearl);
  position: relative;
  overflow: hidden;
}
.section--ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 45% 65%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 70% 30%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 25% 80%, rgba(255, 255, 255, 0.45), transparent),
    radial-gradient(1px 1px at 85% 55%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(2px 2px at 55% 18%, rgba(255, 255, 255, 0.6), transparent);
  pointer-events: none;
}
.section--ink h2, .section--ink h3 { color: var(--pearl); }
.section--ink p { color: rgba(255, 255, 255, 0.78); }
.section--ink .label { color: var(--lavender); }
.section--ink .container { position: relative; z-index: 1; }
.section--ink .faq-item { border-bottom: 1px solid rgba(193, 184, 255, 0.18); }
.section--ink .faq-item:first-child { border-top: 1px solid rgba(193, 184, 255, 0.18); }
.section--ink .faq-item__q { color: var(--pearl); }
.section--ink .faq-item__q::after { color: var(--lavender); }
.section--ink .faq-item__a { color: rgba(255, 255, 255, 0.75); }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
