@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/cormorant-300-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("fonts/cormorant-300i-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Inter Tight";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/intertight-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --navy: #102f43;
  --navy-deep: #092331;
  --navy-soft: #23495f;
  --gold: #d69a43;
  --gold-hover: #e1aa58;
  --paper: #f8f6f1;
  --paper-alt: #efebe3;
  --cream: #fffdf8;
  --ink: #172129;
  --ink-soft: #52606a;
  --muted: #5e6971;
  --line: #d9d4ca;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Inter Tight", "Segoe UI", sans-serif;
  --container: 1180px;
  --page-pad: clamp(1.25rem, 4vw, 3rem);
  --section: clamp(4.25rem, 7vw, 6.75rem);
  --header-h: 4.75rem;
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-whatsapp {
  width: 1.55rem;
  height: 1.55rem;
}

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

button,
summary,
a {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
ol,
dl,
dd {
  margin: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 300;
  text-wrap: balance;
}

h2 {
  color: var(--navy);
  font-size: clamp(2.35rem, 1.8rem + 2.2vw, 3.7rem);
  letter-spacing: -.025em;
  line-height: .98;
}

h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

::selection {
  background: var(--gold);
  color: var(--navy-deep);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.section {
  padding-block: var(--section);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: .75rem;
  left: .75rem;
  padding: .7rem 1rem;
  background: var(--cream);
  color: var(--navy);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: none;
}

.eyebrow,
.kicker,
.city {
  color: #845915;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 1rem;
}

.eyebrow-light {
  color: var(--gold);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: .78rem 1.15rem;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-gold {
  background: var(--gold);
  color: #152634;
}

.button-gold:hover {
  background: var(--gold-hover);
}

.button-navy {
  background: var(--navy);
  color: var(--cream);
}

.button-navy:hover {
  background: var(--navy-soft);
}




.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgb(248 246 241 / .96);
  transition: height .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  height: 4.25rem;
  border-color: var(--line);
  background: rgb(248 246 241 / .9);
  box-shadow: 0 12px 35px rgb(9 35 49 / .07);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  width: min(13rem, 100%);
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.desktop-nav a {
  position: relative;
  padding-block: .4rem;
  color: #44525b;
  font-size: .88rem;
  font-weight: 500;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .55rem;
}

.menu-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 1.15rem;
  height: 1px;
  background: var(--navy);
  transition: transform .22s ease, opacity .22s ease;
}

.menu-bars {
  position: relative;
}

.menu-bars::before,
.menu-bars::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-bars::before {
  top: -.34rem;
}

.menu-bars::after {
  top: .34rem;
}

.menu-toggle[aria-expanded="true"] .menu-bars {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}




.kicker {
  margin-bottom: 1.4rem;
  color: var(--gold);
}

.kicker span {
  display: block;
  margin-top: .35rem;
  color: #cad5da;
  letter-spacing: .11em;
}









.button-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.button-outline:hover { background: var(--navy); color: var(--cream); }
.button-outline-light { border-color: rgb(255 253 248 / .65); color: var(--cream); }
.button-outline-light:hover { background: var(--cream); color: var(--navy); }
.button .icon { width: 1.2rem; height: 1.2rem; }
.button .icon-whatsapp { width: 1.35rem; height: 1.35rem; }
.hero { position: relative; isolation: isolate; overflow: hidden; padding-top: var(--header-h); background: var(--navy); color: var(--cream); }
.hero-grid { position: relative; z-index: 2; display: flex; align-items: center; min-height: 680px; padding-block: 5rem; pointer-events: none; }
.hero-copy { width: min(100%, 31rem); pointer-events: auto; }
.hero h1 { max-width: 8ch; color: var(--cream); font-size: clamp(4.4rem, 6.7vw, 6.75rem); letter-spacing: -.035em; line-height: .92; }
.hero-lead { max-width: 28rem; margin-top: 1.65rem; color: #d9e1e4; font-size: clamp(1.05rem, .97rem + .35vw, 1.22rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-media { position: absolute; z-index: 0; inset: var(--header-h) 0 0 auto; width: 75%; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 50%; }
.hero-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, var(--navy) 0%, rgb(16 47 67 / .93) 18%, rgb(16 47 67 / .34) 42%, transparent 66%); pointer-events: none; }
@media (min-width: 900px) and (max-width: 1100px) {
  .hero-grid { min-height: 620px; }
  .hero-copy { width: 27rem; }
  .hero h1 { font-size: 5rem; }
  .hero-media { width: 73%; }
  .hero-media img { object-position: 87% 50%; }
}
@media (max-width: 899px) {
  .hero-grid { min-height: calc(100vh - var(--header-h)); min-height: calc(100svh - var(--header-h)); padding-top: 2.5rem; padding-bottom: 2rem; }
  .hero-copy { width: min(100%, 35rem); }
  .hero h1 { font-size: clamp(3.6rem, 16.7vw, 5.6rem); }
  .hero-media { position: relative; inset: auto; width: 100%; height: clamp(340px, 100vw, 540px); }
  .hero-media img { object-position: center 22%; }
  .hero-media::after { background: linear-gradient(180deg, var(--navy), rgb(16 47 67 / .35) 24px, transparent 74px); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; gap: .7rem; }
  .hero-actions .button { width: 100%; }
  .hero-lead { margin-top: 1.25rem; }
}

.credentials {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.credential-list {
  display: grid;
  grid-template-columns: .7fr 1.15fr 1.25fr .9fr;
}

.credential-list p {
  min-width: 0;
  padding: 1.55rem clamp(1rem, 2.5vw, 1.8rem);
}

.credential-list p:first-child {
  padding-left: 0;
}

.credential-list p:last-child {
  padding-right: 0;
}

.credential-list p + p {
  border-left: 1px solid var(--line);
}

.credential-list strong,
.credential-list span {
  display: block;
}

.credential-list strong {
  color: var(--navy);
  font-size: .86rem;
  line-height: 1.35;
}

.credential-list span {
  margin-top: .3rem;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.4;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.about-media {
  position: relative;
  max-width: 440px;
}



.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-copy {
  max-width: 58ch;
}

.about-copy h2 {
  margin-bottom: 1.65rem;
}

.about-copy > p:not(.eyebrow) {
  margin-top: .9rem;
  color: var(--ink-soft);
}

.about-copy .button {
  margin-top: 1.6rem;
}

.treatments {
  border-block: 1px solid var(--line);
  background: var(--paper-alt);
}

.treatments-layout {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.treatments-intro {
  position: sticky;
  top: 7rem;
  max-width: 25rem;
}

.treatments-intro > p:last-child,
.section-heading > p:last-child,
.trust-grid > div > p {
  margin-top: 1.3rem;
  color: var(--ink-soft);
}

.treatment-list {
  border-top: 1px solid #c9c2b5;
}

.treatment-item {
  border-bottom: 1px solid #c9c2b5;
}

.treatment-item summary {
  display: grid;
  min-height: 6.35rem;
  grid-template-columns: minmax(0, 1fr) 1.75rem;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
}

.treatment-item summary::-webkit-details-marker {
  display: none;
}


.treatment-heading {
  display: grid;
  gap: .35rem;
}

.treatment-heading strong {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.7rem, 1.4rem + .8vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -.018em;
  line-height: 1.05;
}

.treatment-heading small {
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.45;
}

.treatment-symbol,
.faq summary span {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}

.treatment-symbol::before,
.treatment-symbol::after,
.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: .9rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform .22s ease;
}

.treatment-symbol::after,
.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.treatment-item[open] .treatment-symbol::after,
.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.treatment-item[open] summary {
  color: #845915;
}

.treatment-content {
  max-width: 61ch;
  padding: 0 2.75rem 1.6rem 0;
  color: var(--ink-soft);
}

.treatment-content p + p {
  margin-top: .65rem;
}

.care-flow {
  padding-block: clamp(3.25rem, 6vw, 5.25rem);
  border-block: 1px solid var(--line);
  background: #e8e2d8;
  color: var(--ink);
}

.care-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: start;
  gap: clamp(3rem, 7vw, 6rem);
}

.care-grid h2 {
  max-width: 17ch;
  color: var(--navy);
}

.care-grid ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  padding: 0;
  list-style: none;
}

.care-grid li {
  border-top: 1px solid #c9c2b5;
  padding-top: 1rem;
}

.care-grid li > span {
  display: block;
  margin-bottom: 1.6rem;
  color: #845915;
  font-size: .72rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: .1em;
}

.care-grid strong {
  font-weight: 600;
}

.care-grid li p {
  margin-top: .5rem;
  color: var(--ink-soft);
  font-size: .9rem;
}

.trust {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.trust-grid > div {
  max-width: 37rem;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.3rem;
  margin-top: 1.7rem;
}

.instagram-line {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.1rem;
  border-block: 1px solid var(--line);
  padding: 1.6rem 0;
  color: var(--navy);
  transition: border-color .2s ease, color .2s ease;
}

.instagram-line:hover {
  border-color: var(--gold);
  color: #845915;
}

.instagram-mark { display: flex; align-items: center; }
.instagram-mark .icon { width: 2.25rem; height: 2.25rem; stroke-width: 1.6; }

.instagram-line small,
.instagram-line strong {
  display: block;
}

.instagram-line small {
  color: var(--muted);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.instagram-line strong {
  margin-top: .15rem;
  font-size: 1.08rem;
  font-weight: 600;
}

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

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.location-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 18px 48px rgb(9 35 49 / .08);
}

.location-card > img {
  width: 100%;
  height: clamp(210px, 22vw, 275px);
  object-fit: cover;
}

.location-card:first-child > img {
  object-position: center;
}

.location-card:last-child > img {
  object-position: center 42%;
}

.location-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.location-body h3 {
  margin-top: .45rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.9rem, 1.55rem + 1vw, 2.45rem);
  font-weight: 300;
  line-height: 1;
}

.location-body address {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-style: normal;
  line-height: 1.5;
}

.hours {
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
  padding-top: .8rem;
  font-size: .86rem;
}

.hours div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-block: .32rem;
}

.hours dt {
  color: var(--ink-soft);
}

.hours dd {
  text-align: right;
}

.schedule-note {
  max-width: 42ch;
  min-height: 5.4rem;
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--ink-soft);
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.footer-contact a { display: flex; align-items: center; gap: .65rem; }
.footer-contact .icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

.telemedicine {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
  color: var(--ink-soft);
}

.telemedicine strong {
  color: var(--navy);
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--paper-alt);
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.faq-layout header {
  max-width: 25rem;
}

.faq-list {
  border-top: 1px solid #c9c2b5;
}

.faq details {
  border-bottom: 1px solid #c9c2b5;
}

.faq summary {
  display: grid;
  min-height: 4.8rem;
  grid-template-columns: minmax(0, 1fr) 1.5rem;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
  color: var(--navy);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details > p {
  max-width: 60ch;
  padding: 0 2.5rem 1.4rem 0;
  color: var(--ink-soft);
}

.closing {
  background:
    radial-gradient(circle at 85% 10%, rgb(214 154 67 / .14), transparent 28rem),
    var(--navy);
  color: var(--cream);
}

.closing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-block: clamp(3.5rem, 6vw, 5rem);
}

.closing h2 {
  color: var(--cream);
}

.closing p:last-child {
  max-width: 55ch;
  margin-top: 1rem;
  color: #cbd7dc;
}

.site-footer {
  border-top: 1px solid rgb(255 255 255 / .13);
  background: var(--navy-deep);
  color: #b8c5cb;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr .75fr 1fr;
  gap: 3rem;
  padding-block: 3.25rem;
}

.footer-brand img {
  width: 15rem;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: .9rem;
}

.footer-main nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: .6rem;
}

