/* ============================================================
   HEALING WISH — DESIGN SYSTEM
   Inspired by kenlloydofficial.com: full-bleed imagery,
   warm earth tones, split layouts, generous white space
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Work+Sans:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --purple:        #5C2D91;
  --purple-light:  #7B3FB5;
  --purple-dark:   #3D1A6E;
  --purple-mist:   rgba(92,45,145,0.08);
  --gold:          #C8920A;
  --gold-light:    #E0A820;
  --cream:         #FAF8F4;
  --cream-warm:    #F5F0E8;
  --ivory:         #FFFDF9;
  --charcoal:      #1C1A2E;
  --charcoal-soft: #2E2A42;
  --text-body:     #3D3650;
  --text-muted:    #7A6E8A;
  --white:         #FFFFFF;
  --overlay-dark:  rgba(28,26,46,0.55);
  --overlay-purple: rgba(92,45,145,0.35);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Work Sans', system-ui, sans-serif;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --trans:        180ms cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(92,45,145,0.10);
  --shadow-md:  0 8px 32px rgba(92,45,145,0.15);
  --shadow-lg:  0 20px 60px rgba(28,26,46,0.20);

  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1280px;
  --gutter:      clamp(20px, 5vw, 80px);
}

[data-theme="dark"] {
  --cream:         #100E1E;
  --cream-warm:    #16132A;
  --ivory:         #1C1930;
  --charcoal:      #EDE8F5;
  --charcoal-soft: #D4CBE8;
  --text-body:     #C8BFDF;
  --text-muted:    #8A7FAA;
  --purple-mist:   rgba(123,63,181,0.12);
  --white:         #1C1930;
  --overlay-dark:  rgba(16,14,30,0.65);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);
}

/* ─── 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: clamp(17px, 1.2vw, 19px);
  line-height: 1.8;
  color: var(--text-body);
  background: var(--cream);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── UTILITY ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.fade-up {
  opacity: 1;
  transform: none;
}

@supports (animation-timeline: scroll()) {
  .fade-up {
    opacity: 0;
    animation: fadeUpReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }
}

@keyframes fadeUpReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.12s; }
.stagger-3 { animation-delay: 0.20s; }
.stagger-4 { animation-delay: 0.28s; }

/* Clip-path reveal for headings */
.reveal-clip {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .reveal-clip {
    clip-path: inset(0 0 100% 0);
    animation: clipReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 50%;
  }
}
@keyframes clipReveal {
  to { clip-path: inset(0 0 0% 0); }
}

