:root {
  --ink: #17323a;
  --ink-soft: #52666b;
  --cream: #f8f5ef;
  --paper: #fffdf9;
  --sage: #819b8a;
  --sage-dark: #557263;
  --sage-soft: #e6ede8;
  --sand: #e8d6bd;
  --terracotta: #b56f50;
  --line: rgba(23, 50, 58, .12);
  --shadow: 0 22px 55px rgba(39, 60, 57, .12);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.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;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 50, 58, .05);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.08);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  letter-spacing: -.02em;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}
.site-nav > a:not(.button) {
  position: relative;
  padding: 12px 0;
}
.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 2px;
  background: var(--terracotta);
  transition: right .2s ease;
}
.site-nav > a:hover::after,
.site-nav > a.active::after { right: 0; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  border-radius: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(23, 50, 58, .16); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.button-light { background: white; border-color: white; color: var(--ink); }
.button-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,.52); }
.text-link { display: inline-flex; gap: 8px; align-items: center; font-weight: 700; color: var(--ink); }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 96px;
  background:
    radial-gradient(circle at 82% 12%, rgba(232, 214, 189, .6), transparent 30%),
    linear-gradient(180deg, var(--paper), #f6f2ea);
}
.hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  left: -180px;
  bottom: -170px;
  border-radius: 50%;
  border: 1px solid rgba(85,114,99,.15);
  box-shadow: 0 0 0 70px rgba(85,114,99,.04), 0 0 0 140px rgba(85,114,99,.025);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: 64px;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow.light { color: #e8f1eb; }
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; letter-spacing: -.035em; }
h1 { max-width: 720px; font-size: clamp(52px, 7vw, 86px); font-weight: 700; }
h1 em { color: var(--terracotta); font-style: italic; font-weight: 600; }
h2 { font-size: clamp(38px, 5vw, 60px); }
h3 { font-size: 21px; }
.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.6;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.provider-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 600px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.provider-note p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.provider-note strong { color: var(--ink); }
.provider-dot { width: 10px; height: 10px; margin-top: 7px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 5px var(--sage-soft); flex: 0 0 auto; }
.hero-visual { position: relative; min-height: 600px; }
.hero-photo {
  position: absolute;
  inset: 0 26px 34px 0;
  border-radius: 180px 28px 180px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(23,50,58,.15)),
    url("assets/images/provider-introduction-poster.jpg") center/cover no-repeat,
    linear-gradient(135deg, #dce7df, #d8c0a4);
  box-shadow: var(--shadow);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.4);
}
.floating-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(330px, 82%);
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.floating-card strong { display: block; margin: 7px 0; font-family: "Playfair Display", Georgia, serif; font-size: 23px; line-height: 1.18; }
.floating-card p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.floating-label { color: var(--terracotta); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

.trust-strip { background: var(--ink); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 24px 26px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid > div:first-child { padding-left: 0; }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 3px; font-size: 14px; }
.trust-grid span { color: rgba(255,255,255,.68); font-size: 12px; }

.section { padding: 110px 0; }
.section-soft { background: var(--cream); }
.split-grid, .insurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-copy p, .section-heading p { color: var(--ink-soft); font-size: 18px; }
.section-copy p { max-width: 650px; }
.section-copy .text-link { margin-top: 10px; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.care-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.care-card-top {
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: white;
  background:
    linear-gradient(130deg, rgba(23,50,58,.88), rgba(85,114,99,.62)),
    linear-gradient(135deg, #476758, #b8a288);
}
.care-card-top span { max-width: 390px; font-family: "Playfair Display", Georgia, serif; font-size: 34px; line-height: 1.1; }
.care-card-body { padding: 28px; }
.care-card-body > p { margin-top: 0; color: var(--ink-soft); }
.care-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.care-points span { padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; font-size: 13px; font-weight: 600; }

.condition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.condition-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.condition-card:hover { transform: translateY(-5px); background: white; box-shadow: 0 18px 35px rgba(23,50,58,.09); }
.condition-card > span { display: block; margin-bottom: 44px; color: var(--terracotta); font-size: 11px; font-weight: 700; letter-spacing: .15em; }
.condition-card strong { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 24px; }
.condition-card p { margin: 10px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

.insurance-section { background: white; }
.insurance-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.insurance-logos span {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  text-align: center;
  font-weight: 700;
}
.insurance-logos span:last-child { grid-column: 1 / -1; }
.small-note { font-size: 14px !important; }

.purpose-section { padding-top: 60px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 30px; border-top: 1px solid var(--line); }
.value-card > span { color: var(--terracotta); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.value-card h3 { margin-top: 28px; font-family: "Playfair Display", Georgia, serif; font-size: 28px; }
.value-card p { margin-bottom: 0; color: var(--ink-soft); }

.cta-section { padding: 0 0 100px; }
.cta-card {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 40px;
  padding: 54px;
  border-radius: 34px;
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,.12), transparent 26%),
    linear-gradient(135deg, #17323a, #31544e);
  box-shadow: var(--shadow);
}
.cta-card h2 { font-size: clamp(36px, 5vw, 58px); }
.cta-card p { color: rgba(255,255,255,.72); font-size: 17px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }

.site-footer { padding: 70px 0 28px; background: #10272e; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr .8fr; gap: 48px; }
.footer-grid h3 { margin-bottom: 16px; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid a, .footer-grid p, .footer-grid span { color: rgba(255,255,255,.68); font-size: 13px; }
.footer-grid a:hover { color: white; }
.brand-footer .brand-mark { background: white; color: var(--ink); }
.brand-footer .brand-copy small { color: rgba(255,255,255,.6); }
.footer-brand > p { max-width: 300px; margin-top: 22px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: 11px; }

.page-hero { padding: 78px 0 80px; background: var(--cream); }
.page-hero .page-hero-inner { max-width: 850px; }
.page-hero h1 { font-size: clamp(48px, 7vw, 78px); }
.page-hero p { max-width: 700px; margin-top: 22px; color: var(--ink-soft); font-size: 20px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { padding: 36px; border: 1px solid var(--line); border-radius: 22px; background: white; }
.service-card .service-number { color: var(--terracotta); font-size: 11px; font-weight: 700; letter-spacing: .16em; }
.service-card h2 { margin-top: 22px; font-size: 38px; }
.service-card p { color: var(--ink-soft); }
.service-card ul { margin: 22px 0 0; padding-left: 20px; color: var(--ink-soft); }
.service-card li + li { margin-top: 8px; }
.content-band { padding: 90px 0; background: var(--ink); color: white; }
.content-band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.content-band p { color: rgba(255,255,255,.7); }
.simple-list { display: grid; gap: 10px; margin-top: 24px; }
.simple-list span { display: block; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); }

.profile-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.profile-placeholder {
  min-height: 510px;
  border-radius: 160px 26px 160px 26px;
  background: linear-gradient(145deg, #d9e4dd, #dec8ad);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.profile-placeholder::before { content: "LC"; font-family: "Playfair Display", Georgia, serif; font-size: 130px; color: rgba(23,50,58,.16); }
.profile-copy blockquote { margin: 28px 0; padding: 0 0 0 24px; border-left: 3px solid var(--terracotta); font-family: "Playfair Display", Georgia, serif; font-size: 25px; line-height: 1.45; }
.profile-copy p { color: var(--ink-soft); }
.office-manager { margin-top: 60px; padding: 38px; border-radius: 22px; background: var(--cream); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: stretch; }
.contact-stack { display: grid; gap: 14px; }
.contact-card { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.contact-card span { display: block; margin-bottom: 6px; color: var(--terracotta); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-card strong, .contact-card a { font-size: 20px; }
.map-wrap { overflow: hidden; min-height: 520px; border-radius: 24px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }
.note-box { margin-top: 18px; padding: 18px 20px; border-left: 3px solid var(--sage); background: var(--sage-soft); color: var(--ink-soft); }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; }
}

@media (max-width: 1080px) {
  .site-nav { gap: 16px; font-size: 13px; }
  .site-nav .button { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .hero-visual { min-height: 520px; }
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .nav-wrap { min-height: 72px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    min-height: calc(100vh - 72px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px 24px 40px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav > a:not(.button) { padding: 18px 4px; border-bottom: 1px solid var(--line); font-size: 18px; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { display: inline-flex; margin-top: 24px; }
  .hero { padding-top: 52px; }
  .hero-grid, .split-grid, .insurance-grid, .content-band-grid, .profile-grid, .contact-grid, .cta-card { grid-template-columns: 1fr; }
  .hero-visual { min-height: 480px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-grid > div:first-child { padding-left: 26px; }
  .section { padding: 82px 0; }
  .split-grid, .insurance-grid, .content-band-grid, .profile-grid, .contact-grid { gap: 44px; }
  .value-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-copy strong { font-size: 16px; }
  .brand-mark { width: 42px; height: 42px; }
  .hero { padding-bottom: 72px; }
  h1 { font-size: clamp(46px, 14vw, 66px); }
  h2 { font-size: 38px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .hero-visual { min-height: 400px; }
  .hero-photo { inset: 0 8px 34px 0; border-radius: 110px 22px 110px 22px; }
  .floating-card { width: 88%; padding: 18px; }
  .floating-card strong { font-size: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding-left: 0 !important; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .condition-grid { grid-template-columns: 1fr; }
  .care-points, .insurance-logos { grid-template-columns: 1fr; }
  .insurance-logos span:last-child { grid-column: auto; }
  .cta-card { padding: 30px 24px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; }
  .profile-placeholder { min-height: 390px; }
}