:root {
  --mauve-50: #fbf6f8;
  --mauve-100: #f4e6ec;
  --mauve-300: #d8aabb;
  --mauve-500: #a66f83;
  --mauve-700: #724858;
  --charcoal: #292529;
  --charcoal-soft: #4a4249;
  --gold: #b88a4d;
  --gold-soft: #efe2cf;
  --rose: #f5d8d7;
  --white: #ffffff;
  --neutral: #f8f7f5;
  --border: #eadde2;
  --shadow: 0 18px 50px rgba(42, 37, 41, 0.12);
  --shadow-soft: 0 16px 38px rgba(42, 37, 41, 0.08);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--white) 26%, var(--mauve-50) 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: block;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(234, 221, 226, 0.8);
  box-shadow: 0 12px 32px rgba(42, 37, 41, 0.06);
  backdrop-filter: blur(16px);
}

.top-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(18px, 5vw, 64px);
  background: linear-gradient(90deg, var(--charcoal), var(--mauve-700));
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.top-contact-bar a {
  color: var(--white);
  text-decoration: none;
}

.top-phone {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.top-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.top-social-links a:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.1);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: calc(var(--max) + 128px);
  min-height: 104px;
  margin: 0 auto;
  padding: 10px clamp(18px, 5vw, 64px);
}

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

.logo-brand {
  min-width: 116px;
  padding: 7px 14px;
  border: 1px solid rgba(184, 138, 77, 0.34);
  border-radius: 999px;
  background: var(--rose);
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.2),
    0 12px 28px rgba(114, 72, 88, 0.12);
  overflow: hidden;
}

.logo-image {
  width: clamp(88px, 10vw, 118px);
  height: auto;
  max-height: 58px;
  border-radius: 999px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--mauve-100), var(--white));
  box-shadow: 0 10px 24px rgba(166, 111, 131, 0.16);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--mauve-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--charcoal-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--charcoal-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: 999px;
  padding: 8px 2px;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:not(.button):hover {
  color: var(--mauve-700);
}

.site-nav a[aria-current="page"] {
  color: var(--mauve-700);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--mauve-700);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mauve-700), #5d3847);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(114, 72, 88, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #5e3948;
  box-shadow: 0 16px 28px rgba(114, 72, 88, 0.26);
}

.button-secondary {
  border-color: rgba(41, 37, 41, 0.24);
  background: rgba(255, 255, 255, 0.88);
  color: var(--charcoal);
  box-shadow: none;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: clamp(84px, 10vw, 132px) clamp(18px, 5vw, 64px);
  overflow: hidden;
  background-image: url("assets/virtual-visit.png");
  background-position: center right;
  background-size: cover;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--mauve-700), var(--gold), var(--rose));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(255, 255, 255, 0.24) 70%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(245, 216, 215, 0.22), rgba(41, 37, 41, 0.04));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.page-hero {
  padding: clamp(86px, 12vw, 140px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(251, 246, 248, 0.96), rgba(255, 255, 255, 0.92)),
    linear-gradient(90deg, rgba(184, 138, 77, 0.16), transparent 45%),
    var(--mauve-50);
}

.page-hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: var(--mauve-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  border-radius: 999px;
  background: var(--gold);
}

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

h1,
h2 {
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  max-width: 660px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
  text-wrap: balance;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--charcoal-soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(184, 138, 77, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--mauve-700);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(42, 37, 41, 0.08);
  backdrop-filter: blur(10px);
}

.intro-band {
  padding: 34px clamp(18px, 5vw, 64px);
  border-top: 1px solid rgba(184, 138, 77, 0.3);
  background:
    linear-gradient(135deg, var(--charcoal), #3d3138 62%, var(--mauve-700));
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}

.intro-grid h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.intro-grid .section-kicker {
  color: var(--mauve-300);
}

.intro-grid p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
}

.section {
  padding: clamp(76px, 9vw, 118px) clamp(18px, 5vw, 64px);
}

.section-soft {
  background:
    linear-gradient(180deg, var(--mauve-50), rgba(255, 255, 255, 0.86));
}

.section-deep {
  background:
    linear-gradient(135deg, var(--charcoal), #3a3037 58%, var(--mauve-700));
  color: var(--white);
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading > p:not(.section-kicker) {
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

.two-column,
.why-grid,
.review-wrap,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.86fr);
  gap: clamp(28px, 6vw, 72px);
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}

.two-column p,
.why-grid p,
.review-wrap p,
.contact-card p {
  color: var(--charcoal-soft);
  font-size: 1.04rem;
}

.mission-panel,
.review-placeholder,
.contact-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--white), rgba(251, 246, 248, 0.68));
  box-shadow: var(--shadow);
}

.mission-panel {
  padding: clamp(26px, 4vw, 42px);
  border-left: 5px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.mission-panel p {
  margin-bottom: 0;
}

.card-grid,
.medication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}

.self-pay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
}

.medication-intro {
  margin-bottom: 28px;
}

.notice-panel {
  max-width: var(--max);
  margin: 22px auto 0;
  padding: 26px;
  border: 1px solid var(--gold-soft);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--mauve-50), var(--white));
  box-shadow: var(--shadow-soft);
}