/* Scale-in for images */
.scale-in {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .scale-in {
    opacity: 0;
    animation: scaleReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
}
@keyframes scaleReveal {
  from { opacity: 0; filter: brightness(0.7); }
  to   { opacity: 1; filter: brightness(1); }
}

/* Slide from left */
.slide-left {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .slide-left {
    opacity: 0;
    animation: slideLeftReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
}
@keyframes slideLeftReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Slide from right */
.slide-right {
  opacity: 1;
}
@supports (animation-timeline: scroll()) {
  .slide-right {
    opacity: 0;
    animation: slideRightReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }
}
@keyframes slideRightReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal-clip, .scale-in, .slide-left, .slide-right {
    animation: none !important;
    opacity: 1 !important;
    clip-path: none !important;
    filter: none !important;
  }
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  margin-bottom: clamp(16px, 2vw, 28px);
}
.section-title em {
  font-style: italic;
  color: var(--purple);
}
.section-subtitle {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background var(--trans),
    color var(--trans),
    box-shadow var(--trans),
    transform var(--trans);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 20px rgba(92,45,145,0.35);
}
.btn-primary:hover {
  background: var(--purple-light);
  box-shadow: 0 8px 32px rgba(92,45,145,0.45);
}
.btn-outline {
  border: 1.5px solid var(--purple);
  color: var(--purple);
  padding: 14px 34px;
}
.btn-outline:hover {
  background: var(--purple);
  color: #fff;
}
.btn-ghost {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 14px 34px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,146,10,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 32px rgba(200,146,10,0.45);
}
.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--trans);
}
.btn:hover svg { transform: translateX(3px); }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  height: 80px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
#navbar.scrolled {
  background: rgba(250,248,244,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(92,45,145,0.1);
}
[data-theme="dark"] #navbar.scrolled {
  background: rgba(16,14,30,0.95);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 64px;
  width: auto;
  border-radius: 10px;
  transition: opacity 0.3s;
  position: relative;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav-links ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--trans);
}
.nav-links a:hover { color: #fff; }
#navbar.scrolled .nav-links a {
  color: var(--text-muted);
}
#navbar.scrolled .nav-links a:hover {
  color: var(--purple);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--trans);
}
#navbar.scrolled .nav-phone { color: var(--charcoal); }
.nav-phone:hover { color: #fff; }
#navbar.scrolled .nav-phone:hover { color: var(--purple); }
.nav-cta {
  background: var(--purple);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--trans), box-shadow var(--trans), transform var(--trans);
}
.nav-cta:hover {
  background: var(--purple-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(92,45,145,0.3);
}
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: color var(--trans), background var(--trans);
}
#navbar.scrolled .theme-toggle { color: var(--text-muted); }
.theme-toggle:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
#navbar.scrolled .theme-toggle:hover {
  background: var(--purple-mist);
  color: var(--purple);
}
#mobile-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 4px;
}
#mobile-toggle span {
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
#navbar.scrolled #mobile-toggle span { background: var(--charcoal); }

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-in-out);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Hero slide 1 — reiki hands */
.hero-slide:nth-child(1) img {
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28,26,46,0.15) 0%,
    rgba(28,26,46,0.1) 30%,
    rgba(28,26,46,0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(60px, 8vh, 100px);
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,10,0.2);
  border: 1px solid rgba(200,146,10,0.4);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 28px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.hero-badge svg { color: var(--gold); flex-shrink: 0; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 3px;
}
/* Erica floating card on hero */
.hero-erica-card {
  position: absolute;
  bottom: clamp(60px, 10vh, 120px);
  right: clamp(20px, 6vw, 100px);
  z-index: 3;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  min-width: 220px;
  color: #fff;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.hero-erica-card .card-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-erica-card .card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}
.hero-erica-card .card-title {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.stars-row {
  display: flex;
  gap: 3px;
  margin-top: 12px;
}
.stars-row svg { color: var(--gold-light); }
.stars-count {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-left: 6px;
  align-self: center;
}

/* ─── GOLD STRIP ─────────────────────────────────────────── */
.gold-strip {
  background: linear-gradient(90deg, var(--gold-dark, #8B6400) 0%, var(--gold) 50%, var(--gold-dark, #8B6400) 100%);
  background: var(--gold);
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 48px);
  flex-wrap: wrap;
}
.gold-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.gold-strip-item svg { opacity: 0.8; flex-shrink: 0; }
.gold-strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
}

/* ─── SECTION GENERICS ──────────────────────────────────── */
section { position: relative; }

.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header .section-subtitle {
  margin-top: 16px;
}
.divider-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto 0;
  border-radius: 2px;
}
.section-header:not(.centered) .divider-line {
  margin: 24px 0 0;
}

/* ─── WHO THIS IS FOR (full-bleed image + text split) ────── */
#who {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.who-image {
  position: relative;
  overflow: hidden;
}
.who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-in-out);
}
.who-image:hover img { transform: scale(1.04); }
.who-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--overlay-purple) 0%, transparent 60%);
}
.who-content {
  background: var(--cream-warm);
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.who-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--purple);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans), transform var(--trans);
}
.who-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.who-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--purple-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--purple);
}
.who-item-text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
  padding-top: 2px;
}

