:root {
  --night-950: #071d2a;
  --night-900: #0b2636;
  --night-800: #12384a;
  --teal-800: #155b59;
  --teal-700: #1d6b66;
  --teal-600: #2b7f78;
  --teal-100: #dcebea;
  --teal-50: #eef6f4;
  --orange-700: #b84d1d;
  --orange-600: #d9622b;
  --orange-500: #e9773e;
  --orange-100: #f9dfd1;
  --cream: #f5f1e9;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #142630;
  --muted: #5b6a72;
  --line: #dbe2e2;
  --shadow-sm: 0 12px 30px rgba(7, 29, 42, 0.08);
  --shadow-lg: 0 28px 70px rgba(7, 29, 42, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  display: block;
}

svg:not(.svg-sprite) {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--night-950);
  line-height: 1.12;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
}

h3 {
  font-size: 1.16rem;
  letter-spacing: -0.015em;
}

::selection {
  color: var(--white);
  background: var(--teal-700);
}

:focus-visible {
  outline: 3px solid var(--orange-700);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--night-950);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 10vw, 144px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 78px;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(7, 29, 42, 0.09);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(7, 29, 42, 0.07);
}

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

.brand {
  display: inline-flex;
  min-width: 224px;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--night-900);
  border-radius: 50% 50% 50% 12px;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand-copy strong {
  color: var(--night-950);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange-700);
  box-shadow: 0 10px 25px rgba(217, 98, 43, 0.24);
}

.button-primary:hover {
  background: #963c16;
  box-shadow: 0 14px 30px rgba(184, 77, 29, 0.3);
}

.button-secondary {
  color: var(--night-950);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(7, 29, 42, 0.18);
}

.button-secondary:hover {
  background: var(--white);
  border-color: var(--night-900);
}

.button-light {
  color: var(--night-950);
  background: var(--white);
}

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

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--teal-800);
  font-size: 0.91rem;
  font-weight: 750;
}

.text-link svg {
  width: 18px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(72px, 8vw, 112px);
  background:
    radial-gradient(circle at 18% 8%, rgba(43, 127, 120, 0.12), transparent 30%),
    linear-gradient(180deg, var(--paper), var(--cream));
}

.hero::after {
  position: absolute;
  z-index: 0;
  right: -120px;
  bottom: 140px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(21, 91, 89, 0.13);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 90px;
  right: 6vw;
  width: 180px;
  height: 180px;
  background: rgba(233, 119, 62, 0.13);
}

.hero-glow-two {
  bottom: 220px;
  left: -50px;
  width: 160px;
  height: 160px;
  background: rgba(43, 127, 120, 0.12);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(52px, 7vw, 92px);
}

.hero-copy {
  padding-bottom: 54px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--teal-800);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--orange-500);
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(3.3rem, 6.7vw, 6.3rem);
}

