/* =========================================================================
   ARBOR INFUSION — design system
   Editorial · Refined · Patient-first
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Color ─────────────────────────────────────────────────────────── */
  --bg:        #F2EDE2;     /* cream paper, slightly cooler */
  --bg-soft:   #E8E1CE;     /* deeper cream */
  --bg-card:   #F7F2E5;     /* card surface */
  --ink:       #0E2326;     /* near-black, teal-tinted */
  --ink-2:     #173E45;     /* deep teal-slate */
  --teal:      #1F6A73;     /* primary deep teal — dark sections */
  --teal-mid:  #33818B;     /* brand wordmark teal — accents */
  --teal-bright: #5CE0E5;   /* bright leaf teal — sparing highlights */
  --sage:      #7DA8A4;     /* muted teal-sage (replaces moss) */
  --clay:      #B25638;     /* warm clay accent — complement to teal */
  --rule:      rgba(14, 35, 38, 0.14);
  --rule-soft: rgba(14, 35, 38, 0.08);
  --muted:     rgba(14, 35, 38, 0.60);
  /* legacy aliases so existing class names keep working */
  --green:     var(--teal);
  --green-mid: var(--teal-mid);
  --moss:      var(--sage);

  /* Inverted (dark sections) */
  --on-dark:        #F0EAD9;
  --on-dark-muted:  rgba(240, 234, 217, 0.66);
  --rule-on-dark:   rgba(240, 234, 217, 0.18);

  /* ── Type ──────────────────────────────────────────────────────────── */
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans:  'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ── Layout ────────────────────────────────────────────────────────── */
  --max:  1320px;
  --gut:  clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 144px);
}

/* ─────────────────────────────────────────────────────────────────────
   RESET
   ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'ss02';
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul { list-style: none; }
::selection { background: var(--green); color: var(--bg); }

/* ─────────────────────────────────────────────────────────────────────
   TYPOGRAPHY SCALE
   Fraunces handles all display + emphasis italics.
   ───────────────────────────────────────────────────────────────────── */
.display-xl,
.display-lg,
.display-md,
.display-sm,
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 380;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-feature-settings: 'ss01', 'ss03';
  color: var(--ink);
}

.display-xl { font-size: clamp(42px, 6vw, 92px); line-height: 1.0; letter-spacing: -0.03em; font-weight: 360; }
.display-lg { font-size: clamp(38px, 5vw, 76px); line-height: 1.02; letter-spacing: -0.025em; }
.display-md { font-size: clamp(30px, 3.6vw, 54px); line-height: 1.08; letter-spacing: -0.02em; }
.display-sm { font-size: clamp(24px, 2.6vw, 36px); line-height: 1.15; letter-spacing: -0.018em; }

h1 { font-size: clamp(40px, 5.4vw, 80px); }
h2 { font-size: clamp(30px, 3.8vw, 56px); }
h3 { font-size: clamp(20px, 2vw, 28px); line-height: 1.2; }
h4 { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.3; font-weight: 500; }

em, .ital { font-style: italic; font-weight: 380; font-variation-settings: 'opsz' 144; }

p { font-family: var(--sans); }

.lede {
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink);
  max-width: 56ch;
}

.body { font-size: 17px; line-height: 1.6; color: var(--ink); }
.body-muted { color: var(--muted); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--green);
  display: inline-block;
}

.num {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────────────────
   LAYOUT PRIMITIVES
   ───────────────────────────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tight { padding-top: clamp(56px, 6vw, 96px); padding-bottom: clamp(56px, 6vw, 96px); }
.divide-top { border-top: 1px solid var(--rule); }
.divide-top-on-dark { border-top: 1px solid var(--rule-on-dark); }

.grid-12 { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 2.4vw, 36px); }
@media (max-width: 768px) { .grid-12 { grid-template-columns: repeat(6, 1fr); } }

.col-span-12 { grid-column: span 12; }
.col-span-8  { grid-column: span 8; }
.col-span-7  { grid-column: span 7; }
.col-span-6  { grid-column: span 6; }
.col-span-5  { grid-column: span 5; }
.col-span-4  { grid-column: span 4; }
.col-span-3  { grid-column: span 3; }
@media (max-width: 768px) {
  .col-span-8, .col-span-7, .col-span-6, .col-span-5, .col-span-4, .col-span-3 { grid-column: 1 / -1; }
}

