:root {
  --ink: #152737;
  --ink-soft: #4f6170;
  --ink-muted: #72818c;
  --navy: #153651;
  --navy-deep: #0c263b;
  --navy-soft: #e8f0f5;
  --blue-mist: #f3f7f9;
  --cream: #f7f3ec;
  --gold: #b58d4a;
  --coral: #d78c7a;
  --sage: #86a797;
  --white: #ffffff;
  --line: #dce5ea;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 8px 24px rgba(17, 44, 65, 0.08);
  --shadow-md: 0 24px 64px rgba(17, 44, 65, 0.13);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --container: 1180px;
}

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

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

body {
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy-deep);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s;
}

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

:focus-visible {
  outline: 3px solid #e0ac4d;
  outline-offset: 4px;
}

.utility-bar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
}

.utility-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-bar__inner > a,
.utility-bar__inner > div,
.utility-bar__inner a {
  display: flex;
  align-items: center;
  gap: 9px;
}

.utility-bar__inner > div {
  gap: 12px;
}

.utility-bar a {
  transition: color 0.2s ease;
}

.utility-bar a:hover {
  color: var(--white);
}

.utility-bar svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(21, 54, 81, 0.08);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(13, 38, 59, 0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 5px;
  color: var(--ink-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav > a:not(.button) {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 650;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.main-nav > a:not(.button):hover {
  background: var(--blue-mist);
  color: var(--navy);
}

.nav-action {
  margin-left: 10px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 10px;
  display: none;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 5px auto;
  display: block;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  min-height: 52px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--small {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.8rem;
}

.button--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(21, 54, 81, 0.2);
}

.button--primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 14px 30px rgba(21, 54, 81, 0.25);
}

.button--ghost {
  border-color: rgba(21, 54, 81, 0.25);
  background: rgba(255, 255, 255, 0.38);
  color: var(--navy);
}

.button--ghost:hover {
  border-color: var(--navy);
  background: var(--white);
}

.button--white {
  background: var(--white);
  color: var(--navy-deep);
}

.button--white:hover {
  box-shadow: 0 14px 34px rgba(4, 24, 37, 0.24);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(134, 167, 151, 0.24), transparent 22%),
    linear-gradient(145deg, #f9fbfc 0%, #eaf1f5 58%, #f7f3ec 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  opacity: 0.55;
  background-image: radial-gradient(rgba(21, 54, 81, 0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to left, #000, transparent);
}

.hero__grid {
  min-height: 690px;
  padding-block: 72px 82px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__content .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__content .eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.3vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  color: var(--navy);
  font-weight: 500;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.hero__actions {
  margin-bottom: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__proof {
  max-width: 660px;
  margin: 0;
  padding: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(21, 54, 81, 0.14);
  list-style: none;
}

.hero__proof li {
  min-width: 0;
}

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero__proof span {
  color: var(--ink-muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.hero__visual {
  min-height: 550px;
  position: relative;
  isolation: isolate;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -4%;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50% 50% 42% 58% / 58% 42% 58% 42%;
  background: var(--navy);
  opacity: 0.07;
  transform: rotate(8deg);
}

.hero__photo {
  position: absolute;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.86);
  background: var(--blue-mist);
  box-shadow: var(--shadow-md);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__photo--primary {
  top: 0;
  right: 0;
  width: 78%;
  height: 77%;
  border-radius: 46% 46% 20px 46%;
}

.hero__photo--primary img {
  object-position: center 18%;
}

.hero__photo--secondary {
  bottom: 3%;
  left: 0;
  width: 45%;
  height: 54%;
  border-radius: 24px 46% 46% 46%;
}

.hero__photo--secondary img {
  object-position: center 18%;
}

.hero__badge {
  min-width: 280px;
  padding: 14px 18px 14px 14px;
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(21, 54, 81, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero__badge-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.3rem;
}

.hero__badge > span:last-child {
  display: grid;
  line-height: 1.35;
}

.hero__badge strong {
  font-size: 0.83rem;
}

.hero__badge small {
  color: var(--ink-muted);
  font-size: 0.7rem;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.trust-strip .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.6vw, 48px);
}

.trust-strip p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 650;
  text-align: center;
}

.trust-strip span {
  width: 4px;
  height: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

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

.section--light {
  background: var(--blue-mist);
}

.section--blue {
  background: var(--navy-deep);
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 60px;
}

.section-heading h2,
.approach h2,
.vaccine h2,
.press h2,
.faq h2,
.contact h2,
.content-hero h1 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading--split > p {
  max-width: 480px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.section-heading--light {
  color: var(--white);
}

.section-heading--light .eyebrow {
  color: #c6d5df;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 315px;
  padding: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card:hover {
  border-color: rgba(21, 54, 81, 0.2);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.service-card--featured {
  grid-row: span 2;
  min-height: 648px;
  justify-content: flex-end;
  background:
    linear-gradient(to bottom, rgba(21, 54, 81, 0.04), transparent 62%),
    var(--white);
}

.service-card--featured::before {
  content: "";
  position: absolute;
  top: -5%;
  right: -18%;
  width: 84%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 42%, transparent 0 8%, rgba(21, 54, 81, 0.08) 9% 10%, transparent 11%),
    var(--navy-soft);
}

.service-card--wide {
  min-height: 315px;
  grid-column: span 2;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  background: var(--cream);
}

.service-card__number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--navy-soft);
  color: var(--navy);
}

.service-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.15;
}

.service-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.7;
}

.tag-list,
.inline-list,
.credential-list,
.vaccine__columns ul {
  padding: 0;
  list-style: none;
}

.tag-list {
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-list li,
.credential-list li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.inline-list {
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.inline-list li {
  position: relative;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 750;
}

.inline-list li:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -12px;
  color: var(--gold);
}

.approach {
  background: var(--white);
}

.approach__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1.18fr);
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.approach__copy {
  position: sticky;
  top: 120px;
}

.approach h2 {
  margin-bottom: 28px;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  line-height: 1.8;
}

.approach__copy > p:not(.eyebrow, .lead) {
  color: var(--ink-soft);
}

.text-link {
  width: fit-content;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 800;
  transition: gap 0.2s ease;
}

.text-link:hover {
  gap: 14px;
}

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

.care-steps li {
  padding: 32px 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.care-steps > li > span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
}

.care-steps h3 {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.45rem;
}

.care-steps p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.team {
  position: relative;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  opacity: 0.55;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to left, #000, transparent);
}

.team .container {
  position: relative;
}

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

.doctor-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.doctor-card__photo {
  min-height: 500px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.doctor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.88);
}

.doctor-card__content {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-card__role {
  margin-bottom: 12px;
  color: #c3d4df;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.doctor-card h3 {
  margin-bottom: 5px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.doctor-card__crm {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.doctor-card__content > p:not(.doctor-card__role, .doctor-card__crm) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.75;
}

.credential-list {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.credential-list li {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
}

.vaccine {
  background: var(--cream);
}

.vaccine__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.vaccine__intro h2 {
  margin-bottom: 24px;
}

.vaccine__intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.vaccine__audiences {
  margin: 28px 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vaccine__audiences span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(181, 141, 74, 0.12);
  color: #765c31;
  font-size: 0.72rem;
  font-weight: 750;
}

.vaccine__list {
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.vaccine__list h3 {
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: 1.65rem;
}

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

.vaccine__columns ul {
  margin: 0;
}

.vaccine__columns li {
  padding: 9px 0 9px 23px;
  position: relative;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.vaccine__columns li::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 18px;
  left: 2px;
  border-radius: 50%;
  background: var(--sage);
}

.fine-print {
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: 0.7rem;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.article-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.article-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card__visual {
  min-height: 160px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
}

.article-card__visual span {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card__visual svg {
  width: 110px;
  height: 110px;
  margin: 28px -24px -42px 0;
  fill: none;
  stroke: rgba(21, 54, 81, 0.23);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.1;
}

.article-card__visual--coral {
  background: #f2d9d2;
}

.article-card__visual--gold {
  background: #efe4c8;
}

.article-card__visual--blue {
  background: #dbe8f0;
}

.article-card__body {
  padding: 28px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.article-card__meta {
  margin-bottom: 10px;
  color: var(--ink-muted);
  font-size: 0.67rem;
}

.article-card h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1.42rem;
  line-height: 1.18;
}

.article-card__body > p:not(.article-card__meta) {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.article-card .text-link {
  margin-top: auto;
}

.press {
  background: var(--white);
}

.press__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1.28fr);
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.press__copy h2 {
  margin-bottom: 24px;
}

.press__copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

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

.press__list a {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.2s ease;
}

.press__list a:hover {
  padding-left: 10px;
}

.press__list span {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press__list strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
}

.press__list small {
  color: var(--ink-muted);
  font-size: 0.67rem;
}

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

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1.28fr);
  align-items: start;
  gap: clamp(60px, 10vw, 140px);
}

.faq__intro h2 {
  margin-bottom: 24px;
}

.faq__intro > p:not(.eyebrow) {
  color: var(--ink-soft);
}

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

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

.faq summary {
  padding: 23px 50px 23px 0;
  position: relative;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 600;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--navy);
  font-family: var(--body);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 680px;
  margin: -2px 0 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact {
  padding-block: clamp(76px, 9vw, 116px);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.contact .eyebrow {
  color: #c7d6e0;
}

.contact h2 {
  margin-bottom: 24px;
}

.contact .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
}

.contact__actions {
  margin: 30px 0 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.contact__details {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.contact__details div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact__details dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact__details dd {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
}

.contact__map {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact__map iframe {
  width: 100%;
  min-height: 460px;
  display: block;
  border: 0;
  border-radius: calc(var(--radius) - 8px);
  background: rgba(255, 255, 255, 0.08);
}

.contact__map > a {
  padding: 12px 8px 3px;
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
}

.site-footer {
  padding-top: 72px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  padding-bottom: 52px;
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) repeat(2, minmax(160px, 0.5fr));
  gap: clamp(40px, 7vw, 90px);
}

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

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

.footer__brand > p {
  max-width: 380px;
  margin: 22px 0 18px;
  font-size: 0.83rem;
}

.footer__social {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 750;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer__links h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__links a {
  width: fit-content;
  font-size: 0.8rem;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.whatsapp-float {
  min-width: 54px;
  min-height: 54px;
  padding: 12px 17px;
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #188b52;
  box-shadow: 0 12px 32px rgba(17, 71, 45, 0.3);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 16px 38px rgba(17, 71, 45, 0.38);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal--delay {
  transition-delay: 0.13s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Content hub and article pages */
.content-hero {
  padding-block: 92px 78px;
  background: linear-gradient(145deg, var(--blue-mist), var(--cream));
}

.content-hero__inner {
  max-width: 850px;
}

.content-hero h1 {
  margin-bottom: 22px;
}

.content-hero p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.content-list {
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.content-card {
  min-width: 0;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.content-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.content-card__category {
  width: fit-content;
  margin-bottom: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--navy-soft);
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-card h2 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1.42rem;
  line-height: 1.18;
}

.content-card > p {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.content-card__meta {
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink-muted);
  font-size: 0.67rem;
}

.article-page {
  background: var(--white);
}

.article-hero {
  padding-block: 74px 66px;
  background: linear-gradient(145deg, var(--blue-mist), var(--cream));
}

.article-hero__inner {
  max-width: 900px;
}

.breadcrumbs {
  margin-bottom: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  color: var(--ink-muted);
  font-size: 0.7rem;
}

.breadcrumbs a:hover {
  color: var(--navy);
}

.article-category {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(21, 54, 81, 0.09);
  color: var(--navy);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.article-hero__description {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.article-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--ink-muted);
  font-size: 0.72rem;
}

.article-layout {
  padding-block: 72px 112px;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 300px);
  justify-content: space-between;
  align-items: start;
  gap: 80px;
}

.article-body {
  min-width: 0;
  color: #2f414f;
  font-size: 1.02rem;
  line-height: 1.9;
}

.article-body > p:first-child {
  font-size: 1.15rem;
}

.article-body h2,
.article-body h3 {
  margin: 42px 0 16px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}

.article-body p {
  margin-bottom: 22px;
}

.article-body em {
  color: var(--ink-muted);
  font-size: 0.85rem;
}

.article-sidebar {
  padding: 28px;
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--blue-mist);
}

.article-sidebar h2 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: 1.5rem;
}

.article-sidebar p {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.article-sidebar .button {
  width: 100%;
}

.article-disclaimer {
  margin-top: 44px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

@media (max-width: 1080px) {
  .main-nav > a:not(.button) {
    padding-inline: 8px;
    font-size: 0.77rem;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 48px;
  }

  .hero__visual {
    min-height: 500px;
  }

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

  .doctor-card__photo {
    min-height: 340px;
    max-height: 390px;
  }

  .press__grid,
  .faq__grid {
    gap: 70px;
  }
}

@media (max-width: 1040px) {
  .utility-bar {
    display: none;
  }

  .header__inner {
    min-height: 70px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    width: 100%;
    max-height: calc(100dvh - 70px);
    padding: 18px 24px 30px;
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 24px 40px rgba(13, 38, 59, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a:not(.button) {
    min-height: 46px;
    padding: 11px 6px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 0.9rem;
  }

  .nav-action {
    width: 100%;
    margin: 14px 0 0;
  }

  .hero__grid {
    padding-block: 70px 80px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    width: min(100%, 620px);
    min-height: 560px;
    margin-inline: auto;
  }

  .trust-strip .container {
    min-height: 90px;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .section-heading--split,
  .approach__grid,
  .vaccine__grid,
  .press__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 20px;
  }

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

  .service-card--featured {
    min-height: 400px;
    grid-row: auto;
  }

  .service-card--wide {
    grid-column: span 2;
  }

  .approach__copy {
    position: static;
  }

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

  .doctor-card {
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  }

  .vaccine__grid {
    gap: 50px;
  }

  .article-grid,
  .content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press__grid,
  .faq__grid {
    gap: 40px;
  }

  .contact__map iframe {
    min-height: 380px;
  }

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

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

  .article-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

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

  .brand small {
    max-width: 210px;
    overflow: hidden;
    font-size: 0.56rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero__grid {
    min-height: auto;
    padding-block: 52px 62px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14.5vw, 4rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    gap: 10px;
  }

  .hero__proof strong {
    font-size: 0.97rem;
  }

  .hero__proof span {
    font-size: 0.62rem;
  }

  .hero__visual {
    min-height: 410px;
  }

  .hero__photo {
    border-width: 5px;
  }

  .hero__photo--primary {
    width: 76%;
    height: 76%;
  }

  .hero__photo--secondary {
    width: 48%;
    height: 52%;
  }

  .hero__badge {
    min-width: 0;
    width: 72%;
    right: 0;
    bottom: 1%;
  }

  .hero__badge small {
    display: none;
  }

  .trust-strip .container {
    padding-block: 18px;
    justify-content: flex-start;
  }

  .trust-strip p {
    font-size: 0.82rem;
  }

  .section {
    padding-block: 76px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .approach h2,
  .vaccine h2,
  .press h2,
  .faq h2,
  .contact h2,
  .content-hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.2rem);
  }

  .service-grid,
  .article-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card--featured {
    min-height: 300px;
  }

  .service-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

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

  .doctor-card__photo {
    min-height: 360px;
  }

  .doctor-card__content {
    padding: 28px 24px 32px;
  }

  .vaccine__list {
    padding: 28px 22px;
  }

  .vaccine__columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .press__list a {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .faq summary {
    padding-right: 42px;
    font-size: 1.12rem;
  }

  .contact__actions {
    display: grid;
  }

  .contact__actions .button {
    width: 100%;
  }

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

  .contact__map iframe {
    min-height: 320px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    padding-block: 22px 90px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float span {
    display: none;
  }

  .article-hero {
    padding-block: 54px 50px;
  }

  .article-hero h1 {
    font-size: clamp(2.5rem, 12.5vw, 3.6rem);
  }

  .article-layout {
    padding-block: 56px 86px;
  }

  .article-body {
    font-size: 0.97rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
