:root {
  --ink: #172033;
  --muted: #5f6d80;
  --paper: #f7fbfb;
  --white: #ffffff;
  --navy: #263e66;
  --navy-deep: #1d3156;
  --navy-soft: #314b75;
  --blue: #1f6fb2;
  --blue-dark: #195c93;
  --teal: #7cc7c3;
  --teal-soft: #e8f4f2;
  --line: #d9e6ea;
  --warm: #f4d58d;
  --shadow: 0 16px 40px rgba(20, 43, 72, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(124, 199, 195, 0.18), transparent 24rem),
    linear-gradient(180deg, #fbfefe 0%, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(38, 62, 102, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 62, 102, 0.028) 1px, transparent 1px);
  background-position: center top;
  background-size: 34px 34px;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 12px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(17, 40, 70, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1120px, calc(100% - 24px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.nav-links a {
  border-radius: 6px;
  padding: 8px 7px;
  color: #4c5d73;
  font-size: 12px;
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: var(--teal-soft);
  color: var(--navy);
  outline: none;
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(124, 199, 195, 0.28), transparent 24rem),
    radial-gradient(ellipse at 84% 4%, rgba(31, 111, 178, 0.12), transparent 30rem),
    linear-gradient(150deg, #ffffff 0%, #f4fbfb 52%, #edf6f7 100%);
  color: var(--ink);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(38, 62, 102, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 62, 102, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.52), transparent 46%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    repeating-linear-gradient(
      34deg,
      transparent 0 56px,
      rgba(38, 62, 102, 0.06) 57px,
      transparent 60px 116px
    ),
    repeating-linear-gradient(
      146deg,
      transparent 0 74px,
      rgba(124, 199, 195, 0.08) 75px,
      transparent 78px 150px
    );
  background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%;
  mask-image: linear-gradient(180deg, transparent 0 52%, rgba(0, 0, 0, 0.28) 70%, rgba(0, 0, 0, 0.72) 100%);
  opacity: 0.72;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 690px;
  padding: 34px 0 42px;
  display: grid;
  gap: 26px;
  align-items: center;
}

.hero-light-lines {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1;
  height: 330px;
  overflow: hidden;
  pointer-events: none;
}

.hero-light-lines::before,
.hero-light-lines::after {
  content: "";
  position: absolute;
  height: 250px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 42%, transparent 82%),
    repeating-linear-gradient(
      0deg,
      transparent 0 34px,
      rgba(31, 111, 178, 0.16) 35px,
      rgba(124, 199, 195, 0.22) 36px,
      transparent 40px 76px
    );
  filter: drop-shadow(0 0 18px rgba(124, 199, 195, 0.14));
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.92) 24%, rgba(0, 0, 0, 0.8) 72%, transparent);
  opacity: 0.58;
  transform: rotate(-22deg);
}

.hero-light-lines::before {
  left: -170px;
  top: -78px;
  width: 720px;
}

.hero-light-lines::after {
  right: -230px;
  top: -26px;
  width: 760px;
  opacity: 0.46;
}

.hero-light-lines span {
  position: absolute;
  width: 420px;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(31, 111, 178, 0.25) 22%,
    rgba(124, 199, 195, 0.32) 58%,
    transparent 100%
  );
  opacity: 0.54;
  filter: drop-shadow(0 0 12px rgba(124, 199, 195, 0.3));
  transform: rotate(-22deg);
}

.hero-light-lines span:nth-child(1) {
  left: -132px;
  top: 28px;
  width: 410px;
  opacity: 0.5;
}

.hero-light-lines span:nth-child(2) {
  right: -106px;
  top: 54px;
  width: 500px;
  opacity: 0.68;
}

.hero-light-lines span:nth-child(3) {
  right: -150px;
  top: 118px;
  width: 560px;
  opacity: 0.58;
}

.hero-light-lines span:nth-child(4) {
  left: 18%;
  top: 178px;
  width: 440px;
  opacity: 0.36;
}

.hero-light-lines span:nth-child(5) {
  right: -78px;
  top: 244px;
  width: 360px;
  opacity: 0.24;
}

.hero-copy,
.hero-visual,
.path-tool,
.treatment-copy,
.selected-therapy,
.request-panel {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: 38px;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lede,
.section-copy {
  max-width: 620px;
  color: #53657a;
  font-size: 16px;
}

.section-copy {
  color: #667589;
}

.hero-actions,
.inline-actions,
.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 15px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(31, 111, 178, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-dark);
}

.btn-light {
  border-color: #b9cbd2;
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  border-color: #b9c7d5;
  background: var(--white);
  color: var(--navy);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--blue);
  color: var(--blue-dark);
}

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