/* ─────────────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 227, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  padding-left: var(--gut); padding-right: var(--gut);
  max-width: var(--max); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink-2); text-decoration: none; }
.brand-mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand-word {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-word em { font-style: italic; font-weight: 380; }
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.foot .brand-logo { height: 44px; }
@media (max-width: 700px) {
  .brand-logo { height: 32px; }
}

.nav-links { display: flex; gap: 38px; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  transition: color 200ms ease;
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--green);
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 10px 18px;
  border: 1px solid var(--ink-2);
  border-radius: 999px;
  transition: all 200ms ease;
}
.nav-cta:hover { background: var(--ink-2); color: var(--bg); }
.nav-cta .arrow { transition: transform 200ms ease; }
.nav-cta:hover .arrow { transform: translate(2px, -2px); }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.nav-burger span { width: 22px; height: 1.5px; background: var(--ink-2); display: block; transition: all 250ms ease; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

.nav-mobile { display: none; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .nav-mobile {
    display: block;
    position: fixed; inset: 76px 0 0 0;
    background: var(--bg);
    padding: 32px var(--gut) 48px;
    transform: translateX(100%);
    transition: transform 300ms cubic-bezier(.4,0,.2,1);
    border-top: 1px solid var(--rule);
    z-index: 49;
  }
  .nav-mobile.is-open { transform: translateX(0); }
  .nav-mobile a {
    display: block;
    font-family: var(--serif);
    font-size: 36px;
    line-height: 1.1;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule-soft);
    color: var(--ink-2);
  }
  .nav-mobile a:last-child { border-bottom: 0; }
}

/* ─────────────────────────────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: 999px;
  transition: all 200ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--bg);
  border: 1px solid var(--green);
}
.btn-primary:hover { background: var(--ink-2); border-color: var(--ink-2); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--ink-2);
}
.btn-ghost:hover { background: var(--ink-2); color: var(--bg); }
.btn-light {
  background: var(--bg);
  color: var(--ink-2);
  border: 1px solid var(--bg);
}
.btn-light:hover { transform: translateY(-1px); }
.btn .arr { transition: transform 200ms ease; }
.btn:hover .arr { transform: translate(3px, -3px); }

/* ─────────────────────────────────────────────────────────────────────
   HERO (home)
   ───────────────────────────────────────────────────────────────────── */
.hero {
  padding-top: clamp(56px, 8vw, 120px);
  padding-bottom: clamp(56px, 8vw, 120px);
  position: relative;
}
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: end; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-tag {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: clamp(28px, 4vw, 56px);
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clay); box-shadow: 0 0 0 4px rgba(178,86,56,.15);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(48px, 9.2vw, 156px);
  line-height: 0.93;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-title em { font-style: italic; font-weight: 360; }
.hero-title .clay { color: var(--clay); }

.hero-side {
  display: flex; flex-direction: column; gap: 24px;
  padding-bottom: clamp(8px, 1vw, 16px);
}
.hero-side .lede { max-width: 38ch; }

.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-meta-item .num-big {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1; letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 8px;
}
.hero-meta-item .num-big em { font-style: italic; }
.hero-meta-item .label { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; }
@media (max-width: 700px) { .hero-meta { grid-template-columns: 1fr; gap: 24px; } }

/* ─────────────────────────────────────────────────────────────────────
   MARQUEE — conditions / insurance carriers
   ───────────────────────────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  background: var(--bg-soft);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 32px);
  font-style: italic;
  font-weight: 360;
  color: var(--ink-2);
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.marquee-item::after {
  content: '✦';
  color: var(--clay);
  font-size: 16px;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────────────────
   SPLIT — Patient / Provider audience cards
   ───────────────────────────────────────────────────────────────────── */
.split-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  transition: all 350ms cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; min-height: 380px;
}
.split-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(19,31,24,.18); }
.split-card.dark { background: var(--green); color: var(--on-dark); border-color: var(--green); }
.split-card.dark .body-muted { color: var(--on-dark-muted); }
.split-card .num { color: inherit; opacity: 0.7; }
.split-card .arrow-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
  padding-top: 28px;
}
.split-card .arrow-link svg { transition: transform 250ms ease; }
.split-card:hover .arrow-link svg { transform: translate(4px, -4px); }

/* ─────────────────────────────────────────────────────────────────────
   PROCESS / NUMBERED STEPS
   ───────────────────────────────────────────────────────────────────── */
.process { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--rule); }
@media (max-width: 768px) { .process { grid-template-columns: 1fr; } }
.process-item {
  padding: clamp(28px, 3vw, 48px) clamp(20px, 2vw, 32px);
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.process-item:nth-child(2n) { border-right: 0; }
@media (max-width: 768px) {
  .process-item { border-right: 0; }
}
.process-num {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 360;
  color: var(--clay);
  padding-top: 4px;
}
.process-body h3 { margin-bottom: 8px; }
.process-body p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ─────────────────────────────────────────────────────────────────────
   THERAPY GRID
   ───────────────────────────────────────────────────────────────────── */
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
@media (max-width: 900px) { .therapy-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .therapy-grid { grid-template-columns: 1fr; } }
.therapy-cell {
  padding: clamp(24px, 2.4vw, 36px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  display: flex; flex-direction: column;
  min-height: 220px;
  transition: background 250ms ease;
  position: relative;
}
.therapy-cell:hover { background: var(--bg-card); }
.therapy-cell .num { margin-bottom: 24px; color: var(--clay); }
.therapy-cell h3 {
  font-size: clamp(22px, 2.1vw, 28px);
  margin-bottom: 12px;
}
.therapy-cell p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.therapy-cell .meta {
  margin-top: auto;
  padding-top: 24px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────────────────
   CONDITIONS LIST (Haven-inspired)
   ───────────────────────────────────────────────────────────────────── */
.conditions {
  columns: 3;
  column-gap: clamp(24px, 3vw, 48px);
  margin-top: 48px;
}
@media (max-width: 800px) { .conditions { columns: 2; } }
@media (max-width: 480px) { .conditions { columns: 1; } }
.conditions li {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 360;
  letter-spacing: -0.015em;
  line-height: 1.25;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  break-inside: avoid;
  color: var(--ink-2);
  transition: color 200ms ease, padding 200ms ease;
}
.conditions li:hover { color: var(--green); padding-left: 8px; }

/* ─────────────────────────────────────────────────────────────────────
   PULL QUOTE
   ───────────────────────────────────────────────────────────────────── */
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 360;
  color: var(--ink);
  max-width: 22ch;
}
.pull-quote em { font-style: italic; }

/* ─────────────────────────────────────────────────────────────────────
   SECTIONS — DARK
   ───────────────────────────────────────────────────────────────────── */
.section-dark {
  background: var(--green);
  color: var(--on-dark);
  position: relative;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--on-dark); }
.section-dark .eyebrow { color: var(--on-dark-muted); }
.section-dark .eyebrow::before { background: var(--on-dark-muted); }
.section-dark .body-muted { color: var(--on-dark-muted); }
.section-dark .lede { color: var(--on-dark); }
.section-dark .num { color: var(--on-dark-muted); }

/* ─────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 3vw, 36px);
  display: flex; flex-direction: column;
}
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.6;
  font-style: italic;
  font-weight: 360;
  color: var(--clay);
  margin-bottom: 18px;
}
.testimonial p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 380;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.testimonial .who { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--rule); }
.testimonial .who .name { font-weight: 600; font-size: 15px; }
.testimonial .who .role { font-size: 13px; color: var(--muted); }

/* ─────────────────────────────────────────────────────────────────────
   FORM
   ───────────────────────────────────────────────────────────────────── */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0 12px;
  color: var(--ink);
  width: 100%;
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--green);
}
.field textarea { resize: vertical; min-height: 90px; }

