@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap');

:root {
  --ink: #1f3033;
  --ink-soft: #405256;
  --muted: #647477;
  --paper: #fbf9f4;
  --cream: #f2eee5;
  --mist: #e7efec;
  --sage: #70918a;
  --sage-dark: #456760;
  --deep: #29453f;
  --peach: #ddad8f;
  --rust: #a66a4e;
  --white: #ffffff;
  --line: #d9e0dc;
  --shadow: 0 24px 70px rgba(32, 56, 53, 0.10);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

a { color: inherit; }

.container {
  width: min(calc(100% - 42px), var(--max));
  margin: 0 auto;
}

.top-note {
  padding: 8px 18px;
  text-align: center;
  background: var(--deep);
  color: rgba(255,255,255,.9);
  font-size: .74rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,249,244,.95);
  border-bottom: 1px solid rgba(217,224,220,.86);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.brand-name, .brand-subtitle { display: block; line-height: 1.2; }
.brand-name { font-weight: 700; font-size: .98rem; }
.brand-subtitle { margin-top: 4px; font-size: .72rem; color: var(--muted); }

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .88rem;
}

.site-nav a:hover { color: var(--deep); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--deep);
  color: white;
  font-size: .84rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 9px 13px;
  font: inherit;
  cursor: pointer;
}

h1, h2, h3 {
  margin-top: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  letter-spacing: -.035em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(3rem, 6vw, 5.2rem); margin-bottom: 22px; }
