:root {
  color-scheme: dark;
  --bg: #0e0f13;
  --bg-2: #14161c;
  --surface: rgba(255, 255, 255, 0.065);
  --surface-strong: #181b22;
  --text: #f5f2ee;
  --muted: #b9bcc4;
  --soft: #8b8f98;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #e01e24;
  --brand-deep: #b4121a;
  --brand-dark: #7d0d13;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  font-family: "Public Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #faf8f5;
  --bg-2: #f1ede8;
  --surface: rgba(17, 19, 24, 0.055);
  --surface-strong: #ffffff;
  --text: #111318;
  --muted: #4a4d55;
  --soft: #747780;
  --line: rgba(17, 19, 24, 0.13);
  --brand: #b4121a;
  --brand-deep: #9d1118;
  --brand-dark: #7d0d13;
  --shadow: 0 24px 70px rgba(90, 25, 28, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  cursor: url("/assets/syringe-cursor.png") 44 5, auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  cursor: url("/assets/syringe-cursor.png") 44 5, auto;
}

body.menu-open {
  overflow: hidden;
}

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

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

section[id],
.coverage-band {
  scroll-margin-top: 96px;
}

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

a,
button,
input,
textarea,
select,
label,
[role="button"] {
  cursor: url("/assets/syringe-cursor.png") 44 5, pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: color-mix(in srgb, var(--bg) 76%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 156px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 4px 8px;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 2.6vw, 34px);
  color: var(--muted);
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button,
.call-link,
.facebook-link {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-weight: 900;
}

.lang-toggle,
.theme-toggle,
.menu-button,
.facebook-link,
.footer-social {
  cursor: pointer;
}

.switch-toggle,
.theme-toggle {
  position: relative;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-strong) 72%, transparent);
  color: var(--text);
  padding: 3px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--white) 3%, transparent);
}

.lang-toggle {
  width: 82px;
}

.theme-toggle {
  width: 96px;
}

.switch-track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  align-items: center;
}

.switch-option {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  height: 100%;
  font-size: 1.05rem;
}

.lang-toggle .switch-option {
  font-size: 1.25rem;
}

.switch-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 6px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--brand) 36%, transparent);
  transition: transform 180ms ease, background 180ms ease;
}

:root[data-theme="dark"] .theme-toggle {
  border-color: color-mix(in srgb, #8bbcff 60%, var(--line));
  box-shadow: 0 0 0 2px color-mix(in srgb, #8bbcff 26%, transparent);
}

:root[data-lang="en"] .lang-toggle .switch-knob {
  transform: translateX(calc(100% + 6px));
}

:root[data-theme="dark"] .theme-toggle .switch-knob {
  transform: translateX(calc(100% + 6px));
  background: var(--brand);
}

:root[data-theme="light"] .theme-toggle .switch-knob {
  background: #f4b000;
}

.theme-toggle .moon {
  color: #f8f2ff;
}

.theme-toggle .sun {
  color: #fff7c4;
}

.call-link {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--brand);
  color: var(--white);
  border-color: transparent;
}

.facebook-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 4px;
  background: #fff;
}

.facebook-link img,
.footer-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  border-radius: 10px;
  padding: 9px 11px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 128px clamp(18px, 4vw, 56px) 70px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -130px;
  right: -130px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 54%, transparent), transparent 62%);
  filter: blur(26px);
}

.hero::after {
  bottom: -180px;
  left: -120px;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand-deep) 42%, transparent), transparent 65%);
  filter: blur(36px);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

:root[data-theme="light"] .hero-canvas {
  opacity: 0.2;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  max-width: 1340px;
  margin: 0 auto;
}

.badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: color-mix(in srgb, var(--brand) 72%, #ffffff);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 16px var(--brand);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: Archivo, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3.1vw, 3rem);
  font-weight: 820;
  line-height: 1.08;
}

:root[data-theme="light"] h1 {
  color: var(--text);
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
}

h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 28px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 16px 42px color-mix(in srgb, var(--brand) 38%, transparent);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 44px;
}

.stats div {
  min-width: 132px;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  color: var(--text);
  font-family: Archivo, Inter, sans-serif;
  font-size: 2rem;
  font-weight: 950;
}

.stats span {
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-card {
  position: relative;
  animation: float-card 6s ease-in-out infinite;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 30px;
  background: linear-gradient(140deg, color-mix(in srgb, var(--brand) 62%, transparent), transparent 54%);
  filter: blur(18px);
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  left: -28px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(300px, 90%);
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  color: var(--text);
}

.floating-note span {
  color: var(--soft);
  font-size: 0.82rem;
}

.plus-icon,
.coverage-mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--brand);
}

.plus-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.plus-icon::before,
.plus-icon::after,
.coverage-mark::before,
.coverage-mark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
  background: #fff;
}

.plus-icon::before {
  width: 18px;
  height: 5px;
}

.plus-icon::after {
  width: 5px;
  height: 18px;
}

.section {
  max-width: 1340px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 4vw, 56px);
}