.hero h1 span {
  display: block;
  margin-top: 13px;
  color: var(--teal-800);
  font-family: var(--sans);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 650;
  letter-spacing: 0.005em;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: #41545d;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

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

.hero-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-address > svg {
  width: 20px;
  margin-top: 3px;
  color: var(--teal-700);
}

.hero-address span {
  display: flex;
  flex-direction: column;
}

.hero-address strong {
  margin-bottom: 2px;
  color: var(--night-950);
}

.portrait-wrap {
  position: relative;
  width: min(100%, 455px);
  margin-left: auto;
}

.portrait-wrap picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4.25;
  background: #e9e2d7;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 46% 46% 28px 28px;
  box-shadow: var(--shadow-lg);
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-accent {
  position: absolute;
  z-index: -1;
  top: -28px;
  right: -24px;
  width: 76%;
  height: 90%;
  border: 2px solid rgba(21, 91, 89, 0.3);
  border-radius: 48% 48% 34px 34px;
}

.portrait-card {
  position: absolute;
  right: -34px;
  bottom: 42px;
  display: flex;
  width: min(300px, 82%);
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(7, 29, 42, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.portrait-card-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--orange-700);
  background: var(--orange-100);
  border-radius: 50%;
}

.portrait-card-icon svg {
  width: 19px;
}

.portrait-card > span:last-child {
  display: flex;
  flex-direction: column;
  font-size: 0.76rem;
  line-height: 1.4;
}

.portrait-card strong {
  margin-bottom: 2px;
  color: var(--night-950);
  font-size: 0.9rem;
}

.facts {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: 56px;
  background: var(--white);
  border: 1px solid rgba(7, 29, 42, 0.1);
  border-bottom: 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(4, 1fr);
}

.facts > div {
  position: relative;
  display: flex;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 30px;
}

.facts > div + div::before {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: 0;
  width: 1px;
  background: var(--line);
  content: "";
}

.facts strong {
  margin-bottom: 4px;
  color: var(--night-950);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.facts span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section-about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(48px, 8vw, 115px);
}

.section-heading h2 {
  max-width: 620px;
}

.section-heading > p:not(.kicker) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading.centered {
  display: flex;
  max-width: 800px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading.centered h2 {
  margin-bottom: 18px;
}

.section-heading.centered .kicker {
  justify-content: center;
}

.lead-copy {
  margin-bottom: 38px;
  color: #304852;
  font-family: var(--serif);
  font-size: clamp(1.32rem, 2.2vw, 1.72rem);
  line-height: 1.55;
}

.credentials {
  display: grid;
  gap: 0;
}

.credentials article {
  display: grid;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.credentials article:last-child {
  border-bottom: 1px solid var(--line);
}

.credential-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--teal-800);
  background: var(--teal-50);
  border-radius: 50%;
}

.credential-icon svg {
  width: 19px;
}

.credentials h3 {
  margin-bottom: 8px;
}

.credentials p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-usefulness {
  background: var(--teal-50);
}

.usefulness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.usefulness-card {
  position: relative;
  overflow: hidden;
  min-height: 276px;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid rgba(21, 91, 89, 0.11);
  border-radius: var(--radius-md);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.usefulness-card:hover {
  border-color: rgba(21, 91, 89, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.card-number {
  display: inline-flex;
  margin-bottom: 50px;
  color: var(--orange-700);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.usefulness-card h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 600;
}

.usefulness-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.medical-note {
  display: grid;
  max-width: 920px;
  align-items: start;
  margin: 46px auto 0;
  padding: 23px 26px;
  color: #334d57;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 91, 89, 0.18);
  border-radius: var(--radius-md);
  grid-template-columns: 46px 1fr;
  gap: 17px;
}

.medical-note-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--orange-700);
  background: var(--orange-100);
  border-radius: 50%;
}

.medical-note p {
  margin: 0;
  font-size: 0.92rem;
}

.medical-note strong {
  color: var(--night-950);
}

.section-process {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background: var(--night-900);
}

.section-process::before {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(55px, 8vw, 110px);
}

.kicker-light {
  color: #90cbc5;
}

.process-intro h2,
.contact-copy h2 {
  color: var(--white);
}

.process-intro > p:not(.kicker) {
  max-width: 540px;
  margin-bottom: 34px;
  font-size: 1.02rem;
}

.appointment-card {
  display: grid;
  max-width: 430px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.appointment-card span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
}

.appointment-card svg {
  width: 19px;
  color: #90cbc5;
}

.appointment-card small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.64);
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  grid-template-columns: 62px 1fr;
  gap: 20px;
}

.steps-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.step-number {
  color: #90cbc5;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.steps-list h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.steps-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.section-collaboration {
  background: var(--paper);
}

.collaboration-card {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(38px, 6vw, 72px);
  background: var(--cream);
  border: 1px solid #e4ded4;
  border-radius: var(--radius-lg);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(45px, 7vw, 95px);
}

.collaboration-card::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  background: rgba(43, 127, 120, 0.08);
  border-radius: 50%;
  content: "";
}

.collab-heading,
.collab-content {
  position: relative;
  z-index: 1;
}

.collab-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4.6vw, 4.1rem);
}

.collab-content > p {
  margin-bottom: 25px;
  color: var(--muted);
}

.clean-list {
  display: grid;
  margin: 0 0 31px;
  padding: 0;
  list-style: none;
  gap: 12px;
}

.clean-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--night-950);
  font-weight: 650;
}

.clean-list svg {
  width: 19px;
  color: var(--teal-700);
}

