:root {
  --ink: #151d1a;
  --muted: #64716b;
  --paper: #fffdf9;
  --white: #ffffff;
  --soft: #f7f3ed;
  --line: #e2dbcf;
  --sage: #587568;
  --sage-dark: #213b33;
  --rose: #ad6965;
  --gold: #ae905d;
  --shadow: 0 18px 42px rgba(21, 29, 26, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--paper), #ffffff 34%, #fbfaf6);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(226, 219, 207, 0.92);
  background: rgba(255, 253, 249, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(21, 29, 26, 0.03);
}

.header-inner,
.section-inner {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
}

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

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

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a,
.nav-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 8px;
  padding: 0 10px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.nav a:hover,
.nav-link:hover,
.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--ink);
  background: #f4efe7;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-bottom: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: min(320px, 88vw);
  display: none;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown-menu.is-open {
  display: grid;
}

.nav-dropdown-menu a {
  min-height: 38px;
  justify-content: flex-start;
  color: var(--ink);
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  padding: 9px 11px;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid var(--sage-dark);
  background: linear-gradient(180deg, #2f5145, var(--sage-dark));
  color: white;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(33, 59, 51, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(33, 59, 51, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--sage-dark);
  border-color: var(--line);
  box-shadow: 0 8px 18px rgba(21, 29, 26, 0.08);
}

.button.rose {
  background: linear-gradient(180deg, #bd7772, var(--rose));
  border-color: var(--rose);
  box-shadow: 0 12px 24px rgba(173, 105, 101, 0.24);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  background-image: linear-gradient(90deg, rgba(18, 27, 24, 0.86), rgba(33, 55, 49, 0.62), rgba(18, 27, 24, 0.2)), url("../assets/hero-treatment-room.jpg");
  background-position: center;
  background-size: cover;
  color: white;
}

.hero-content {
  width: calc(100% - 32px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 112px 0 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 890px;
  margin: 18px 0;
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 870px;
}

.subpage-hero {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 0;
  background-image: linear-gradient(90deg, rgba(18, 27, 24, 0.86), rgba(33, 55, 49, 0.66), rgba(18, 27, 24, 0.24)), url("../assets/hero-treatment-room.jpg");
  background-position: center;
  background-size: cover;
  color: white;
}

.subpage-hero .section-inner {
  padding: 104px 0 64px;
}

.subpage-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.7;
}

.stat-card {
  min-height: 92px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.stat-card span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 800;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.35;
  overflow-wrap: break-word;
}

section {
  padding: 76px 0;
  scroll-margin-top: 96px;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 740px;
  color: var(--muted);
  line-height: 1.7;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.membership-card,
.practitioner-card,
.notice,
.contact-panel,
.download-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.service-card {
  min-height: 214px;
  padding: 22px;
  border-top: 3px solid var(--sage);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card:hover,
.download-card:hover,
.membership-card:hover {
  transform: translateY(-3px);
  border-color: #cfc5b7;
  box-shadow: 0 18px 36px rgba(21, 29, 26, 0.08);
}

.service-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #e4eee7;
  color: var(--sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

.service-card p,
.membership-card p,
.practitioner-card p,
.notice p,
.download-card p {
  color: var(--muted);
  line-height: 1.65;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.feature-strip article {
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  background: var(--white);
  border-radius: 8px;
}

.feature-strip a {
  color: var(--sage-dark);
  font-weight: 800;
}

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

.guide-card {
  --accent: var(--sage);
  min-height: 230px;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--accent);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: #cfc5b7;
  box-shadow: 0 18px 36px rgba(21, 29, 26, 0.08);
}

.guide-card .guide-label {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: color-mix(in srgb, var(--accent) 13%, white);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.guide-card h3 {
  margin-bottom: 0;
}

.guide-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.guide-card .guide-action {
  align-self: end;
  color: var(--sage-dark);
  font-weight: 900;
}

.guide-skin {
  --accent: #587568;
}

.guide-blood {
  --accent: #ad6965;
}

.guide-needle {
  --accent: #7b6a42;
}

.guide-contour {
  --accent: #ae905d;
}

.guide-structure {
  --accent: #4b6475;
}

.guide-volume {
  --accent: #745879;
}

.guide-peptide {
  --accent: #6d7d43;
}

.guide-facial {
  --accent: #9a6f83;
}

.guide-body {
  --accent: #8a7350;
}

.guide-foot {
  --accent: #446f6c;
}

.seo-body {
  padding-top: 18px;
  background: var(--white);
}

.seo-copy {
  max-width: 920px;
}

.seo-copy h2 {
  margin-top: 26px;
}

.seo-copy h2:first-child {
  margin-top: 0;
}

.seo-copy h3 {
  margin-top: 22px;
  color: var(--sage-dark);
  font-size: 1.28rem;
}

.seo-copy p,
.seo-copy li {
  color: var(--muted);
  line-height: 1.75;
}

.seo-copy ul {
  margin: 0;
  padding-left: 22px;
}

.seo-copy strong {
  color: var(--ink);
}

.search-box {
  position: sticky;
  top: 76px;
  z-index: 10;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 10px 30px rgba(21, 29, 26, 0.06);
}

.search-box label {
  font-weight: 800;
}

.search-box input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  font: inherit;
}

.search-count {
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
  background: var(--white);
  overflow: hidden;
  scroll-margin-top: 96px;
}

.menu-section summary {
  cursor: pointer;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.menu-section summary strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.menu-section summary small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.5;
}

.menu-section summary em {
  color: var(--sage-dark);
  font-style: normal;
  font-weight: 800;
}

.section-body {
  padding: 0 20px 22px;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.check-list li {
  border-left: 4px solid var(--sage);
  padding: 8px 0 8px 12px;
  color: var(--muted);
}

.menu-group {
  margin-top: 22px;
}

.menu-group h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.treatment-list {
  display: grid;
  gap: 10px;
}

.treatment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, auto);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
  transition: border-color 160ms ease, background 160ms ease;
}

.treatment-row:hover {
  border-color: #cfc5b7;
  background: #ffffff;
}

.treatment-row[hidden] {
  display: none;
}

.treatment-row h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.treatment-row p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.treatment-meta {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.treatment-meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.treatment-meta strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
}

.quick-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.quick-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--sage-dark);
  background: white;
  font-size: 0.82rem;
}

.product-options {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.product-options p {
  font-size: 0.9rem;
}

.product-options span {
  color: var(--ink);
}

.note-box {
  margin-top: 22px;
  padding: 16px;
  border-left: 4px solid var(--rose);
  background: #fff8f6;
  border-radius: 8px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.content-grid p,
.content-grid li {
  line-height: 1.7;
}

.content-grid p,
.content-grid li,
.note-box li {
  color: var(--muted);
}

.content-grid .note-box {
  margin-top: 0;
}

.membership-card {
  padding: 22px;
}

.membership-card .price {
  margin: 12px 0 4px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.membership-card .price span {
  color: var(--muted);
  font-family: inherit;
  font-size: 1rem;
}

.membership-card .cap {
  padding: 12px;
  border-radius: 8px;
  background: var(--soft);
}

.membership-card ul {
  color: var(--muted);
  padding-left: 18px;
  line-height: 1.55;
}

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

.practitioner-card {
  display: grid;
  grid-template-columns: 184px minmax(0, 1fr);
  align-items: start;
  overflow: hidden;
}

.practitioner-photo {
  width: 150px;
  height: 190px;
  min-height: 0;
  margin: 24px 0 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  object-position: left top;
  background: #e8e5df;
}

.practitioner-card > div {
  padding: 24px 24px 24px 8px;
}

.role,
.model {
  font-size: 0.92rem;
}

.certificate-panel {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.certificate-panel h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--sage-dark);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.certificate-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 98px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  text-decoration: none;
}

.certificate-card img {
  width: 82px;
  height: 72px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.certificate-card strong,
.certificate-card small,
.certificate-card em {
  display: block;
}

.certificate-card strong {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.25;
}

.certificate-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.certificate-card em {
  margin-top: 7px;
  color: var(--sage-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

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

.download-card {
  padding: 20px;
}

.company-line {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.company-line strong {
  display: block;
  color: var(--ink);
}

.insurance-verification {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.insurance-verification > span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.insurance-verification a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.insurance-verification img {
  width: 120px;
  max-width: 42%;
  height: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.insurance-verification strong {
  color: var(--sage-dark);
  line-height: 1.35;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.contact-panel {
  padding: 24px;
}

.contact-panel dl,
.contact-panel .contact-lines {
  display: grid;
  gap: 14px;
}

.contact-panel dl div,
.contact-panel .contact-lines div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.contact-panel dt,
.contact-panel span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel dd {
  margin: 0;
  font-weight: 700;
}

.contact-form-panel h3 {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form label,
.form-row label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(21, 29, 26, 0.03);
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(173, 105, 101, 0.2);
  border-color: var(--rose);
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.check-row input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.response-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}

.response-card {
  max-width: 640px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.response-card img {
  width: 72px;
  height: auto;
  margin-bottom: 16px;
}

.response-card h1 {
  color: var(--ink);
}

.response-card p {
  color: var(--muted);
  line-height: 1.65;
}

.social-links,
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links a,
.footer-social-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.social-links a:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}

.notice {
  padding: 22px;
  background: #fbfbf8;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.site-footer .section-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: white;
}

.site-footer .footer-social-links a {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav a,
  .nav-link {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
    background: #fbfaf6;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown-menu.is-open {
    display: grid;
  }

  .nav.is-open {
    display: grid;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .subpage-hero {
    min-height: auto;
    align-items: start;
  }

  .subpage-hero .section-inner {
    padding: 46px 0 36px;
  }

  .subpage-hero p {
    max-width: 100%;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .hero-stats,
  .grid.three,
  .grid.two,
  .content-grid,
  .feature-strip,
  .guide-grid,
  .download-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .practitioner-card {
    grid-template-columns: 1fr;
  }

  .practitioner-photo {
    width: 145px;
    height: 185px;
    min-height: 0;
    margin: 22px 0 0 22px;
  }

  .practitioner-card > div {
    padding: 18px 22px 22px;
  }

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

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

@media (max-width: 640px) {
  .header-inner,
  .hero-content {
    width: calc(100% - 24px);
    max-width: 366px;
    margin-left: 12px;
    margin-right: auto;
  }

  .section-inner {
    width: calc(100% - 24px);
  }

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

  .nav {
    top: 64px;
  }

  .brand > span {
    display: block;
  }

  .brand > span > span {
    display: none;
  }

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

  h1 {
    font-size: 2.08rem;
    line-height: 1.08;
  }

  .hero p {
    max-width: 100%;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  section {
    padding: 54px 0;
  }

  .hero-content {
    padding: 36px 0 34px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .search-box {
    position: static;
  }

  .menu-section summary,
  .treatment-row {
    grid-template-columns: 1fr;
  }

  .treatment-meta {
    justify-items: start;
    text-align: left;
  }
}
