:root {
  --ink: #2f3831;
  --ink-soft: #586159;
  --forest: #566253;
  --forest-deep: #3c473d;
  --sage: #9ca792;
  --sage-pale: #dfe4da;
  --ivory: #faf7f2;
  --paper: #fffdf9;
  --sand: #e8ceb0;
  --line: rgba(75, 88, 76, 0.18);
  --shadow: 0 22px 70px rgba(47, 56, 49, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 108px 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 99px;
  background: var(--paper);
  color: var(--forest-deep);
  font-weight: 700;
}

.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;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(250, 247, 242, 0.9);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(47, 56, 49, 0.06);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest-deep);
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.29em;
  text-transform: uppercase;
}

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

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 160ms ease;
}

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

.site-nav .nav-action {
  padding: 11px 19px;
  border: 1px solid var(--forest);
  border-radius: 99px;
  background: var(--forest);
  color: #fff;
  transition: background 160ms ease, transform 160ms ease;
}

.site-nav .nav-action:hover,
.site-nav .nav-action:focus-visible {
  background: var(--forest-deep);
  color: #fff;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.menu-button span:not(.sr-only) {
  width: 19px;
  height: 1.5px;
  background: var(--forest-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 120px;
}

.hero::before {
  position: absolute;
  inset: 42% 0 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(223, 228, 218, 0), rgba(223, 228, 218, 0.7));
  content: "";
}

.hero-art {
  overflow: hidden;
  border: 1px solid rgba(75, 88, 76, 0.12);
  border-radius: 30px;
  background: #f8f2e9;
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  height: auto;
}

.hero-card {
  position: relative;
  width: min(650px, calc(100% - 56px));
  margin: -54px 54px 0 auto;
  padding: 38px 42px 34px;
  border: 1px solid rgba(75, 88, 76, 0.14);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 18px 55px rgba(47, 56, 49, 0.13);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #dce4d7;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 560px;
  margin-bottom: 15px;
  color: var(--forest-deep);
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 24px;
  color: var(--forest-deep);
  font-size: clamp(2.2rem, 4.2vw, 3.85rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h3 {
  color: var(--forest-deep);
  font-size: 1.55rem;
  line-height: 1.18;
}

.hero-card > p:not(.eyebrow):not(.hero-note) {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--forest);
  color: #fff;
}

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

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--forest-deep);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--forest);
  background: var(--sage-pale);
}

.hero-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 35px;
}

.lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.3vw, 1.72rem);
  line-height: 1.46;
}