.footer-main a:hover,
.footer-legal a:hover,
.signature a:hover {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: .25rem;
}

.footer-contact span {
  color: #899ba4;
}

.footer-legal {
  border-top: 1px solid rgb(255 255 255 / .12);
  padding-block: 1.5rem;
  font-size: .78rem;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: .9rem;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.signature {
  padding: 0 var(--page-pad) 1.25rem;
  color: #84969f;
  font-size: .72rem;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  z-index: 35;
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / .55);
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 12px 30px rgb(9 35 49 / .22);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: transform .22s ease, background-color .22s ease;
}

.whatsapp-float:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.legal-page main {
  min-height: 70dvh;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
}

.legal-page-header,
.legal-copy {
  width: min(100%, 68ch);
  margin-inline: auto;
}

.legal-page-header {
  margin-bottom: 2.5rem;
}

.legal-page-header h1 {
  color: var(--navy);
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  line-height: .95;
}

.effective-date {
  margin-top: 1rem;
  color: var(--muted);
}

.legal-copy h2 {
  margin: 2.2rem 0 .65rem;
  color: var(--navy);
  font-family: var(--body);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
}

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

.legal-back {
  margin-top: 2.5rem;
  border-color: var(--navy);
  color: var(--navy);
}

@media (max-width: 1020px) {
  .nav-wrap {
    grid-template-columns: 11rem auto 10rem;
    gap: .85rem;
  }

  .desktop-nav {
    gap: 1rem;
  }

  .desktop-nav a {
    font-size: .8rem;
  }

  .nav-cta {
    padding-inline: .9rem;
  }


}