/* on-dark variant */
.section-dark .field label { color: var(--on-dark-muted); }
.section-dark .field input, .section-dark .field select, .section-dark .field textarea {
  color: var(--on-dark);
  border-bottom-color: var(--rule-on-dark);
}
.section-dark .field input::placeholder, .section-dark .field textarea::placeholder { color: var(--on-dark-muted); }
.section-dark .field input:focus, .section-dark .field select:focus, .section-dark .field textarea:focus {
  border-bottom-color: var(--on-dark);
}

/* ─────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────── */
.foot {
  background: var(--ink-2);
  color: var(--on-dark);
  padding: clamp(72px, 9vw, 128px) 0 40px;
}
.foot .display-md em { color: var(--clay); }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 80px;
  border-top: 1px solid var(--rule-on-dark);
  margin-top: 64px;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; gap: 28px; } }
.foot-grid h4 {
  font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot-grid ul li { padding: 6px 0; }
.foot-grid a { color: var(--on-dark); transition: color 200ms ease; }
.foot-grid a:hover { color: var(--clay); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 80px; padding-top: 32px;
  border-top: 1px solid var(--rule-on-dark);
  font-size: 13px;
  color: var(--on-dark-muted);
  flex-wrap: wrap; gap: 16px;
}
.foot-bottom .links { display: flex; gap: 24px; }

/* ─────────────────────────────────────────────────────────────────────
   PAGE INTRO HEADER (sub-pages)
   ───────────────────────────────────────────────────────────────────── */
.page-intro {
  padding: clamp(64px, 9vw, 144px) 0 clamp(48px, 6vw, 96px);
  border-bottom: 1px solid var(--rule);
}
.page-intro .crumb {
  font-family: var(--sans);
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--muted);
  margin-bottom: 32px;
}
.page-intro .crumb a:hover { color: var(--green); }
.page-intro .display-lg { max-width: 14ch; margin-bottom: 32px; }
.page-intro .lede { max-width: 56ch; }

/* ─────────────────────────────────────────────────────────────────────
   FEATURE STRIP — image + text
   ───────────────────────────────────────────────────────────────────── */
.feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 900px) { .feature-strip { grid-template-columns: 1fr; } }
.feature-strip.reverse > :first-child { order: 2; }
@media (max-width: 900px) { .feature-strip.reverse > :first-child { order: 0; } }

.feature-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
  position: relative;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────────────────────────────────────────────────────
   STAT TILES
   ───────────────────────────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--rule);
}
.stat:last-child { border-right: 0; }
@media (max-width: 900px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
}
.stat .big {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 360;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 12px;
}
.stat .big em { font-style: italic; color: var(--clay); }
.stat .label { font-size: 14px; color: var(--muted); line-height: 1.45; max-width: 32ch; }

/* ─────────────────────────────────────────────────────────────────────
   ARTICLE CARDS
   ───────────────────────────────────────────────────────────────────── */
.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .articles { grid-template-columns: 1fr; } }
.article {
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  transition: all 300ms ease;
}
.article:hover { transform: translateY(-3px); border-color: var(--ink-2); }
.article .img {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--moss) 0%, var(--green) 100%);
  position: relative;
  overflow: hidden;
}
.article .img::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.10) 0%, transparent 50%);
}
.article .body-area { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article .tag {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clay); font-weight: 600;
}
.article h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.2;
}
.article p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.article .read {
  margin-top: auto; padding-top: 8px;
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green);
}

/* ─────────────────────────────────────────────────────────────────────
   ANIMATIONS — staggered reveal on first paint
   ───────────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 900ms cubic-bezier(.2,.8,.2,1) forwards;
}
.reveal-1 { animation-delay: 0ms; }
.reveal-2 { animation-delay: 120ms; }
.reveal-3 { animation-delay: 240ms; }
.reveal-4 { animation-delay: 360ms; }
.reveal-5 { animation-delay: 480ms; }
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* in-view triggered reveal */
.in-view-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms cubic-bezier(.2,.8,.2,1), transform 800ms cubic-bezier(.2,.8,.2,1);
}
.in-view-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────────────
   UTILITIES
   ───────────────────────────────────────────────────────────────────── */