.metric-box,
.location-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 16px;
}

.metric-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.metric-box span,
.location-box strong {
  color: #607085;
  font-size: 13px;
}

.location-box {
  margin-top: 10px;
}

.location-box span {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.1;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: #eef1f0;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.path-section {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  background: linear-gradient(180deg, #f8fcfc 0%, #edf7f6 100%);
  color: var(--ink);
}

.team-section {
  padding: 64px 0;
  background: rgba(255, 255, 255, 0.86);
}

.path-section h2,
.path-section .section-copy {
  color: var(--ink);
}

.path-section .shell {
  position: relative;
  z-index: 1;
}

.path-section::before,
.treatments-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(38, 62, 102, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 62, 102, 0.034) 1px, transparent 1px),
    repeating-linear-gradient(
      33deg,
      transparent 0 54px,
      rgba(38, 62, 102, 0.052) 55px,
      transparent 58px 112px
    ),
    repeating-linear-gradient(
      147deg,
      transparent 0 72px,
      rgba(124, 199, 195, 0.065) 73px,
      transparent 76px 148px
    );
  background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.18));
}

.path-section::after,
.treatments-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(
      112deg,
      transparent 0 65%,
      rgba(31, 111, 178, 0.06) 65.4%,
      transparent 66.4% 100%
    );
  opacity: 0.7;
}

.path-grid {
  display: grid;
  gap: 26px;
  align-items: start;
}

.path-tool,
.request-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 16px;
  box-shadow: 0 16px 34px rgba(17, 40, 70, 0.18);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.chip {
  min-height: 38px;
  border: 1px solid #cdd8df;
  border-radius: 6px;
  background: var(--white);
  color: #3f4f63;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.chip:hover,
.chip:focus-visible,
.chip.is-active {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--navy);
  outline: none;
}

.suggestion-panel {
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 16px;
}

.suggestion-panel span,
.selected-copy span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.suggestion-panel p,
.selected-copy p,
.team-member p,
.portal-note {
  color: #617085;
}

.treatments-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  background: #ffffff;
  color: var(--ink);
}

.treatments-section h2,
.treatments-section .section-copy {
  color: var(--ink);
}

.treatment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  align-items: start;
}

.therapy-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.therapy-tile {
  position: relative;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-align: left;
}

.therapy-icon {
  position: absolute;
  right: 9px;
  top: 8px;
  width: 38px;
  height: 30px;
  object-fit: contain;
}

.therapy-tile span {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
}

.therapy-tile strong {
  display: block;
  padding-right: 34px;
  font-weight: 850;
}

.therapy-tile:hover,
.therapy-tile:focus-visible,
.therapy-tile.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  outline: none;
}

.therapy-tile:hover span,
.therapy-tile:focus-visible span,
.therapy-tile.is-active span {
  color: var(--teal);
}

.selected-therapy {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(17, 40, 70, 0.12);
}

.selected-therapy img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.selected-therapy img[data-kind="icon"] {
  background:
    radial-gradient(circle at 28% 22%, rgba(124, 199, 195, 0.32), transparent 26%),
    linear-gradient(135deg, #f7fcfb, #dcefeb);
  object-fit: contain;
  padding: 28px;
}

.selected-copy {
  padding: 18px;
}

.selected-copy .btn {
  margin-top: 6px;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 28px;
}

.team-grid {
  display: grid;
  gap: 14px;
}

.team-member {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  padding: 12px;
}

.team-member img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  background: var(--teal-soft);
}

.team-member h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.team-role {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-member p {
  margin-bottom: 0;
  font-size: 14px;
}

.request-section {
  padding: 70px 0;
  background: #edf5f3;
}

.request-section .request-panel {
  border: 1px solid var(--line);
  background: #fbfcfd;
  box-shadow: 0 12px 30px rgba(17, 40, 70, 0.08);
}

.request-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}

.office-line {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.office-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.office-line strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.1;
  text-align: right;
}

.hours-box {
  margin-top: 14px;
  border: 1px solid #cdd8df;
  border-radius: 8px;
  background: var(--white);
  padding: 14px 16px;
}

.hours-box span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.hours-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(112px, 0.72fr) minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.hours-list dt,
.hours-list dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
}

.hours-list dt {
  color: var(--navy);
  font-weight: 900;
}

.hours-list dd {
  color: #607085;
  font-weight: 750;
}

.request-actions {
  margin-top: 14px;
}

.request-actions .btn {
  flex: 1 1 150px;
}

