
:root {
  --cream: #f7f1e7;
  --ivory: #fffaf4;
  --linen: #efe5d8;
  --sand: #dbc9b4;
  --gold: #a88450;
  --olive: #2b3a26;
  --olive-soft: #52624b;
  --charcoal: #2a2824;
  --muted: #625b52;
  --line: rgba(63, 54, 44, 0.14);
  --shadow: 0 24px 68px rgba(42, 40, 36, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
}

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

.site {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,255,255,0.80), transparent 30%),
    var(--cream);
}

.wrap {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto;
}

.serif {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--olive);
  margin-bottom: 0.72rem;
}

.gold-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
  margin: 0.75rem 0 1.1rem;
}

.center { text-align: center; }
.center .gold-line { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.5rem;
  background: var(--olive);
  color: var(--ivory);
  border: 1px solid var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
  transition: 0.22s ease;
}

.btn:hover {
  background: transparent;
  color: var(--olive);
}

.btn.light {
  background: var(--ivory);
  color: var(--olive);
  border-color: var(--ivory);
}

.btn.light:hover {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}

.top-strip {
  background: var(--olive);
  color: rgba(255,250,244,0.88);
  text-align: center;
  padding: 0.58rem 1rem;
  font-size: 0.70rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 231, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

nav {
  width: min(1210px, calc(100% - 44px));
  margin: 0 auto;
  padding: 1.05rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.86rem;
  min-width: 260px;
}

.brand-mark {
  width: 38px;
  height: 48px;
  color: var(--olive-soft);
  flex: 0 0 auto;
}

.brand-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: center;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.32rem;
  padding: 0;
  margin: 0;
  font-size: 0.70rem;
  letter-spacing: 0.135em;
  text-transform: uppercase;
  font-weight: 800;
}

.menu a { color: var(--muted); }
.menu a:hover, .menu a.active { color: var(--olive); }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 4.75rem;
  padding: 5.8rem 0;
}

.hero h1 {
  font-size: clamp(3.2rem, 5.9vw, 6.2rem);
  color: var(--olive);
  margin: 0 0 1.15rem;
}

.hero .lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 575px;
  margin: 0 0 1.5rem;
}

.hero-support {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255,250,244,0.72);
  padding: 0.56rem 0.75rem;
  color: var(--muted);
  font-size: 0.81rem;
  font-weight: 700;
}

.hero-visual, .office-image, .grounding-image, .consult-image {
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 2px;
}

.hero-visual {
  min-height: 600px;
  background:
    linear-gradient(130deg, rgba(255,250,244,0.54), rgba(255,250,244,0.08)),
    url('assets/hero.png');
}

.office-image {
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(255,250,244,0.36), rgba(255,250,244,0.08)),
    url('assets/bookshelf.png');
}

.grounding-image {
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(255,250,244,0.34), rgba(255,250,244,0.08)),
    url('assets/vignette.png');
}

.consult-image {
  min-height: 430px;
  background:
    linear-gradient(135deg, rgba(255,250,244,0.34), rgba(255,250,244,0.08)),
    url('assets/candle.png');
}

.hero-visual::before,
.office-image::before,
.grounding-image::before,
.consult-image::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(168,131,78,0.30);
}

.hero-card {
  position: absolute;
  left: 32px;
  bottom: 32px;
  width: min(420px, calc(100% - 64px));
  background: rgba(255,250,244,0.90);
  border: 1px solid rgba(168,131,78,0.22);
  padding: 1.35rem;
  backdrop-filter: blur(10px);
}

.hero-card p {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--olive);
  font-size: 1.42rem;
  line-height: 1.22;
  margin: 0;
}

section {
  padding: 5.8rem 0;
  border-top: 1px solid var(--line);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.15rem, 3.8vw, 4.1rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--olive);
  margin: 0;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 1.48rem;
  line-height: 1.16;
  color: var(--olive);
  margin: 0 0 0.7rem;
}

.sub {
  color: var(--muted);
  max-width: 640px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  background: transparent;
  border: 0;
  margin-top: 3rem;
}

.market-card {
  background: var(--ivory);
  padding: 1.85rem;
  min-height: 168px;
}

.market-card p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.28;
  color: var(--charcoal);
  margin: 0;
}

.market-card small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.67rem;
  margin-bottom: 0.7rem;
}

.split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 4.75rem;
  align-items: center;
}

.split p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  color: var(--charcoal);
}