.intro-copy p:last-child,
.about-copy p,
.section-heading > p,
.session-copy > p,
.insurance-grid > div > p,
.supervision-card > div > p {
  color: var(--ink-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(55px, 9vw, 125px);
  align-items: center;
}

.portrait-card {
  overflow: hidden;
  border: 1px solid rgba(75, 88, 76, 0.15);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.portrait-card > img {
  width: min(86%, 560px);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: clamp(24px, 4vw, 42px) auto;
  padding: 0;
  background: #faf7f2;
  mix-blend-mode: multiply;
}

.portrait-card > img.laura-headshot {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 0;
  background: #fff;
  object-fit: cover;
  object-position: center 38%;
  mix-blend-mode: normal;
}

.credential-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  background: #f4f1e9;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.credential-strip strong {
  color: var(--forest-deep);
  letter-spacing: 0.08em;
}

.about-copy > p:last-of-type {
  margin-bottom: 35px;
}

.detail-list {
  border-top: 1px solid var(--line);
}

.detail-list > div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.detail-list strong {
  color: var(--forest-deep);
  font-size: 0.95rem;
  font-weight: 650;
}

.support {
  background: #eef0e9;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(42px, 7vw, 100px);
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2 {
  max-width: 750px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 7px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(75, 88, 76, 0.24);
  border-bottom: 1px solid rgba(75, 88, 76, 0.24);
}

.support-card {
  min-height: 285px;
  padding: 32px 27px 28px;
  border-right: 1px solid rgba(75, 88, 76, 0.24);
}

.support-card:last-child {
  border-right: 0;
}

.card-number {
  display: block;
  margin-bottom: 50px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.support-card h3 {
  margin-bottom: 12px;
}

.support-card h3 a {
  text-decoration: none;
}

.support-card h3 a:hover,
.support-card h3 a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.support-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.58;
}

.card-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  color: var(--forest-deep);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.card-link:hover,
.card-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-hero {
  padding: 74px 0 72px;
  background: linear-gradient(145deg, var(--paper), var(--sage-pale));
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.breadcrumb a {
  font-weight: 650;
  text-decoration: none;
}

.service-hero h1 {
  max-width: 850px;
}

.service-hero .lead {
  max-width: 760px;
  margin-bottom: 28px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.service-main h2 {
  margin-top: 58px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.service-main h2:first-child {
  margin-top: 0;
}

.service-main p,
.service-main li {
  color: var(--ink-soft);
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 15px 18px 15px 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
}

.service-list li::before {
  position: absolute;
  top: 24px;
  left: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.service-aside {
  position: sticky;
  top: 108px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(47, 56, 49, 0.08);
}

.service-aside h2 {
  margin-bottom: 14px;
  font-size: 1.65rem;
}

.service-aside p {
  color: var(--ink-soft);
}

.related-links {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.related-links a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--forest-deep);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.related-links a:hover,
.related-links a:focus-visible {
  text-decoration: underline;
}

.service-cta {
  padding: 54px;
  border-radius: 28px;
  background: var(--forest-deep);
  color: #fff;
}

.service-cta h2 {
  margin-top: 0;
  color: #fff;
}

.service-cta p {
  color: #d9dfd7;
}

.support-note {
  max-width: 780px;
  margin: 30px auto 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  text-align: center;
}

.approach {
  position: relative;
  overflow: hidden;
  background: var(--forest-deep);
  color: #eef1eb;
}

.approach::after {
  position: absolute;
  right: -120px;
  bottom: -270px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(232, 206, 176, 0.22);
  border-radius: 50%;
  content: "";
}

.approach-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 135px);
}

.approach h2,
.approach h3 {
  color: #fffdf9;
}

.approach-intro > p:last-child {
  max-width: 480px;
  color: #d9dfd7;
}

.approach-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.approach-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}

.approach-list article > span {
  color: var(--sand);
  font-family: var(--serif);
}

.approach-list h3 {
  margin-bottom: 7px;
}

.approach-list p {
  margin-bottom: 0;
  color: #d9dfd7;
}

.first-session {
  background: var(--paper);
}

.session-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(60px, 10vw, 145px);
  align-items: center;
}

.session-copy > p:last-of-type {
  margin-bottom: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest-deep);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.expect-card {
  position: relative;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 26px 26px 90px 26px;
  background: var(--ivory);
}

.expect-card::before {
  position: absolute;
  top: -17px;
  right: 34px;
  width: 34px;
  height: 34px;
  border: 7px solid var(--ivory);
  border-radius: 50%;
  background: var(--sand);
  content: "";
}

.expect-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.expect-card li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.expect-card li:last-child {
  border-bottom: 0;
}

.expect-card li::before {
  position: absolute;
  top: 25px;
  left: 2px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.insurance {
  border-top: 1px solid var(--line);
}

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

.insurance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insurance-list li {
  display: flex;
  min-height: 60px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 249, 0.7);
  color: var(--forest-deep);
  font-size: 0.91rem;
  font-weight: 650;
}

.supervision {
  padding-top: 0;
}

.supervision-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(45px, 8vw, 105px);
  align-items: center;
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--sage-pale);
}

.supervision-card h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.supervision-card p {
  margin-bottom: 24px;
}

.contact {
  padding-top: 36px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(55px, 9vw, 125px);
  align-items: center;
  padding: clamp(48px, 7vw, 84px);
  border-radius: 34px;
  background: var(--forest-deep);
  color: #fff;
  box-shadow: var(--shadow);
}

.inquiry-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 105px);
  align-items: start;
  margin-top: 28px;
  padding: clamp(42px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(47, 56, 49, 0.08);
}

