:root {
  --ivory: #faf8f3;
  --ivory-deep: #f2ede4;
  --sand: #dfcca5;
  --sand-soft: #eee3d1;
  --sage: #b8c3b7;
  --sage-soft: #e5ebe3;
  --deep-sage: #465a52;
  --deep-sage-dark: #34463f;
  --ink: #2f3432;
  --muted: #69716d;
  --white: #fff;
  --line: rgba(47, 52, 50, 0.15);
  --shadow: 0 24px 70px rgba(47, 52, 50, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --page: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #9b6f35; outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}
h1 { font-size: clamp(3.25rem, 6vw, 6rem); }
h2 { font-size: clamp(2.6rem, 4.8vw, 4.8rem); }
h3 { font-size: clamp(1.55rem, 2vw, 2rem); }

.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;
}
.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
.page-width { width: var(--page); margin-inline: auto; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--deep-sage);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .19em;
  line-height: 1.4;
  text-transform: uppercase;
}
.large-copy {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
  letter-spacing: -.02em;
  line-height: 1.28;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(250, 248, 243, .95);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(47,52,50,.05); }
.header-inner {
  width: min(1360px, calc(100vw - 40px));
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 250px; }
.brand-mark { position: relative; width: 58px; height: 52px; flex: 0 0 auto; }
.brand-orb { position: absolute; width: 36px; height: 36px; border-radius: 50%; }
.brand-orb--sand { top: 1px; right: 3px; background: rgba(223,204,165,.82); }
.brand-orb--stone { bottom: 1px; left: 2px; background: rgba(190,182,176,.62); }
.brand-copy { display: grid; gap: 2px; }
.brand-name { font-family: var(--serif); font-size: 1.18rem; letter-spacing: -.03em; line-height: 1; }
.brand-subtitle { font-size: .66rem; letter-spacing: .22em; line-height: 1.2; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); font-size: .84rem; font-weight: 600; }
.primary-nav > a:not(.button) { position: relative; padding-block: 12px; }
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--deep-sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.primary-nav > a:hover::after, .primary-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px 8px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 6px 0; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }

