/* ==========================================================================
   Health Rockit — shared stylesheet (healthrockit.com)
   Cool porcelain + deep spruce. Compliance-first telehealth marketing site.
   Mobile-first; desktop breakpoint at 900px (container padding bump at 600px).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Color */
  --c-porcelain: #F6F9F8;
  --c-white: #FFFFFF;
  --c-mist: #E3EDE9;
  --c-hairline: #D3DEDA;
  --c-spruce: #16443C;
  --c-spruce-deep: #0E332D;
  --c-verdigris: #2E7D6B;
  --c-ink: #1A2724;
  --c-slate: #546661;
  --c-amber-tint: #F3EBDB; /* RARE: Where We Serve exclusion note only */

  /* Spacing (base 4px) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Radius */
  --r-btn: 6px;
  --r-card: 12px;
  --r-panel: 16px;

  /* Type */
  --f-display: "Literata", Georgia, "Times New Roman", serif;
  --f-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --shadow-card: 0 1px 2px rgb(20 40 35 / .06);
}

/* --------------------------------------------------------------------------
   2. Base / reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background-color: var(--c-porcelain);
}

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 600;
  color: var(--c-ink);
  margin: 0 0 var(--s-4);
}

h1 { font-size: 34px; line-height: 1.12; letter-spacing: -0.01em; }
h2 { font-size: 26px; line-height: 1.2; }
h3 { font-size: 20px; line-height: 1.3; }

p {
  margin: 0 0 var(--s-4);
}

ul, ol {
  margin: 0 0 var(--s-4);
  padding-left: var(--s-5);
}

a {
  color: var(--c-verdigris);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--c-spruce);
}

:focus-visible {
  outline: 3px solid var(--c-verdigris);
  outline-offset: 2px;
}

/* Accessible hiding */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link — hidden until focused */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-4);
  z-index: 100;
  padding: var(--s-3) var(--s-4);
  background: var(--c-spruce);
  color: var(--c-white);
  border-radius: var(--r-btn);
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--s-2);
  color: var(--c-white);
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: var(--s-8);
}

.band--white { background-color: var(--c-white); }
.band--mist { background-color: var(--c-mist); }
.band--porcelain { background-color: var(--c-porcelain); }

.section-intro {
  max-width: 720px;
}

.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

/* --------------------------------------------------------------------------
   4. Type utilities
   -------------------------------------------------------------------------- */
.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-slate);
}

.small {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-slate);
}

/* Eyebrow micro-label with 24×3 spruce rule above */
.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-verdigris);
  margin: 0 0 var(--s-3);
}

.eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background: var(--c-spruce);
  margin-bottom: var(--s-2);
}

.section-intro--center .eyebrow::before,
.eyebrow--center::before {
  margin-inline: auto;
}

/* H1 second line accent */
.accent {
  color: var(--c-spruce);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 13px 22px;
  border-radius: var(--r-btn);
  border: 1.5px solid transparent;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-solid {
  background-color: var(--c-spruce);
  border-color: var(--c-spruce);
  color: var(--c-white);
}

.btn-solid:hover,
.btn-solid:active {
  background-color: var(--c-spruce-deep);
  border-color: var(--c-spruce-deep);
  color: var(--c-white);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--c-spruce);
  color: var(--c-spruce);
}

.btn-outline:hover,
.btn-outline:active {
  background-color: var(--c-mist);
  color: var(--c-spruce-deep);
}

/* Inverse buttons for the dark CTA banner */
.btn-inverse {
  background-color: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-spruce);
}

.btn-inverse:hover,
.btn-inverse:active {
  background-color: var(--c-mist);
  border-color: var(--c-mist);
  color: var(--c-spruce-deep);
}

.btn-inverse-outline {
  background-color: transparent;
  border-color: var(--c-white);
  color: var(--c-white);
}

.btn-inverse-outline:hover,
.btn-inverse-outline:active {
  background-color: rgb(255 255 255 / 0.12);
  color: var(--c-white);
}

