/* BUTTONS */
.btn-coral { background: var(--coral); color: var(--white); padding: 0.9rem 2.1rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s, opacity 0.2s; display: inline-block; }
.btn-coral:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-plum { background: var(--plum); color: var(--white); padding: 0.9rem 2.1rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s, background 0.2s; display: inline-block; }
.btn-plum:hover { background: var(--mauve); transform: translateY(-2px); }
.btn-ghost { color: var(--plum); border: 2px solid var(--plum); padding: 0.9rem 2.1rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: all 0.2s; display: inline-block; }
.btn-ghost:hover { background: var(--plum); color: var(--white); }
.btn-sage { background: var(--sage); color: var(--white); padding: 0.9rem 2.1rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s, opacity 0.2s; display: inline-block; }
.btn-sage:hover { transform: translateY(-2px); opacity: 0.9; }
.btn-white { background: var(--white); color: var(--plum); padding: 0.9rem 2.2rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; transition: transform 0.2s, box-shadow 0.2s; display: inline-block; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* SECTIONS */
section { padding: 5.5rem 2.5rem; }
.container { max-width: var(--max); margin: 0 auto; }
.s-label { font-family: var(--ff-script); font-size: 1.4rem; color: var(--coral); display: block; margin-bottom: 0.4rem; }
.s-title { font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 2.85rem); font-weight: 700; color: var(--plum); line-height: 1.17; letter-spacing: -0.022em; }
.s-sub { color: var(--muted); font-size: 1.06rem; max-width: 600px; margin-top: 0.9rem; line-height: 1.72; }

/* HERO: light, airy, blush + cream */
.hero {
  margin-top: 64px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 50%, #fce4ec 100%);
  display: grid;
  grid-template-columns: 1fr 480px;
  min-height: 88vh;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(196,136,154,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3.5rem 5rem 3rem;
  position: relative; z-index: 1;
}
.hero-kicker {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.6rem;
}
.hero-kicker::before { content: ''; display: block; width: 28px; height: 2px; background: var(--sage); flex-shrink: 0; }
.accepting-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(122,158,135,0.12);
  border: 1.5px solid rgba(122,158,135,0.35);
  color: var(--sage); border-radius: 50px;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; margin-bottom: 1.4rem;
  width: fit-content;
}
.accepting-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sage); flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 700; line-height: 1.06;
  color: var(--plum); margin-bottom: 1.5rem;
  letter-spacing: -0.028em;
}
.hero-title em { font-style: italic; color: var(--coral); }
.hero-sub {
  font-size: 1.08rem; color: var(--muted);
  line-height: 1.75; max-width: 460px; margin-bottom: 2.2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-insurance {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(196,136,154,0.25);
}
.ins-pill {
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--white);
  border: 1px solid rgba(196,136,154,0.3);
  padding: 0.3rem 0.8rem; border-radius: 50px;
}
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
}

/* GENTLE INTRO BAND */
.intro-band {
  background: var(--sage-lt);
  padding: 3rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(122,158,135,0.15);
  border-bottom: 1px solid rgba(122,158,135,0.15);
}
.intro-band p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  color: var(--plum); max-width: 820px;
  margin: 0 auto; line-height: 1.5;
}
.intro-band p em { color: var(--coral); font-style: normal; }

/* WHO I WORK WITH */
.who-section { background: var(--white); }
.who-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem; margin-top: 3rem;
}
.who-card {
  background: var(--cream);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 2px 16px rgba(92,45,94,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.who-card:hover { transform: translateY(-5px); box-shadow: 0 10px 32px rgba(92,45,94,0.12); }
.who-photo {
  height: 280px; overflow: hidden; position: relative;
}
.who-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.who-card:hover .who-photo img { transform: scale(1.03); }
.who-body {
  padding: 1.8rem 1.8rem 2.2rem;
  flex: 1; display: flex; flex-direction: column;
}
.who-tag {
  display: inline-block;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem; border-radius: 50px;
  margin-bottom: 0.7rem;
}
.tag-rose { background: rgba(196,136,154,0.15); color: var(--rose); }
.tag-teal { background: rgba(74,155,155,0.12); color: var(--teal); }
.tag-sage { background: rgba(122,158,135,0.15); color: var(--sage); }
.tag-coral { background: rgba(232,137,106,0.12); color: var(--coral); }
.who-name {
  font-family: var(--ff-display);
  font-size: 1.25rem; font-weight: 700;
  color: var(--plum); margin-bottom: 0.6rem; line-height: 1.2;
}
.who-desc {
  font-size: 0.93rem; color: var(--muted);
  line-height: 1.7; flex: 1; margin-bottom: 1rem;
}
.who-examples {
  list-style: none;
  border-top: 1px solid rgba(196,136,154,0.15);
  padding-top: 0.9rem;
}
.who-examples li {
  font-size: 0.85rem; color: var(--muted);
  padding: 0.3rem 0; display: flex; gap: 0.5rem; align-items: flex-start;
}
.who-examples li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--rose); flex-shrink: 0; margin-top: 0.5rem;
}
.who-card:nth-child(2) .who-examples li::before { background: var(--teal); }
.who-card:nth-child(3) .who-examples li::before { background: var(--sage); }
.who-card:nth-child(4) .who-examples li::before { background: var(--coral); }