/* ─── SERVICES ───────────────────────────────────────────── */
#services {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.services-intro-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.services-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-in-out);
}
.services-intro-image:hover img { transform: scale(1.04); }
.services-intro-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--purple);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--trans), transform var(--trans);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-in-out);
}
.service-card:hover .service-card-img {
  transform: scale(1.06);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,26,46,0.90) 0%,
    rgba(28,26,46,0.40) 50%,
    transparent 100%
  );
}
.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  color: #fff;
}
.service-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.2;
}
.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 16px;
}
.service-card-price {
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ─── ABOUT / ERICA FULL BLEED SPLIT ─────────────────────── */
#about {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 90vh;
}
.about-image-col {
  position: relative;
  overflow: hidden;
}
.about-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, var(--cream-warm) 100%);
}
.about-content-col {
  background: var(--cream-warm);
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px) clamp(60px, 8vw, 120px) clamp(30px, 4vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.credential-pill {
  background: var(--ivory);
  border: 1px solid rgba(92,45,145,0.15);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--purple);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.about-quote {
  background: var(--purple);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: #fff;
  margin-top: 32px;
  position: relative;
}
.about-quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(255,255,255,0.15);
  position: absolute;
  top: 8px;
  left: 20px;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.about-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ─── PARALLAX IMAGE BREAK ───────────────────────────────── */
.parallax-break {
  height: clamp(300px, 40vh, 500px);
  position: relative;
  overflow: hidden;
}
.parallax-break-img {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}
.parallax-break-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding: 0 var(--gutter);
}
.parallax-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 300;
  color: #fff;
  max-width: 800px;
  line-height: 1.3;
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
#reviews {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./assets/section_testimonials.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.reviews-inner {
  position: relative;
  z-index: 1;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: background var(--trans), transform var(--trans);
}
.review-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.review-stars svg { color: var(--gold); }
.review-text {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.5vw, 19px);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.review-author {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
}
.reviews-total {
  text-align: center;
  margin-top: 48px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.reviews-total a {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── BOOK SECTION ───────────────────────────────────────── */
#book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.book-image-col {
  position: relative;
  overflow: hidden;
}
.book-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-in-out);
}
.book-image-col:hover img { transform: scale(1.04); }
.book-content-col {
  background: var(--cream-warm);
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 28px;
}
.book-meta-tag {
  background: var(--purple-mist);
  border: 1px solid rgba(92,45,145,0.15);
  color: var(--purple);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.book-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.book-rating-stars {
  display: flex;
  gap: 3px;
}
.book-rating-stars svg { color: var(--gold); width: 18px; height: 18px; }
.book-rating-label {
  font-size: 14px;
  color: var(--text-muted);
}
.book-price-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 28px;
}
.book-price-item {
  text-align: center;
  padding: 16px 20px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border: 1px solid rgba(92,45,145,0.1);
  min-width: 100px;
  box-shadow: var(--shadow-sm);
}
.book-price-format {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.book-price-amount {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--charcoal);
}

/* ─── CONTACT ────────────────────────────────────────────── */
#contact {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact-info {
  padding-top: 16px;
}
.contact-info-image {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
  background: #e8d5f0;
}
.contact-info-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-body);
  transition: box-shadow var(--trans);
}
.contact-detail-item:hover { box-shadow: var(--shadow-sm); }
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.contact-form-col {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 4vw, 56px);
  box-shadow: var(--shadow-md);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 8px;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(92,45,145,0.15);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(92,45,145,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(92,45,145,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--purple);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 12px;
}
.form-success p { color: var(--text-muted); }

/* ─── FOOTER ─────────────────────────────────────────────── */
#footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: clamp(48px, 6vw, 80px) var(--gutter) 32px;
}
[data-theme="dark"] #footer {
  background: #0A0816;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(255,255,255,0.55);
}
.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer-links a:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: color var(--trans);
}
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.footer-social-link:hover {
  border-color: var(--purple-light);
  color: #fff;
  background: var(--purple);
}