.check {
  width: 18px;
  height: 18px;
  color: var(--gold);
  margin-top: 4px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255,250,244,0.84);
  border: 1px solid var(--line);
  padding: 1.5rem;
  min-height: 225px;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.94rem;
}

.dark {
  background:
    radial-gradient(circle at 8% 15%, rgba(255,255,255,0.07), transparent 25%),
    var(--olive);
  color: var(--ivory);
}

.dark h2, .dark h3 { color: var(--ivory); }
.dark p { color: rgba(255,250,244,0.78); }
.dark .eyebrow { color: #d6bd89; }
.dark .feature-list li { color: var(--ivory); }

.quote-box {
  border: 1px solid rgba(255,250,244,0.22);
  background: rgba(255,250,244,0.045);
  padding: 2rem;
}

.quote-box p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.45rem);
  line-height: 1.18;
  margin: 0;
  color: var(--ivory);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3.2rem;
  align-items: stretch;
}

.step {
  background: rgba(255,250,244,0.86);
  border: 1px solid var(--line);
  padding: 2.15rem 1.85rem;
  min-height: 260px;
  height: 100%;
  text-align: center;
  display: grid;
  grid-template-rows: 40px auto 1fr;
  justify-items: center;
  align-items: start;
}

.step span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0 auto;
}

.step h3 {
  font-size: 1.36rem;
  margin: 0.75rem 0 0.65rem;
  text-align: center;
}

.step p {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.55;
  max-width: 20ch;
  text-align: center;
}

.steps-section {
  padding-top: 5rem;
}

.page-hero {
  padding: 6rem 0 4.8rem;
  border-top: 0;
}

.page-hero h1 {
  font-size: clamp(3rem, 5vw, 5.4rem);
  max-width: 880px;
  margin: 0;
  color: var(--olive);
}

.page-hero p {
  max-width: 670px;
  color: var(--muted);
  font-size: 1.06rem;
  margin: 1.1rem 0 0;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  background: transparent;
  border: 0;
}

.info-card {
  background: var(--ivory);
  padding: 1.9rem;
  min-height: 205px;
}

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

.fee-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 2rem;
  max-width: 760px;
}

.fee {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--olive);
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0.5rem 0;
}

.cta {
  background:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,0.08), transparent 24%),
    radial-gradient(circle at 92% 70%, rgba(255,255,255,0.08), transparent 26%),
    var(--olive);
  color: var(--ivory);
  text-align: center;
}

.cta h2 { color: var(--ivory); }
.cta p {
  color: rgba(255,250,244,0.80);
  max-width: 540px;
  margin: 1rem auto 1.45rem;
}

footer {
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.footer-item {
  min-height: 84px;
  padding: 1rem 1.3rem;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-item:last-child { border-right: none; }
.footer-item svg { width: 22px; height: 22px; color: var(--gold); flex: 0 0 auto; }

.copyright {
  padding: 0.9rem 1rem;
  text-align: center;
  color: rgba(99,91,81,0.72);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .menu { display: none; }
  nav { flex-wrap: wrap; }
  nav .btn { width: 100%; }
  .hero, .split { grid-template-columns: 1fr; gap: 2.4rem; }
  .hero { min-height: auto; }
  .hero-visual { min-height: 460px; }
  .marketing-grid, .services-grid, .steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3.2rem;
  align-items: stretch;
}
  .footer-grid { grid-template-columns: 1fr; }
  .footer-item { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .wrap, nav { width: min(100% - 34px, 1160px); }
  .brand-name { font-size: 1.05rem; text-align: center; }
  .top-strip { font-size: 0.62rem; }
  .hero { padding: 3.2rem 0; }
  .hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .hero-visual { min-height: 360px; }
  .hero-card { left: 20px; bottom: 20px; width: calc(100% - 40px); }
  .hero-card p { font-size: 1.18rem; }
  section { padding: 3.65rem 0; }
  .marketing-grid, .services-grid, .steps, .card-grid-2 { grid-template-columns: 1fr; }
  .step p {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.55;
  max-width: 20ch;
  text-align: center;
}
}


.image-panel, .feature-photo, .gallery-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel img, .feature-photo img, .gallery-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-image-wrap {
  display: grid;
  gap: 1rem;
}

.hero-note {
  background: rgba(255,250,244,0.92);
  border: 1px solid rgba(168,131,78,0.22);
  padding: 1.35rem;
}

.hero-note p {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--olive);
  font-size: 1.42rem;
  line-height: 1.22;
  margin: 0;
}

.feature-photo {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
  margin-top: 3rem;
}

.gallery-card {
  padding: 0;
}

.gallery-caption {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 1000px) {
  .gallery-grid { grid-template-columns: 1fr; }
}


/* Spacing polish */
.market-card,
.service-card,
.info-card,
.step,
.fee-card {
  box-shadow: 0 14px 38px rgba(42, 40, 36, 0.045);
}

.marketing-grid,
.services-grid,
.card-grid-2,
.steps {
  border: 0;
}

.market-card,
.service-card,
.info-card {
  border: 1px solid var(--line);
}

.split + .split {
  margin-top: 2rem;
}

.hero-support {
  margin-top: 1.6rem;
}

.feature-list {
  margin-top: 1.65rem;
}

@media (max-width: 1000px) {
  .hero,
  .split {
    gap: 3rem;
  }
}


/* Consultation page image sizing */
.consult-photo-section {
  padding: 3.5rem 0 2.5rem;
}

.consult-photo-wrap {
  max-width: 760px;
}

.consult-photo {
  max-width: 680px;
  margin: 0 auto;
}

.consult-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 640px) {
  .consult-photo-section {
    padding: 2.6rem 0 1.8rem;
  }

  .consult-photo img {
    max-height: 380px;
  }
}


