
/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 0px;
  max-width: 1500px;
    margin: 0 auto;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 4rem 6rem 5vw;
  position: relative; z-index: 2;
  background: var(--white);
}
.hero-right {
  position: relative; overflow: hidden;
  background: var(--linen-pale);
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: left;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #f5e6ee 0%, var(--linen) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  text-align: center; padding: 2rem;
}
.hero-img-placeholder span {
  font-family: var(--heading); font-style: italic;
  font-size: 1.1rem; color: rgba(255,27,129,0.4);
}
.hero-img-placeholder small {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,27,129,0.3);
}

/* Pink accent bar on hero right */
.hero-right::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--pink); z-index: 3;
}
/* Floating badge */
.hero-badge {
  position: absolute; bottom: 3rem; left: -1.5rem;
  background: var(--pink);
  color: var(--white);
  padding: 1.2rem 1.8rem;
  z-index: 4;
  animation: badgePop 0.6s ease 0.9s both;
}
.hero-badge strong {
  display: block; font-family: var(--heading);
  font-size: 1.8rem; font-weight: 400; line-height: 1;
}
.hero-badge span {
  font-size: 0.56rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.85; margin-top: 0.3rem; display: block;
}
@keyframes badgePop {
  from { opacity:0; transform: translateX(-20px); }
  to   { opacity:1; transform: translateX(0); }
}

.hero-pre {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: heroFade 0.8s ease 0.2s both;
}
.hero-pre-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--pink); flex-shrink: 0;
}
.hero-pre span {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--pink);
}

.hero h1 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.5rem;
  animation: heroFade 0.8s ease 0.35s both;
}
.hero h1 em { font-style: italic; color: var(--pink); }

.hero-desc {
  font-size: 0.92rem; line-height: 1.85;
  color: var(--grey); max-width: 44ch;
  margin-bottom: 2.5rem;
  animation: heroFade 0.8s ease 0.5s both;
}

.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: heroFade 0.8s ease 0.65s both;
}

.hero-trust {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3.5rem; padding-top: 2.5rem;
  border-top: 1px solid var(--linen);
  animation: heroFade 0.8s ease 0.8s both;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }
.trust-item span { font-size: 0.64rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }

@keyframes heroFade {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto;
  padding-top: 120px; }
  .hero-left { padding: 3rem 1.5rem 3rem; }
  .hero-right { height: 60vw; min-height: 320px; }
  .hero-badge { bottom: 1.5rem; left: 1rem; }
}

/* ── MARQUEE ── */
/* uses .marquee-strip from style.css */

/* ── INTRO / PROBLEM SECTION ── */
.intro-section {
  background: var(--white);
  padding: 7rem 0;
}
.intro-quote {
  font-family: var(--heading);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  max-width: 780px; margin: 0 auto;
  text-align: center;
  position: relative; padding: 0 2rem;
}
.intro-quote::before, .intro-quote::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  width: 48px; height: 1px; background: var(--pink);
}
.intro-quote::before { top: -1.5rem; }
.intro-quote::after  { bottom: -1.5rem; }
.intro-attr {
  text-align: center; margin-top: 2.5rem;
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--pink);
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--black);
  padding: 4rem 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; text-align: center;
}
.stat-item {
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-num { color: var(--pink); }
.stat-item .stat-label { color: rgba(255,255,255,0.45); margin-top: 0.5rem; }
@media (max-width: 680px) { .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

/* ── SERVICES ── */
.services-section { background: var(--linen-pale); }
.services-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .services-grid-home { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid-home { grid-template-columns: 1fr; } }

/* ── 8th service card: CTA variant ──
   Uses .services-grid-home .service-card--cta (0-2-0 specificity)
   to reliably override all .service-card rules from style.css (0-1-0) ── */

/* Base state */
.services-grid-home .service-card--cta {
  background: var(--black) !important;
  border-color: var(--black) !important;
  align-items: center;
  justify-content: center;
  padding: 2.2rem 2rem; /* match other service cards exactly */
}
/* Kill the pink top-bar ::before that fires on .service-card:hover */
.services-grid-home .service-card--cta::before {
  display: none !important;
}
/* Hover: flip to pink background (elegant inversion) */
.services-grid-home .service-card--cta:hover {
  background: var(--pink) !important;
  border-color: var(--pink) !important;
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(255,27,129,0.25);
}

/* Inner wrapper — NO extra padding, parent already has it */
.service-card-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  width: 100%;
}
/* Eyebrow */
.service-card-cta-eyebrow {
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  font-family: var(--body);
  display: block;
}
.services-grid-home .service-card--cta:hover .service-card-cta-eyebrow {
  color: rgba(255,255,255,0.75);
}
/* Title */
.service-card-cta-title {
  font-family: var(--heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
  display: block;
}
.services-grid-home .service-card--cta:hover .service-card-cta-title {
  color: var(--white);
}
/* Arrow circle */
.service-card-cta-arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,27,129,0.45);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  transition: all 0.2s;
}
.services-grid-home .service-card--cta:hover .service-card-cta-arrow {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--white);
  padding: 7rem 0;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%; aspect-ratio: 1.5/3.2; object-fit: cover;
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(160deg, #f5e6ee 0%, var(--linen) 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder span {
  font-family: var(--heading); font-style: italic;
  font-size: 1rem; color: rgba(255,27,129,0.35);
}
/* Pink frame offset */
.about-img-wrap::before {
  content: '';
  position: absolute; top: -1rem; left: -1rem;
  right: 1rem; bottom: 1rem;
  border: 2px solid var(--pink);
  z-index: 0; pointer-events: none;
}
.about-img-wrap > * { position: relative; z-index: 1; }

