/* Version 20260731a */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Lora:wght@400;500;600&display=swap");

:root {
  --font-sans: "DM Sans";
  --font-serif: "Lora";
  --ink: #18312d;
  --ink-soft: #48605b;
  --paper: #f7f4ed;
  --cream: #ebe4d7;
  --white: #fffdf9;
  --sage: #a9bbaa;
  --sage-light: #dce4d9;
  --teal: #2f5f58;
  --terracotta: #bd6f52;
  --line: rgba(24, 49, 45, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.94);
  backdrop-filter: blur(12px);
}

.availability-banner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--teal);
  color: var(--white);
}

.availability-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.availability-inner a {
  flex: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.wordmark-name {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}

.wordmark-title {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 30px);
  font-size: 14px;
}

.desktop-nav a {
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"] {
  border-color: var(--terracotta);
}

.header-cta {
  border: 1px solid var(--ink);
  padding: 9px 19px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 9vw, 128px) 0 92px;
}

.hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -210px;
  top: -220px;
  border-radius: 50%;
  background: rgba(169, 187, 170, 0.32);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.72fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.eyebrow,
.card-eyebrow {
  margin: 0 0 17px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-serif), Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(40px, 4.7vw, 60px);
  line-height: 1.08;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(31px, 3.5vw, 46px);
  line-height: 1.15;
}

h3 {
  font-size: 24px;
  line-height: 1.25;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 23px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
}

.button-quiet {
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.56);
}

.hero-note {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.portrait-wrap {
  position: relative;
  padding: 22px 0 0 22px;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  border-radius: 180px 180px 22px 22px;
  background: var(--sage-light);
  box-shadow: 24px 24px 0 var(--cream);
}

.portrait {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  object-position: center 20%;
}

.portrait-caption {
  position: absolute;
  right: -20px;
  bottom: -26px;
  width: min(315px, 90%);
  padding: 18px 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(24, 49, 45, 0.12);
}

.portrait-caption strong,
.portrait-caption span {
  display: block;
}

.portrait-caption strong {
  font-family: var(--font-serif), Georgia, serif;
  font-size: 18px;
}

.portrait-caption span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 12px;
}

.services-section,
.location-section {
  padding: 105px 0;
}

.intro-section {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 55px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.intro-bio {
  max-width: none;
  margin: 0 auto;
}

.intro-bio h2 {
  margin: 0 0 1.25rem;
}

.intro-bio .prose p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.intro-bio .text-link {
  display: inline-block;
  margin-top: 0.25rem;
}

.prose {
  color: var(--ink-soft);
  max-width: 900px;
}

.prose p {
  margin-bottom: 19px;
}

.text-link {
  display: inline-block;
  border-bottom: 1px solid var(--terracotta);
  color: var(--ink);
  font-weight: 700;
}

.services-section {
  background: var(--sage-light);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading > p {
  margin-bottom: 9px;
  color: var(--ink-soft);
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 525px;
  padding: 0 30px 30px;
  border: 1px solid rgba(24, 49, 45, 0.13);
  background: rgba(255, 253, 249, 0.74);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background: var(--white);
}

.service-number {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.9);
  color: var(--teal);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 16px;
}

.service-image {
  position: relative;
  overflow: hidden;
  height: 190px;
  margin: 0 -30px 29px;
  background: var(--cream);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.92);
  transition: transform 400ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.025);
}

.service-card h3 {
  min-height: 66px;
  margin-bottom: 19px;
}

.service-card > p:not(.card-eyebrow) {
  color: var(--ink-soft);
  font-size: 15px;
}

.audience-tag {
  display: inline-block;
  align-self: flex-start;
  margin-top: 8px;
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.card-link {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 17px;
  font-size: 14px;
  font-weight: 800;
}

.older-adult-callout {
  display: grid;
  grid-template-columns: 150px 1fr 1.2fr auto;
  gap: 30px;
  align-items: center;
  margin-top: 18px;
  padding: 0 32px 0 0;
  background: var(--teal);
  color: var(--white);
}

.older-adult-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  align-self: stretch;
  filter: saturate(0.78) contrast(0.92);
}