.center  { text-align: center; }
.right   { text-align: right; }
.muted   { color: var(--muted); }
.clay    { color: var(--clay); }
.green   { color: var(--green); }
.ital    { font-style: italic; }
.mt-md   { margin-top: clamp(28px, 3vw, 48px); }
.mt-lg   { margin-top: clamp(48px, 5vw, 80px); }
.mb-md   { margin-bottom: clamp(28px, 3vw, 48px); }
.mb-lg   { margin-bottom: clamp(48px, 5vw, 80px); }
.flex    { display: flex; }
.gap-sm  { gap: 12px; }
.gap-md  { gap: 24px; }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }

/* Small helper for printing the "01 — Heading" pattern from freesolo */
.kicker {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 18px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}
.kicker .dash { color: var(--clay); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 56px);
}

.intake-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: block; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
}
.intake-form label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--ink-2);
  font-weight: 500;
}
.intake-form label > span { padding-left: 2px; }
.intake-form input,
.intake-form select,
.intake-form textarea {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.intake-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  line-height: 1.55;
}
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 106, 115, 0.12);
  background: #fff;
}
.intake-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%231F3328' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-foot {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.form-fine {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 42ch;
  margin: 0;
  line-height: 1.5;
}
.form-success {
  margin-top: 8px;
  padding: 18px 22px;
  border-radius: 12px;
  background: rgba(31, 106, 115, 0.08);
  border: 1px solid rgba(31, 106, 115, 0.18);
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.55;
}
.form-success strong { color: var(--green); }
.form-success a { color: var(--green); text-decoration: underline; }

/* aside (right column) */
.contact-aside {
  display: flex; flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
  position: sticky;
  top: 96px;
}
@media (max-width: 880px) {
  .contact-aside { position: static; }
}
.aside-block {
  padding-bottom: clamp(24px, 3vw, 36px);
  border-bottom: 1px solid var(--rule);
}
.aside-block:last-child { border-bottom: 0; padding-bottom: 0; }

.h3-side {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
}
.h3-side em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--green);
}
.aside-line {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.aside-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; letter-spacing: 0.04em;
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.15s ease;
}
.aside-link:hover { opacity: 0.7; }

.big-link {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: color 0.15s ease;
}
.big-link:hover { color: var(--green); }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 14.5px;
  color: var(--ink-2);
}
.hours li:last-child { border-bottom: 0; }
.hours li span:first-child {
  font-weight: 500;
  color: var(--ink);
}
.hours li span:last-child {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.aside-map {
  border-radius: 14px;
  overflow: hidden;
  border-bottom: 0;
  padding-bottom: 0;
  border: 1px solid var(--rule);
}
.aside-map svg { display: block; width: 100%; height: auto; }

/* Referral strip */
.referral-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 820px) {
  .referral-strip { grid-template-columns: 1fr; }
}
.referral-actions {
  display: flex; flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.referral-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.referral-meta div { display: flex; flex-direction: column; gap: 4px; }
.referral-meta span {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.referral-meta strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}


/* Ghost button variant for dark sections */
.btn-ghost-on-dark {
  background: transparent;
  color: var(--on-dark);
  border: 1px solid var(--rule-on-dark);
}
.btn-ghost-on-dark:hover {
  background: var(--on-dark);
  color: var(--green);
  border-color: var(--on-dark);
}

/* ============================================================
   PLACEHOLDER SPAN (for [PHONE], [FAX], [ADDRESS] to be filled)
   ============================================================ */
.ph {
  display: inline;
  padding: 1px 8px;
  border-radius: 4px;
  background: rgba(178, 86, 56, 0.10);
  color: var(--clay);
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 0.92em;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.section-dark .ph {
  background: rgba(178, 86, 56, 0.18);
  color: #E8B19E;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--rule);
  margin-top: 0;
}
.section-dark .faq-list { border-top-color: var(--rule-on-dark); }

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 0;
}
.section-dark .faq-item { border-bottom-color: var(--rule-on-dark); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.18s ease;
}
.section-dark .faq-item summary { color: var(--on-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green); }
.section-dark .faq-item summary:hover { color: #C9D9C2; }

.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  margin-left: auto;
  margin-top: 8px;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M7 1V13M1 7H13' stroke='%231F6A73' stroke-width='1.4' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.25s ease;
}
.section-dark .faq-item summary::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M7 1V13M1 7H13' stroke='%23F0EAD9' stroke-width='1.4' stroke-linecap='round'/></svg>");
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 38px 32px 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}
.section-dark .faq-body { color: var(--on-dark-muted); }
.faq-body p { margin: 0 0 12px; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--green); border-bottom: 1px solid currentColor; }
.section-dark .faq-body a { color: #C9D9C2; }

/* ============================================================
   TWO LOCATION CARDS (homepage + others)
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2vw, 32px);
}
@media (max-width: 820px) {
  .locations-grid { grid-template-columns: 1fr; }
}

.loc-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: clamp(28px, 3.4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.loc-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-2px);
}
.loc-card .city-line {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clay); font-weight: 500;
}
.loc-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.loc-card h3 em {
  font-style: italic;
  color: var(--green);
  font-variation-settings: "opsz" 144;
}
.loc-card .addr {
  font-size: 15.5px; line-height: 1.6;
  color: var(--ink-2);
}
.loc-card .meta {
  font-size: 14px; color: var(--muted);
  display: flex; flex-wrap: wrap; gap: 6px 14px;
}
.loc-card .meta span { display: inline-flex; align-items: center; gap: 8px; }
.loc-card .meta span::before {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--moss);
}
.loc-card-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--rule);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.loc-card-foot .hours {
  font-size: 13.5px; color: var(--muted);
  margin: 0;
}
.loc-card-foot .hours li { padding: 0; border: 0; display: inline; }
.loc-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; letter-spacing: 0.04em;
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.loc-card-link:hover { opacity: 0.7; }

/* ============================================================
   INSURANCE GRID (logo-less plan name tiles)
   ============================================================ */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 720px) { .insurance-grid { grid-template-columns: repeat(2, 1fr); } }