.button {
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 42px; padding: 10px 18px; font-size: .68rem; }
.button--primary { background: var(--deep-sage); color: var(--white); }
.button--primary:hover { background: var(--deep-sage-dark); }
.button--secondary, .button--sand { background: var(--sand); color: var(--ink); }
.button--secondary:hover, .button--sand:hover { background: #d5bb86; }
.button--outline { border-color: var(--deep-sage); background: transparent; color: var(--deep-sage); }
.button--outline:hover { background: var(--deep-sage); color: var(--white); }
.button--light { border-color: rgba(255,255,255,.38); background: var(--white); color: var(--deep-sage-dark); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.button-row--center { justify-content: center; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--deep-sage); font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(5px); }

.hero { position: relative; min-height: min(820px, calc(100vh - 88px)); overflow: hidden; background: #777869; }
.hero-media, .hero-video, .hero-wash { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { background: linear-gradient(135deg, #a6a996, #777869); }
.hero-video { object-fit: cover; }
.hero-wash { background: linear-gradient(90deg, rgba(32,43,38,.58) 0%, rgba(32,43,38,.16) 62%, rgba(32,43,38,.12) 100%), linear-gradient(0deg, rgba(32,43,38,.22), transparent 45%); }
.hero-inner { position: relative; z-index: 2; min-height: min(820px, calc(100vh - 88px)); padding-block: 80px; display: flex; align-items: flex-end; }
.hero-card { width: min(720px, 100%); padding: clamp(34px, 5vw, 68px); border-radius: 34px 34px 34px 5px; background: rgba(250,248,243,.95); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-card h1 { margin-bottom: 24px; font-size: clamp(3rem, 5.5vw, 5.4rem); }
.hero-lede { max-width: 600px; margin-bottom: 32px; color: #4d5551; font-size: 1.05rem; }
.media-control { position: absolute; z-index: 3; right: 28px; bottom: 28px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(47,52,50,.48); color: var(--white); cursor: pointer; backdrop-filter: blur(8px); }
.trust-strip { padding-block: 19px; background: var(--deep-sage); color: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-grid span { position: relative; padding-inline: 18px; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.trust-grid span:not(:last-child)::after { content: ""; position: absolute; top: 50%; right: -9px; width: 1px; height: 20px; background: rgba(255,255,255,.25); transform: translateY(-50%); }

.section { position: relative; padding-block: clamp(90px, 10vw, 150px); }
.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }
.section--sage { background: var(--sage-soft); }
.section--sand { background: var(--sand-soft); }
.split-intro, .profile-story-grid { display: grid; grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(50px,10vw,150px); align-items: start; }
.section-heading h2 { margin-bottom: 26px; }
.section-heading > p:last-of-type { max-width: 430px; color: var(--muted); }
.intro-copy { padding-top: 18px; }
.intro-copy > p:not(.large-copy), .profile-story-copy > p:not(.large-copy) { color: var(--muted); }
.intro-copy .text-link { margin-top: 18px; }
.section-title-row { margin-bottom: 62px; display: grid; grid-template-columns: minmax(0,1fr) minmax(260px,.45fr); gap: 60px; align-items: end; }
.section-title-row h2 { margin-bottom: 0; }
.section-title-row > p { margin-bottom: 10px; color: #58615c; }

.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.service-card { min-height: 335px; padding: clamp(30px,4vw,50px); border: 1px solid rgba(70,90,82,.15); border-radius: 24px; background: rgba(255,255,255,.62); display: flex; flex-direction: column; align-items: flex-start; transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease; }
.service-card:hover { background: rgba(255,255,255,.92); box-shadow: 0 16px 44px rgba(47,52,50,.08); transform: translateY(-4px); }
.service-number { margin-bottom: auto; color: var(--deep-sage); font-family: var(--serif); font-size: 1rem; }
.service-card h3 { margin: 32px 0 12px; }
.service-card p { color: var(--muted); }
.service-card .text-link { margin-top: 8px; }
.center-heading { width: min(750px,100%); margin: 0 auto 62px; text-align: center; }
.center-heading h2 { margin-bottom: 22px; }
.center-heading > p:last-child { width: min(620px,100%); margin-inline: auto; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.clinician-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 12px 34px rgba(47,52,50,.06); }
.clinician-photo-link { position: relative; aspect-ratio: 4/5; display: block; overflow: hidden; background: var(--ivory-deep); }
.clinician-photo { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.clinician-card:hover .clinician-photo { transform: scale(1.025); }
.clinician-photo--melissa { object-position: center 30%; }
.clinician-photo--renee { object-position: center 38%; }
.clinician-photo--amina { object-position: 48% center; }
.clinician-photo--tywanna { object-position: center 26%; }
.clinician-body { min-height: 230px; padding: 26px 24px 28px; display: flex; flex-direction: column; align-items: flex-start; }
.clinician-role { margin-bottom: 10px; color: var(--deep-sage); font-size: .66rem; font-weight: 700; letter-spacing: .1em; line-height: 1.4; text-transform: uppercase; }
.clinician-body h3 { margin-bottom: 10px; font-size: 1.8rem; }
.clinician-body > p:not(.clinician-role) { margin-bottom: 22px; color: var(--muted); font-size: .88rem; }
.clinician-body .text-link { margin-top: auto; }
.center-cta { margin-top: 50px; text-align: center; }

.space-layout { display: grid; grid-template-columns: minmax(300px,.75fr) minmax(0,1.25fr); gap: clamp(48px,9vw,120px); align-items: center; }
.space-copy h2 { margin-bottom: 26px; }
.space-copy > p:not(.eyebrow) { color: #5e625d; }
.location-details { margin: 30px 0; padding-left: 20px; border-left: 2px solid var(--deep-sage); display: grid; color: var(--deep-sage-dark); }
.office-collage { position: relative; min-height: 700px; }
.office-photo { position: absolute; object-fit: cover; box-shadow: var(--shadow); }
.office-photo--main { top: 0; right: 0; width: 71%; height: 84%; border-radius: 80px 8px 80px 8px; object-position: center 54%; }
.office-photo--secondary { bottom: 0; left: 0; width: 48%; height: 45%; border: 12px solid var(--sand-soft); border-radius: 8px 60px 8px 60px; object-position: center 45%; }
.faq-layout { display: grid; grid-template-columns: minmax(280px,.65fr) minmax(0,1.35fr); gap: clamp(50px,9vw,125px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 27px 54px 27px 0; font-family: var(--serif); font-size: 1.45rem; line-height: 1.2; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before, .faq-list summary::after { content: ""; position: absolute; top: 50%; right: 6px; width: 18px; height: 1px; background: var(--deep-sage); transition: transform 180ms ease; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list details p { max-width: 680px; padding: 0 50px 26px 0; color: var(--muted); }

.final-cta { padding-block: clamp(90px,11vw,150px); background: var(--deep-sage); color: var(--white); text-align: center; }
.final-cta-inner { width: min(800px,var(--page)); }
.final-cta .eyebrow { color: var(--sand); }
.final-cta h2 { margin-bottom: 22px; }
.final-cta p:not(.eyebrow) { margin-bottom: 34px; color: rgba(255,255,255,.76); }
.site-footer { padding: 74px 0 30px; background: #272d2a; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(3,1fr); gap: 60px; }
.brand--footer { margin-bottom: 22px; color: var(--white); }
.site-footer h3 { margin-bottom: 20px; color: var(--white); font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-footer a:not(.brand) { width: fit-content; margin-bottom: 8px; display: block; }
.site-footer a:not(.brand):hover { color: var(--white); }
.site-footer p { font-size: .88rem; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; font-size: .71rem; }

.page-hero { position: relative; overflow: hidden; padding-block: clamp(100px,13vw,180px); background: var(--sand-soft); }
.page-hero::before, .page-hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.page-hero::before { width: 360px; height: 360px; top: -140px; right: -80px; background: rgba(184,195,183,.45); }
.page-hero::after { width: 240px; height: 240px; bottom: -140px; left: 8%; background: rgba(255,255,255,.42); }
.page-hero-inner { position: relative; z-index: 1; width: min(930px,var(--page)); margin-inline: auto; text-align: center; }
.page-hero h1 { margin-bottom: 28px; font-size: clamp(3.4rem,7vw,6.8rem); }
.page-hero p:last-child { width: min(690px,100%); margin-inline: auto; color: var(--muted); font-size: 1.06rem; }
.team-directory { display: grid; gap: 30px; }
.directory-card { min-height: 580px; overflow: hidden; border: 1px solid var(--line); border-radius: 30px; background: var(--white); display: grid; grid-template-columns: minmax(320px,.78fr) minmax(0,1.22fr); box-shadow: 0 18px 48px rgba(47,52,50,.07); scroll-margin-top: 110px; }
.directory-card--reverse { grid-template-columns: minmax(0,1.22fr) minmax(320px,.78fr); }
.directory-card--reverse .directory-photo-wrap { order: 2; }
.directory-photo-wrap { position: relative; min-height: 580px; overflow: hidden; background: var(--ivory-deep); }
.directory-photo { width: 100%; height: 100%; object-fit: cover; }
.availability-badge { position: absolute; right: 18px; bottom: 18px; padding: 9px 14px; border-radius: 999px; background: rgba(250,248,243,.94); color: var(--deep-sage-dark); font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; backdrop-filter: blur(8px); }
.directory-copy { padding: clamp(42px,7vw,86px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.directory-copy h2 { margin-bottom: 18px; font-size: clamp(2.8rem,5vw,4.6rem); }
.directory-intro { font-family: var(--serif); font-size: 1.45rem; line-height: 1.35; }
.directory-copy > p:not(.clinician-role):not(.directory-intro) { color: var(--muted); }
.focus-tags { margin: 14px 0 22px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.focus-tags li { padding: 7px 12px; border: 1px solid rgba(70,90,82,.25); border-radius: 999px; color: var(--deep-sage); font-size: .72rem; }
.directory-copy .button-row { margin-top: 14px; }

.profile-hero { padding: 40px 0 clamp(90px,10vw,140px); background: var(--sand-soft); }
.breadcrumbs { margin-bottom: 40px; display: flex; gap: 10px; color: var(--muted); font-size: .77rem; }
.breadcrumbs a:hover { color: var(--deep-sage); }
.profile-hero-grid { display: grid; grid-template-columns: minmax(350px,.88fr) minmax(0,1.12fr); gap: clamp(55px,10vw,140px); align-items: center; }
.profile-image-frame { position: relative; isolation: isolate; }
.profile-image-frame img { position: relative; z-index: 2; width: 100%; aspect-ratio: 4/5; border-radius: 120px 10px 120px 10px; object-fit: cover; object-position: center 28%; box-shadow: var(--shadow); }
.profile-image-accent { position: absolute; z-index: 1; right: -32px; bottom: -32px; width: 58%; aspect-ratio: 1; border-radius: 50%; background: var(--sage); }
.profile-intro h1 { margin-bottom: 24px; font-size: clamp(4rem,7vw,7rem); }
.profile-lede { margin-bottom: 22px; color: var(--deep-sage-dark); font-family: var(--serif); font-size: clamp(1.45rem,2.3vw,2rem); line-height: 1.35; }
.profile-intro > p:not(.eyebrow):not(.profile-lede) { color: var(--muted); }
.profile-meta { margin: 30px 0; padding-block: 20px; border-top: 1px solid rgba(47,52,50,.18); border-bottom: 1px solid rgba(47,52,50,.18); display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.profile-meta div { display: grid; }
.profile-meta span { color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.profile-meta strong { font-weight: 500; }
.profile-story-copy { padding-top: 16px; }
.profile-details-section { padding-top: 108px; }
.profile-details-grid { display: grid; grid-template-columns: minmax(260px,.55fr) minmax(0,1.45fr); gap: clamp(48px,9vw,120px); align-items: start; }
.profile-details-heading { position: sticky; top: 130px; }
.profile-details-heading h2 { margin-bottom: 22px; }
.profile-details-heading > p:last-child { color: var(--muted); }
.profile-accordion { border-top: 1px solid var(--line); }
.profile-accordion details { border-bottom: 1px solid var(--line); }
.profile-accordion summary { width: 100%; padding: 29px 6px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--ink); font-size: clamp(1.05rem,1.6vw,1.3rem); font-weight: 600; list-style: none; cursor: pointer; }
.profile-accordion summary::-webkit-details-marker { display: none; }
.profile-accordion summary:hover { color: var(--deep-sage); }
.accordion-icon { position: relative; width: 32px; height: 32px; flex: 0 0 auto; border: 1px solid var(--deep-sage); border-radius: 50%; }
.accordion-icon::before, .accordion-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; background: var(--deep-sage); transform: translate(-50%,-50%); transition: transform 180ms ease; }
.accordion-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.profile-accordion details[open] .accordion-icon::after { transform: translate(-50%,-50%) rotate(0deg); }
.accordion-panel-inner { padding: 0 60px 32px 6px; color: var(--muted); }
.accordion-panel-inner ul { margin: 0; padding-left: 20px; }
.two-column-list { display: grid; grid-template-columns: repeat(2,1fr); column-gap: 30px; }
.profile-booking { padding-block: clamp(88px,10vw,140px); background: var(--sage-soft); }
.profile-booking-grid { display: grid; grid-template-columns: minmax(360px,1.1fr) minmax(300px,.9fr); gap: clamp(50px,9vw,120px); align-items: center; }
.profile-booking-image img { width: 100%; max-height: 680px; aspect-ratio: 5/4; border-radius: 8px 90px 8px 90px; object-fit: cover; object-position: center 68%; }
.profile-booking-copy h2 { margin-bottom: 24px; }
.profile-booking-copy > p:not(.eyebrow) { margin-bottom: 30px; color: var(--muted); }

.reveal { animation: rise-in .7s cubic-bezier(.2,.72,.3,1) both; }
.service-card:nth-child(2), .clinician-card:nth-child(2) { animation-delay: .08s; }
.service-card:nth-child(3), .clinician-card:nth-child(3) { animation-delay: .16s; }
.service-card:nth-child(4), .clinician-card:nth-child(4) { animation-delay: .24s; }
@keyframes rise-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-video { display: none; }
}

@media (max-width: 1080px) {
  .menu-toggle { position: relative; z-index: 102; display: block; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 101; inset: 0; padding: 120px 32px 50px; background: var(--ivory); flex-direction: column; justify-content: center; gap: 18px; font-family: var(--serif); font-size: 2rem; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease; }
  .primary-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .primary-nav .button { margin-top: 14px; font-family: var(--sans); font-size: .74rem; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .space-layout { grid-template-columns: .8fr 1.2fr; gap: 50px; }
  .office-collage { min-height: 600px; }
  .directory-card, .directory-card--reverse { grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); }
  .directory-card--reverse .directory-photo-wrap { order: 0; }
}

@media (max-width: 820px) {
  :root { --page: min(100% - 34px, 720px); }
  .header-inner { width: min(100% - 28px,780px); min-height: 76px; }
  .brand { min-width: 0; }
  .brand-mark { width: 48px; height: 44px; }
  .brand-orb { width: 31px; height: 31px; }
  .hero, .hero-inner { min-height: calc(100svh - 76px); }
  .hero-inner { width: 100%; padding: 0; align-items: flex-end; }
  .hero-card { width: calc(100% - 34px); margin: 0 auto 34px; }
  .hero-wash { background: linear-gradient(0deg,rgba(32,43,38,.42),rgba(32,43,38,.08) 70%); }
  .media-control { top: 18px; right: 18px; bottom: auto; }
  .trust-grid { grid-template-columns: repeat(2,1fr); row-gap: 14px; }
  .trust-grid span:nth-child(2)::after { display: none; }
  .split-intro, .profile-story-grid, .section-title-row, .space-layout, .faq-layout, .profile-hero-grid, .profile-details-grid, .profile-booking-grid { grid-template-columns: 1fr; }
  .intro-copy, .profile-story-copy { padding-top: 0; }
  .section-title-row { gap: 22px; }
  .office-collage { min-height: 650px; }
  .faq-layout { gap: 52px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .directory-card, .directory-card--reverse { grid-template-columns: 1fr; }
  .directory-photo-wrap { min-height: 620px; }
  .directory-copy { padding: 44px 30px 52px; }
  .profile-image-frame { width: min(520px,calc(100% - 20px)); }
  .profile-details-heading { position: static; }
  .profile-booking-image { order: 2; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .brand-name { font-size: 1rem; }
  .brand-subtitle { font-size: .54rem; }
  .brand-mark { width: 42px; }
  .brand-orb { width: 28px; height: 28px; }
  .hero-card { padding: 30px 24px; border-radius: 26px 26px 26px 4px; }
  .hero-card h1 { font-size: clamp(2.75rem,13vw,4rem); }
  .button-row:not(.button-row--center) { align-items: stretch; flex-direction: column; }
  .button-row:not(.button-row--center) .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid span::after { display: none; }
  .trust-grid span { padding-block: 3px; }
  .service-grid, .team-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .clinician-body { min-height: 205px; }
  .office-collage { min-height: 520px; }
  .office-photo--main { width: 88%; height: 78%; border-radius: 50px 6px 50px 6px; }
  .office-photo--secondary { width: 62%; height: 40%; border-width: 8px; }
  .footer-bottom { flex-direction: column; }
  .page-hero h1, .profile-intro h1 { font-size: clamp(3rem,15vw,4.6rem); }
  .directory-photo-wrap { min-height: 480px; }
  .directory-copy h2 { font-size: 3rem; }
  .directory-intro { font-size: 1.28rem; }
  .profile-meta, .two-column-list { grid-template-columns: 1fr; }
  .profile-accordion summary { padding-block: 24px; }
  .accordion-panel-inner { padding-right: 10px; }
  .profile-booking-image img { aspect-ratio: 4/5; }
}