/* Copy and spacing polish */
.approach-copy-spaced p,
.split p {
  margin-bottom: 1.25rem;
}

.approach-copy-spaced .feature-list,
.split .feature-list {
  margin-top: 1.9rem;
}

.dark .sub {
  max-width: 720px;
  line-height: 1.68;
  margin-top: 1.35rem;
}

.fee-card .feature-list {
  margin-top: 1.85rem;
  margin-bottom: 1.85rem;
}

.fee-card .btn {
  margin-top: 0.65rem;
}

.fee-card p {
  line-height: 1.68;
}

.page-hero p {
  line-height: 1.68;
}


/* Client portal note */
.portal-note {
  max-width: 720px;
  margin: 3.2rem auto 0;
  padding: 1.65rem 1.85rem;
  background: rgba(255,250,244,0.86);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(42, 40, 36, 0.045);
  text-align: center;
}

.portal-note h3 {
  margin-bottom: 0.65rem;
}

.portal-note p {
  color: var(--muted);
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.68;
}


/* Final approach section polish */
.approach-split {
  align-items: start;
}

.approach-copy-spaced {
  padding-top: 0.35rem;
}

.approach-copy-spaced h2 {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

.approach-copy-spaced p {
  margin-bottom: 2.1rem;
  max-width: 620px;
}

.approach-copy-spaced .feature-list {
  margin-top: 2.45rem;
  gap: 1.05rem;
}

.approach-copy-spaced .feature-list li {
  padding-top: 0.25rem;
}


/* Simplified homepage polish */
body:has(.wrap.hero) .hero {
  min-height: 790px;
  padding-top: 6rem;
  padding-bottom: 6.5rem;
}

body:has(.wrap.hero) .hero h1 {
  max-width: 760px;
}

body:has(.wrap.hero) .hero .lead {
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.72;
}


/* Private credential panel */
.credential-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.75rem;
  align-items: start;
  background: rgba(255,250,244,0.72);
  border: 1px solid var(--line);
  padding: 2.4rem;
  box-shadow: 0 14px 38px rgba(42, 40, 36, 0.045);
}

.credential-panel p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 1.1rem;
}

.credential-panel p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .credential-panel {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}


/* Refined homepage hero */
body:has(.wrap.hero) .hero h1 {
  font-size: clamp(2.75rem, 4.7vw, 5rem);
  max-width: 680px;
}

.hero-note {
  display: none;
}


/* Consultation page centered hero */
.consultation-hero-centered {
  text-align: center;
}

.consultation-hero-centered .gold-line {
  margin-left: auto;
  margin-right: auto;
}

.consultation-hero-centered h1,
.consultation-hero-centered p {
  margin-left: auto;
  margin-right: auto;
}


/* Clinical care provider section */
.clinical-care-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4.75rem;
  align-items: start;
  background: rgba(255,250,244,0.72);
  border: 1px solid var(--line);
  padding: 2.5rem;
  box-shadow: 0 14px 38px rgba(42, 40, 36, 0.045);
}