.portal-note {
  margin: 14px 0 0;
  font-size: 13px;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.9fr) minmax(150px, 0.6fr);
  align-items: start;
  gap: 24px;
  padding: 24px 112px 24px 0;
  font-size: 14px;
}

.footer-block,
.footer-main,
.footer-language {
  min-width: 0;
}

.footer-main,
.footer-block {
  display: grid;
  gap: 8px;
}

.footer-block span:first-child {
  color: var(--white);
  font-weight: 850;
}

.footer-main a {
  width: fit-content;
  border-radius: 6px;
  color: var(--white);
  font-weight: 850;
}

.footer-main a:hover,
.footer-main a:focus-visible {
  color: var(--teal);
  outline: none;
}

.footer-hours {
  color: rgba(255, 255, 255, 0.82);
}

.hours-list-footer {
  gap: 6px;
}

.hours-list-footer div {
  grid-template-columns: minmax(92px, 0.8fr) minmax(0, 1fr);
}

.hours-list-footer dt,
.hours-list-footer dd {
  color: rgba(255, 255, 255, 0.82);
}

.hours-list-footer dt {
  color: var(--white);
}

.footer-language {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.language-control {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.language-control select {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy-deep);
  padding: 6px 30px 6px 10px;
  font: inherit;
}

.language-control select:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.assistant-widget {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 8;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.assistant-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  border: 1px solid rgba(17, 40, 70, 0.14);
  border-radius: 8px;
  background: var(--teal);
  color: var(--navy-deep);
  padding: 8px 12px 8px 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17, 40, 70, 0.24);
}

.assistant-toggle img {
  width: 34px;
  height: 34px;
}

.assistant-panel {
  width: min(312px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  padding: 14px;
  box-shadow: 0 18px 44px rgba(17, 40, 70, 0.22);
}

.assistant-panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.assistant-panel-header img {
  width: 46px;
  height: 46px;
}

.assistant-panel-header strong,
.assistant-panel-header span {
  display: block;
}

.assistant-panel-header strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.1;
}

.assistant-panel-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.assistant-panel p {
  margin-bottom: 12px;
  color: #607085;
  font-size: 13px;
}

.assistant-contact {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.assistant-contact div {
  border: 1px solid #cdd8df;
  border-radius: 6px;
  background: #f7fbfa;
  padding: 9px 10px;
}

.assistant-contact span,
.assistant-contact strong {
  display: block;
}

.assistant-contact span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assistant-contact strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.assistant-toggle:hover,
.assistant-toggle:focus-visible {
  outline: none;
  border-color: var(--blue);
}

.assistant-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.assistant-links .btn {
  min-height: 40px;
  padding: 9px 10px;
  font-size: 12px;
}

.mobile-call-cta {
  display: none;
}

@media (max-width: 560px) {
  body {
    padding-bottom: 76px;
  }

  .shell {
    width: min(calc(100% - 22px), 390px);
  }

  .header-inner {
    width: min(calc(100% - 18px), 390px);
    min-height: 86px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .nav-links a {
    padding: 6px 5px;
    font-size: 11px;
  }

  .hero-grid {
    min-height: auto;
    padding: 26px 0 34px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions .btn,
  .inline-actions .btn {
    width: 100%;
  }

  .assistant-widget {
    bottom: 12px;
  }

  .assistant-toggle {
    min-width: 96px;
  }

  .mobile-call-cta {
    position: fixed;
    left: 12px;
    bottom: 12px;
    z-index: 8;
    width: calc(100vw - 190px);
    min-width: 128px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--blue);
    color: var(--white);
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(17, 40, 70, 0.24);
  }

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

  .therapy-icon {
    width: 48px;
    height: 38px;
  }

  .office-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .office-line strong {
    text-align: left;
  }

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

  .footer-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 86px 22px 0;
  }

  .footer-language {
    width: 100%;
    justify-content: flex-start;
  }

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

  .language-control {
    width: min(100%, 190px);
  }

  .language-control select {
    width: 100%;
  }
}

@media (min-width: 760px) {
  .header-inner {
    min-height: 82px;
  }

  .brand img {
    width: 210px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 14px;
  }

  .hero-grid {
    padding: 72px 0;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  .path-tool,
  .request-panel {
    padding: 22px;
  }

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

  .team-member {
    padding: 14px;
  }

  .team-member img {
    aspect-ratio: 4 / 5;
  }

}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 38px;
  }

  .path-grid,
  .request-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
  }

  .treatment-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
  }
}

@media (min-width: 1040px) {
  h1 {
    font-size: 66px;
  }

  .hero-grid {
    min-height: 760px;
  }

  .hero-lede,
  .section-copy {
    font-size: 18px;
  }

  .selected-copy {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