/* IS THIS FOR YOU */
.for-you {
  background: linear-gradient(150deg, var(--blush) 0%, #fce8f0 50%, var(--cream) 100%);
  position: relative; overflow: hidden;
}
.for-you::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(196,136,154,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}
.for-you .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.for-you-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  font-weight: 700; color: var(--plum);
  line-height: 1.17; letter-spacing: -0.022em;
  margin-bottom: 1rem;
}
.for-you-text h2 em { color: var(--coral); font-style: italic; }
.for-you-text .s-label { margin-bottom: 0.4rem; }
.for-you-text p { color: var(--muted); font-size: 1.04rem; line-height: 1.75; margin-bottom: 1rem; }
.signs-list { list-style: none; margin-top: 1.5rem; }
.signs-list li {
  font-size: 0.95rem; color: var(--text);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(196,136,154,0.18);
  display: flex; align-items: flex-start; gap: 0.75rem;
  line-height: 1.5;
}
.signs-list li:last-child { border-bottom: none; }
.signs-list li::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral); flex-shrink: 0; margin-top: 0.38rem;
}
.for-you-photo {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 20px 56px rgba(92,45,94,0.12);
  aspect-ratio: 4/5;
}
.for-you-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}

/* HOW I WORK */
.how-section { background: var(--white); }
.approach-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 3rem;
}
.approach-card {
  background: var(--cream);
  border-radius: var(--r-lg); padding: 2rem 1.7rem;
  position: relative; overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 14px rgba(92,45,94,0.06);
}
.approach-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
}
.approach-card:nth-child(1)::before { background: var(--rose); }
.approach-card:nth-child(2)::before { background: var(--teal); }
.approach-card:nth-child(3)::before { background: var(--sage); }
.approach-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(92,45,94,0.11); }
.approach-num {
  font-family: var(--ff-display);
  font-size: 3rem; font-weight: 700;
  color: rgba(74,30,76,0.08); line-height: 1;
  margin-bottom: 0.6rem;
}
.approach-name {
  font-family: var(--ff-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--plum); margin-bottom: 0.6rem;
}
.approach-desc {
  font-size: 0.92rem; color: var(--muted); line-height: 1.68;
}

/* PRACTICAL INFO */
.practical {
  background: var(--sage-lt);
  position: relative; overflow: hidden;
}
.practical::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(122,158,135,0.12) 1px, transparent 1px);
  background-size: 26px 26px;
}
.practical .container { position: relative; z-index: 1; }
.practical-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 3rem;
}
.prac-card {
  background: var(--white);
  border-radius: var(--r-lg); padding: 1.8rem 1.6rem;
  box-shadow: 0 2px 12px rgba(122,158,135,0.1);
}
.prac-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--sage-lt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  border: 1.5px solid rgba(122,158,135,0.25);
}
.prac-icon svg { width: 18px; height: 18px; stroke: var(--sage); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.prac-name {
  font-family: var(--ff-display);
  font-size: 1rem; font-weight: 700;
  color: var(--plum); margin-bottom: 0.5rem;
}
.prac-desc {
  font-size: 0.87rem; color: var(--muted); line-height: 1.65;
}

/* TESTIMONIALS */
.testimonials { background: var(--white); }
.t-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem; margin-top: 2.8rem;
}
.t-card {
  background: var(--cream); border-radius: var(--r-lg);
  padding: 2rem; box-shadow: 0 2px 12px rgba(92,45,94,0.05);
}
.t-stars { color: var(--coral); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 0.15em; }
.t-quote {
  font-family: var(--ff-display); font-style: italic;
  font-size: 1rem; color: var(--plum);
  line-height: 1.65; margin-bottom: 1rem;
}
.t-name { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* FAQ SECTION */
.faq-section {{ background: var(--cream); }}
.faq-inner {{
  display: grid; grid-template-columns: 1fr 420px;
  gap: 5rem; align-items: start;
}}
.faq-list {{ margin-top: 2rem; }}
.faq-item {{
  border-bottom: 1px solid rgba(196,136,154,0.2);
}}
.faq-item:first-child {{ border-top: 1px solid rgba(196,136,154,0.2); }}
.faq-q {{
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0;
  font-family: var(--ff-body); font-size: 0.97rem; font-weight: 700;
  color: var(--plum); text-align: left; gap: 1rem;
  transition: color 0.2s;
}}
.faq-q:hover {{ color: var(--coral); }}
.faq-icon {{
  font-size: 1.4rem; font-weight: 300; flex-shrink: 0;
  color: var(--coral); line-height: 1;
  transition: transform 0.25s;
}}
.faq-q.open .faq-icon {{ transform: rotate(45deg); }}
.faq-a {{
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}}
.faq-a.open {{ max-height: 300px; padding-bottom: 1.1rem; }}
.faq-a p {{
  font-size: 0.93rem; color: var(--muted);
  line-height: 1.72;
}}
.faq-photo {{
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 16px 48px rgba(92,45,94,0.1);
  aspect-ratio: 3/2; position: sticky; top: 100px;
}}
.faq-photo img {{
  width: 100%; height: 100%;
  object-fit: cover;
}}

/* CTA */
.cta-strip {
  background: linear-gradient(135deg, var(--plum) 0%, #350D38 100%);
  padding: 5.5rem 2.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 0.9rem; letter-spacing: -0.022em;
}
.cta-strip h2 em { color: var(--coral); font-style: italic; }
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 4rem 1.5rem 3rem; }
  .hero-right { height: 65vw; max-height: 480px; }
  .who-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .for-you .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .approach-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .practical-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .faq-inner { grid-template-columns: 1fr; } .faq-photo { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .accepting-dot { animation: none; }
}

/* =========================================================
   MOBILE WIDTH GUARD
   Keeps grid/flex content inside the viewport.
   ========================================================= */
.hero,
.hero-wrap,
.page-hero,
.page-wrap,
.hero-left,
.hero-right,
.hero-content,
.container {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 600px) {
  section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-left,
  .hero-content,
  .form-side {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title,
  .page-title,
  .page-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-btns,
  .about-btns,
  .jump-links,
  .jump-pills,
  .pod-links {
    max-width: 100%;
  }
}