/* --------------------------------------------------------------------------
   6. Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--c-white);
  border-bottom: 1px solid var(--c-hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  position: relative;
}

.wordmark {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--c-ink);
  text-decoration: none;
  white-space: nowrap;
}

.wordmark span {
  color: var(--c-spruce);
}

.wordmark:hover {
  color: var(--c-ink);
}

/* Footer wordmark reversed on spruce */
.wordmark--footer {
  color: var(--c-white);
  margin: 0 0 var(--s-3);
}

.wordmark--footer span {
  color: var(--c-mist);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-btn);
  color: var(--c-spruce);
  cursor: pointer;
}

.nav-toggle[aria-expanded="true"] {
  background-color: var(--c-mist);
}

/* Mobile nav: hidden until toggled */
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--c-white);
  border-bottom: 1px solid var(--c-hairline);
  padding: var(--s-4) 0 var(--s-5);
}

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

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.site-nav ul li a:not(.btn) {
  display: block;
  padding: var(--s-3) var(--s-2);
  font-weight: 500;
  color: var(--c-ink);
  text-decoration: none;
  border-radius: var(--r-btn);
}

.site-nav ul li a:not(.btn):hover {
  background-color: var(--c-mist);
  color: var(--c-spruce);
}

.site-nav ul li a[aria-current="page"]:not(.btn) {
  color: var(--c-spruce);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-nav ul li .btn {
  margin-top: var(--s-2);
  display: block;
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding-block: var(--s-8);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}

/* Pill badge (the site's only pill) */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 6px 14px;
  background-color: var(--c-mist);
  border: 1px solid var(--c-hairline);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-spruce);
  margin-bottom: var(--s-5);
}

.hero-title {
  margin-bottom: var(--s-4);
}

.hero .lead {
  max-width: 560px;
  margin-bottom: var(--s-6);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-art svg {
  width: 100%;
  max-width: 440px;
}

/* --------------------------------------------------------------------------
   8. Clinical Checkpoint chip (signature)
   -------------------------------------------------------------------------- */
.checkpoint-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkpoint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--c-mist);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-btn);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-ink);
}

.checkpoint svg {
  flex: none;
  width: 14px;
  height: 14px;
  color: var(--c-verdigris);
}

/* Checkpoint variant for dark (spruce) surfaces */
.checkpoint--inverse {
  background-color: rgb(255 255 255 / 0.1);
  border-color: rgb(255 255 255 / 0.25);
  color: var(--c-white);
}

.checkpoint--inverse svg {
  color: var(--c-mist);
}

/* --------------------------------------------------------------------------
   9. Trust strip
   -------------------------------------------------------------------------- */
.trust-strip {
  background-color: var(--c-mist);
  padding-block: var(--s-7);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6) var(--s-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-item {
  text-align: center;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--c-white);
  border: 1px solid var(--c-hairline);
  border-radius: 50%;
  margin-bottom: var(--s-3);
  color: var(--c-verdigris);
}

.icon-circle svg {
  width: 26px;
  height: 26px;
}

.trust-item h3 {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-spruce);
  margin-bottom: var(--s-2);
}

.trust-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-slate);
  margin: 0;
}

/* --------------------------------------------------------------------------
   10. Cards / feature grid
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  list-style: none;
  margin: var(--s-6) 0 0;
  padding: 0;
}

.card {
  background-color: var(--c-white);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: var(--s-6);
}

.card h3 {
  margin-bottom: var(--s-2);
}

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

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: var(--c-mist);
  border-radius: var(--r-btn);
  color: var(--c-verdigris);
  margin-bottom: var(--s-4);
}

.icon-chip svg {
  width: 22px;
  height: 22px;
}

/* Three icon columns ("The Health Rockit Standard" etc.) */
.icon-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  list-style: none;
  margin: var(--s-6) 0 0;
  padding: 0;
}

.icon-col {
  text-align: center;
}

.icon-col .icon-circle {
  background-color: var(--c-mist);
}

.icon-col h3 {
  margin-bottom: var(--s-2);
}