/* ─── MOBILE NAV ─────────────────────────────────────────── */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 80px 40px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 40px);
  color: var(--charcoal);
  transition: color var(--trans);
}
#mobile-nav a:hover { color: var(--purple); }
#mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 24px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  #who {
    grid-template-columns: 1fr;
  }
  .who-image { min-height: 400px; }
  #about {
    grid-template-columns: 1fr;
  }
  .about-image-col { min-height: 50vh; }
  .about-image-overlay { background: linear-gradient(to bottom, transparent 50%, var(--cream-warm) 100%); }
  #book {
    grid-template-columns: 1fr;
  }
  .book-image-col { min-height: 400px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-intro { grid-template-columns: 1fr; }
  .services-intro-image { aspect-ratio: 4/3; min-height: 320px; max-height: 420px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  #mobile-toggle { display: flex; }
  .nav-phone { display: none; }
  .hero-erica-card { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gold-strip { gap: 12px; }
  .gold-strip-divider { display: none; }

  /* ── Mobile: center all section headers and labels ── */
  .section-label,
  .section-title,
  .section-subtitle,
  .section-eyebrow,
  .eyebrow,
  .section-header,
  .section-header h2,
  .section-header p,
  h1, h2, h3,
  .hero-label,
  .hero-title,
  .hero-subtitle,
  .pricing-heading,
  .about-label,
  .about-title,
  .about-subtitle,
  .who-label,
  .who-title,
  .who-subtitle,
  .book-label,
  .book-title,
  .book-subtitle,
  .book-meta,
  .book-rating,
  .contact-label,
  .contact-title,
  .contact-subtitle,
  .reviews-label,
  .reviews-title,
  .reviews-subtitle,
  .pill,
  .tag {
    text-align: center;
  }

  /* Center decorative dividers */
  .section-header .divider,
  .section-divider,
  .divider-line,
  hr.divider {
    margin-left: auto;
    margin-right: auto;
  }

  /* Footer: center everything on mobile */
  .footer-brand,
  .footer-brand p,
  .footer-brand span,
  .footer-heading,
  .footer-links,
  .footer-links a,
  .footer-contact-item {
    text-align: center;
  }
  .footer-brand p { max-width: 100%; }
  .footer-socials { justify-content: center; }
  .footer-contact-item { justify-content: center; }

  /* Keep body copy left-aligned for readability */
  p, li, .body-text {
    text-align: left;
  }
  /* Exceptions — footer p should stay centered */
  .footer-brand p { text-align: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: 100%; justify-content: center; text-align: center; }
}

/* ─── REVIEWS CAROUSEL ──────────────────────────────────── */
.rc-carousel {
  position: relative;
  overflow: hidden;
  margin: 48px 0 32px;
  padding: 0 56px;           /* space for arrows */
}

.rc-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.rc-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 per page, 2 gaps of 24px */
  background: #fff;
  border: 1px solid rgba(92, 45, 145, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 16px rgba(92,45,145,0.07);
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
}
.rc-card:hover {
  background: #faf8ff;
  border-color: rgba(200, 146, 10, 0.35);
  box-shadow: 0 4px 24px rgba(92,45,145,0.13);
}

.rc-stars {
  display: flex;
  gap: 3px;
  color: var(--gold-light);
}

.rc-text {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: #3a3550;
  font-style: italic;
  flex: 1;                  /* push footer to bottom */
  margin: 0;
}

.rc-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(92,45,145,0.1);
}

.rc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rc-name {
  font-weight: 600;
  font-size: 14px;
  color: #1C1A2E;
  line-height: 1.2;
}

.rc-source {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #7a7490;
  margin-top: 2px;
}

/* Arrows */
.rc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--trans), border-color var(--trans), opacity var(--trans);
  z-index: 2;
}
.rc-arrow:hover {
  background: rgba(200, 146, 10, 0.25);
  border-color: var(--gold);
}
.rc-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.rc-prev { left: 0; }
.rc-next { right: 0; }

/* Dots */
.rc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.rc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--trans), transform var(--trans);
}
.rc-dot.active {
  background: var(--gold-light);
  transform: scale(1.35);
}

/* Mobile: 1 card per page */
@media (max-width: 768px) {
  .rc-carousel { padding: 0 48px; }
  .rc-card { flex: 0 0 100%; }
  .rc-track { gap: 16px; }
}
@media (max-width: 480px) {
  .rc-carousel { padding: 0 40px; }
  .rc-card { padding: 24px 20px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   HEALING WISH — V3 UPGRADES
   Logo · Marquee Reviews · Image Fixes · Scroll Animations
   ═══════════════════════════════════════════════════════════ */

/* ─── LOGO — FINAL V2 FULL COLOR ──────────────────────────── */
.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: opacity var(--trans);
}
.nav-logo-img:hover { opacity: 0.88; }

/* ─── IMAGE CROP FIXES — object-position tuned per image ─── */

/* Crystal sunset — show the crystal, not sky void */
.who-image img {
  object-position: center 65% !important;
}

/* Hero slide 1 — reiki hands */
.hero-slide:nth-child(1) img {
  object-position: center center !important;
}

/* About section portrait */
.about-image-col img {
  object-position: center 8% !important;
}
@media (max-width: 768px) {
  .about-image-col img {
    object-position: center 5% !important;
  }
  .about-image-col {
    min-height: 55vh;
  }
}

/* Services intro — show Erica's face */
.services-intro-image img {
  object-position: center 20% !important;
}

/* Contact info image — lavender artwork (wide 16:9, use contain) */
.contact-info-image img {
  object-fit: contain !important;
  object-position: center center !important;
}

/* Book cover — show top of cover */
.book-image-col {
  overflow: hidden;
}
.book-image-col img {
  object-position: center top !important;
}

/* Service cards — consistent crop */
.service-card-img {
  object-position: center 35% !important;
}

/* Parallax images — vertical centering */
.parallax-break-img {
  object-position: center 30% !important;
}

/* Hero slides — all non-portrait slides */
.hero-slide img {
  object-position: center center;
}

/* ─── SCROLL ANIMATIONS — RICH TRANSFORMS ────────────────── */

/* Override the bare opacity-only animations with full transforms */
@supports (animation-timeline: scroll()) {

  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    animation: fadeUpRichReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }

  .slide-left {
    opacity: 0;
    transform: translateX(-48px);
    animation: slideLeftRichReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }

  .slide-right {
    opacity: 0;
    transform: translateX(48px);
    animation: slideRightRichReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 60%;
  }

  .scale-in {
    opacity: 0;
    transform: scale(0.94);
    animation: scaleRichReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 55%;
  }

  .reveal-clip {
    clip-path: inset(0 0 100% 0);
    animation: clipRichReveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 50%;
  }
}

