:root {
  --navy: #0b2f55;
  --navy-2: #123d68;
  --blue: #1679b8;
  --teal: #0d9488;
  --sage: #4f7d5d;
  --amber: #d49a2a;
  --ink: #172033;
  --muted: #5f6f7b;
  --paper: #f6f8f7;
  --mist: #e8f2ef;
  --line: #dbe5e8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(11, 47, 85, 0.14);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Lato, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: var(--blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(11, 47, 85, 0.08);
  backdrop-filter: blur(10px);
}

.announcement {
  padding: 8px 18px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand img {
  width: 190px;
  height: auto;
}

.brand-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.primary-nav a {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--blue);
}

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

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--blue);
}

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

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

.button.light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

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

.button.secondary:hover,
.button.light:hover {
  border-color: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 690px;
  color: var(--white);
  background-color: var(--navy);
  background-image: linear-gradient(90deg, rgba(7, 28, 48, 0.9), rgba(7, 28, 48, 0.7) 48%, rgba(7, 28, 48, 0.36)), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero.compact {
  min-height: 430px;
}

.hero.about-hero {
  background-position: center 58%;
}

.hero.contact-hero {
  background-position: center 52%;
}

.hero.resources-hero {
  background-position: center 48%;
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.eyebrow {
  margin: 0 0 18px;
  color: inherit;
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 em {
  display: block;
  color: #d7e9ef;
  font-weight: 400;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.2rem;
}

.doctor-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  max-width: 100%;
  margin: 0 0 22px;
  padding: 9px 16px 9px 9px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.doctor-badge img {
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.doctor-badge strong,
.doctor-badge span {
  display: block;
}

.doctor-badge strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.doctor-badge span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-item {
  min-height: 126px;
  padding: 28px;
  background: var(--white);
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.03rem;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.section {
  padding: 84px 0;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2,
.section-title {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.32rem;
  line-height: 1.25;
}

p {
  margin: 0 0 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 48px;
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

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

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(11, 47, 85, 0.07);
}

.card.dark-card {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.card.dark-card h3,
.card.dark-card .price,
.card.dark-card .muted {
  color: var(--white);
}

.card img.card-image {
  width: calc(100% + 48px);
  height: 180px;
  margin: -24px -24px 22px;
  object-fit: cover;
}

.card ul,
.plain-list {
  margin: 0;
  padding-left: 20px;
}

.card li,
.plain-list li {
  margin: 6px 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  font-weight: 800;
  color: var(--navy);
}

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

.price-card {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(11, 47, 85, 0.07);
}

.price {
  display: block;
  margin: 0 0 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.muted {
  color: var(--muted);
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step {
  position: relative;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
  font-weight: 900;
}

.resource-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  margin-bottom: 18px;
}

.resource-logo img {
  max-height: 82px;
  width: auto;
  object-fit: contain;
}

.fullscript-button-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.fullscript-button-wrap img {
  width: min(220px, 100%);
  height: auto;
}

.fullscript-inline-button img {
  width: min(260px, 100%);
  height: auto;
}

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

.doc-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 148px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
}

.doc-link strong {
  color: var(--navy);
}

.doc-link span {
  color: var(--blue);
  font-weight: 800;
}

.bio-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.bio-photo {
  width: min(100%, 360px);
  justify-self: center;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.bio-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait-bubble {
  width: min(280px, 100%);
  margin: 0 auto;
  overflow: visible;
  border-radius: 50%;
  box-shadow: none;
}

.portrait-bubble img {
  aspect-ratio: 1;
  object-position: center 18%;
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.qa-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.qa-nav {
  position: sticky;
  top: 116px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.qa-nav a {
  display: block;
  padding: 8px 0;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.details-stack {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

details > div {
  padding: 0 20px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 36px;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(11, 47, 85, 0.09);
}

.contact-form-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber));
  content: "";
}

.contact-panel {
  padding: 28px;
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
}

.contact-panel h3,
.contact-panel a {
  color: var(--white);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list strong {
  display: block;
  color: inherit;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid > div {
  display: grid;
  gap: 6px;
}

label {
  color: var(--navy);
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfdfd;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 121, 184, 0.14);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  margin-top: -8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.form-status.is-error {
  color: #a33a2b;
}

.form-status.is-success {
  color: #20724d;
}

.turnstile-slot {
  min-height: 70px;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enrollment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 30px;
  align-items: start;
}

.enrollment-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.enrollment-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--teal));
  content: "";
}

.enrollment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--white);
  background: var(--sage);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  content: "✓";
}

.notice-card {
  padding: 22px;
  background: var(--mist);
  border: 1px solid rgba(13, 148, 136, 0.28);
  border-radius: var(--radius);
}

.mini-pricing {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.mini-pricing div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.mini-pricing div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mini-pricing strong {
  color: var(--navy);
}

.map-card {
  overflow: hidden;
  min-height: 280px;
  background: var(--mist);
  border-radius: var(--radius);
}

.map-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
}

.footer-logo {
  width: 220px;
  margin-bottom: 16px;
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius);
}

.site-footer h2,
.site-footer h3,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  margin-bottom: 8px;
}

.footer-bottom {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  text-align: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  color: var(--navy);
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
}

.language-note,
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-nav .language-switch {
  padding: 0.52rem 0.86rem;
  color: var(--navy);
  border: 1px solid rgba(22, 121, 184, 0.28);
  border-radius: 999px;
  background: rgba(22, 121, 184, 0.07);
}

.primary-nav .language-switch:hover,
.primary-nav .language-switch:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

@media (max-width: 1060px) {
  .primary-nav {
    gap: 12px;
  }

  .nav-actions .button {
    padding-inline: 14px;
  }

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

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

@media (max-width: 1180px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand img {
    width: 160px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 119px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 119px);
    overflow: auto;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 14px;
  }
}

@media (max-width: 860px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand img {
    width: 160px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: 119px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 119px);
    overflow: auto;
    padding: 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .primary-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 14px;
  }

  .hero,
  .hero.compact {
    min-height: 560px;
  }

  .hero-inner {
    padding: 56px 0 66px;
  }

  .hero h1,
  .page-title {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .doctor-badge {
    margin-bottom: 18px;
  }

  .section {
    padding: 64px 0;
  }

  h2,
  .section-title {
    font-size: 2.25rem;
  }

  .two-col,
  .two-col.reverse,
  .bio-layout,
  .qa-grid,
  .contact-grid,
  .enrollment-layout {
    grid-template-columns: 1fr;
  }

  .qa-nav {
    position: static;
  }

  .steps,
  .doc-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .announcement {
    font-size: 0.78rem;
  }

  .nav-wrap,
  .container,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 138px;
  }

  .hero {
    background-position: center top;
  }

  .hero h1,
  .page-title {
    font-size: 2.35rem;
  }

  .doctor-badge {
    align-items: flex-start;
    border-radius: var(--radius);
  }

  .doctor-badge img {
    width: 62px;
    height: 62px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .card-grid.three,
  .card-grid.two,
  .price-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    padding: 22px;
  }

  .price-card {
    min-height: auto;
  }

  .media-frame img {
    min-height: 260px;
  }
}