.credential-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--pink-pale);
  border: 1px solid rgba(255,27,129,0.2);
  padding: 0.4rem 0.9rem;
  margin: 0.25rem;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pink);
}
.credentials-wrap { margin: 1.5rem 0; }

/* ── SCALP PROGRAM SPOTLIGHT ── */
.program-spot {
  background: var(--pink);
  padding: 7rem 0;
  overflow: hidden; position: relative;
}
.program-spot::before {
  content: '12';
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--heading); font-size: 28vw; font-weight: 700;
  color: rgba(255,255,255,0.05); line-height: 1; pointer-events: none;
}
.program-spot h2, .program-spot h3, .program-spot h4 { color: var(--white); }
.program-spot p { color: rgba(255,255,255,1); }
.program-spot .eyebrow { color: rgba(255,255,255,0.9); }
.program-spot .pink-line { background: var(--white); }
.program-step-mini {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.15);
}
.program-step-mini:last-child { border-bottom: none; }
.step-mini-num {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-size: 0.9rem; color: var(--white);
}
.program-step-mini h5 {
  font-family: var(--body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; color: var(--white); margin-bottom: 0.2rem;
}
.program-step-mini p { font-size: 0.78rem; color: rgba(255,255,255,1); }

/* ── TESTIMONIALS ── */
.testi-section { background: var(--linen-pale); }
.testi-carousel {
  position: relative;
}
.testi-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-track .testimonial {
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
}
@media (max-width: 860px) {
  .testi-track .testimonial { flex: 0 0 88%; }
}
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--linen);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
}
.testi-arrow:hover { background: var(--pink); border-color: var(--pink); }
.testi-arrow:hover svg { stroke: white; }
.testi-arrow svg { width: 18px; height: 18px; stroke: var(--black); transition: stroke 0.2s ease; }
.testi-arrow.prev { left: -24px; }
.testi-arrow.next { right: -24px; }
@media (max-width: 1024px) { .testi-arrow { display: none; } }
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--linen);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}
.testi-dot.active { background: var(--pink); width: 22px; border-radius: 4px; }

/* ── FREEBIE STRIP ── */
.freebie-strip {
  background: var(--linen-pale);
  border-top: 1px solid var(--linen);
  border-bottom: 1px solid var(--linen);
  padding: 5rem 0;
}
.freebie-card {
  background: var(--white);
  border: 1px solid var(--linen);
  padding: 3.5rem;
  display: flex; gap: 3rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
.freebie-icon {
  width: 80px; height: 80px; flex-shrink: 0;
  background: var(--pink-pale);
  border: 1.5px solid rgba(255,27,129,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
@media (max-width: 640px) { .freebie-card { flex-direction: column; gap: 1.5rem; } }

/* ── MAP / LOCATION ── */
.location-section { background: var(--white); padding: 7rem 0; }
.map-embed {
  width: 100%; height: 380px; border: none; border: 1px solid var(--linen);
  filter: grayscale(20%);
}

/* ── FAQ ── */
.faq-section { background: var(--linen-pale); padding: 7rem 0; }

/* ── HOMEPAGE BEFORE/AFTER TEASER ── */
.hp-ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}
.hp-ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.hp-ba-img-before { clip-path: inset(0 50% 0 0); }
.hp-ba-tag {
  position: absolute;
  top: 0.75rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  color: var(--white);
  z-index: 2;
  pointer-events: none;
}
.hp-ba-tag.before { left: 0.75rem; background: rgba(0,0,0,0.55); }
.hp-ba-tag.after  { right: 0.75rem; background: var(--pink); }

/* Handle appearance is set via inline styles directly on the elements
   (deliberately, not just classes) so it can never be hidden by an
   unrelated CSS rule elsewhere winning a specificity fight. */

.hp-results-showcase {
  margin-top: 4.5rem;
}
.hp-results-heading {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.25rem;
}
.hp-results-heading h3 {
  font-family: var(--heading);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  color: var(--black);
  margin: 0 0 0.75rem;
}
.hp-results-heading p {
  font-size: 0.86rem;
  color: var(--grey);
  margin: 0;
}
.ba-teaser-eyebrow {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.85rem;
}
.hp-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.hp-result-card {
  background: var(--white);
  border: 1px solid var(--linen);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
  transition: transform var(--trans), box-shadow var(--trans);
}
.hp-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.11);
}
.hp-result-caption {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.2rem 1.35rem;
  text-align: left;
}
.hp-result-caption strong {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}
.hp-result-caption span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-accessible, var(--pink));
}
@media (max-width: 780px) {
  .hp-ba-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .hp-results-showcase { margin-top: 3.5rem; }
}