@keyframes fadeUpRichReveal {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeftRichReveal {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRightRichReveal {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleRichReveal {
  from { opacity: 0; transform: scale(0.94); filter: brightness(0.75); }
  to   { opacity: 1; transform: scale(1);    filter: brightness(1); }
}
@keyframes clipRichReveal {
  from { clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0% 0); }
}

/* Stagger helpers — now they actually offset in time */
.stagger-1 { animation-delay: 80ms !important; }
.stagger-2 { animation-delay: 170ms !important; }
.stagger-3 { animation-delay: 260ms !important; }
.stagger-4 { animation-delay: 350ms !important; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal-clip, .scale-in, .slide-left, .slide-right {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
  }
}

/* IntersectionObserver fallback for browsers without animation-timeline */
@supports not (animation-timeline: scroll()) {
  .fade-up, .slide-left, .slide-right, .scale-in {
    opacity: 0;
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
  .fade-up        { transform: translateY(32px); }
  .slide-left     { transform: translateX(-48px); }
  .slide-right    { transform: translateX(48px); }
  .scale-in       { transform: scale(0.94); }

  .fade-up.is-visible,
  .slide-left.is-visible,
  .slide-right.is-visible,
  .scale-in.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .stagger-1.is-visible { transition-delay: 80ms; }
  .stagger-2.is-visible { transition-delay: 170ms; }
  .stagger-3.is-visible { transition-delay: 260ms; }
  .stagger-4.is-visible { transition-delay: 350ms; }
}

/* ─── SECTION ENTRANCE LINES ────────────────────────────── */
/* Animated gold divider line that draws in on scroll */
.divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto;
  transform-origin: left center;
}
@supports (animation-timeline: scroll()) {
  .divider-line {
    transform: scaleX(0);
    transform-origin: left center;
    animation: dividerDraw linear both;
    animation-timeline: view();
    animation-range: entry 10% entry 60%;
  }
}
@keyframes dividerDraw {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* ─── WHO SECTION — image height fix ─────────────────────── */
#who { min-height: 560px; }
.who-image { min-height: 560px; }

/* ─── REVIEWS MARQUEE ───────────────────────────────────── */

/* Replace old rc-carousel with continuous marquee */
.rm-stage {
  margin-top: 56px;
  overflow: hidden;
  position: relative;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.rm-row {
  display: flex;
  gap: 0;
}

.rm-strip {
  display: flex;
  gap: 20px;
  padding: 12px 10px;
  animation: marqueeScroll 220s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}

/* Clone runs immediately after — no gap between strips */
.rm-strip-clone {
  display: flex;
  gap: 20px;
  padding: 12px 10px;
  animation: marqueeScroll 220s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Pause on hover for readability */
.rm-stage:hover .rm-strip,
.rm-stage:hover .rm-strip-clone {
  animation-play-state: paused;
}

/* Pause on focus too (accessibility) */
.rm-stage:focus-within .rm-strip,
.rm-stage:focus-within .rm-strip-clone {
  animation-play-state: paused;
}

/* rc-card inside marquee — fixed width, consistent height */
.rm-strip .rc-card,
.rm-strip-clone .rc-card {
  flex: 0 0 340px;
  width: 340px;
  min-height: 220px;
  max-height: 300px;
  overflow: hidden;
}

/* Truncate long review text cleanly */
.rm-strip .rc-text,
.rm-strip-clone .rc-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
}

/* Remove rc-date from marquee — too cluttered */
.rm-strip .rc-date,
.rm-strip-clone .rc-date {
  display: none;
}

/* ─── SECTION FLOW — KEN LLOYD LEVEL POLISH ──────────────── */

/* Slightly warmer section alternation */
#who { background: var(--cream-warm); }
#services { background: var(--cream); }
#about { background: var(--charcoal); color: #fff; }
#book { background: var(--cream-warm); }

/* Gold accent line at section tops */
.section-title {
  position: relative;
}

/* Pull quote style for parallax sections */
.parallax-quote {
  font-size: clamp(22px, 3.5vw, 42px) !important;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* Service cards — hover lift with gold border */
.service-card {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out) !important;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 24px 60px rgba(92,45,145,0.18), 0 0 0 1.5px var(--gold) !important;
}

/* Ken Lloyd–style "as seen as" subtle strip */
.gold-strip {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-dark) 100%) !important;
}

/* About section — Erica portrait glow */
.about-image-col::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(200,146,10,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Smooth section transitions via background gradients at edges */
#who::after {
  content: '';
  display: block;
  height: 80px;
  background: linear-gradient(to bottom, var(--cream-warm), var(--cream));
  margin-top: -1px;
  position: relative;
  z-index: 1;
}

/* Typography upgrades — Ken Lloyd–level heading scale */
.section-title {
  font-size: clamp(32px, 4.5vw, 60px) !important;
  letter-spacing: -0.02em;
  line-height: 1.1 !important;
}

.hero-headline {
  text-shadow: 0 2px 32px rgba(28,26,46,0.4);
  letter-spacing: -0.025em;
}

/* CTA buttons — pill shape like Ken Lloyd */
.btn {
  border-radius: 100px !important;
}

/* Eyebrow labels — spaced like Ken Lloyd */
.eyebrow {
  letter-spacing: 0.18em !important;
  font-size: 11px !important;
  font-weight: 700 !important;
}

/* ─── RESPONSIVE MARQUEE ────────────────────────────────── */
@media (max-width: 768px) {
  .rm-strip .rc-card,
  .rm-strip-clone .rc-card {
    flex: 0 0 280px;
    width: 280px;
  }
  .rm-strip { animation-duration: 160s; }
  .rm-strip-clone { animation-duration: 160s; }
}
@media (max-width: 480px) {
  .rm-strip .rc-card,
  .rm-strip-clone .rc-card {
    flex: 0 0 240px;
    width: 240px;
  }
  .rm-strip { animation-duration: 120s; }
  .rm-strip-clone { animation-duration: 120s; }
}

/* ─── YOUTUBE THUMBNAIL TILES ──────────────────────────── */
.yt-tile {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--charcoal);
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.yt-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.28);
}
.yt-tile:hover .yt-play-btn svg circle {
  fill: rgba(92,45,145,0.82);
}
.yt-tile:hover .yt-play-btn {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1.1);
}