.icon-col p {
  color: var(--c-slate);
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. Process steps (numbered — How It Works only)
   -------------------------------------------------------------------------- */
.process {
  list-style: none;
  margin: var(--s-6) 0 0;
  padding: 0;
  counter-reset: none;
}

.process-step {
  position: relative;
  padding: 0 0 var(--s-7) 60px;
}

.process-step:last-child {
  padding-bottom: 0;
}

/* Hairline connector */
.process-step::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: var(--s-3);
  width: 1px;
  background-color: var(--c-hairline);
}

.process-step:last-child::before {
  display: none;
}

.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--c-verdigris);
  background-color: var(--c-white);
  border: 1px solid var(--c-hairline);
  border-radius: 50%;
}

.process-step h3 {
  padding-top: var(--s-2);
  margin-bottom: var(--s-2);
}

.process-step p {
  color: var(--c-slate);
}

.meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  list-style: none;
  margin: var(--s-3) 0 0;
  padding: 0;
}

.meta-chip {
  display: inline-block;
  padding: 4px 10px;
  background-color: var(--c-mist);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-btn);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-spruce);
}

.step-callout {
  margin-top: var(--s-3);
  padding: var(--s-4);
  background-color: var(--c-porcelain);
  border: 1px solid var(--c-hairline);
  border-left: 3px solid var(--c-verdigris);
  border-radius: var(--r-btn);
  font-size: 14px;
  color: var(--c-slate);
}

/* --------------------------------------------------------------------------
   12. Medication / treatment cards
   -------------------------------------------------------------------------- */
.med-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  list-style: none;
  margin: var(--s-6) 0 0;
  padding: 0;
}

.med-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
}

.med-art {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-mist);
  border-radius: var(--r-btn);
  padding: var(--s-5);
  margin-bottom: var(--s-5);
}

.med-art svg {
  max-width: 220px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  list-style: none;
  margin: 0 0 var(--s-3);
  padding: 0;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-btn);
  background-color: var(--c-porcelain);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-slate);
}

.category-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-verdigris);
  margin-bottom: var(--s-1);
}

.med-card h3,
.med-card h2 {
  margin-bottom: var(--s-2);
}

.med-card .med-copy {
  color: var(--c-slate);
}

.availability {
  font-size: 14px;
  color: var(--c-slate);
  border-top: 1px solid var(--c-hairline);
  padding-top: var(--s-4);
  margin-top: auto;
  margin-bottom: var(--s-4);
}

.med-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
}

/* Featured single treatment card (treatments page) */
.med-card--featured {
  padding: var(--s-6);
}

/* --------------------------------------------------------------------------
   13. CTA banner (dark spruce panel — max once per page)
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--c-spruce), var(--c-spruce-deep));
  border-radius: var(--r-panel);
  padding: var(--s-7) var(--s-5);
  text-align: center;
  color: var(--c-white);
}

.cta-banner h2 {
  color: var(--c-white);
  margin-bottom: var(--s-3);
}

.cta-banner p {
  color: var(--c-mist);
  max-width: 640px;
  margin: 0 auto var(--s-5);
}

.cta-banner .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}

.cta-banner .checkpoint-row {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   14. FAQ accordion (native <details>/<summary>)
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 780px;
  margin: var(--s-6) auto 0;
  border-top: 1px solid var(--c-hairline);
}

.faq-item {
  border-bottom: 1px solid var(--c-hairline);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-1);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary:hover {
  color: var(--c-spruce);
}

.faq-icon {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--c-verdigris);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 var(--s-1) var(--s-5);
  color: var(--c-slate);
}

.faq-body p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   15. Where We Serve
   -------------------------------------------------------------------------- */
.serve-statement {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--c-ink);
}

/* The single amber-tint element on the site */
.serve-note {
  max-width: 640px;
  margin: var(--s-5) auto 0;
  padding: var(--s-5);
  background-color: var(--c-amber-tint);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-card);
  text-align: left;
}

.serve-note p {
  margin-bottom: var(--s-3);
}