.clinical-care-panel p {
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 1.15rem;
}

.clinical-care-panel p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .clinical-care-panel {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}


/* Client-centered clinical care list */
.clinical-care-list {
  list-style: none;
  padding: 1.1rem 0 0;
  margin: 1.35rem 0 0;
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
}

.clinical-care-list li {
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.35;
}


/* Provider portrait section */
.provider-panel {
  align-items: center;
}

.provider-photo-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.provider-photo-card img {
  display: block;
  width: 100%;
  height: auto;
}

.provider-panel h2 {
  margin-top: 0;
  margin-bottom: 1.15rem;
}


/* Dedicated provider page */
.provider-hero-intro {
  padding-bottom: 2.75rem;
}

.provider-showcase {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 4.5rem;
  align-items: center;
  padding: 1.5rem 0 5.5rem;
}

.provider-portrait-large {
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.provider-portrait-large img {
  width: 100%;
  display: block;
  height: auto;
}

.provider-bio-card {
  background: rgba(255,250,244,0.72);
  border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3.75rem);
  box-shadow: 0 14px 38px rgba(42, 40, 36, 0.045);
}

.provider-bio-card h2 {
  margin: 0 0 1.15rem;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.provider-bio-card p {
  color: var(--muted);
  line-height: 1.78;
  margin: 0 0 1.15rem;
}

.provider-bio-card p:last-child {
  margin-bottom: 0;
}

.provider-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  padding-bottom: 5.5rem;
}

.provider-value-card {
  background: rgba(255,250,244,0.72);
  border: 1px solid var(--line);
  padding: 2rem;
  min-height: 210px;
}

.provider-value-card h3 {
  margin: 0 0 0.75rem;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.provider-value-card p {
  color: var(--muted);
  margin: 0;
}

@media (max-width: 1000px) {
  .provider-showcase,
  .provider-values-grid {
    grid-template-columns: 1fr;
  }

  .provider-showcase {
    gap: 2rem;
  }
}


/* Legal and compliance notices */
.provider-name-nowrap {
  white-space: nowrap;
  font-size: clamp(1.48rem, 2.0vw, 2.1rem) !important;
  letter-spacing: -0.045em;
  line-height: 1.08;
  max-width: 100%;
}

.legal-callout {
  margin-top: 1.25rem;
  margin-bottom: 4.5rem;
  background: rgba(255,250,244,0.74);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.35rem);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2rem;
  align-items: start;
}

.legal-callout.compact {
  margin-top: 0;
}

.legal-callout h3,
.legal-card h2 {
  margin: 0;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.025em;
}

.legal-callout p,
.legal-card p {
  margin: 0;
  color: var(--muted);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  padding-bottom: 5.5rem;
}

.legal-card {
  background: rgba(255,250,244,0.76);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.25rem);
  min-height: 230px;
}

.legal-card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.footer-legal {
  padding: 0.95rem 1rem 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.2rem;
}

.footer-legal a {
  color: var(--olive);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 820px) {
  .legal-callout,
  .legal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .provider-name-nowrap {
  white-space: nowrap;
  font-size: clamp(1.48rem, 2.0vw, 2.1rem) !important;
  letter-spacing: -0.045em;
  line-height: 1.08;
  max-width: 100%;
}
}


/* Revised Fees page layout */
.fees-hero {
  padding-bottom: 26px;
}

.fees-hero h1 {
  max-width: 780px;
}

.fees-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 34px;
  align-items: stretch;
}

.fees-intro-copy {
  background: rgba(255, 250, 244, 0.76);
  border: 1px solid rgba(168, 132, 80, 0.20);
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 18px 45px rgba(58, 48, 38, 0.06);
}

.fees-intro-copy h2 {
  margin: 12px 0 16px;
}

.fees-intro-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.fees-intro-grid .fee-card {
  margin: 0;
  height: 100%;
}

@media (max-width: 860px) {
  .fees-intro-grid {
    grid-template-columns: 1fr;
  }

  .fees-intro-copy {
    padding: 30px;
  }
}