.older-adult-callout .card-eyebrow {
  margin-bottom: 5px;
  color: #efd7c6;
}

.older-adult-callout h3,
.older-adult-callout p {
  margin-bottom: 0;
}

.older-adult-callout > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.older-adult-callout .text-link {
  border-color: #efd7c6;
  color: white;
  font-size: 13px;
}

.therapy-strip {
  padding: 90px 0;
  background: var(--ink);
  color: var(--white);
}

.therapy-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1.05fr;
  align-items: start;
  column-gap: clamp(1.5rem, 3vw, 2.5rem);
}

.therapy-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.therapy-heading {
  gap: 0.85rem;
}

.therapy-heading .eyebrow {
  line-height: 1.4;
}

.therapy-heading h2 {
  max-width: 470px;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 1.08;
}

/* Remove default margins so the gap property controls spacing */
.therapy-grid p,
.therapy-grid h2 {
  margin: 0;
}

.therapy-grid h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.15;
}

@media (min-width: 981px) {
  .therapy-heading {
    position: relative;
    top: 0;
    left: -28px;
  }

  .therapy-copy {
    position: relative;
    left: -20px;
    max-width: 390px;
  }
}

.therapy-image {
  width: 85%;
  max-width: 420px;
  margin: 0 auto;
}

.therapy-image img {
  display: block;
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 24px;
}

.therapy-strip .eyebrow {
  color: #e6b59f;
}

.therapy-strip h2 {
  margin-bottom: 0;
}

.therapy-strip p {
  color: rgba(255, 255, 255, 0.77);
}

.button-light {
  margin-top: 9px;
  background: var(--paper);
  color: var(--ink);
}

.therapy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.text-link-light {
  border-color: #e6b59f;
  color: var(--white);
}

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

.location-visual {
  align-self: start;
}

.location-grid > div {
  max-width: 750px;
}

.location-grid p {
  color: var(--ink-soft);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.location-image {
  width: 85%;
  max-width: 420px;
  height: 300px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
}

.location-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-text h2 {
  margin-top: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 13px;
}

.page-hero {
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-hero h1 {
  max-width: 900px;
}

.page-lede {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 21px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 95px;
  align-items: center;
}

.about-portrait {
  width: 100%;
  height: 460px;
  border-radius: 160px 160px 18px 18px;
  object-fit: cover;
  object-position: center 25%;
  box-shadow: 20px 20px 0 var(--sage-light);
}

.content-section {
  padding: 105px 0;
  background: var(--white);
}

.reading-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: clamp(65px, 10vw, 145px);
}

.reading-grid aside {
  position: sticky;
  top: 120px;
  align-self: start;
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.aside-statement,
.large-copy {
  color: var(--ink);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 24px;
  line-height: 1.45;
}

.rich-copy {
  color: var(--ink-soft);
}

.rich-copy p {
  margin-bottom: 22px;
}

.credential-block {
  margin: 45px 0;
  padding: 34px;
  border-left: 3px solid var(--terracotta);
  background: var(--paper);
}

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

.inline-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
  margin-top: 34px;
}

.fine-print {
  margin-top: 48px !important;
  color: var(--ink-soft);
  font-size: 13px;
  font-style: italic;
}

.assessments-hero {
  background: var(--sage-light);
}

.therapy-page-hero {
  background: var(--cream);
}

.therapy-detail {
  scroll-margin-top: 80px;
  padding: 105px 0;
  background: var(--white);
}

.therapy-detail.alternate {
  background: var(--paper);
}

.consultation-detail {
  background: var(--ink);
  color: var(--white);
}

.consultation-detail .eyebrow {
  color: #e6b59f;
}

.consultation-detail .detail-number,
.consultation-detail .audience-line,
.consultation-detail .rich-copy {
  color: rgba(255, 255, 255, 0.74);
}

.consultation-detail .large-copy {
  color: var(--white);
}

.therapy-format {
  padding: 95px 0;
  background: var(--sage-light);
}

.age-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.age-row span {
  border: 1px solid rgba(24, 49, 45, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 253, 249, 0.48);
  font-size: 13px;
  font-weight: 700;
}

.assessment-detail {
  scroll-margin-top: 80px;
  padding: 105px 0;
  background: var(--white);
}

.assessment-detail.alternate {
  background: var(--paper);
}

.assessment-availability {
  max-width: 1000px;
  margin: 0 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}

.older-adult-detail {
  background: var(--ink);
  color: var(--white);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 150px);
}