.insurance-tile {
  background: var(--bg);
  padding: 24px 18px;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: -0.005em;
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  min-height: 90px;
  transition: background 0.15s ease;
}
.insurance-tile:hover { background: var(--bg-card); }

/* ============================================================
   INTAKE FORMS LIST (download cards)
   ============================================================ */
.forms-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
}
@media (max-width: 760px) { .forms-list { grid-template-columns: 1fr; } }
.form-card {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 26px 28px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--bg-card);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.form-card:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  background: var(--bg);
}
.form-card .form-num {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--clay);
  margin-top: 2px;
  flex: 0 0 auto;
  font-variant-numeric: tabular-nums;
}
.form-card-body { flex: 1; }
.form-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.25;
}
.form-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.form-card .arr-icon {
  flex: 0 0 auto;
  margin-top: 6px;
  transition: transform 0.18s ease;
}
.form-card:hover .arr-icon { transform: translate(3px, -3px); }

/* ============================================================
   SERVICE AREA STRIP (for location pages)
   ============================================================ */
.service-area {
  display: flex; flex-wrap: wrap; gap: 10px 12px;
  margin-top: 12px;
}
.area-pill {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.section-dark .area-pill {
  background: rgba(255,255,255,0.06);
  border-color: var(--rule-on-dark);
  color: var(--on-dark);
}

/* ============================================================
   LOCATIONS DROPDOWN IN NAV
   ============================================================ */
.nav-links .has-sub { position: relative; }
.nav-links .has-sub > a::after {
  content: "";
  display: inline-block; margin-left: 5px; vertical-align: middle;
  width: 7px; height: 7px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.2s ease;
}
.nav-links .has-sub:hover > a::after,
.nav-links .has-sub:focus-within > a::after {
  transform: rotate(225deg) translate(-2px, -2px);
}
.nav-links .submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 14px 36px rgba(14, 35, 38, 0.10);
  opacity: 0; visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 50;
}
.nav-links .has-sub:hover .submenu,
.nav-links .has-sub:focus-within .submenu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s, 0s, 0s;
}
.nav-links .submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease;
}
.nav-links .submenu a:hover { background: var(--bg-soft); }
.nav-links .submenu a small {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   STAT ROW (used on home + about + locations)
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 760px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  background: var(--bg);
  padding: clamp(28px, 3vw, 44px) clamp(18px, 2vw, 28px);
}
.stat-cell .figure {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: flex; align-items: baseline; gap: 4px;
}
.stat-cell .figure em {
  font-style: italic;
  color: var(--clay);
  font-variation-settings: "opsz" 144;
  font-size: 0.7em;
}
.stat-cell .label {
  margin-top: 12px;
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  line-height: 1.45;
}
.section-dark .stat-row { background: var(--rule-on-dark); border-color: var(--rule-on-dark); }
.section-dark .stat-cell { background: var(--green); }
.section-dark .stat-cell .figure { color: var(--on-dark); }
.section-dark .stat-cell .label { color: var(--on-dark-muted); }

/* Hero art column (right side of homepage hero) */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art svg {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 32px rgba(14, 35, 38, 0.10));
}
@media (max-width: 900px) {
  .hero-art { margin-top: 24px; }
  .hero-art svg { max-width: 320px; }
}

/* ============================================================
   TOP ANNOUNCEMENT BANNER
   ============================================================ */
.top-banner {
  background: #FFFFFF;
  border-bottom: 1px solid var(--rule);
  width: 100%;
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 11px 16px;
  transition: background 0.18s ease;
  position: relative;
  z-index: 51;
}
.top-banner:hover { background: #F8F8F5; }
.top-banner-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.top-banner .pulse {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-mid);
  position: relative;
  flex-shrink: 0;
}
.top-banner .pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-bright);
  opacity: 0;
  animation: bannerPulse 2.4s ease-out infinite;
}
@keyframes bannerPulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.2); opacity: 0; }
}
.top-banner strong { font-weight: 600; color: var(--teal); }
.top-banner em { font-style: italic; color: var(--teal-mid); font-variation-settings: "opsz" 144; }
.top-banner .banner-arrow {
  display: inline-block;
  transition: transform 0.18s ease;
  font-weight: 500;
}
.top-banner:hover .banner-arrow { transform: translateX(4px); }
@media (max-width: 540px) {
  .top-banner { font-size: 12.5px; padding: 10px 14px; }
  .top-banner-inner { gap: 10px; }
}

/* ============================================================
   ITALIC EMPHASIS — bright leaf teal (brand accent)
   ============================================================ */