.section-tight {
  padding-top: clamp(68px, 8vw, 98px);
  padding-bottom: clamp(68px, 8vw, 98px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.78fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  margin-top: 14px;
}

.split-heading p,
.mission-grid p,
.leader-card p,
.feature-card p,
.coverage-band p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.mission-grid,
.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.mission-grid article,
.leader-card,
.contact-form {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-grid article {
  padding: clamp(22px, 3vw, 30px);
}

.mission-grid span {
  color: var(--brand);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.leader-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.leader-card img,
.initials {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  border-radius: 14px;
}

.leader-card img {
  object-fit: cover;
  object-position: center top;
}

.initials {
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-family: Archivo, Inter, sans-serif;
  font-size: 1.8rem;
  font-weight: 950;
}

.services-section {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
}

.service-chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.service-chip {
  width: min(100%, 224px);
  min-height: 236px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  overflow: hidden;
  padding: 14px 14px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease;
}

.service-chip:hover {
  border-color: color-mix(in srgb, var(--brand) 55%, var(--line));
  background: color-mix(in srgb, var(--brand) 13%, var(--surface));
}

.service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 13px;
  background: var(--surface-strong);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.36), transparent 62%);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.service-chip:hover .service-media img {
  transform: scale(1.045);
}

.service-media::before {
  content: "+";
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--brand);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.service-primary .service-media::before {
  content: "⌂";
}

.service-chronic .service-media::before {
  content: "↺";
}

.service-infectious .service-media::before {
  content: "+";
}

.service-podiatric .service-media::before {
  content: "⌁";
}

.service-preventive .service-media::before {
  content: "✓";
}

.service-followup .service-media::before {
  content: "↗";
}

.service-medications .service-media::before {
  content: "Rx";
  font-size: 0.95rem;
}

.service-chip strong {
  display: grid;
  place-items: center;
  min-height: 2.9em;
  color: var(--text);
  font-size: clamp(1.02rem, 1.3vw, 1.2rem);
  line-height: 1.18;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.feature-card {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.92), rgba(10, 10, 12, 0.12));
}

.feature-card div {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.feature-card h3 {
  color: #fff;
  font-size: 1.45rem;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.88);
}

.coverage-band {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: clamp(42px, 6vw, 64px) clamp(18px, 4vw, 56px);
  background: linear-gradient(120deg, var(--brand-deep), var(--brand-dark));
  color: #fff;
}

.coverage-band h2 {
  color: #fff;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
}

.coverage-band p {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.coverage-mark {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.coverage-mark::before {
  width: 30px;
  height: 8px;
}

.coverage-mark::after {
  width: 8px;
  height: 30px;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
}

.coverage-tags span {
  padding: 12px 22px;
  border-radius: 10px;
  background: #fff;
  color: var(--brand-deep);
  font-weight: 950;
}

.brochure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.brochure-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.brochure-grid img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top center;
}

.mobile-brochure {
  display: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.06fr);
  gap: clamp(30px, 5vw, 72px);
  padding: clamp(70px, 9vw, 118px) clamp(18px, 4vw, 56px);
  background: linear-gradient(120deg, var(--brand-deep), var(--brand-dark));
}

.contact-copy h2 {
  margin-top: 12px;
  color: #fff;
}

.contact-copy p,
.contact-list {
  color: rgba(255, 255, 255, 0.86);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--surface-strong);
}

label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 850;
}

.wide {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  background: var(--bg);
  color: var(--text);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid color-mix(in srgb, var(--brand) 22%, transparent);
  border-color: var(--brand);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 56px);
  background: #08090b;
  color: #9ca0a9;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer img {
  width: 158px;
  height: 46px;
  object-fit: contain;
  border-radius: 7px;
  background: #fff;
  padding: 3px 7px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f5f2ee;
  font-weight: 850;
}

