:root {
  --bg: #fbf7f1;
  --bg-soft: #f2ece1;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #17333b;
  --text-soft: #526a72;
  --line: rgba(23, 51, 59, 0.12);
  --teal: #1f5d64;
  --teal-dark: #11323b;
  --teal-soft: #d3e8e4;
  --coral: #e57a57;
  --shadow: 0 24px 60px rgba(17, 50, 59, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(31, 93, 100, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(229, 122, 87, 0.16), transparent 24%),
    linear-gradient(180deg, #efe8db 0%, var(--bg) 34%, #fffdf9 100%);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.topline {
  border-bottom: 1px solid var(--line);
  background: rgba(17, 50, 59, 0.05);
  color: var(--teal-dark);
  font-size: 0.92rem;
}

.topline p {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 0.85rem 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1rem 0;
  backdrop-filter: blur(14px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 247, 241, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(17, 50, 59, 0.08);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-left: 1rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy {
  display: grid;
  gap: 0.2rem;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding-right: 1rem;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text-soft);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal-dark);
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
  font: inherit;
  padding: 0.7rem 1rem;
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 4.75rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 150px);
  padding-top: 3rem;
}

.eyebrow,
.section-kicker,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before,
.mini-label::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--coral);
  border-radius: 999px;
}

.hero h1,
.section-intro h2,
.crisis-card h2 {
  margin: 0.9rem 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-lede,
.section-copy {
  max-width: 62ch;
  color: var(--text-soft);
  font-size: 1.08rem;
  margin-top: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  box-shadow: 0 14px 28px rgba(31, 93, 100, 0.24);
}

.button-secondary {
  border: 1px solid rgba(17, 50, 59, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--teal-dark);
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-soft);
}

.hero-points li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), #f2ac8d);
  box-shadow: 0 0 0 5px rgba(229, 122, 87, 0.12);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-card {
  background: linear-gradient(180deg, var(--surface-strong), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.45rem;
}

.hero-card-main {
  position: relative;
  overflow: hidden;
  padding: 1.65rem;
}

.hero-card-main::after {
  content: "";
  position: absolute;
  inset: auto -24px -34px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 122, 87, 0.18), transparent 65%);
}

.hero-card-main h2 {
  margin: 0.7rem 0;
  font-family: "Fraunces", serif;
  font-size: 1.8rem;
  line-height: 1.05;
}

.hero-card-main p,
.service-card p,
.provider-card p,
.process-card p,
.booking-card p,
.contact-card p,
.insurance-copy p,
.crisis-card p,
.service-note p {
  color: var(--text-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stat {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 2.15rem;
  line-height: 1;
}

.stat-label {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1rem;
  background: rgba(17, 50, 59, 0.92);
  color: #f3ede3;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.proof-band div {
  padding: 0.9rem 1rem;
  border-right: 1px solid rgba(243, 237, 227, 0.14);
  text-align: center;
  font-weight: 700;
}

.proof-band div:last-child {
  border-right: 0;
}

.split-section,
.referral-layout,
.contact-layout,
.insurance-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.checklist-card,
.referral-card,
.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 243, 235, 0.92));
  border: 1px solid rgba(17, 50, 59, 0.08);
  box-shadow: var(--shadow);
}

.checklist-card ul,
.referral-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.section-intro h2,
.crisis-card h2 {
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.service-grid,
.provider-grid,
.process-grid,
.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.booking-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.provider-card,
.process-card,
.booking-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(17, 50, 59, 0.08);
  box-shadow: var(--shadow);
}

.service-card h3,
.provider-card h3,
.process-card h3,
.booking-card h3,
.referral-card h3 {
  margin: 0.85rem 0 0.7rem;
  font-size: 1.35rem;
}

.service-icon,
.provider-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 50, 59, 0.1), rgba(31, 93, 100, 0.22));
  color: var(--teal-dark);
  font-weight: 800;
}

.service-note {
  max-width: 760px;
  margin-top: 1.15rem;
}

.booking-card small {
  display: block;
  margin-top: 0.85rem;
  color: var(--text-soft);
}

.process-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 800;
}

.insurance-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insurance-chips li {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 50, 59, 0.09);
  box-shadow: 0 10px 22px rgba(17, 50, 59, 0.08);
  font-weight: 700;
}

.crisis-card {
  padding: 1.85rem;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(17, 50, 59, 0.96), rgba(31, 93, 100, 0.88));
  color: #fff9f2;
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.faq-item {
  border: 1px solid rgba(17, 50, 59, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 20px rgba(17, 50, 59, 0.06);
  padding: 1rem 1.2rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}

.contact-line {
  display: inline-flex;
  margin-bottom: 0.5rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.contact-note {
  font-size: 0.95rem;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  align-items: center;
}

.site-footer p {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .referral-layout,
  .contact-layout,
  .insurance-layout {
    grid-template-columns: 1fr;
  }

  .proof-band,
  .service-grid,
  .provider-grid,
  .process-grid,
  .booking-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
    padding-inline: 0.85rem;
  }

  .site-header::before {
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.75rem 0.25rem 0.25rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .brand {
    padding-left: 0.1rem;
  }

  .hero {
    padding-top: 2rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .proof-band,
  .service-grid,
  .provider-grid,
  .process-grid,
  .booking-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(243, 237, 227, 0.14);
  }

  .proof-band div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 3.6rem 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

.provider-link-stack {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}


.service-link,
.back-link {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.page-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.detail-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(17, 50, 59, 0.08);
  box-shadow: var(--shadow);
}

.detail-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.detail-card p,
.detail-card li {
  color: var(--text-soft);
}

.detail-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.cta-card {
  padding: 1.65rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(17, 50, 59, 0.96), rgba(31, 93, 100, 0.88));
  color: #fff9f2;
  box-shadow: var(--shadow);
}

.cta-card p {
  color: rgba(255, 249, 242, 0.82);
}

@media (max-width: 980px) {
  .page-hero,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}


.crisis-card p {
  color: rgba(255, 249, 242, 0.9);
}