em, .ital {
  color: var(--teal-mid);
  font-style: italic;
}
/* Override: keep clay for "Se habla español" callouts and inline overrides */
em[style*="color"] { /* inline style wins anyway, just here for documentation */ }
/* Override: keep wordmark italic in white in footer brand */
.foot .brand-word em { color: var(--on-dark); }
/* Override: italic inside .ph (placeholder pills) keeps clay */
.ph em { color: inherit; }
/* On dark sections, italics use bright leaf for contrast */
.section-dark em,
.section-dark .ital,
.section-dark .lede em,
.section-dark p em,
.section-dark .display-xl em,
.section-dark .display-lg em,
.section-dark .display-md em,
.section-dark .display-sm em {
  color: var(--teal-bright);
}
/* Footer dark-context overrides */
.foot em { color: var(--teal-bright); }
.foot .brand-word em { color: var(--on-dark); }

/* ============================================================
   NAV BG — switch to white so brand logo blends seamlessly
   ============================================================ */
.nav { background: rgba(255, 255, 255, 0.92); border-bottom: 1px solid var(--rule); }
@supports (backdrop-filter: blur(20px)) {
  .nav { background: rgba(255, 255, 255, 0.78); backdrop-filter: blur(20px) saturate(140%); }
}

/* ============================================================
   GEORGIA STATEWIDE STRIP (homepage)
   ============================================================ */
.ga-strip {
  margin-top: clamp(56px, 6vw, 96px);
  padding-top: clamp(40px, 4.5vw, 64px);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 880px) {
  .ga-strip { grid-template-columns: 1fr; gap: 32px; }
}
.ga-strip-pills .service-area {
  margin-top: 0;
}

/* ============================================================
   v3 OVERRIDES — tighter spacing, bigger logo, solid banner, icons
   ============================================================ */

/* Tighter section vertical rhythm */
:root { --section-y: clamp(64px, 6.5vw, 112px); }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section-tight { padding-top: clamp(48px, 5vw, 80px); padding-bottom: clamp(48px, 5vw, 80px); }