.yt-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0d0d1a;
}
.yt-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.yt-tile:hover .yt-thumb img {
  transform: scale(1.04);
}

.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.yt-meta {
  padding: 16px 20px;
}
.yt-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light, #C8920A);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.yt-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .yt-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVENESS OVERHAUL — full audit pass
   Target: 390px (iPhone 14 Pro) + 412px (Android)
   ═══════════════════════════════════════════════════════════ */

/* 1. Root overflow containment — prevent slide transforms from
      creating horizontal scrollbars before IntersectionObserver fires */
html {
  overflow-x: hidden;
}

/* 2. Prevent slide-right / slide-left from adding horizontal
      scroll before they become visible — clip at wrapper level */
.slide-left,
.slide-right {
  max-width: 100%;
}

@media (max-width: 768px) {
  /* ── Navbar ── */
  #navbar {
    height: 64px;
    padding: 0 16px;
  }
  .nav-logo-img {
    height: 56px;
  }
  .nav-actions {
    gap: 8px;
  }
  /* Hide "Book Consultation" CTA text on smallest phones, keep icon */
  .nav-cta {
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
  /* Theme toggle stays but shrinks */
  .theme-toggle {
    width: 32px;
    height: 32px;
  }

  /* ── Hero ── */
  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 8px 14px;
    max-width: calc(100vw - 40px);
    white-space: normal;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px; /* tap target */
  }

  /* ── Intro video section — stack to single column ── */
  #intro .container > div[style*="grid-template-columns:1fr 1fr"],
  #intro .container > div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Intro Facebook iframe wrapper — constrain to viewport */
  #intro .slide-right {
    width: 100%;
    max-width: 100% !important;
    align-items: center;
  }
  #intro .slide-right > div {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* ── Services section header overflow fix ── */
  .services-intro {
    grid-template-columns: 1fr !important;
    overflow: hidden;
  }
  .section-header.slide-right,
  .section-header.slide-left {
    max-width: 100%;
    overflow: hidden;
  }
  /* All section containers — no overflow */
  section > .container {
    overflow-x: hidden;
  }

  /* ── Service cards ── */
  .service-card {
    min-width: 0;
  }

  /* ── Reviews marquee ── */
  .rm-stage {
    /* Tighten edge fade on mobile so cards don't feel cut */
    mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  }

  /* ── Contact grid ── */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .contact-info,
  .contact-form-col {
    width: 100%;
  }
  /* Contact form inputs — full width, large tap targets */
  #contact-form input,
  #contact-form textarea,
  #contact-form select {
    min-height: 48px;
    font-size: 16px; /* prevents iOS zoom on focus */
  }
  #contact-form textarea {
    min-height: 120px;
  }
  #contact-form .btn[type="submit"] {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  /* ── Footer ── */
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* ── General tap targets ── */
  .btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-social-link {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Book section ── */
  .book-price-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  /* ── YouTube grid ── */
  .yt-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  /* Extra-small: hide "Book Consultation" nav text, show shorter label */
  .nav-cta {
    padding: 7px 12px;
    font-size: 10px;
  }
  /* Section titles — tighten */
  .section-title {
    font-size: clamp(28px, 8vw, 40px);
  }
  /* Hero heading */
  .hero-title {
    font-size: clamp(32px, 10vw, 52px);
  }
  /* Parallax break quote text */
  .parallax-break blockquote,
  .parallax-break p {
    font-size: clamp(18px, 5vw, 28px);
    padding: 0 16px;
  }
}