.inquiry-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.8vw, 3.4rem);
}

.inquiry-intro > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

.contact-form {
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
  color: var(--forest-deep);
  font-size: 0.86rem;
  font-weight: 700;
}

.field small {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 500;
}

.field-full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(75, 88, 76, 0.3);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(86, 98, 83, 0.14);
}

.form-privacy {
  margin: 18px 0;
  color: var(--ink-soft);
  font-size: 0.79rem;
  line-height: 1.55;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
}

.form-status {
  flex: 1 1 220px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.contact-card h2 {
  max-width: 680px;
  color: #fffdf9;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #d9dfd7;
}

.button-light {
  background: #fffdf9;
  color: var(--forest-deep);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--sand);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details > div {
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: #bfc9bc;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 4px;
}

.site-footer {
  padding: 34px 0 28px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  color: var(--forest-deep);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

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

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-legal {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 40px;
  padding-top: 24px;
}

.footer-legal p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.6;
}

:focus-visible {
  outline: 3px solid #d6a96f;
  outline-offset: 3px;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

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

  .support-card:nth-child(2) {
    border-right: 0;
  }

  .support-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(75, 88, 76, 0.24);
  }

  .approach-grid,
  .insurance-grid {
    gap: 70px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .section {
    padding: 82px 0;
  }

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

  .menu-button {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    border-bottom: 1px solid transparent;
    background: rgba(250, 247, 242, 0.98);
    opacity: 0;
    visibility: hidden;
    transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100vh - 70px);
    padding: 12px 24px 28px;
    border-bottom-color: var(--line);
    box-shadow: 0 28px 50px rgba(47, 56, 49, 0.12);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav .nav-action {
    justify-self: start;
    margin-top: 16px;
    padding: 13px 20px;
    border-bottom: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .hero {
    padding-top: 20px;
  }

  .hero-art {
    border-radius: 22px;
  }

  .hero-card {
    width: calc(100% - 28px);
    margin: -24px auto 0;
    padding: 34px;
  }

  .intro-grid,
  .about-grid,
  .section-heading,
  .approach-grid,
  .session-grid,
  .insurance-grid,
  .supervision-card,
  .contact-card,
  .inquiry-card,
  .service-layout,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .about-grid,
  .section-heading,
  .approach-grid,
  .session-grid,
  .insurance-grid,
  .supervision-card,
  .contact-card {
    gap: 44px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .portrait-card {
    width: min(100%, 560px);
    margin-inline: auto;
  }

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

  .approach-intro > p:last-child {
    max-width: 650px;
  }

  .expect-card {
    width: min(100%, 540px);
  }

  .supervision-card {
    padding: 42px;
  }

  .contact-card {
    padding: 48px 42px;
  }

  .inquiry-card {
    gap: 38px;
    padding: 44px 42px;
  }

  .footer-legal {
    gap: 12px;
  }

  .service-aside {
    position: static;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 74px;
  }

  .section {
    padding: 68px 0;
  }

  .service-hero {
    padding: 48px 0 54px;
  }

  .service-cta {
    padding: 34px 25px;
    border-radius: 24px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .hero {
    padding-bottom: 86px;
  }

  .hero-art {
    aspect-ratio: 1.25 / 1;
  }

  .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 23% center;
  }

  .hero-card {
    width: calc(100% - 16px);
    margin-top: -18px;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .detail-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .support-grid,
  .insurance-list {
    grid-template-columns: 1fr;
  }

  .support-card,
  .support-card:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(75, 88, 76, 0.24);
  }

  .support-card:last-child {
    border-bottom: 0;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .approach-list article {
    grid-template-columns: 42px 1fr;
  }

  .expect-card {
    padding: 34px 26px;
    border-radius: 22px 22px 64px 22px;
  }

  .supervision-card,
  .contact-card {
    padding: 34px 25px;
    border-radius: 24px;
  }

  .inquiry-card {
    padding: 34px 25px;
    border-radius: 24px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .contact {
    padding-top: 18px;
  }

  .footer-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 14px 22px;
  }
}

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

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