/* Hero — equal columns, hero-side gets a max-width so the headline doesn't sprawl */
.hero { padding-top: clamp(40px, 5vw, 80px); padding-bottom: clamp(48px, 6vw, 88px); }
.hero-grid { grid-template-columns: 1.15fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.hero-side { max-width: 780px; }
.hero-side .lede { max-width: 52ch; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* Bigger nav: taller bar, larger logo, solid white banner */
.nav { background: #FFFFFF; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1px solid var(--rule-soft); }
.nav-inner { height: 92px; }
.brand-logo { height: 56px; }
@media (max-width: 700px) {
  .nav-inner { height: 76px; }
  .brand-logo { height: 44px; }
}
.foot .brand-logo { height: 44px; }
.foot .brand-mark { width: 38px; height: 38px; }

/* Banner — solid pure white, no transparency or backdrop */
.top-banner { background: #FFFFFF; border-bottom: 1px solid var(--rule-soft); }
.top-banner:hover { background: #FAFAF7; }

/* Display headings used as h2/h3 in cards: cap so they never crash into 1-word-per-line */
h3 { letter-spacing: -0.012em; }
.process-item h3 { font-size: clamp(20px, 2.2vw, 28px); }

/* Make the hero-art SVG actually visible at desktop */
.hero-art svg { max-width: 480px; }

/* ============================================================
   ICON SYSTEM
   icons live in spans .ico, with size + color via --teal-mid stroke
   ============================================================ */
.ico {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: flex-start;
  flex-shrink: 0;
  color: var(--teal-mid);
  margin-bottom: 14px;
}
.ico svg { width: 100%; height: 100%; max-width: 38px; max-height: 38px; }
.section-dark .ico { color: var(--teal-bright); }

/* In process items the icon stands inline-block above heading */
.process-item .ico {
  width: 30px; height: 30px;
  margin-bottom: 8px;
}
.process-item .ico svg { max-width: 30px; max-height: 30px; }

/* When an icon sits inline next to a number, shrink to align */
.numicon-row {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
}
.numicon-row .num { margin-bottom: 0; line-height: 1; }
.numicon-row .ico { width: 26px; height: 26px; margin-bottom: 0; }

/* ============================================================
   v5 — explicit italic color on every large headline
   Hardcoded #33818B for bulletproof readability on cream
   ============================================================ */
em, .ital {
  color: #33818B;
  font-style: italic;
  font-weight: 420;     /* up from 380 — slightly heavier for legibility */
}
h1 em, h2 em, h3 em, h4 em,
.display-xl em, .display-lg em, .display-md em, .display-sm em,
.lede em, p em,
.hero-side em,
.process-body em,
.loc-card h3 em,
.feature-strip em,
.kicker em {
  color: #33818B !important;
  font-weight: 420;
}

/* Bright leaf only on dark teal sections (kept) */
.section-dark em,
.section-dark .ital,
.section-dark h1 em, .section-dark h2 em, .section-dark h3 em, .section-dark h4 em,
.section-dark .display-xl em, .section-dark .display-lg em,
.section-dark .display-md em, .section-dark .display-sm em,
.section-dark .lede em, .section-dark p em {
  color: #5CE0E5 !important;
}

/* Inline-style overrides win — these are intentional */
.foot .brand-word em { color: var(--on-dark) !important; }
.ph em { color: inherit !important; }
.foot .display-md em { color: var(--clay) !important; }
.stat-cell .figure em { color: var(--clay) !important; }
.stat .big em { color: var(--clay) !important; }

/* ============================================================
   PEPTIDE MENU PAGE — pricing rows + category groups
   ============================================================ */
.pep-cat {
  background: var(--bg);
  padding-top: clamp(48px, 5vw, 80px);
  padding-bottom: clamp(48px, 5vw, 80px);
}
.pep-cat:nth-of-type(even) { background: var(--bg-soft); }
.pep-cat-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: start;
  margin-bottom: clamp(36px, 4vw, 56px);
  padding-bottom: clamp(28px, 3vw, 44px);
  border-bottom: 1px solid var(--rule);
}
.pep-cat-head .ico {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  margin-top: 4px;
  padding: 12px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: var(--bg-card);
  color: var(--teal-mid);
}
.pep-cat-head .ico svg {
  max-width: 32px; max-height: 32px;
}
.pep-cat-head h2 { margin-bottom: 0; }

.peptide-list {
  display: flex;
  flex-direction: column;
}
.peptide-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: clamp(16px, 2.4vw, 36px);
  padding: clamp(22px, 2.4vw, 32px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.peptide-row:last-child {
  border-bottom: 0;
}
.peptide-num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--clay);
  font-weight: 380;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.peptide-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.peptide-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.9vw, 26px);
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
}
.peptide-dose {
  font-family: var(--sans);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: var(--teal-mid);
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.peptide-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 64ch;
}
.peptide-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}
.peptide-price .price-amt {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.015em;
  color: var(--teal);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.peptide-price .price-unit {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: lowercase;
}

@media (max-width: 720px) {
  .pep-cat-head {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .pep-cat-head .ico { width: 44px; height: 44px; padding: 9px; }
  .peptide-row {
    grid-template-columns: 36px 1fr;
    grid-template-areas:
      "num main"
      ".   price";
    row-gap: 12px;
  }
  .peptide-num { grid-area: num; }
  .peptide-main { grid-area: main; }
  .peptide-price {
    grid-area: price;
    align-items: flex-start;
    text-align: left;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
}

/* Tighten nav-link gaps so 8 items + dropdown fit at 1280–1440px */
@media (max-width: 1280px) {
  .nav-links { gap: 24px; }
}
@media (min-width: 961px) and (max-width: 1080px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 13.5px; }
}

/* ============================================================
   v6 — wider content + IV badge styling
   ============================================================ */

/* Most-popular / featured pill on IV cards */
.iv-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--clay);
  color: #FFF8EC;
  vertical-align: middle;
  margin-left: 8px;
}

/* Wider lede paragraphs — they were too narrow at 52ch */
.lede { max-width: 64ch; }

/* Two-column section heads — make bodies fill the page rather than stop at midline.
   The previous pattern was col-span-5 + col-span-6 starting at 7, leaving a gap.
   New rhythm: col-span-5 heading + col-span-7 body starting at col 6 = full width, 
   contiguous, no awkward empty column. */
@media (min-width: 880px) {
  .grid-12 > .col-span-6[style*="grid-column-start: 7"] {
    grid-column: 7 / span 6;
    /* keep existing — but allow content inside to use full width */
    max-width: none;
  }
  .grid-12 > .col-span-6[style*="grid-column-start: 7"] .lede,
  .grid-12 > .col-span-6[style*="grid-column-start: 7"] p {
    max-width: 64ch;
  }
  /* new col-span-7 starting at col 6 — full bleed second column */
  .grid-12 > .col-span-7[style*="grid-column-start: 6"] {
    grid-column: 6 / span 7;
  }
}

/* About-removed: tighten patients/providers/contact heros and lede to fill page */
.page-intro .lede { max-width: 68ch; }

/* Process items — let descriptions breathe wider */
.process-item p { max-width: 56ch; }

/* ============================================================
   BLOG INDEX + ARTICLE PAGES
   ============================================================ */

/* Blog index card grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 36px);
  margin-top: clamp(32px, 4vw, 56px);
}
@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}
.blog-card:hover { transform: translateY(-2px); }
.blog-card:hover .blog-card-title { color: var(--teal-mid); }

.blog-card-image {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  aspect-ratio: 3 / 2;
}
.blog-card-image svg {
  width: 100%; height: 100%; display: block;
}

.blog-card-cat {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-mid);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.blog-card-cat::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--teal-mid);
}

.blog-card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.012em;
  line-height: 1.22;
  color: var(--ink);
  margin: 4px 0 0;
  transition: color 0.2s ease;
}

.blog-card-excerpt {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

.blog-card-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: auto;
  padding-top: 8px;
}
.blog-card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rule); }

/* Article page hero */
.article-hero {
  padding-top: clamp(48px, 5vw, 84px);
  padding-bottom: clamp(36px, 4vw, 56px);
  border-bottom: 1px solid var(--rule);
}
.article-hero .crumb { margin-bottom: 24px; }
.article-hero h1 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 0 28px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rule); }
.article-meta .cat {
  color: var(--teal-mid);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11.5px;
}

/* Article hero image */
.article-cover {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  aspect-ratio: 16 / 7;
  margin-top: clamp(28px, 3vw, 44px);
}
.article-cover svg { width: 100%; height: 100%; display: block; }