/* ── Intro video grid — class-based responsive ── */
@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .intro-video-col {
    width: 100%;
    max-width: 100%;
  }
  .intro-video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    /* Keep portrait ratio on mobile — give enough height to show the face */
    aspect-ratio: 9 / 16 !important;
    max-height: 540px;
  }
}

/* ═══════════════════════════════════════════════════════════
   TECHNIQUE DEFINITIONS BLOCK
   ═══════════════════════════════════════════════════════════ */
.techniques-block {
  margin-top: 60px;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(92,45,145,0.12);
}
.techniques-intro {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-style: italic;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.techniques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
}
.technique-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.technique-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--purple-mist, rgba(92,45,145,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-top: 2px;
}
.technique-text h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 6px;
}
.technique-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.techniques-note {
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--purple);
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(92,45,145,0.12);
}

/* ═══════════════════════════════════════════════════════════
   PRICING TABLE
   ═══════════════════════════════════════════════════════════ */
.pricing-block {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(92,45,145,0.12);
}
.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-header .divider-line {
  margin: 16px auto 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid rgba(92,45,145,0.13);
  border-radius: 20px;
  padding: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(92,45,145,0.12);
}
[data-theme="dark"] .pricing-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
.pricing-card--featured {
  border-color: var(--purple);
  box-shadow: 0 8px 32px rgba(92,45,145,0.16);
  padding-top: 18px;
}
.pricing-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 20px 20px 0 0;
}
.pricing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.pricing-card:hover .pricing-card-img img {
  transform: scale(1.05);
}
.pricing-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 28px 32px;
  flex: 1;
}
[data-theme="dark"] .pricing-card-img img {
  opacity: 0.9;
}
.pricing-card-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 0 0 16px 16px;
  white-space: nowrap;
  z-index: 2;
}
.pricing-card-badge--left {
  left: 20px;
  transform: none;
  border-radius: 0 0 12px 12px;
}
.pricing-card-top {
  text-align: center;
}
.pricing-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light, #C8920A);
  margin-bottom: 10px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}
.pricing-was {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
}
.pricing-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-includes li {
  font-size: 14px;
  color: var(--text-body);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.6;
}
.pricing-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(92,45,145,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pricing-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 1024px) {
  .techniques-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .techniques-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-amount { font-size: 36px; }
}