/* Smaller clinician photo layout */
.provider-showcase-small {
  grid-template-columns: minmax(230px, 320px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
  padding-top: 0.5rem;
}

.provider-portrait-small {
  max-width: 300px;
  width: 100%;
  justify-self: center;
  background: var(--ivory);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 26px;
}

.provider-portrait-small img {
  width: 100%;
  display: block;
  height: auto;
}

.provider-showcase-small .provider-bio-card {
  padding: clamp(2rem, 3vw, 3rem);
}

@media (max-width: 1000px) {
  .provider-showcase-small {
    grid-template-columns: 1fr;
  }

  .provider-portrait-small {
    max-width: 260px;
    justify-self: start;
  }
}


/* Clinician page hero polish */
.provider-hero-intro h1 {
  max-width: 820px;
}

.provider-hero-intro p {
  max-width: 720px;
}


/* Concise site refinements */
.provider-bio-card {
  overflow-wrap: normal;
}

.provider-name-nowrap {
  white-space: nowrap;
  font-size: clamp(1.48rem, 2.0vw, 2.1rem) !important;
  letter-spacing: -0.045em;
  line-height: 1.08;
  max-width: 100%;
}

.provider-showcase-small {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(2rem, 3.6vw, 3rem);
}

.provider-showcase-small .provider-bio-card {
  min-width: 0;
}

@media (max-width: 760px) {
  .provider-name-nowrap {
  white-space: nowrap;
  font-size: clamp(1.48rem, 2.0vw, 2.1rem) !important;
  letter-spacing: -0.045em;
  line-height: 1.08;
  max-width: 100%;
}
}


/* Therapy page card grid refinement */
.card-grid-2 .info-card {
  min-height: 165px;
}


/* Clinical background panel */
.clinical-background-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  background: rgba(255,250,244,0.72);
  border: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 14px 38px rgba(42, 40, 36, 0.045);
  margin-bottom: 5.5rem;
}