@media (max-width: 899px) {
  :root {
    --header-h: 4.25rem;
  }

  .site-header,
  .site-header.is-scrolled {
    height: var(--header-h);
  }

  .nav-wrap {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    width: clamp(8rem, 32vw, 10.5rem);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: grid;
    grid-template-columns: repeat(4, max-content);
    gap: 1rem;
    overflow-x: auto;
    margin-top: var(--header-h);
    padding: .85rem var(--page-pad);
    background: var(--cream);
  }

  .mobile-menu a {
    color: var(--navy);
    font-size: .88rem;
    font-weight: 600;
  }

  .whatsapp-float { display: none; }
  .nav-cta .icon { width: 1.25rem; height: 1.25rem; }

  .js .menu-toggle {
    display: flex;
  }

  .js .mobile-menu {
    position: fixed;
    z-index: 45;
    inset: var(--header-h) 0 0;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0;
    overflow: hidden;
    margin: 0;
    padding: 2rem var(--page-pad);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-.75rem);
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  }

  .js .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity .22s ease, transform .22s ease, visibility 0s;
  }

  .js .mobile-menu a {
    border-bottom: 1px solid var(--line);
    padding: .85rem 0;
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
  }






  .credential-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .credential-list p {
    padding: 1.25rem;
  }

  .credential-list p:nth-child(odd) {
    padding-left: 0;
  }

  .credential-list p:nth-child(even) {
    padding-right: 0;
    border-left: 1px solid var(--line);
  }

  .credential-list p:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .about-grid,
  .treatments-layout,
  .care-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 3.25rem;
  }

  .about-media {
    width: min(82%, 430px);
  }

  .treatments-layout,
  .faq-layout {
    gap: 2.5rem;
  }

  .treatments-intro {
    position: static;
    max-width: 38rem;
  }

  .care-grid {
    gap: 2.5rem;
  }

  .care-grid h2 {
    max-width: 20ch;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
}