h2 { font-size: clamp(2.05rem, 4vw, 3.45rem); margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 8px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.muted-copy { color: var(--muted); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
  background: linear-gradient(180deg, #fbf9f4 0%, #f0f4f0 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}

.hero-text {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .88rem;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button-primary {
  background: var(--deep);
  color: white;
  box-shadow: 0 12px 24px rgba(41,69,63,.20);
}

.button-primary:hover { background: #1e3934; }

.button-quiet {
  background: rgba(255,255,255,.72);
  border-color: var(--line);
}

.button-light {
  background: white;
  color: var(--deep);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  color: var(--muted);
  font-size: .83rem;
}

.hero-meta span + span::before {
  content: "•";
  margin-right: 16px;
  color: var(--sage);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: .45;
}

.orb-one { width: 420px; height: 420px; right: -120px; top: -100px; background: rgba(221,173,143,.24); }
.orb-two { width: 240px; height: 240px; left: -100px; bottom: -120px; background: rgba(112,145,138,.20); }

.hero-art {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
}

.art-frame {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 47% 53% 46% 54% / 39% 37% 63% 61%;
  background: #dfe9e2;
  box-shadow: var(--shadow);
  border: 12px solid rgba(255,255,255,.75);
}

.art-sun {
  position: absolute;
  width: 170px; height: 170px;
  top: 80px; right: 62px;
  border-radius: 50%;
  background: #e8c9a8;
}

.art-horizon {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -5%;
  height: 47%;
  background: #9eb8ac;
  border-radius: 50% 50% 0 0 / 20% 20% 0 0;
  transform: rotate(-5deg);
}

.art-shape {
  position: absolute;
  border-radius: 52% 48% 43% 57% / 58% 43% 57% 42%;
  background: var(--sage-dark);
}

.art-shape-one { width: 135px; height: 270px; left: 48px; bottom: 84px; transform: rotate(22deg); }
.art-shape-two { width: 88px; height: 220px; left: 140px; bottom: 68px; transform: rotate(-12deg); background: #7d9e92; }

.art-line {
  position: absolute;
  height: 180px;
  width: 2px;
  background: rgba(255,255,255,.75);
  bottom: 64px;
  transform-origin: bottom;
}

.line-one { left: 245px; transform: rotate(25deg); }
.line-two { left: 300px; transform: rotate(11deg); }

.art-card {
  position: absolute;
  z-index: 3;
  left: 32px;
  top: 34px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.90);
  box-shadow: 0 15px 34px rgba(36,58,54,.13);
}

.art-card-label {
  display: block;
  margin-bottom: 5px;
  color: var(--sage-dark);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.art-card strong {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: .95rem;
}

.intro-strip {
  padding: 62px 0;
  background: var(--deep);
  color: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}

.intro-statement {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.intro-statement .number {
  color: #b6cbc3;
  font-size: .8rem;
  letter-spacing: .12em;
}

.intro-statement h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
}

.intro-grid > p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: 1rem;
}

.section { padding: 104px 0; }

.about-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 92px;
}

.about-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy .lead {
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.signature {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
  color: var(--deep);
  font-size: .83rem;
  font-weight: 700;
}

.signature-line {
  width: 55px;
  height: 1px;
  background: var(--sage);
}

.support-section {
  background: var(--cream);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 40px;
}

.split-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(69,103,96,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.60);
}

.support-card.featured {
  background: var(--deep);
  color: white;
  border-color: transparent;
}

.support-card.featured h3 { color: white; }
.support-card.featured p { color: rgba(255,255,255,.74); }

.support-card.wide {
  grid-column: 1 / -1;
  min-height: 210px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: start;
  background: white;
}

.support-number {
  color: var(--sage-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.support-card.featured .support-number { color: #bad0c8; }

.support-card p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
}

.arrow {
  position: absolute;
  right: 23px;
  bottom: 20px;
  font-size: 1.15rem;
  color: var(--sage-dark);
}

.featured .arrow { color: #bad0c8; }

.approach-intro {
  max-width: 730px;
  margin-bottom: 55px;
}

.approach-intro > p:last-child {
  max-width: 690px;
  color: var(--muted);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.approach-item {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.approach-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.approach-item p {
  margin: 0;
  color: var(--muted);
}

.methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 52px;
}

.methods span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
  font-size: .79rem;
}

.expectations {
  padding-top: 84px;
  background: #edf2ef;
}

.expectations-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  align-items: stretch;
}

.expectations-panel {
  padding: 36px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 14px 34px rgba(37,62,56,.06);
}

.expectations-panel p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--sage-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(69,103,96,.18);
}

.step > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--sage);
  color: var(--deep);
  font-size: .78rem;
  font-weight: 800;
}

.step h3 {
  margin-bottom: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: -.01em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.insurance-section {
  background: var(--paper);
}

.insurance-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 75px;
  align-items: center;
}

.insurance-card {
  padding: 12px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.payer-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  align-items: center;
  padding: 18px 0;
}

.payer-row + .payer-row { border-top: 1px solid var(--line); }

.payer-row span {
  color: var(--sage-dark);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.payer-row strong {
  font-size: .9rem;
  font-weight: 600;
}

.provider-banner {
  padding: 70px 0;
  background: var(--rust);
  color: white;
}

.provider-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.provider-inner .eyebrow { color: rgba(255,255,255,.72); }
.provider-inner h2 { color: white; margin-bottom: 9px; }
.provider-inner p:not(.eyebrow) { max-width: 680px; margin: 0; color: rgba(255,255,255,.80); }

.credentials {
  background: var(--deep);
  color: white;
}

.credential-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 75px;
  align-items: start;
}

.credentials h2 { color: white; }

.credential-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.credential-list > div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.credential-list strong, .credential-list span { display: block; }
.credential-list strong { font-size: .94rem; }
.credential-list span { margin-top: 6px; color: rgba(255,255,255,.68); font-size: .8rem; }

.final-section {
  background: var(--mist);
}

.final-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
}

.contact-card {
  padding: 31px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-kicker {
  color: var(--sage-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 12px 0 4px;
  font-size: 1.7rem;
}

.contact-card > p {
  margin: 0;
  color: var(--muted);
}

.full-width { width: 100%; margin-top: 22px; }

.site-footer {
  padding: 32px 0 42px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-brand { font-weight: 700; }
.footer-subtitle { color: var(--muted); font-size: .78rem; margin-top: 3px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a { color: var(--muted); text-decoration: none; font-size: .82rem; }

.footer-wrap > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: .74rem;
}

@media (max-width: 880px) {
  .container { width: min(calc(100% - 30px), var(--max)); }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .site-nav, .header-cta { display: none; }

  .menu-toggle { display: inline-flex; }

  .site-nav.open {
    position: absolute;
    top: calc(100% + 1px);
    left: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.open a { padding: 11px 12px; }

  .hero-grid,
  .intro-grid,
  .about-grid,
  .split-heading,
  .expectations-grid,
  .insurance-grid,
  .credential-wrap,
  .final-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero { padding-top: 68px; }
  .hero-art { min-height: 390px; }

  .support-grid { grid-template-columns: 1fr; }
  .support-card.wide { grid-column: auto; display: block; min-height: 250px; }
  .approach-grid { grid-template-columns: 1fr; gap: 26px; }
  .credential-list { grid-template-columns: 1fr; }
  .provider-inner { flex-direction: column; align-items: flex-start; }
  .footer-wrap { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-wrap > p { grid-column: auto; }
}

@media (max-width: 560px) {
  h1 { font-size: 2.65rem; }
  h2 { font-size: 2.0rem; }
  .hero-art { min-height: 330px; }
  .art-frame { width: 85%; }
  .section { padding: 78px 0; }
  .intro-strip { padding: 48px 0; }
  .hero-meta { display: grid; gap: 5px; }
  .hero-meta span + span::before { display: none; }
}


/* V3 refinements */
.header-actions{display:flex;align-items:center;gap:10px}
.header-referral{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:10px 16px;border-radius:999px;text-decoration:none;border:1px solid var(--line);color:var(--deep);background:rgba(255,255,255,.72);font-size:.84rem;font-weight:700}
.hero-photo{position:relative;width:min(100%,500px);margin:0;aspect-ratio:4/5;overflow:hidden;border-radius:38% 62% 44% 56% / 34% 34% 66% 66%;background:#dce5e0;box-shadow:var(--shadow);border:10px solid rgba(255,255,255,.86);transform:rotate(1deg)}
.hero-photo img{width:100%;height:100%;display:block;object-fit:cover;object-position:50% 42%;filter:saturate(.82) contrast(.96)}
.hero-photo figcaption{position:absolute;left:20px;right:20px;bottom:20px;margin:0;padding:12px 14px;border-radius:13px;background:rgba(31,48,51,.78);color:white;font-size:.78rem;backdrop-filter:blur(8px)}
.hero-art{min-height:510px}
.support-card{min-height:250px}
.support-a{background:rgba(255,255,255,.9)}
.support-b{background:var(--mist)}
.support-grid{grid-template-columns:repeat(2,1fr)}
.support-card h3{max-width:500px}
.support-card.wide{grid-column:auto;display:block;min-height:250px}
.payer-row{grid-template-columns:165px 1fr}
.payer-row span{color:var(--muted);font-size:.83rem;font-weight:400;letter-spacing:normal}
@media (max-width:880px){
  .header-actions{position:absolute;top:calc(100% + 1px);left:15px;right:15px;display:none;padding:12px;background:white;border:1px solid var(--line);border-radius:16px;box-shadow:var(--shadow)}
  .header-actions.mobile-open{display:flex;flex-direction:column;align-items:stretch}
  .header-actions a{width:100%}
  .hero-art{min-height:390px}
  .hero-photo{width:min(100%,430px)}
  .support-grid{grid-template-columns:1fr}
  .payer-row{grid-template-columns:1fr;gap:4px}
}
@media (max-width:560px){.hero-art{min-height:330px}.hero-photo{width:88%;border-width:7px}}