.clinical-background-panel h2 {
  margin: 0;
  color: var(--olive);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.clinical-background-panel p {
  color: var(--muted);
  line-height: 1.78;
  margin: 0;
}

@media (max-width: 900px) {
  .clinical-background-panel {
    grid-template-columns: 1fr;
  }
}


/* Therapy service cards */
.card-grid-2 {
  align-items: stretch;
}

.card-grid-2 .info-card {
  min-height: 170px;
}


/* Stronger clinical background presentation */
.clinical-background-panel {
  background: linear-gradient(180deg, rgba(255,250,244,0.9) 0%, rgba(250,243,232,0.96) 100%);
  border: 1px solid rgba(168, 132, 80, 0.24);
  border-radius: 28px;
}

.clinical-background-panel p + p {
  margin-top: 1rem;
}














/* Balanced homepage headline spacing */
.hero-title-balanced {
  max-width: 920px;
  font-size: clamp(2.35rem, 4.8vw, 4.9rem) !important;
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

@media (max-width: 860px) {
  .hero-title-balanced {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .lead,
  .hero .lead-secondary,
  .hero-support {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}




/* Smartphone-first mobile buildout */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .top-strip {
    font-size: 0.76rem;
    line-height: 1.35;
    padding: 0.65rem 1rem;
    text-align: center;
  }

  header {
    position: relative;
  }

  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1rem 1.1rem;
  }

  .brand {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .brand-mark {
    width: 36px;
    min-width: 36px;
  }

  .brand-name {
    font-size: 0.9rem;
    line-height: 1.05;
  }

  .menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 0.45rem 0.8rem;
    padding: 0;
    margin: 0;
  }

  .menu li {
    display: flex;
    justify-content: center;
  }

  .menu a {
    font-size: 0.78rem;
    line-height: 1.1;
    padding: 0.25rem 0.1rem;
    white-space: nowrap;
  }

  nav .btn {
    width: 100%;
    max-width: 310px;
    text-align: center;
    justify-content: center;
    padding: 0.82rem 1rem;
  }

  .wrap {
    width: min(100% - 1.5rem, var(--max));
  }

  .hero,
  .split,
  .approach-split,
  .fees-intro-grid,
  .provider-showcase,
  .provider-showcase-small,
  .clinical-background-panel,
  .footer-grid,
  .legal-grid,
  .card-grid-2,
  .steps {
    display: grid;
    grid-template-columns: 1fr !important;
  }

  .hero {
    gap: 2rem;
    padding: 2.75rem 0 3.5rem;
    text-align: center;
  }

  .hero h1,
  .hero-title-balanced,
  .hero-title-smaller,
  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 3.45rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.045em;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-wrap: balance;
  }

  .hero .lead,
  .page-hero p,
  .sub {
    font-size: 1rem;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 34rem;
  }

  .hero-support {
    justify-content: center;
    gap: 0.55rem;
  }

  .pill {
    font-size: 0.82rem;
  }

  .hero-image-wrap {
    margin: 0 auto;
    width: 100%;
  }

  .image-panel,
  .feature-photo,
  .consult-photo {
    max-width: 100%;
    border-radius: 24px;
  }

  .hero-note {
    position: static;
    margin-top: 0.85rem;
    width: 100%;
    box-sizing: border-box;
  }

  .page-hero {
    padding: 3.2rem 0 2.35rem;
    text-align: center;
  }

  .gold-line {
    margin-left: auto;
    margin-right: auto;
  }

  section {
    padding-left: 0;
    padding-right: 0;
  }

  .info-card,
  .fee-card,
  .fees-intro-copy,
  .provider-bio-card,
  .clinical-background-panel,
  .legal-callout,
  .portal-note,
  .legal-card,
  .step {
    padding: 1.45rem;
    border-radius: 22px;
    box-sizing: border-box;
  }

  .card-grid-2,
  .legal-grid,
  .steps {
    gap: 1rem;
  }

  .provider-portrait-small {
    max-width: 230px;
    justify-self: center;
    margin-bottom: 0.5rem;
  }

  .provider-name-nowrap {
    white-space: normal !important;
    font-size: clamp(1.55rem, 7vw, 2.1rem) !important;
    line-height: 1.1;
    text-align: left;
  }

  .clinical-background-panel h2,
  .fees-intro-copy h2,
  .approach-copy-spaced h2,
  .split h2,
  .center h2 {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
    line-height: 1.08;
    text-align: center;
  }

  .clinical-background-panel p,
  .fees-intro-copy p,
  .provider-bio-card p,
  .info-card p,
  .legal-card p,
  .step p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .feature-list {
    gap: 0.7rem;
    padding-left: 0;
  }

  .feature-list li {
    align-items: flex-start;
  }

  .check {
    flex: 0 0 22px;
    margin-top: 0.1rem;
  }

  .fee {
    font-size: clamp(3.25rem, 17vw, 5rem);
    line-height: 1;
  }

  .consult-photo-section {
    padding-top: 0;
  }

  .footer-grid {
    gap: 0.85rem;
  }

  .footer-item {
    justify-content: center;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.65rem;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 1.15rem, var(--max));
  }

  .menu {
    grid-template-columns: repeat(2, auto);
    gap: 0.4rem 0.85rem;
  }

  .menu a {
    font-size: 0.76rem;
  }

  .hero {
    padding-top: 2.35rem;
  }

  .hero h1,
  .hero-title-balanced,
  .hero-title-smaller,
  .page-hero h1 {
    font-size: clamp(1.95rem, 11vw, 3rem) !important;
  }

  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .info-card,
  .fee-card,
  .fees-intro-copy,
  .provider-bio-card,
  .clinical-background-panel,
  .legal-card,
  .step,
  .legal-callout {
    padding: 1.25rem;
  }

  .hero-note p {
    font-size: 0.9rem;
  }
}


/* Smartphone centering and nav order polish */
@media (max-width: 900px) {
  nav {
    width: 100%;
    box-sizing: border-box;
  }

  .menu {
    width: min(100%, 360px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-items: center !important;
    align-items: center !important;
    gap: 0.55rem 0.7rem !important;
  }

  .menu li {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
  }

  .menu a {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }

  .menu li:nth-child(7) {
    grid-column: 1 / -1;
    max-width: 170px;
  }

  .card-grid-2,
  .legal-grid,
  .steps,
  .provider-showcase,
  .provider-showcase-small,
  .fees-intro-grid,
  .clinical-background-panel,
  .split,
  .approach-split,
  .footer-grid {
    justify-items: center !important;
    align-items: center !important;
    width: 100%;
  }

  .info-card,
  .legal-card,
  .step,
  .fee-card,
  .fees-intro-copy,
  .provider-bio-card,
  .clinical-background-panel,
  .legal-callout,
  .portal-note {
    width: 100%;
    max-width: 430px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .feature-photo,
  .image-panel,
  .consult-photo {
    width: 100%;
    max-width: 430px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .provider-portrait-small {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-item {
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 430px) {
  .menu {
    width: min(100%, 330px) !important;
    gap: 0.45rem 0.5rem !important;
  }

  .menu a {
    font-size: 0.74rem !important;
  }
}