.notice-panel p {
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

.service-card {
  position: relative;
  min-height: 226px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, var(--white), rgba(251, 246, 248, 0.72));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 138, 77, 0.46);
  box-shadow: 0 22px 46px rgba(42, 37, 41, 0.12);
}

.card-accent {
  display: block;
  width: 54px;
  height: 3px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--mauve-300));
}

.service-card p {
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

.pricing-card {
  min-height: auto;
  border-color: rgba(184, 138, 77, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 246, 248, 0.92));
}

.price {
  margin: 6px 0 12px;
  color: var(--mauve-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.price span {
  display: inline-block;
  color: var(--charcoal-soft);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.includes-label {
  color: var(--charcoal);
  font-weight: 900;
}

.pricing-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--charcoal-soft);
}

.pricing-list li::marker {
  color: var(--gold);
}

.payment-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
}

.payment-notes div {
  padding: 24px;
  border: 1px solid rgba(184, 138, 77, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(42, 37, 41, 0.05);
}

.payment-notes h3 {
  margin-bottom: 4px;
  color: var(--mauve-700);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-notes p {
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.steps article {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(234, 221, 226, 0.94);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), var(--mauve-50));
  box-shadow: 0 12px 28px rgba(42, 37, 41, 0.05);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mauve-700), var(--gold));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(114, 72, 88, 0.22);
}

.steps p {
  margin-bottom: 0;
  color: var(--charcoal-soft);
}

.section-deep h2,
.section-deep .section-kicker,
.section-deep p {
  color: var(--white);
}

.section-deep .section-kicker {
  color: var(--mauve-300);
}

.section-deep p {
  color: rgba(255, 255, 255, 0.82);
}

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

.check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--gold-soft);
  border-left: 2px solid var(--gold-soft);
  transform: rotate(-45deg);
}

.review-placeholder {
  padding: 32px;
  border-color: rgba(184, 138, 77, 0.24);
}

.stars {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}

blockquote {
  margin: 0 0 22px;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.review-placeholder span {
  color: var(--charcoal-soft);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(42, 37, 41, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

details[open] {
  border-color: rgba(184, 138, 77, 0.38);
  box-shadow: var(--shadow-soft);
}

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

summary::marker {
  color: var(--gold);
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--charcoal-soft);
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(244, 230, 236, 0.96), rgba(255, 255, 255, 0.94)),
    linear-gradient(90deg, rgba(184, 138, 77, 0.12), transparent 52%),
    var(--mauve-50);
}

.contact-card {
  padding: clamp(28px, 5vw, 54px);
  border-color: rgba(184, 138, 77, 0.24);
}

.contact-card p {
  margin-bottom: 0;
}

.contact-info-line {
  margin-top: 12px;
  color: var(--mauve-700);
  font-weight: 900;
}

.contact-info-line a {
  color: inherit;
  text-decoration-color: rgba(114, 72, 88, 0.32);
  text-underline-offset: 3px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(184, 138, 77, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--mauve-700);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(42, 37, 41, 0.05);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.social-links a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(42, 37, 41, 0.08);
}

.privacy-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: rgba(251, 246, 248, 0.8);
  font-size: 0.95rem;
}

.contact-actions {
  justify-content: flex-end;
}

.site-footer {
  padding: 54px clamp(18px, 5vw, 64px) 28px;
  background:
    linear-gradient(135deg, var(--charcoal), #3a3037 60%, var(--mauve-700));
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(280px, 1fr);
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto 32px;
}

.footer-brand,
.footer-brand .brand-text strong,
.footer-brand .brand-text span {
  color: var(--white);
}

.footer-logo-image {
  width: clamp(88px, 10vw, 118px);
  max-height: 58px;
}

.footer-brand.logo-brand {
  display: inline-flex;
  width: fit-content;
  background: var(--rose);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
}

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

.site-footer a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

.disclaimer,
.copyright {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
  font-size: 0.88rem;
}

.disclaimer {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 1020px) {
  .site-nav {
    gap: 16px;
    font-size: 0.9rem;
  }

  .card-grid,
  .self-pay-grid,
  .medication-grid,
  .payment-notes,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps article:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .header-main {
    min-height: 86px;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .site-nav {
    position: fixed;
    top: 130px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero {
    min-height: 760px;
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 44%, rgba(255, 255, 255, 0.2) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.14));
  }

  .intro-grid,
  .two-column,
  .why-grid,
  .review-wrap,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .top-contact-bar {
    flex-direction: column;
    gap: 4px;
    padding-top: 7px;
    padding-bottom: 7px;
    text-align: center;
  }

  .top-social-links {
    justify-content: center;
  }

  .site-nav {
    top: 146px;
  }

  .brand {
    min-width: 0;
  }

  .logo-image {
    width: 88px;
    max-height: 54px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-text strong {
    font-size: 1.14rem;
  }

  .brand-text span {
    font-size: 0.68rem;
  }

  .hero {
    min-height: 690px;
    padding-top: 76px;
    align-items: start;
    background-position: 68% center;
  }

  .hero-actions,
  .hero-highlights,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .self-pay-grid,
  .medication-grid,
  .payment-notes,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps article:last-child {
    grid-column: auto;
  }

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