.serve-note p:last-child {
  margin-bottom: 0;
}

/* State list (compliance page) */
.state-list {
  list-style: none;
  margin: var(--s-4) 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-2) var(--s-4);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   16. Forms / contact
   -------------------------------------------------------------------------- */
.contact-form {
  max-width: 560px;
  margin-top: var(--s-5);
}

.form-field {
  margin-bottom: var(--s-4);
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: var(--s-1);
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--f-body);
  font-size: 16px;
  color: var(--c-ink);
  background-color: var(--c-white);
  border: 1px solid var(--c-hairline);
  border-radius: var(--r-btn);
  padding: 12px 14px;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: 3px solid var(--c-verdigris);
  outline-offset: 1px;
  border-color: var(--c-verdigris);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-disclaimer {
  margin-top: var(--s-4);
}

/* --------------------------------------------------------------------------
   17. Legal page shell
   -------------------------------------------------------------------------- */
.legal-shell {
  max-width: 720px;
  margin-inline: auto;
}

.legal-shell h1 {
  margin-bottom: var(--s-2);
}

.legal-meta {
  font-size: 14px;
  color: var(--c-slate);
  margin-bottom: var(--s-6);
}

.legal-shell h2 {
  margin-top: var(--s-7);
}

.legal-shell h3 {
  margin-top: var(--s-5);
}

.legal-shell p,
.legal-shell li {
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--c-spruce);
  color: var(--c-mist);
  padding-block: var(--s-8) var(--s-6);
  margin-top: var(--s-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgb(255 255 255 / 0.18);
}

/* .footer-brand is a semantic hook only (wordmark + tagline wrapper in the
   footer grid); it intentionally has no styles of its own. */

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-mist);
  max-width: 340px;
  margin: 0;
}

.footer-nav h2 {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: var(--s-3);
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0;
}

.footer-nav a {
  /* Block link with vertical padding so each footer link clears the ~44px
     mobile tap-target guideline (15px text + 2 × 11px padding ≈ 44px). */
  display: inline-block;
  padding-block: 11px;
  color: var(--c-mist);
  text-decoration: none;
  font-size: 15px;
}

.footer-nav a:hover {
  color: var(--c-white);
  text-decoration: underline;
}

.footer-legal {
  padding-top: var(--s-5);
}

.footer-legal p {
  font-size: 13px;
  line-height: 1.6;
  color: rgb(227 237 233 / 0.85);
  margin-bottom: var(--s-3);
}

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

/* --------------------------------------------------------------------------
   19. Desktop
   -------------------------------------------------------------------------- */
@media (min-width: 600px) {
  .container {
    padding-inline: 28px;
  }
}

@media (min-width: 900px) {
  h1 { font-size: 52px; }
  h2 { font-size: 36px; }
  h3 { font-size: 24px; }

  .lead {
    font-size: 19px;
  }

  .section {
    padding-block: var(--s-9);
  }

  .hero {
    padding-block: var(--s-9);
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--s-8);
  }

  /* Nav becomes inline */
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: var(--s-5);
  }

  .site-nav ul li a:not(.btn) {
    padding: var(--s-2) var(--s-1);
  }

  .site-nav ul li .btn {
    margin-top: 0;
    display: inline-block;
  }

  .header-inner {
    min-height: 72px;
  }

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

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

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

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

  .med-card--featured {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--s-6);
    align-items: center;
  }

  .med-card--featured .med-art {
    margin-bottom: 0;
    align-self: stretch;
  }

  .cta-banner {
    padding: var(--s-8) var(--s-7);
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: var(--s-7);
  }

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

/* --------------------------------------------------------------------------
   20. Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .faq-icon {
    transition: none;
  }
}

/* med-art with real product imagery (generic-label vial renders) */
.med-art:has(img) { padding: 0; overflow: hidden; }
.med-art img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }

/* hero with lifestyle photography */
.hero-art img { width: 100%; max-width: 620px; height: auto; border-radius: 18px; display: block; }
