

:root {
  --paper: #f4f0e8;
  --paper-soft: #faf8f3;
  --ink: #122e32;
  --ink-deep: #0b2529;
  --ink-muted: #51676a;
  --orange: #f58753;
  --orange-deep: #c9572d;
  --sage: #a7bd76;
  --blue: #2c93b6;
  --yellow: #f2c827;
  --purple: #6f55a0;
  --line: rgba(18, 46, 50, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a,
summary { font: inherit; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

h1,
h2,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  max-width: 900px;
  margin-bottom: 30px;
  font-size: clamp(4rem, 8vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 15px;
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 520;
}

p {
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(11, 37, 41, 0.14);
}

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

.utility-bar {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding: 9px max(26px, calc((100vw - 1500px) / 2));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: #5c7072;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.utility-bar a { color: var(--orange-deep); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 38px;
  min-height: 92px;
  padding: 0 max(26px, calc((100vw - 1500px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(244, 240, 232, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 86px;
  height: 58px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong { font-size: 0.92rem; letter-spacing: 0.16em; }
.brand-copy small { color: var(--ink-muted); font-size: 0.57rem; letter-spacing: 0.24em; }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
  color: #294b4f;
  font-size: 0.83rem;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange-deep);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }

.language-switcher,
.mobile-language-switcher {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.26);
}

.language-switcher a,
.mobile-language-switcher a {
  display: inline-flex;
  min-width: 52px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ink-muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.language-flag {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.language-switcher a[aria-current="page"],
.mobile-language-switcher a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.language-switcher a:hover,
.language-switcher a:focus-visible,
.mobile-language-switcher a:hover,
.mobile-language-switcher a:focus-visible { color: var(--orange-deep); }

.language-switcher a[aria-current="page"]:hover,
.language-switcher a[aria-current="page"]:focus-visible,
.mobile-language-switcher a[aria-current="page"]:hover,
.mobile-language-switcher a[aria-current="page"]:focus-visible { color: #fff; }

.mobile-language-switcher { display: none; }

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 13px 17px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.header-action span { color: var(--orange-deep); }
.mobile-menu { display: none; }

.section-label {
  margin-bottom: 22px;
  color: var(--orange-deep);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-label-light { color: #f5ad88; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: 700px;
  overflow: hidden;
  padding: clamp(80px, 9vw, 135px) max(26px, calc((100vw - 1500px) / 2)) 70px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px) 0 0 / 80px 100%,
    var(--paper);
}

.hero-copy,
.hero-footnote { position: relative; z-index: 1; }

.hero-copy { max-width: 1020px; }

.hero-brain-art {
  position: absolute;
  top: 47%;
  right: max(18px, calc((100vw - 1620px) / 2));
  z-index: 0;
  width: clamp(520px, 48vw, 820px);
  aspect-ratio: 1;
  transform: translate(9%, -50%);
  pointer-events: none;
}

.hero-brain-art::before {
  position: absolute;
  inset: 0;
  background: url("/neural-brain-transparent.png") center / contain no-repeat;
  content: "";
  opacity: 0.2;
  transform-origin: 52% 51%;
  animation: hero-brain-drift 12s ease-in-out infinite alternate;
}

.hero-brain-art::after,
.hero-brain-art > span {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 31% 34%, rgba(207, 78, 42, 0.72) 0 3px, transparent 6px),
    radial-gradient(circle at 46% 25%, rgba(207, 78, 42, 0.62) 0 3px, transparent 7px),
    radial-gradient(circle at 65% 33%, rgba(207, 78, 42, 0.58) 0 3px, transparent 7px),
    radial-gradient(circle at 39% 51%, rgba(207, 78, 42, 0.58) 0 3px, transparent 7px),
    radial-gradient(circle at 63% 53%, rgba(207, 78, 42, 0.7) 0 3px, transparent 7px),
    radial-gradient(circle at 51% 66%, rgba(207, 78, 42, 0.62) 0 3px, transparent 7px);
  content: "";
  mix-blend-mode: multiply;
  opacity: 0.2;
  animation: hero-neural-pulse 5.8s ease-in-out infinite;
}

.hero-brain-art > span {
  background:
    radial-gradient(circle at 37% 28%, rgba(18, 46, 50, 0.72) 0 3px, transparent 7px),
    radial-gradient(circle at 58% 29%, rgba(18, 46, 50, 0.65) 0 3px, transparent 7px),
    radial-gradient(circle at 70% 43%, rgba(18, 46, 50, 0.72) 0 3px, transparent 7px),
    radial-gradient(circle at 30% 58%, rgba(18, 46, 50, 0.66) 0 3px, transparent 7px),
    radial-gradient(circle at 56% 55%, rgba(18, 46, 50, 0.74) 0 3px, transparent 7px),
    radial-gradient(circle at 63% 69%, rgba(18, 46, 50, 0.68) 0 3px, transparent 7px);
  animation-delay: -2.7s;
  animation-duration: 6.7s;
}

@keyframes hero-brain-drift {
  from { transform: translate3d(-5px, 5px, 0) scale(0.992); }
  to { transform: translate3d(7px, -7px, 0) scale(1.012); }
}

@keyframes hero-neural-pulse {
  0%, 100% { opacity: 0.08; transform: scale(0.995); }
  45% { opacity: 0.34; transform: scale(1.006); }
  70% { opacity: 0.16; }
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 36px;
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button:hover { transform: translateY(-2px); background: #1b464c; }

.text-action {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.text-action span { color: var(--orange-deep); }

.hero-footnote {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  margin-top: 60px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.hero-point {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-width: 0;
}

.hero-point-visual {
  position: relative;
  display: block;
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border: 1.5px solid var(--orange-deep);
  border-radius: 50%;
  color: var(--ink);
}

.hero-point-visual i {
  position: absolute;
  inset: 0;
  display: block;
  font-style: normal;
}

.hero-point-doctor::before {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 19px;
  height: 19px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.hero-point-doctor::after {
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 47px;
  height: 31px;
  transform: translateX(-50%);
  border-radius: 24px 24px 7px 7px;
  background: currentColor;
  clip-path: polygon(0 100%, 7% 34%, 33% 6%, 50% 30%, 67% 6%, 93% 34%, 100% 100%);
  content: "";
}

.hero-point-doctor i::before {
  position: absolute;
  right: 12px;
  bottom: 13px;
  display: grid;
  z-index: 1;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid var(--orange-deep);
  border-radius: 50%;
  background: var(--paper);
  color: var(--orange-deep);
  content: "+";
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.hero-point-telehealth::before {
  position: absolute;
  top: 16px;
  left: 13px;
  width: 55px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "";
}

.hero-point-telehealth::after {
  position: absolute;
  bottom: 15px;
  left: 29px;
  width: 26px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}

.hero-point-telehealth i::before {
  position: absolute;
  top: 23px;
  left: 50%;
  width: 11px;
  height: 11px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.hero-point-telehealth i::after {
  position: absolute;
  top: 36px;
  left: 50%;
  width: 25px;
  height: 15px;
  transform: translateX(-50%);
  border-radius: 14px 14px 3px 3px;
  background: currentColor;
  content: "";
}

.hero-point-phone i {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
}

.hero-footnote p {
  margin: 0;
  color: #3f5a5e;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-intro {
  display: grid;
  grid-template-columns: 0.34fr 1.3fr 0.5fr;
  align-items: start;
  gap: clamp(34px, 6vw, 90px);
  padding: clamp(95px, 12vw, 180px) max(26px, calc((100vw - 1500px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.editorial-intro blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.5rem, 4.5vw, 4.9rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.intro-note { padding-top: 9px; }
.intro-note p { margin-bottom: 28px; font-size: 0.94rem; }
.intro-note a { display: inline-flex; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 0.8rem; font-weight: 700; }
.intro-note a span { color: var(--orange-deep); }

.services {
  padding: clamp(95px, 11vw, 170px) max(26px, calc((100vw - 1500px) / 2));
  background: var(--paper);
}

.services-heading {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(34px, 7vw, 110px);
  margin-bottom: 70px;
}

.services-heading h2 { margin-bottom: 0; }

.care-modes {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(190px, 0.7fr) minmax(320px, 1.4fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  margin-bottom: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.care-modes > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.care-mode-visual {
  position: relative;
  display: block;
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
}

.care-mode-visual > .hero-point-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.78);
}

.care-modes strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 400;
}

.care-modes p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.76rem;
  line-height: 1.6;
}

.care-modes > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
}

.care-modes > a span { color: var(--orange-deep); }

.service-list { border-top: 1px solid var(--ink); }

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.8fr) minmax(300px, 1.1fr) 220px;
  align-items: start;
  gap: clamp(22px, 4vw, 58px);
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background 180ms ease;
}

.service-row:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(255, 255, 255, 0.44);
}

.service-index {
  color: var(--orange-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.service-row h3 { margin-bottom: 0; }
.service-row p { margin-bottom: 0; font-size: 0.92rem; }

.service-detail {
  color: #738284;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.method {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 160px);
  padding: clamp(100px, 12vw, 180px) max(26px, calc((100vw - 1500px) / 2));
  background: var(--ink-deep);
  color: #fff;
}

.method-heading h2 { color: #fff; }
.method-heading > p:not(.section-label) { max-width: 620px; color: #b8c9c8; }

.method-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }

.method-steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
}

.method-steps > li > span {
  color: #f5ad88;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
}

.method-steps h3 { color: #fff; }
.method-steps p { max-width: 620px; margin-bottom: 0; color: #aebfbe; }

.team {
  padding: clamp(100px, 12vw, 180px) max(26px, calc((100vw - 1500px) / 2));
  background: var(--paper-soft);
}

.team-heading {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 70px;
}

.team-heading h2 { margin-bottom: 0; }
.team-heading > p { margin-bottom: 7px; }

.team-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.clinician {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.portrait {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  overflow: hidden;
  background: #d9e3df;
}

.portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.98);
  transition: transform 500ms ease, filter 500ms ease;
}

.portrait-one img { object-position: 50% 48%; }
.portrait-two img { object-position: 50% 30%; }

.clinician:hover .portrait img { transform: scale(1.025); filter: saturate(1) contrast(1); }

.portrait::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 26px;
  width: 56px;
  height: 56px;
  border-top: 1px solid rgba(18, 46, 50, 0.4);
  border-left: 1px solid rgba(18, 46, 50, 0.4);
}

.clinician-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 50px); }

.clinician-role {
  margin-bottom: 16px;
  color: var(--orange-deep);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.clinician-copy > p:not(.clinician-role) { margin-bottom: 28px; font-size: 0.9rem; }

.clinician-copy dl { margin: 0; border-top: 1px solid var(--line); }
.clinician-copy dl div { display: grid; grid-template-columns: 92px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.clinician-copy dt { color: #748487; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.clinician-copy dd { margin: 0; color: var(--ink); font-size: 0.76rem; line-height: 1.4; }

.insurance {
  display: grid;
  grid-template-columns: 130px 1fr 0.72fr auto;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(60px, 7vw, 90px) max(26px, calc((100vw - 1500px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ede4d7;
}

.insurance-number {
  display: grid;
  place-items: center;
  width: 105px;
  height: 105px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--orange-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
}

.insurance h2 { margin-bottom: 0; font-size: clamp(2.5rem, 4vw, 4rem); }
.insurance > p { margin-bottom: 0; }
.insurance > p strong { color: var(--ink); font-weight: 750; }
.insurance > a { display: inline-flex; gap: 14px; white-space: nowrap; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: 0.82rem; font-weight: 750; }
.insurance > a span { color: var(--orange-deep); }

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(60px, 11vw, 170px);
  padding: clamp(100px, 12vw, 180px) max(26px, calc((100vw - 1500px) / 2));
  background: var(--paper);
}

.faq-heading { align-self: start; position: sticky; top: 130px; }
.faq-heading h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 27px 0;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span:first-child { color: var(--orange-deep); font-family: Georgia, "Times New Roman", serif; }
.faq-list summary strong { font-size: 1rem; font-weight: 650; }
.faq-icon { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; color: var(--orange-deep); transition: transform 170ms ease; }
.faq-list details[open] .faq-icon { transform: rotate(45deg); }
.faq-list details > p { max-width: 740px; padding: 0 48px 24px 68px; }

.contact {
  padding: clamp(100px, 12vw, 180px) max(26px, calc((100vw - 1500px) / 2)) 60px;
  background: var(--orange);
  color: var(--ink-deep);
}

.contact-lead {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.55fr;
  align-items: start;
  gap: clamp(30px, 5vw, 80px);
  margin-bottom: 70px;
}

.contact-lead .section-label { color: var(--ink-deep); }
.contact-lead h2 { grid-column: 2; margin-bottom: 0; }
.contact-lead > p:last-child { grid-column: 3; margin-bottom: 0; color: #573626; font-size: 0.9rem; }

.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(18, 46, 50, 0.5); }

.contact-options a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 34px 26px;
  border-right: 1px solid rgba(18, 46, 50, 0.35);
  transition: background 180ms ease;
}

.contact-options a:last-child { border-right: 0; }
.contact-options a:hover { background: rgba(255, 255, 255, 0.18); }
.contact-options span { font-size: 0.67rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-options strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.4vw, 2.4rem); font-weight: 400; }
.contact-options small { color: #694431; }

.location-link {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  padding: 24px 0;
  border-top: 1px solid rgba(18, 46, 50, 0.5);
  border-bottom: 1px solid rgba(18, 46, 50, 0.5);
}

.location-link > span:first-child { font-size: 0.67rem; font-weight: 750; letter-spacing: 0.12em; text-transform: uppercase; }
.location-link strong { font-weight: 600; }
.location-link > span:last-child { font-size: 1.2rem; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  padding: 70px max(26px, calc((100vw - 1500px) / 2)) 25px;
  background: var(--ink-deep);
  color: #fff;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { letter-spacing: 0.15em; }
.footer-brand span { color: #9db1b2; font-size: 0.65rem; letter-spacing: 0.22em; }
.site-footer > p { max-width: 430px; color: #9db1b2; }
.footer-links { display: flex; gap: 24px; font-size: 0.78rem; }
.footer-links a:hover { color: #f5ad88; }

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: #71888a;
  font-size: 0.7rem;
}

.mascot-contact {
  position: fixed;
  right: clamp(16px, 2.2vw, 34px);
  bottom: clamp(18px, 2.2vw, 32px);
  z-index: 80;
}

.mascot-contact > summary {
  position: relative;
  display: grid;
  width: 104px;
  height: 74px;
  place-items: center;
  cursor: pointer;
  list-style: none;
  transform-origin: right bottom;
  background: radial-gradient(circle at 50% 69%, rgba(250, 248, 243, 0.96) 0 31%, transparent 32%);
  filter: drop-shadow(0 12px 16px rgba(11, 37, 41, 0.2));
  animation: mascot-invite 8s ease-in-out infinite;
}

.mascot-contact > summary::-webkit-details-marker { display: none; }
.mascot-contact > summary::marker { content: ""; }

.mascot-contact > summary:focus-visible {
  outline: 2px solid var(--orange-deep);
  outline-offset: 5px;
}

.mascot-contact > summary img {
  grid-area: 1 / 1;
  width: 100%;
  height: auto;
}

.mascot-face-open { animation: mascot-eyes-open 6.8s step-end infinite; }
.mascot-face-blink { opacity: 0; animation: mascot-eyes-blink 6.8s step-end infinite; }

.mascot-contact-indicator {
  position: absolute;
  right: -2px;
  bottom: 3px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--orange-deep);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.mascot-contact[open] > summary {
  transform: scale(1.09);
  animation: none;
}

.mascot-contact[open] .mascot-contact-indicator { background: var(--ink); }
.mascot-contact[open] .mascot-contact-indicator { font-size: 0; }
.mascot-contact[open] .mascot-contact-indicator::after { content: "×"; font-size: 1rem; }

.mascot-contact-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 18px);
  width: min(330px, calc(100vw - 32px));
  padding: 25px;
  border-top: 4px solid var(--orange);
  background: var(--ink-deep);
  color: #fff;
  box-shadow: 0 24px 70px rgba(11, 37, 41, 0.28);
  animation: mascot-panel-in 180ms ease-out both;
}

.mascot-contact-panel > p {
  margin-bottom: 7px;
  color: #f5ad88;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mascot-contact-panel > strong {
  display: block;
  margin-bottom: 19px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

.mascot-contact-panel nav { border-top: 1px solid var(--line-light); }

.mascot-contact-panel nav a {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-light);
  color: #fff;
}

.mascot-contact-panel nav a span { color: #fff; font-size: 0.78rem; font-weight: 750; }
.mascot-contact-panel nav a small { color: #afc1c0; font-size: 0.72rem; }
.mascot-contact-panel nav a:hover small,
.mascot-contact-panel nav a:focus-visible small { color: #fff; }

.mascot-contact-note {
  display: block;
  margin-top: 16px;
  color: #879e9f;
  font-size: 0.64rem;
  line-height: 1.5;
}

@keyframes mascot-invite {
  0%, 70%, 100% { opacity: 0.92; transform: scale(1) translateY(0); }
  76% { opacity: 0.74; transform: scale(0.98) translateY(1px); }
  83% { opacity: 1; transform: scale(1.08) translateY(-3px); }
  89% { opacity: 0.92; transform: scale(1) translateY(0); }
  94% { opacity: 1; transform: scale(1.05) translateY(-2px); }
}

@keyframes mascot-eyes-open {
  0%, 73%, 77%, 79%, 83%, 100% { opacity: 1; }
  74%, 76%, 80%, 82% { opacity: 0; }
}

@keyframes mascot-eyes-blink {
  0%, 73%, 77%, 79%, 83%, 100% { opacity: 0; }
  74%, 76%, 80%, 82% { opacity: 1; }
}

@keyframes mascot-panel-in {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1120px) {
  .desktop-nav { gap: 22px; }
  .hero-copy { max-width: 1000px; }
  .service-row { grid-template-columns: 56px minmax(240px, 0.8fr) minmax(280px, 1.1fr); }
  .service-detail { grid-column: 2 / -1; }
  .team-list { grid-template-columns: 1fr; }
  .clinician { grid-template-columns: 0.58fr 1fr; }
  .insurance { grid-template-columns: 100px 1fr 0.8fr; }
  .insurance > a { grid-column: 2; width: fit-content; }
}

@media (max-width: 920px) {
  .hero-brain-art {
    top: 39%;
    right: -220px;
    width: 680px;
  }
  .utility-bar span { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav,
  .header-action,
  .language-switcher { display: none; }
  .mobile-menu { position: relative; display: block; }
  .mobile-menu summary { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 18px; height: 1px; margin: 3px 0; background: var(--ink); }
  .mobile-menu[open] nav { position: absolute; top: 55px; right: 0; display: flex; flex-direction: column; width: min(310px, calc(100vw - 30px)); padding: 14px; border: 1px solid var(--line); background: var(--paper-soft); box-shadow: 0 22px 60px rgba(11, 37, 41, 0.14); }
  .mobile-menu nav a { padding: 12px; border-bottom: 1px solid var(--line); font-weight: 650; }
  .mobile-menu nav .mobile-language-switcher {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 12px;
    padding: 3px;
  }
  .mobile-menu nav .mobile-language-switcher a {
    min-height: 40px;
    padding: 0;
    border-bottom: 0;
  }
  .editorial-intro,
  .services-heading,
  .method,
  .team-heading,
  .faq { grid-template-columns: 1fr; }
  .editorial-intro { gap: 28px; }
  .editorial-intro blockquote { max-width: 900px; }
  .intro-note { max-width: 620px; }
  .services-heading { gap: 20px; }
  .care-modes { grid-template-columns: 1fr 1fr; }
  .care-modes p { grid-column: 1 / -1; max-width: 680px; }
  .care-modes > a { width: fit-content; }
  .method { gap: 70px; }
  .team-heading { gap: 22px; }
  .team-heading > p { max-width: 680px; }
  .insurance { grid-template-columns: 90px 1fr; }
  .insurance > p { grid-column: 2; }
  .faq-heading { position: static; }
  .contact-lead { grid-template-columns: 1fr; }
  .contact-lead h2,
  .contact-lead > p:last-child { grid-column: 1; }
  .contact-lead > p:last-child { max-width: 680px; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 700px) {
  h1 { font-size: clamp(3.6rem, 17vw, 5.3rem); line-height: 0.94; }
  h2 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .utility-bar { justify-content: center; padding-right: 16px; padding-left: 16px; }
  .site-header { min-height: 76px; padding-right: 16px; padding-left: 16px; }
  .brand { gap: 11px; }
  .brand-mark { width: 68px; height: 44px; }
  .brand-copy strong { font-size: 0.8rem; }
  .brand-copy small { font-size: 0.5rem; }
  .hero,
  .editorial-intro,
  .services,
  .method,
  .team,
  .insurance,
  .faq,
  .contact,
  .site-footer { padding-right: 20px; padding-left: 20px; }
  .hero { min-height: auto; padding-top: 70px; }
  .hero-brain-art {
    top: 31%;
    right: -255px;
    width: 520px;
    opacity: 0.72;
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .primary-button { width: 100%; }
  .text-action { width: fit-content; }
  .hero-footnote { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }
  .hero-point-visual {
    flex-basis: 84px;
    width: 84px;
    height: 84px;
    margin: -6px;
    transform: scale(0.86);
    transform-origin: center;
  }
  .editorial-intro blockquote { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .care-modes { grid-template-columns: 1fr; gap: 18px; padding: 22px 0; }
  .care-modes p { grid-column: 1; }
  .service-row { grid-template-columns: 42px 1fr; gap: 16px; padding: 30px 0; }
  .service-row h3 { grid-column: 2; }
  .service-row p,
  .service-detail { grid-column: 2; }
  .service-row:hover { padding-right: 0; padding-left: 0; background: transparent; }
  .method-steps li { grid-template-columns: 48px 1fr; gap: 16px; }
  .clinician { grid-template-columns: 1fr; }
  .portrait { min-height: 320px; }
  .insurance { grid-template-columns: 1fr; }
  .insurance > p,
  .insurance > a { grid-column: 1; }
  .insurance > a { white-space: normal; }
  .faq-list summary { grid-template-columns: 34px 1fr auto; gap: 10px; }
  .faq-list details > p { padding-right: 0; padding-left: 44px; }
  .contact-options { grid-template-columns: 1fr; }
  .contact-options a { border-right: 0; border-bottom: 1px solid rgba(18, 46, 50, 0.35); }
  .location-link { grid-template-columns: 1fr auto; gap: 12px; }
  .location-link > span:first-child { grid-column: 1 / -1; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; }
  .mascot-contact { right: 14px; bottom: 14px; }
  .mascot-contact > summary { width: 88px; height: 64px; }
  .mascot-contact-panel { bottom: calc(100% + 14px); padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .mascot-contact > summary { animation: none !important; }
  .mascot-face-open { animation: none !important; opacity: 1 !important; }
  .mascot-face-blink { animation: none !important; opacity: 0 !important; }
  .hero-brain-art::before,
  .hero-brain-art::after,
  .hero-brain-art > span { animation: none !important; }
}

@media print {
  .utility-bar,
  .site-header,
  .mascot-contact,
  .hero-actions { display: none !important; }
}