/* Article body — reading-optimized typography */
.article-body {
  max-width: 64ch;
  margin: clamp(40px, 5vw, 72px) auto;
  padding: 0;
  font-family: var(--sans);
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink-2);
}
.article-body > * { margin-top: 0; }
.article-body p { margin: 0 0 1.5em; }
.article-body p.lead {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 2em;
  border-bottom: 1px solid var(--rule-soft);
  padding-bottom: 1.6em;
}
.article-body h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 2em 0 0.7em;
}
.article-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 1.7em 0 0.5em;
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body em { color: var(--teal-mid); }
.article-body ul, .article-body ol {
  margin: 0 0 1.6em;
  padding-left: 1.4em;
}
.article-body li {
  margin-bottom: 0.7em;
  padding-left: 0.4em;
}
.article-body li::marker { color: var(--teal-mid); }
.article-body a {
  color: var(--teal);
  border-bottom: 1px solid var(--teal-mid);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.article-body a:hover {
  color: var(--teal-mid);
  border-bottom-color: var(--teal-mid);
}
.article-body blockquote {
  margin: 2em 0;
  padding: 0 0 0 1.4em;
  border-left: 2px solid var(--teal-mid);
  font-family: var(--serif);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink);
}

/* Related posts at end of article */
.related-posts {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
}
.related-posts h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}
@media (max-width: 820px) {
  .related-grid { grid-template-columns: 1fr; }
}

/* Article CTA */
.article-cta {
  max-width: 64ch;
  margin: 0 auto clamp(40px, 5vw, 72px);
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3vw, 40px);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  text-align: center;
}
.article-cta h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 12px;
}
.article-cta p {
  color: var(--ink-2);
  font-size: 15px;
  margin: 0 0 22px;
}

/* ============================================================
   v7 — social icons in nav + footer
   ============================================================ */

/* Wrap CTA + socials in a flex group on the right side of nav */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Subtle line-icon buttons in the nav — teal mid on white */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--teal-mid);
  border: 1px solid var(--rule);
  background: transparent;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.social-icon:hover {
  color: var(--teal);
  border-color: var(--teal-mid);
  background: rgba(51, 129, 139, 0.06);
}

@media (max-width: 1080px) {
  .social-icon { width: 32px; height: 32px; }
  .social-icon svg { width: 16px; height: 16px; }
}
@media (max-width: 900px) {
  /* On smaller viewports the CTA shows but socials hide — they're in footer too */
  .nav-actions .social-icon { display: none; }
}

/* Social row in footer brand column */
.foot-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(240, 234, 217, 0.12);
}
.foot-social a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--on-dark-muted);
  text-decoration: none;
  transition: color 0.18s ease;
  width: fit-content;
}
.foot-social a:hover { color: var(--teal-bright); }
.foot-social a svg { flex-shrink: 0; }

/* ============================================================
   v8 — Conditions We Treat section
   ============================================================ */
.cond-group {
  padding: 24px 0;
}
.cond-group-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.cond-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cond-list li {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink-2);
  padding-left: 16px;
  position: relative;
}
.cond-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clay);
}

/* Tighten the formulary tile grid for the larger list */
.section-dark .insurance-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0;
}

/* ============================================================
   v9 — Individual medication pages
   ============================================================ */

/* Hero metadata box */
.med-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  max-width: 56ch;
}
.med-meta-row {
  display: flex;
  gap: 16px;
  font-size: 14.5px;
  line-height: 1.5;
  flex-wrap: wrap;
}
.med-meta-label {
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 11.5px;
  font-weight: 500;
  flex: 0 0 130px;
  padding-top: 2px;
}
.med-meta-value {
  color: var(--ink-2);
  flex: 1;
}

/* Body sections on the medication page */
.med-section {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.med-section:last-child { border-bottom: 0; }

/* Sticky-ish sidebar boxes */
.med-side {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 14px;
  margin-bottom: 20px;
}
.med-side-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}
.med-side p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 880px) {
  .med-side { margin-bottom: 16px; }
}

/* Related medication cards */
.rel-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.rel-card:hover {
  transform: translateY(-2px);
  border-color: var(--teal-mid);
}
.rel-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}
.rel-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}
.rel-arrow {
  font-size: 13px;
  color: var(--teal-mid);
  letter-spacing: 0.02em;
  margin-top: 8px;
  font-weight: 500;
}

/* Linkable formulary tiles (on therapies page) */
a.insurance-tile {
  cursor: pointer;
  text-decoration: none;
}
a.insurance-tile:hover {
  background: rgba(92, 224, 229, 0.08);
  color: var(--teal-bright);
}

/* ============================================================
   v10 — Form download cards
   ============================================================ */
.form-card {
  text-decoration: none;
}
.form-meta {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--teal-mid);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Medication-specific order form tiles (compact grid on providers page) */
.med-forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.med-form-tile {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px;
  text-decoration: none;
  background: var(--bg-card);
  transition: background 0.15s ease;
}
.med-form-tile:hover {
  background: rgba(92, 224, 229, 0.10);
}
.med-form-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.med-form-generic {
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
}

/* ============================================================
   v11 — Single location page detail blocks
   ============================================================ */
.loc-detail {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.loc-detail:last-child { border-bottom: 0; }
.loc-label {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 6px;
}
.loc-value {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.loc-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.loc-bullets li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
}
.loc-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clay);
}

/* Map illustration card */
.map-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 18px;
  overflow: hidden;
  position: sticky;
  top: 110px;
}
.map-illustration { aspect-ratio: 3 / 2; }
.map-illustration svg { width: 100%; height: 100%; display: block; }