.section-faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro p:not(.kicker) {
  color: var(--muted);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 48px 20px 0;
  color: var(--night-950);
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 720;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 18px;
  height: 2px;
  background: var(--teal-700);
  content: "";
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details[open] summary {
  color: var(--teal-800);
}

.faq-list details p {
  max-width: 720px;
  margin: -2px 48px 24px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-contact {
  color: rgba(255, 255, 255, 0.75);
  background: var(--teal-800);
}

.contact-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy > p:not(.kicker) {
  max-width: 520px;
  margin-bottom: 30px;
}

.contact-cards {
  display: grid;
  margin: 0;
  font-style: normal;
  gap: 12px;
}

.contact-cards > a {
  display: grid;
  min-width: 0;
  align-items: center;
  padding: 17px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  grid-template-columns: 46px minmax(0, 1fr) 24px;
  gap: 13px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-cards > a:hover {
  box-shadow: 0 15px 35px rgba(7, 29, 42, 0.22);
  transform: translateX(5px);
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--teal-800);
  background: var(--teal-50);
  border-radius: 50%;
}

.contact-icon svg {
  width: 19px;
}

.contact-cards > a > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.contact-cards small {
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-cards strong {
  overflow-wrap: anywhere;
  color: var(--night-950);
  font-size: 0.92rem;
}

.contact-cards > a > svg {
  width: 18px;
  color: var(--teal-700);
}

.site-footer {
  padding-top: 64px;
  color: rgba(255, 255, 255, 0.67);
  background: var(--night-950);
}

.footer-grid {
  display: grid;
  padding-bottom: 48px;
  grid-template-columns: 1.5fr 1fr 0.7fr;
  gap: 60px;
}

.brand-footer {
  margin-bottom: 20px;
}

.brand-footer .brand-mark {
  color: var(--night-950);
  background: var(--white);
}

.brand-footer .brand-copy strong {
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid > div:first-child p {
  max-width: 470px;
  margin-bottom: 0;
  font-size: 0.84rem;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid > div:not(:first-child) a {
  font-size: 0.86rem;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  max-width: 650px;
  margin: 0;
  font-size: 0.72rem;
}

.footer-bottom p:last-child {
  text-align: right;
}

.mobile-actions {
  display: none;
}

.legal-page {
  background: var(--paper);
}

.legal-main {
  padding-block: clamp(70px, 9vw, 120px);
}

.legal-shell {
  max-width: 820px;
}

.legal-shell > h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.legal-updated {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-intro {
  margin-bottom: 54px;
  padding: 28px 30px;
  color: #304852;
  background: var(--teal-50);
  border-left: 4px solid var(--teal-700);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.legal-intro p:last-child {
  margin-bottom: 0;
}

.legal-shell section {
  padding-block: 30px;
  border-top: 1px solid var(--line);
}

.legal-shell section h2 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.legal-shell section p {
  color: #41545d;
}

.legal-shell section p:last-child {
  margin-bottom: 0;
}

.legal-shell section a {
  color: var(--teal-800);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.legal-back {
  margin-top: 36px;
}

.legal-footer {
  padding-top: 0;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid {
    gap: 50px;
  }

  .portrait-card {
    right: -12px;
  }

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

  .usefulness-card {
    min-height: 240px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(100% - 32px, 680px);
  }

  .site-header,
  .header-inner {
    min-height: 70px;
  }

  .header-inner > .button {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid,
  .about-grid,
  .process-layout,
  .collaboration-card,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 620px;
  }

  .portrait-wrap {
    width: min(88%, 410px);
    margin: 5px auto 0;
  }

  .facts {
    margin-top: 54px;
    grid-template-columns: repeat(2, 1fr);
  }

  .facts > div:nth-child(3)::before {
    display: none;
  }

  .facts > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .about-grid,
  .process-layout,
  .faq-layout,
  .contact-grid {
    gap: 45px;
  }

  .faq-intro {
    position: static;
  }

  .collaboration-card {
    gap: 36px;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .mobile-actions {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 72px;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid rgba(7, 29, 42, 0.13);
    box-shadow: 0 -10px 30px rgba(7, 29, 42, 0.11);
    backdrop-filter: blur(14px);
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-actions a {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--night-900);
    font-size: 0.7rem;
    font-weight: 750;
  }

  .mobile-actions svg {
    width: 21px;
    height: 21px;
  }

  .mobile-actions .mobile-primary {
    margin: 8px 4px;
    color: var(--white);
    background: var(--orange-700);
    border-radius: 12px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 28px);
  }

  .section {
    padding-block: 76px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.64rem;
  }

  .hero {
    padding-top: 46px;
  }

  .eyebrow,
  .kicker {
    font-size: 0.69rem;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.25rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button-primary {
    width: 100%;
  }

  .hero-actions .button-secondary {
    flex: 1;
  }

  .hero-actions .text-link {
    flex: 1;
    justify-content: center;
  }

  .portrait-wrap {
    width: min(94%, 390px);
  }

  .portrait-wrap picture {
    border-width: 6px;
  }

  .portrait-card {
    right: -4px;
    bottom: 24px;
    width: 88%;
  }

  .facts > div {
    min-height: 94px;
    padding: 18px;
  }

  .facts strong {
    font-size: 1.17rem;
  }

  .facts span {
    font-size: 0.75rem;
  }

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

  .usefulness-card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 32px;
  }

  .medical-note {
    grid-template-columns: 1fr;
  }

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

  .appointment-card small {
    grid-column: auto;
  }

  .steps-list li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .collaboration-card {
    width: calc(100% - 20px);
    padding: 32px 22px;
    border-radius: 24px;
  }

  .collab-content .button {
    width: 100%;
  }

  .faq-list summary {
    min-height: 72px;
    padding-right: 38px;
    font-size: 0.98rem;
  }

  .faq-list details p {
    margin-right: 18px;
  }

  .contact-cards > a {
    padding: 14px;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    gap: 10px;
  }

  .contact-cards strong {
    font-size: 0.82rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .brand-copy strong {
    font-size: 0.93rem;
  }

  .brand-copy small {
    letter-spacing: 0.05em;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .facts > div {
    padding: 15px 13px;
  }

  .facts strong {
    font-size: 1.06rem;
  }
}

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

@media print {
  .site-header,
  .mobile-actions,
  .hero-actions,
  .section-collaboration {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
    background: #fff;
  }

  .section,
  .hero {
    padding-block: 30px;
    color: #000;
    background: #fff;
  }
}