.detail-number {
  margin: 0;
  color: var(--sage);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 20px;
}

.detail-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-self: start;
}

.detail-heading .detail-number {
  grid-column: 1;
  grid-row: 1;
}

.detail-heading > .eyebrow {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  margin-bottom: 0;
}

.detail-heading h2 {
  grid-column: 1 / -1;
  max-width: 470px;
  margin-top: 18px;
}

.detail-heading .audience-line {
  grid-column: 1 / -1;
}

.therapy-detail .detail-number {
  margin-bottom: 0;
}

.audience-line {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  margin: 35px 0 0;
  padding: 0;
  color: var(--ink);
  list-style: none;
}

.check-list li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 14px 0 0 23px;
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--terracotta);
  content: "•";
}

.older-adult-detail .eyebrow {
  color: #e6b59f;
}

.older-adult-detail .detail-number,
.older-adult-detail .audience-line,
.older-adult-detail .rich-copy {
  color: rgba(255, 255, 255, 0.72);
}

.older-adult-detail .large-copy {
  color: var(--white);
}

.process-section {
  padding: 105px 0;
  background: var(--sage-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.process-grid article {
  min-height: 305px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 25px;
  background: rgba(255, 253, 249, 0.38);
}

.process-grid article > span {
  display: block;
  margin-bottom: 60px;
  color: var(--terracotta);
  font-family: var(--font-serif), Georgia, serif;
}

.process-grid h3 {
  font-size: 21px;
}

.process-grid p {
  color: var(--ink-soft);
  font-size: 14px;
}

.center-actions {
  justify-content: center;
  margin-top: 48px;
}

.centered {
  text-align: center;
}

.simple-page-hero h1 {
  max-width: 760px;
}

.start-grid {
  display: grid;
  gap: 18px;
}

.start-card {
  display: grid;
  grid-template-columns: 85px 0.75fr 1fr;
  gap: 45px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 45px 20px 45px 0;
}

.start-card:last-child {
  border-bottom: 1px solid var(--line);
}

.start-number {
  color: var(--terracotta);
  font-family: var(--font-serif), Georgia, serif;
}

.start-card h2 {
  margin-bottom: 0;
  font-size: 31px;
}

.start-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.start-card-copy {
  grid-column: 3;
}

.start-card-copy p + p {
  margin-top: 16px;
}

.decision-section,
.insurance-section {
  padding: 95px 0;
  background: var(--sage-light);
}

.decision-grid,
.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.decision-grid > div:last-child,
.insurance-grid > div:last-child {
  color: var(--ink-soft);
}

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

.fee-card {
  min-height: 390px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.fee-card.featured {
  background: var(--teal);
  color: var(--white);
}

.fee-card.featured .card-eyebrow {
  color: #efd7c6;
}

.fee-amount {
  margin: 60px 0 30px;
  font-family: var(--font-serif), Georgia, serif;
  font-size: 36px;
  line-height: 1.2;
}

.fee-amount span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fee-card > p:last-child {
  color: var(--ink-soft);
  font-size: 14px;
}

.fee-card.featured > p:last-child {
  color: rgba(255, 255, 255, 0.75);
}

.contact-hero {
  background: var(--sage-light);
}

.contact-intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
  align-items: start;
}

.contact-email {
  display: block;
  width: fit-content;
  margin: 25px 0;
  border-bottom: 1px solid var(--terracotta);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 24px;
}

.form-section {
  padding: 100px 0;
  background: var(--white);
}

.form-heading {
  max-width: 620px;
  margin-bottom: 50px;
}

.form-heading > p:last-child {
  color: var(--ink-soft);
}

.form-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.form-frame iframe {
  width: 100%;
  height: 920px;
  border: 0;
}

.urgent-note {
  padding: 35px 0;
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 14px;
}

.urgent-note .shell {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 60px;
}

.urgent-note strong {
  color: var(--ink);
}

.urgent-note p {
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 70px;
}

.site-footer p {
  margin-bottom: 7px;
}

.site-footer a {
  display: block;
  margin-bottom: 7px;
  text-decoration: underline;
  text-decoration-color: rgba(189, 111, 82, 0.55);
  text-underline-offset: 3px;
}

.footer-name {
  color: var(--ink);
  font-family: var(--font-serif), Georgia, serif;
  font-size: 20px;
}

.footer-label {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 50px;
    width: 230px;
    padding: 15px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 16px 30px rgba(24, 49, 45, 0.15);
  }

  .mobile-menu nav a {
    display: block;
    padding: 9px 10px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.65fr;
    gap: 45px;
  }

  .portrait-frame,
  .portrait {
    min-height: 400px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .therapy-grid {
    grid-template-columns: 0.72fr 1fr;
  }

  .therapy-grid > div:last-child {
    grid-column: 2;
  }

  .older-adult-callout {
    grid-template-columns: 150px 1fr;
  }

  .older-adult-callout > p,
  .older-adult-callout > a {
    grid-column: 2;
  }

  .page-hero-grid {
    grid-template-columns: 1fr 0.45fr;
    gap: 55px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fees-grid {
    grid-template-columns: 1fr;
  }

  .fee-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    min-height: 70px;
    gap: 16px;
  }

  .wordmark-name {
    font-size: 18px;
  }

  .wordmark-title {
    font-size: 9px;
    letter-spacing: 0.02em;
    white-space: normal;
  }

  .hero {
    padding: 66px 0 70px;
  }

  .hero-grid,
  .intro-grid,
  .location-grid,
  .section-heading,
  .therapy-grid,
  .footer-grid,
  .page-hero-grid,
  .reading-grid,
  .detail-grid,
  .decision-grid,
  .insurance-grid,
  .contact-intro {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .therapy-image {
    width: min(100%, 460px);
    height: 280px;
  }

  .therapy-grid > div:last-child {
    grid-column: auto;
  }

  .location-image {
    height: 240px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .portrait-wrap {
    max-width: 440px;
    margin: 20px auto 0;
    padding-left: 0;
  }

  .portrait-caption {
    right: 0;
  }

  .services-section,
  .location-section {
    padding: 75px 0;
  }

  .service-card {
    padding: 0 24px 26px;
  }

  .service-image {
    margin-right: -24px;
    margin-left: -24px;
  }

  .service-card h3 {
    min-height: 0;
  }

  .audience-tag {
    margin-bottom: 28px;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .older-adult-callout {
    grid-template-columns: 1fr;
    padding: 0 24px 28px;
  }

  .older-adult-image {
    width: calc(100% + 48px);
    height: 210px;
    margin-left: -24px;
  }

  .older-adult-callout > p,
  .older-adult-callout > a {
    grid-column: auto;
  }

  .availability-inner {
    min-height: auto;
    flex-direction: column;
    gap: 5px;
    padding: 10px 0 11px;
  }

  .therapy-strip {
    padding: 75px 0;
  }

  .page-hero,
  .content-section,
  .assessment-detail,
  .therapy-detail,
  .therapy-format,
  .process-section,
  .form-section {
    padding: 75px 0;
  }

  .page-hero-grid .about-portrait {
    max-width: 420px;
  }

  .reading-grid aside {
    position: static;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 25px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article {
    min-height: auto;
  }

  .process-grid article > span {
    margin-bottom: 30px;
  }

  .start-card {
    grid-template-columns: 55px 1fr;
    gap: 20px;
  }

  .start-card p {
    grid-column: 2;
  }

  .start-card-copy {
    grid-column: 2;
  }

  .urgent-note .shell {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