.footer-social img {
  width: 34px;
  height: 34px;
  padding: 0;
  background: #fff;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 91px 0 auto;
    display: none;
    grid-column: 1 / -1;
    padding: 24px;
    background: var(--surface-strong);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    display: grid;
  }

  .call-link {
    display: none;
  }

  .hero-grid,
  .split-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  section[id],
  .coverage-band {
    scroll-margin-top: 76px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    min-height: 64px;
    padding: 9px 12px;
  }

  .brand {
    position: absolute;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
  }

  .brand img {
    width: 104px;
    height: 43px;
    padding: 3px 6px;
  }

  .header-actions {
    position: relative;
    z-index: 2;
    justify-self: end;
    gap: 4px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    justify-self: start;
    width: 42px;
    min-height: 42px;
    padding: 8px 10px;
  }

  .lang-toggle {
    width: 58px;
    height: 40px;
    min-height: 40px;
  }

  .facebook-link {
    width: 34px;
    height: 34px;
    min-height: 34px;
  }

  .theme-toggle {
    width: 62px;
    height: 40px;
    min-height: 40px;
  }

  .switch-option {
    font-size: 0.95rem;
  }

  .lang-toggle .switch-option {
    font-size: 1.05rem;
  }

  .site-nav {
    inset: 64px auto auto 0;
    width: min(286px, calc(100vw - 18px));
    gap: 8px;
    padding: 16px 18px 20px;
    border: 1px solid var(--line);
    border-left: 0;
    border-radius: 0 0 18px 0;
    background: color-mix(in srgb, var(--surface-strong) 94%, var(--brand) 6%);
    animation: mobile-menu-in 180ms ease both;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: color-mix(in srgb, var(--surface-strong) 84%, var(--brand) 16%);
    color: var(--text);
  }

  .theme-toggle span:last-child {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 46px;
  }

  .hero::before {
    width: 340px;
    height: 340px;
    top: 20px;
    right: -160px;
  }

  .hero::after {
    width: 260px;
    height: 260px;
    bottom: 120px;
    left: -150px;
  }

  .hero-grid {
    gap: 28px;
  }

  .badge,
  .section-kicker {
    justify-content: center;
    width: 100%;
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    text-align: center;
  }

  h1 {
    font-size: clamp(1.25rem, 6vw, 1.72rem);
    font-weight: 650;
    line-height: 1.14;
    max-width: 13.5em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  h2 {
    font-size: clamp(1.15rem, 5.2vw, 1.55rem);
    font-weight: 650;
    line-height: 1.18;
    max-width: 13.5em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  h3 {
    font-size: 1.08rem;
  }

  .hero-text {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .btn {
    min-height: 50px;
    padding: 0 14px;
    text-align: center;
  }

  .stats,
  .coverage-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }

  .stats div {
    width: auto;
    min-width: 0;
    padding: 13px 12px;
    border-right: 0;
    border-bottom: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
  }

  .stats strong {
    font-size: 1.45rem;
  }

  .stats span {
    display: block;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .mission-grid,
  .leader-grid,
  .feature-grid,
  .brochure-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 18px;
  }

  .section-tight {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .split-heading {
    gap: 14px;
    text-align: center;
  }

  .split-heading p {
    margin: 0;
    text-align: center;
  }

  .hero-card {
    max-width: 100%;
    animation: none;
  }

  .hero-card::before {
    inset: -8px;
    filter: blur(12px);
  }

  .hero-image-wrap {
    aspect-ratio: 16 / 12;
    border-radius: 18px;
  }

  .hero-image-wrap img {
    object-position: center 24%;
  }

  .floating-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .plus-icon {
    width: 34px;
    height: 34px;
  }

  .mission-grid,
  .leader-grid {
    margin-top: 24px;
  }

  .mission-grid article {
    padding: 20px;
  }

  .leader-card {
    align-items: flex-start;
    padding: 14px;
  }

  .leader-card img,
  .initials {
    width: 72px;
    height: 72px;
    border-radius: 12px;
  }

  .service-chip-grid {
    gap: 12px;
    margin-top: 26px;
  }

  .service-chip {
    width: calc(50% - 6px);
    min-height: 188px;
    gap: 12px;
    padding: 10px 10px 16px;
  }

  .service-media {
    aspect-ratio: 4 / 3;
    border-radius: 12px;
  }

  .service-media::before {
    right: 8px;
    bottom: 8px;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 1.2rem;
  }

  .service-medications .service-media::before {
    font-size: 0.78rem;
  }

  .service-chip strong {
    min-height: 2.7em;
    font-size: 0.96rem;
  }

  .feature-grid {
    gap: 16px;
    margin-top: 24px;
  }

  .feature-card {
    min-height: 260px;
    border-radius: 16px;
  }

  .feature-card div {
    padding: 20px;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .coverage-band {
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 18px;
    padding: 42px 18px;
  }

  .coverage-mark {
    margin: 0 auto;
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .coverage-tags {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .coverage-tags span {
    padding: 10px 16px;
  }

  .brochure-grid {
    display: none;
  }

  .mobile-brochure {
    display: block;
    margin-top: 24px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface-strong);
    box-shadow: var(--shadow);
  }

  .mobile-brochure img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .contact-section {
    gap: 26px;
    padding: 58px 18px;
  }

  .contact-copy p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  .contact-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .contact-list {
    gap: 10px;
    margin-top: 20px;
    width: min(100%, 340px);
    font-size: 0.94rem;
    justify-items: center;
    text-align: center;
  }

  .contact-form {
    gap: 13px;
    padding: 18px;
    border-radius: 16px;
  }

  input,
  textarea,
  select {
    min-height: 46px;
    padding: 12px 13px;
  }

  .site-footer {
    align-items: center;
    gap: 12px;
    padding: 26px 18px;
    text-align: center;
  }

  .site-footer img {
    width: 142px;
    height: 44px;
  }

  .footer-social img {
    width: 32px;
    height: 32px;
  }
}

@keyframes mobile-menu-in {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 370px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .menu-button {
    justify-self: start;
  }

  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 142px;
  }

  .hero-actions,
  .stats {
    grid-template-columns: 1fr;
  }

  .service-chip {
    width: 100%;
    min-height: 208px;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .header-actions {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 142px;
  }
}

html,
body,
a,
button,
input,
textarea,
select,
label,
.btn,
.menu-button,
.lang-toggle,
.theme-toggle,
.call-link,
.facebook-link,
.footer-social,
[role="button"] {
  cursor: url("/assets/syringe-cursor.png") 44 5, auto !important;
}