@media (max-width: 680px) {
  :root {
    --section: 4rem;
  }

  .nav-cta {
    width: 2.85rem;
    height: 2.85rem;
    min-height: 0;
    padding: 0;
  }

  .nav-cta .button-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }






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

  .credential-list p,
  .credential-list p:nth-child(odd),
  .credential-list p:nth-child(even) {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 1rem .65rem;
  }

  .credential-list p:first-child {
    border-top: 0;
  }

  .about-media {
    width: calc(100% - 1.25rem);
  }

  .about-media::before {
    content: none;
  }

  .treatment-item summary {
    min-height: 5.8rem;
    grid-template-columns: minmax(0, 1fr) 1.5rem;
    gap: .65rem;
  }

  .treatment-heading strong {
    font-size: 1.55rem;
  }

  .treatment-heading small {
    font-size: .82rem;
  }

  .treatment-content {
    padding: 0 1.2rem 1.4rem 0;
    font-size: .92rem;
  }

  .care-grid ol {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .care-grid li {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: .65rem;
  }

  .care-grid li > span {
    margin: .2rem 0 0;
  }

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

  .location-card > img {
    height: clamp(195px, 58vw, 250px);
  }

  .hours div {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hours dd {
    text-align: left;
  }

  .schedule-note {
    min-height: 0;
  }

  .telemedicine {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

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

  .closing-inner .button {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2.75rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .8rem;
  }
}

@media (max-width: 420px) {



  .treatment-heading small {
    display: block;
  }

  .treatment-item summary {
    min-height: 4.9rem;
  }

  .location-actions,
  .inline-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
