/* ==========================================================================
   InCare — production stylesheet
   Tokens ported from the design system (tokens/*.css). Structure follows the
   site build conventions: 1350px .container, 1024/640 breakpoints,
   88/64/48 section rhythm, .reveal scroll animations.
   Fonts load via <link> in each page head (Montserrat + Inter).
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root{
  /* Brand palette */
  --incare-navy:#22314E;
  --incare-blue:#314B78;
  --incare-gray:#9399A9;
  --incare-charcoal:#444444;
  --incare-mist:#F2F1F5;
  --incare-red:#D91937;

  /* Navy ramp */
  --navy-900:#141D30;
  --navy-800:#1B2740;
  --navy-700:#22314E;
  --navy-600:#2A3D60;
  --navy-100:#E4E8EF;

  /* Blue ramp */
  --blue-800:#243A5E;
  --blue-700:#2B4269;
  --blue-600:#314B78;
  --blue-500:#3E5C90;
  --blue-400:#5B78A8;
  --blue-200:#B9C6DB;
  --blue-100:#E3E9F3;
  --blue-50:#F1F5FA;

  /* Neutral ramp */
  --white:#FFFFFF;
  --gray-50:#F8F8FA;
  --gray-100:#F2F1F5;
  --gray-200:#E4E4EA;
  --gray-300:#CBCED8;
  --gray-400:#9399A9;
  --gray-500:#767D8F;
  --gray-600:#5C6270;
  --gray-700:#444444;
  --gray-900:#1F2126;

  /* Accent ramp */
  --red-700:#A81229;
  --red-600:#D91937;
  --red-100:#FBE4E8;

  /* Semantic status */
  --success-600:#1F7A5A;
  --success-100:#E4F2EC;
  --warning-600:#A9741A;
  --warning-100:#FBF0DC;
  --danger-600:#D91937;
  --danger-100:#FBE4E8;
  --info-600:#314B78;
  --info-100:#E3E9F3;

  /* Semantic text */
  --text-strong:var(--navy-700);
  --text-body:#303030;
  --text-muted:var(--gray-500);
  --text-subtle:var(--gray-400);
  --text-on-dark:var(--white);
  /* Body copy on navy. Kept close to white so nothing on a dark surface reads dim. */
  --text-on-dark-soft:rgba(255,255,255,.92);
  --text-accent:var(--blue-600);
  --text-link:var(--blue-600);
  --text-link-hover:var(--navy-700);

  /* Semantic surfaces */
  --surface-page:var(--white);
  --surface-subtle:var(--gray-100);
  --surface-card:var(--white);
  --surface-card-tint:var(--blue-50);
  --surface-inverse:var(--navy-700);
  --surface-inverse-alt:var(--blue-600);
  --surface-accent:var(--blue-100);

  /* Borders */
  --border-subtle:var(--gray-200);
  --border-default:var(--gray-300);
  --border-strong:var(--navy-700);
  --border-on-dark:rgba(255,255,255,.18);

  /* Interactive */
  --action-primary:var(--navy-700);
  --action-primary-hover:var(--navy-800);
  --action-primary-active:var(--navy-900);
  --action-secondary:var(--blue-600);
  --action-secondary-hover:var(--blue-700);
  --action-accent:var(--red-600);
  --action-accent-hover:var(--red-700);
  --focus-ring:var(--blue-500);

  /* Type */
  --font-display:"Montserrat","Helvetica Neue",Arial,sans-serif;
  --font-body:"Inter","Helvetica Neue",Arial,sans-serif;
  --font-mono:ui-monospace,SFMono-Regular,Menlo,monospace;

  --fw-regular:400;
  --fw-medium:500;
  --fw-semibold:600;
  --fw-bold:700;
  --fw-extrabold:800;

  --text-display-1:clamp(44px,5.2vw,72px);
  --text-display-2:clamp(36px,4vw,56px);
  --text-h1:44px;
  --text-h2:30px;
  --text-h3:28px;
  --text-h4:22px;
  --text-h5:18px;

  --text-lead:17px; /* unified with --text-body: no lead-size distinction sitewide */
  --text-body-md:17px; /* named -md to avoid colliding with the --text-body color token above */
  --text-body-sm:15px;
  --text-caption:13px;
  --text-eyebrow:13px;

  --lh-tight:1.06;
  --lh-heading:1.16;
  --lh-snug:1.35;
  --lh-body:1.62;
  --lh-loose:1.75;

  --ls-display:-0.02em;
  --ls-heading:-0.01em;
  --ls-body:0em;
  --ls-eyebrow:0.14em;
  --ls-button:0.01em;

  --measure-narrow:52ch;
  --measure-body:66ch;

  /* Spacing scale */
  --space-0:0px;
  --space-1:4px;
  --space-2:8px;
  --space-3:12px;
  --space-4:16px;
  --space-5:20px;
  --space-6:24px;
  --space-8:32px;
  --space-10:40px;
  --space-12:48px;
  --space-16:64px;
  --space-20:80px;
  --space-24:96px;
  --space-32:128px;

  /* Section rhythm (88/64/48 per build conventions; tight variant one step down) */
  --section-y:88px;
  --section-y-tight:64px;

  /* Layout (1350px container per build conventions) */
  --container-max:1350px;
  --container-pad-desktop:32px;
  --container-pad-mobile:20px;

  /* Radii */
  --radius-xs:4px;
  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:14px;
  --radius-xl:20px;
  --radius-pill:999px;

  --border-width:1px;
  --border-width-thick:2px;
  --rule-accent-width:3px;

  /* Elevation (navy-tinted; borders first, shadows second) */
  --shadow-none:none;
  --shadow-xs:0 1px 2px rgba(34,49,78,.06);
  --shadow-sm:0 2px 6px rgba(34,49,78,.07);
  --shadow-md:0 6px 18px rgba(34,49,78,.09);
  --shadow-lg:0 14px 36px rgba(34,49,78,.12);
  --shadow-header:0 1px 0 rgba(34,49,78,.10);
  --shadow-focus:0 0 0 3px rgba(62,92,144,.35);
  --shadow-inset-top:inset 0 1px 0 rgba(255,255,255,.08);

  --scrim-navy:linear-gradient(180deg,rgba(20,29,48,.15) 0%,rgba(20,29,48,.78) 100%);
  --scrim-navy-side:linear-gradient(90deg,rgba(20,29,48,.88) 0%,rgba(20,29,48,.35) 60%,rgba(20,29,48,0) 100%);

  /* Motion */
  --ease-standard:cubic-bezier(.2,.6,.2,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
  --ease-in-out:cubic-bezier(.4,0,.2,1);
  --dur-fast:120ms;
  --dur-base:180ms;
  --dur-slow:280ms;
  --dur-reveal:520ms;
  --press-scale:0.985;
  --hover-lift:-2px;
}

@media (max-width:1024px){
  :root{
    --section-y:64px;
    --section-y-tight:48px;
  }
}
@media (max-width:640px){
  :root{
    --section-y:48px;
    --section-y-tight:40px;
  }
}

/* --------------------------------------------------------------------------
   2. BASE
   -------------------------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:152px}
body{margin:0;overflow-x:clip;font-family:var(--font-body);font-size:var(--text-body-md);line-height:var(--lh-body);color:var(--text-body);background:var(--surface-page);-webkit-font-smoothing:antialiased}
h1,h2,h3,h4,h5{font-family:var(--font-display);font-weight:var(--fw-extrabold);color:var(--text-strong);letter-spacing:var(--ls-heading);line-height:var(--lh-heading);margin:0}
h1{font-size:var(--text-h1);letter-spacing:var(--ls-display)}
h2{font-size:var(--text-h2);letter-spacing:var(--ls-display)}
h3{font-size:var(--text-h3)}
h4{font-size:var(--text-h4);font-weight:var(--fw-bold)}
h5{font-size:var(--text-h5);font-weight:var(--fw-semibold)}
p{margin:0;text-wrap:pretty}
a{color:var(--text-link);text-decoration:none;font-weight:var(--fw-medium);transition:color var(--dur-base) var(--ease-standard)}
a:hover{color:var(--text-link-hover);text-decoration:underline;text-underline-offset:3px}
.inline-link{color:var(--blue-600);text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px}
.inline-link:hover{color:var(--navy-700);text-decoration-thickness:2px}
:focus-visible{outline:2px solid var(--focus-ring);outline-offset:2px}
img{max-width:100%;display:block}
button{font:inherit}

@media (max-width:1024px){
  html{scroll-padding-top:88px}
}

/* Container: content width cap lives here, never on sections */
.container{max-width:var(--container-max);margin:0 auto;padding:0 var(--container-pad-desktop)}
@media (max-width:1024px){.container{padding:0 24px}}
@media (max-width:640px){.container{padding:0 var(--container-pad-mobile)}}

/* Sections: full-bleed backgrounds, vertical padding only */
.section{padding:var(--section-y) 0}
.section--tight{padding:var(--section-y-tight) 0}
.section--subtle{background:var(--surface-subtle)}
.section--navy{background:var(--navy-700)}
.section--navy h1,.section--navy h2,.section--navy h3,.section--navy h4,.section--navy h5{color:var(--text-on-dark)}
.section--navy p{color:var(--text-on-dark-soft)}
.section--navy .eyebrow{color:var(--text-on-dark-soft)}
/* Default .text-link is blue-600, which nearly disappears against navy-700 */
.section--navy .text-link{color:var(--text-on-dark-soft)}
.section--navy .text-link:hover{color:var(--white)}

/* Spacing utilities (fixed scale only) */
.mt-6{margin-top:var(--space-6)}
.mt-8{margin-top:var(--space-8)}
.mt-10{margin-top:var(--space-10)}
.mt-16{margin-top:var(--space-16)}

/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */
.btn{--btn-glow:rgba(34,49,78,.30);display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 22px;font-family:var(--font-display);font-weight:var(--fw-semibold);font-size:15px;letter-spacing:var(--ls-button);line-height:1;text-decoration:none;border-radius:var(--radius-sm);border:var(--border-width-thick) solid transparent;cursor:pointer;white-space:nowrap;transition:background-color var(--dur-base) var(--ease-standard),background-image var(--dur-base) var(--ease-standard),color var(--dur-base) var(--ease-standard),border-color var(--dur-base) var(--ease-standard),transform var(--dur-base) var(--ease-standard),box-shadow var(--dur-base) var(--ease-standard)}
/* Hover: slight lift, colored glow, and a light veil that softens the fill */
.btn:hover{text-decoration:none;transform:translateY(var(--hover-lift));box-shadow:0 8px 20px var(--btn-glow);background-image:linear-gradient(rgba(255,255,255,.09),rgba(255,255,255,.09))}
.btn:active{transform:translateY(0) scale(var(--press-scale));box-shadow:none}
.btn svg{width:18px;height:18px;flex:0 0 auto}

/* Phone icon buzzes like an incoming call: a quick shake burst, then a long rest,
   on repeat. Also fires on hover so the effect reads even for a short site visit. */
@keyframes icon-vibrate{
  0%,92%,100%{transform:rotate(0)}
  93%{transform:rotate(-13deg)}
  94%{transform:rotate(11deg)}
  95%{transform:rotate(-9deg)}
  96%{transform:rotate(7deg)}
  97%{transform:rotate(-5deg)}
  98%{transform:rotate(3deg)}
  99%{transform:rotate(-1deg)}
}
.icon-phone{transform-origin:center;animation:icon-vibrate 4s ease-in-out infinite}
a:hover .icon-phone{animation-duration:.5s}
@media (prefers-reduced-motion:reduce){
  .icon-phone{animation:none}
}
.btn--sm{padding:9px 16px;font-size:14px;gap:7px}
.btn--lg{padding:17px 30px;font-size:16px;gap:10px}
.btn--primary{--btn-glow:rgba(34,49,78,.40);background:var(--action-primary);color:var(--white)}
.btn--primary:hover{color:var(--white)}
.btn--secondary{--btn-glow:rgba(49,75,120,.24);background:transparent;color:var(--blue-600);border-color:var(--blue-600)}
.btn--secondary:hover{background:var(--blue-50);color:var(--blue-600)}
.btn--accent{--btn-glow:rgba(217,25,55,.45);background:var(--action-accent);color:var(--white)}
.btn--accent:hover{color:var(--white)}
.btn--ghost{--btn-glow:rgba(34,49,78,.18);background:transparent;color:var(--text-strong)}
.btn--ghost:hover{background:var(--gray-100);color:var(--text-strong)}
.btn--on-dark{--btn-glow:rgba(10,15,26,.55);background:var(--white);color:var(--navy-700)}
.btn--on-dark:hover{background:var(--blue-100);color:var(--navy-700)}
.btn--on-dark-outline{--btn-glow:rgba(10,15,26,.55);background:transparent;color:var(--white);border-color:rgba(255,255,255,.55)}
.btn--on-dark-outline:hover{background:rgba(255,255,255,.12);color:var(--white)}
@media (prefers-reduced-motion:reduce){
  .btn,.btn:hover,.btn:active{transform:none;transition:none}
}

/* --------------------------------------------------------------------------
   4. COMPONENTS
   -------------------------------------------------------------------------- */

/* Eyebrow: plain uppercase label everywhere except the hero, which keeps its
   own pill-chip treatment (.hero-locations) untouched. */
.eyebrow{display:block;font-family:var(--font-display);font-weight:var(--fw-semibold);font-size:14px;letter-spacing:var(--ls-eyebrow);text-transform:uppercase;line-height:1.2;color:var(--incare-red)}

/* Section heading: eyebrow, h2, optional lead */
.section-heading{display:flex;flex-direction:column;gap:var(--space-4);align-items:flex-start;text-align:left;max-width:var(--measure-body)}
.section-heading--center{align-items:center;text-align:center;margin-inline:auto}
.section-heading h2{font-size:var(--text-h2);line-height:var(--lh-heading);letter-spacing:var(--ls-display)}
.section-heading .lead{font-size:var(--text-lead);line-height:var(--lh-body);color:var(--text-body);max-width:var(--measure-body)}
.section--navy .section-heading .lead{color:var(--text-on-dark-soft)}

/* A plain paragraph following a section-heading inside a split (e.g. the
   "why patients switch" bridge line) reads as body copy, not a lead.
   :not(.lead) keeps this from also re-coloring lead paragraphs, which are
   direct children of .split-text too (e.g. the hero) and already have their
   own color rule. */
.split-text > p:not(.lead){font-size:var(--text-body-md);line-height:var(--lh-body);color:var(--text-body);max-width:var(--measure-body)}

/* Card base: border first, shadow second */
.card{position:relative;display:block;overflow:hidden;background:var(--surface-card);color:var(--text-body);border:var(--border-width) solid var(--border-subtle);border-radius:var(--radius-lg);box-shadow:var(--shadow-xs);text-decoration:none;font-weight:var(--fw-regular);transition:box-shadow var(--dur-base) var(--ease-standard),transform var(--dur-base) var(--ease-standard),border-color var(--dur-base) var(--ease-standard)}
.card--interactive:hover{border-color:var(--blue-200);box-shadow:var(--shadow-md);transform:translateY(var(--hover-lift));text-decoration:none;color:var(--text-body)}

/* Card link row (Get Directions / Learn More) */
.card-link{display:inline-flex;align-items:center;gap:6px;font-family:var(--font-display);font-weight:var(--fw-semibold);font-size:14px;color:var(--blue-600);text-decoration:none}
.card-link svg{width:15px;height:15px;flex:0 0 auto}
a.card-link:hover{color:var(--navy-700);text-decoration:none}

/* Location card */
.location-directory-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-6);max-width:1100px;margin-inline:auto}
.location-card{display:flex;flex-direction:column;height:100%;padding:0}
.location-map{aspect-ratio:4 / 3;overflow:hidden;background:var(--gray-100)}
.location-map iframe{display:block;width:100%;height:100%;border:0}
.location-map img{display:block;width:100%;height:100%;object-fit:cover}
.location-body{display:flex;flex-direction:column;align-items:center;text-align:center;gap:var(--space-3);padding:var(--space-8);flex:1}
.location-body h3{font-size:var(--text-h4);font-weight:var(--fw-bold)}
.location-body p{font-size:var(--text-body-sm);line-height:var(--lh-body);color:var(--text-body)}
.location-phone{display:inline-flex;align-items:center;gap:6px;color:var(--text-body);font-weight:var(--fw-regular);font-size:var(--text-body-sm);text-decoration:none}
.location-phone svg{width:15px;height:15px;color:var(--incare-red);flex:0 0 auto}
.location-phone:hover{color:var(--blue-600);text-decoration:none}
.location-body .btn{margin-top:auto}

/* Provider card */
.provider-card{display:flex;flex-direction:column;height:100%;padding:0}
.provider-photo{aspect-ratio:4 / 3;background:var(--gray-100);position:relative;overflow:hidden}
.provider-photo img{width:100%;height:100%;object-fit:cover;object-position:center top;transition:transform 900ms var(--ease-out)}
.provider-card:hover .provider-photo img{transform:scale(1.03) translateY(-1.5%)}
.provider-info{padding:var(--space-6);display:flex;flex-direction:column;align-items:center;text-align:center;gap:var(--space-2);background:var(--navy-700)}
.provider-info h3{font-size:var(--text-h5);font-weight:var(--fw-bold);color:var(--text-on-dark)}
.provider-info h3 .credential{color:var(--blue-200)}
.provider-info p{font-size:var(--text-body-sm);line-height:var(--lh-body);color:var(--text-on-dark-soft)}

/* Service card (interactive link card) */
.service-card{display:flex;flex-direction:column;align-items:center;text-align:center;gap:var(--space-4);height:100%;padding:var(--space-8);position:relative;overflow:visible;padding-top:calc(32px + var(--space-6))}
/* Icon sits half outside the card: top:-32px is half its own 64px height, so it
   straddles the card's top edge instead of sitting inside the padding like before.
   .card sets overflow:hidden for the rounded corners; overridden above so it isn't clipped. */
.service-icon{position:absolute;top:-32px;left:50%;transform:translateX(-50%);display:inline-flex;align-items:center;justify-content:center;width:64px;height:64px;border-radius:var(--radius-md);background:var(--blue-100);color:var(--blue-600);flex:0 0 auto;box-shadow:var(--shadow-sm);transition:transform var(--dur-base) var(--ease-standard)}
.service-icon svg{width:30px;height:30px}
.service-card:hover .service-icon{transform:translate(-50%,-6px)}
.service-card h3{font-size:var(--text-h4);font-weight:var(--fw-bold);line-height:var(--lh-heading)}
.service-card > p{font-size:16px;line-height:var(--lh-body);color:var(--text-body);flex:1}
.service-card .card-link{transition:transform var(--dur-base) var(--ease-standard)}
.service-card .card-link svg{transition:transform var(--dur-base) var(--ease-standard)}
.service-card:hover .card-link{transform:translateX(4px)}
.service-card:hover .card-link svg{transform:translateX(2px)}

/* Service card color variants: solid blue-600 (on-dark text) and a pale blue-50 tint
   (default dark text already reads fine on it) */
.service-card--blue{background:var(--blue-600);border-color:var(--border-on-dark)}
.service-card--blue h3{color:var(--white)}
.service-card--blue > p{color:var(--text-on-dark-soft)}
.service-card--blue .card-link{color:var(--white)}
.service-card--tint{background:var(--blue-50)}
/* Dark navy chip reads clearly against the pale blue-50 card, and its white icon
   keeps the same on-dark treatment used elsewhere on the page */
.service-card--tint .service-icon{background:var(--navy-700);color:var(--white)}

/* Glow on hover: a soft colored halo (not just the plain shadow-md every other
   card uses) so these three specifically feel like they lift toward you */
.service-card:hover{box-shadow:0 0 40px rgba(49,75,120,.4)}

/* Steps timeline */
.section--steps{background:#F2F5FA}
/* Icon badges sit in the left column, the track runs down the gutter between the
   badge and text columns, so the line reads as a spine the badges hang off of. */
.timeline{--tl-badge:56px;--tl-gap:var(--space-8);position:relative;display:flex;flex-direction:column;gap:var(--space-16);max-width:620px;margin-inline:auto}
/* Spans the full timeline: top of the first icon down to the bottom of the last step's text. */
.timeline-track{position:absolute;top:0;bottom:0;left:calc(var(--tl-badge) + var(--tl-gap) / 2);width:6px;transform:translateX(-50%);border-radius:var(--radius-pill);background:var(--border-default)}
/* Nested in the track and scaled rather than sized in %: the track's height comes from
   its top/bottom offsets, so a % height would not resolve, and scaleY keeps the fill
   clamped to the track exactly (no overshoot) while animating on the compositor. */
.timeline-fill{position:absolute;inset:0;background:var(--blue-600);border-radius:inherit;transform:scaleY(var(--fill,0));transform-origin:top center;transition:transform 120ms linear}
@media (prefers-reduced-motion:reduce){.timeline-fill{transition:none}}
.timeline-step{position:relative;display:grid;grid-template-columns:var(--tl-badge) 1fr;column-gap:var(--tl-gap);align-items:start;text-align:left}
.timeline-icon{position:relative;z-index:1;display:inline-flex;align-items:center;justify-content:center;width:var(--tl-badge);height:var(--tl-badge);border-radius:var(--radius-md);background:var(--incare-red);color:var(--white);box-shadow:var(--shadow-sm)}
.timeline-icon svg{width:26px;height:26px}
.timeline-body{display:flex;flex-direction:column;gap:var(--space-2)}
.timeline-head{display:flex;align-items:baseline;gap:var(--space-3)}
.timeline-num{font-family:var(--font-display);font-weight:var(--fw-extrabold);font-size:var(--text-h4);line-height:1;color:var(--incare-red)}
.timeline-step h3{font-size:var(--text-h4);font-weight:var(--fw-bold)}
.timeline-step p{font-size:var(--text-body-md);line-height:var(--lh-body);color:var(--text-body)}
@media (max-width:640px){
  .timeline{--tl-badge:48px;--tl-gap:var(--space-5);gap:var(--space-12)}
  .timeline-icon svg{width:22px;height:22px}
}

/* Video frame (Vimeo embed). Sits on a navy section,
   so it uses the on-dark border/shadow tones (same rgba(10,15,26,...) base as the
   on-dark buttons and hero chip hover) rather than the light-background shadow tokens,
   which would nearly disappear against navy. */
.video-frame{position:relative;aspect-ratio:16 / 9;background:var(--gray-900);border:var(--border-width-thick) solid rgba(255,255,255,.75);border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 25px 50px rgba(0,0,0,.55)}
.video-frame iframe{position:absolute;inset:0;width:100%;height:100%;border:0}

/* Callout band */
/* Same hero-bg artwork as the hero, but with a flat (not left-to-right) scrim since
   this section's text is centered rather than left-aligned. */
.callout{background-color:var(--surface-inverse);background-image:linear-gradient(rgba(34,49,78,.90),rgba(34,49,78,.90)),url("/assets/hero-bg.webp");background-size:cover;background-position:center;background-repeat:no-repeat;color:var(--text-on-dark);padding:var(--section-y-tight) 0}
.callout .container{display:flex;flex-direction:column;gap:var(--space-5);align-items:center;text-align:center}
.callout .eyebrow{color:var(--text-on-dark-soft)}
.callout h2{color:var(--text-on-dark);font-size:var(--text-h2);letter-spacing:var(--ls-display);max-width:20ch}
.callout p{font-size:var(--text-lead);line-height:var(--lh-body);color:var(--text-on-dark-soft);max-width:var(--measure-narrow)}
.callout .cta-row{display:flex;flex-wrap:wrap;gap:var(--space-4);justify-content:center;margin-top:var(--space-2)}

/* --------------------------------------------------------------------------
   5. HEADER + NAV
   Two bars: white header bar (logo, phone, Book Now, burger) and a navy
   menu bar below. One set of menu markup serves desktop bar and mobile panel.
   -------------------------------------------------------------------------- */
.site-header{position:sticky;top:0;z-index:200;background:var(--white);box-shadow:var(--shadow-header)}

.header-bar .container{display:flex;align-items:center;justify-content:space-between;gap:var(--space-6);height:96px}
.header-logo{display:block;flex:0 0 auto}
.header-logo img{height:58px;width:auto}
.header-actions{display:flex;align-items:center;gap:var(--space-4)}
/* Icon and text buttons sit side by side, so pin them to one height */
.header-actions .btn{min-height:48px}
.header-phone{white-space:nowrap}
.header-phone-label-mobile{display:none}
.btn-label-short{display:none}

/* Navy menu bar: items share the full container width, divided by hairlines */
.nav{background:var(--navy-700);box-shadow:inset 0 -1px 0 rgba(255,255,255,.16)}
.main-menu{display:flex;align-items:stretch;list-style:none;margin:0;padding:0}
.menu-item{position:relative;flex:1 1 auto}
.menu-item + .menu-item{box-shadow:inset 1px 0 0 rgba(255,255,255,.16)}
.menu-item > a{display:flex;align-items:center;justify-content:center;gap:6px;width:100%;height:56px;padding:0 var(--space-3);font-family:var(--font-body);font-weight:var(--fw-semibold);font-size:15px;letter-spacing:.02em;color:var(--white);text-decoration:none;white-space:nowrap;border-bottom:var(--border-width-thick) solid transparent;transition:background var(--dur-base) var(--ease-standard)}
.menu-item > a:hover{background:rgba(255,255,255,.08);color:var(--white);text-decoration:none}
.menu-item > a[aria-current="page"]{border-bottom-color:var(--incare-red)}
.menu-item .chev{width:13px;height:13px;flex:0 0 auto;opacity:.7;transition:transform var(--dur-base) var(--ease-standard)}
.menu-item:hover > a .chev,.menu-item.open > a .chev{transform:rotate(180deg)}

/* Desktop dropdowns: flush to the bar bottom (no hover gap), open on hover
   and keyboard focus */
/* Width follows the longest label so submenu items never wrap */
.submenu{display:none;position:absolute;top:100%;left:0;width:max-content;min-width:260px;margin:0;padding:var(--space-2);list-style:none;background:var(--white);border-radius:0 0 var(--radius-lg) var(--radius-lg);box-shadow:var(--shadow-lg);z-index:300}
.submenu a{white-space:nowrap}
.menu-item:hover > .submenu,.menu-item:focus-within > .submenu{display:block}
/* Right-most dropdowns open inward so they never run past the container */
.menu-item--right > .submenu{left:auto;right:0}
.submenu a{display:block;padding:11px 14px;border-radius:var(--radius-sm);font-family:var(--font-body);font-weight:var(--fw-medium);font-size:var(--text-body-sm);color:var(--text-strong);text-decoration:none}
.submenu a:hover{background:var(--blue-50);color:var(--blue-600);text-decoration:none}
.has-flyout{position:relative}
.submenu-parent-row{display:flex;align-items:stretch}
.submenu-parent-row>a{flex:1}
.submenu-toggle{display:flex;align-items:center;justify-content:center;width:40px;flex:0 0 40px;border:0;border-radius:var(--radius-sm);background:transparent;color:var(--gray-500);cursor:pointer}
.submenu-toggle:hover,.submenu-toggle:focus-visible{background:var(--blue-50);color:var(--blue-600)}
.submenu-toggle .chev{width:12px;height:12px;transform:rotate(-90deg);transition:transform var(--dur-base) var(--ease-standard)}
.submenu--nested{top:0;left:auto;right:100%;border-radius:var(--radius-lg) 0 var(--radius-lg) var(--radius-lg)}
.has-flyout:hover>.submenu--nested,.has-flyout:focus-within>.submenu--nested,.has-flyout.open>.submenu--nested{display:block}
.has-flyout.open .submenu-toggle .chev{transform:rotate(270deg)}

/* Burger, backdrop, and panel chrome are desktop-hidden */
.nav-burger{display:none;flex-direction:column;justify-content:center;align-items:stretch;gap:5px;width:44px;height:44px;padding:10px;background:none;border:0;cursor:pointer}
.nav-burger span{display:block;height:2px;width:100%;background:var(--navy-700);border-radius:2px;transition:transform var(--dur-slow) var(--ease-standard),opacity var(--dur-base) var(--ease-standard)}
.nav-backdrop{display:none;position:fixed;inset:0;background:rgba(20,29,48,.55);z-index:240}
.nav-panel-header,.nav-panel-footer{display:none}

/* Narrow desktop: tighten the menu so seven items still fit on one line */
@media (min-width:1025px) and (max-width:1200px){
  .menu-item > a{font-size:14px;padding:0 var(--space-2)}
}

/* Mobile: right slide-out panel with tap accordions */
@media (max-width:1024px){
  .header-bar .container{height:80px}
  .header-logo img{height:44px}
  .nav{background:none;box-shadow:none}
  .nav .container{padding:0}
  .nav-burger{display:flex}
  .btn-book-now{display:none}
  .header-phone{padding:12px 13px}
  .header-phone-label-desktop{display:none}
  .header-phone-label-mobile{display:inline}

  .main-menu{position:fixed;top:0;right:0;width:min(86vw,380px);height:100vh;height:100dvh;flex-direction:column;align-items:stretch;background:var(--white);box-shadow:-12px 0 40px rgba(20,29,48,.45);transform:translateX(100%);transition:transform var(--dur-slow) var(--ease-in-out);z-index:250;overflow-y:auto;overscroll-behavior:contain}
  body.nav-open .main-menu{transform:translateX(0)}
  body.nav-open .nav-backdrop{display:block}
  body.nav-open{overflow:hidden}

  body.nav-open .nav-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  body.nav-open .nav-burger span:nth-child(2){opacity:0}
  body.nav-open .nav-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

  .nav-panel-header{display:flex;align-items:center;justify-content:space-between;padding:14px 20px;border-bottom:var(--border-width) solid var(--border-subtle)}
  .nav-panel-header img{height:36px;width:auto}
  .nav-panel-close{display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:none;border:0;cursor:pointer;color:var(--navy-700)}
  .nav-panel-close svg{width:22px;height:22px}

  .menu-item{position:static;flex:0 0 auto;border-bottom:var(--border-width) solid var(--border-subtle)}
  .menu-item + .menu-item{box-shadow:none}
  .menu-item > a{height:auto;justify-content:space-between;padding:18px 24px;font-size:15px;color:var(--text-strong);border-bottom:none}
  .menu-item > a:hover{background:none;color:var(--text-strong)}
  .menu-item .chev{opacity:1;color:var(--gray-500)}
  .menu-item.open > a{color:var(--blue-600)}

  /* Panel rows go full width and may wrap; the desktop max-content sizing does not apply */
  .submenu{position:static;box-shadow:none;border-radius:0;width:auto;min-width:0;padding:0 0 var(--space-3);background:var(--gray-50)}
  .menu-item:hover > .submenu,.menu-item:focus-within > .submenu{display:none}
  .menu-item.open > .submenu{display:block}
  .submenu a{padding:12px 24px 12px 36px;border-radius:0;white-space:normal}
  .submenu-parent-row{align-items:center}
  .submenu-parent-row>a{padding-right:var(--space-2)}
  .submenu-toggle{align-self:stretch;width:52px;flex-basis:52px;border-radius:0}
  .submenu-toggle .chev{transform:none}
  .submenu--nested{position:static;width:auto;min-width:0;margin:0;padding:0 0 var(--space-2);border-radius:0;background:var(--white);box-shadow:none}
  .has-flyout:hover>.submenu--nested,.has-flyout:focus-within>.submenu--nested{display:none}
  .has-flyout.open>.submenu--nested{display:block}
  .has-flyout.open .submenu-toggle .chev{transform:rotate(180deg)}
  .submenu--nested a{padding-left:52px}

  .nav-panel-footer{display:flex;flex-direction:column;gap:var(--space-3);margin-top:auto;padding:20px 24px 24px}
  .nav-panel-footer .btn{justify-content:center}
}

@media (max-width:640px){
  .header-bar .container{height:68px;gap:var(--space-2)}
  .header-logo img{height:36px}
  .header-actions{gap:var(--space-3)}
}

/* Guard for legacy 320px phones: keep the header on one row, no side scroll */
@media (max-width:360px){
  .container{padding:0 16px}
  .header-logo img{height:30px}
  .header-actions{gap:var(--space-2)}
  .nav-burger{width:40px}
}

/* --------------------------------------------------------------------------
   6. PAGE LAYOUT
   -------------------------------------------------------------------------- */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:var(--space-6)}
@media (max-width:1024px){.grid-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.grid-3{grid-template-columns:1fr}}
/* Stacked layout (single column at <=640px, or the 2-col tablet range where the
   3rd card wraps to its own row): the grid's own 24px gap isn't enough clearance
   for the icon's 32px peek above each card, so the chip overlaps the card above
   it. row-gap (not item margin) because .service-card sets height:100% —
   margin-top on a stretched single-item grid row rendered inconsistently
   between rows in testing, so the grid track gap is the reliable place to add
   this clearance. Must come after the base .grid-3 gap rule above so it isn't
   overridden by it. */
@media (max-width:1024px){
  .services-grid{row-gap:56px}
}

/* Two-column splits; text authored first, image pulled on top when stacked */
.split{display:grid;grid-template-columns:1fr 1fr;gap:var(--space-16);align-items:center}
.split--wide-text{grid-template-columns:1.05fr .95fr}
.split--media-left{grid-template-columns:.95fr 1.05fr}
.split-text{display:flex;flex-direction:column;gap:var(--space-6);align-items:flex-start}
/* Used when a .split-text stands alone in its row (no media sibling) — centers the
   heading block and any trailing paragraphs instead of the usual left rag */
.split-text--center{align-items:center;text-align:center}
.split-text--center > p:not(.lead){margin-inline:auto}
@media (max-width:1024px){
  .split,.split--wide-text,.split--media-left{grid-template-columns:1fr;gap:var(--space-8)}
  .split .split-media{order:-1}
}

/* Hero. --hero-pad is reused by the media so the cutout can sit flush with the bottom edge.
   The gradient is a protection scrim: it keeps the copy legible over the artwork and
   thins out to the right so the pattern stays visible behind the doctors. */
.hero{--hero-pad:var(--space-24);padding:var(--hero-pad) 0;overflow:hidden;
  background-color:var(--navy-700);
  background-image:linear-gradient(90deg,rgba(34,49,78,.93) 0%,rgba(34,49,78,.85) 55%,rgba(34,49,78,.74) 100%),url("/assets/hero-bg.webp");
  background-size:cover;background-position:center;background-repeat:no-repeat}
.hero h1{font-size:clamp(44px,4.6vw,58px);line-height:var(--lh-tight);letter-spacing:var(--ls-display)}
/* Location chips stand in for the hero eyebrow. Dark fill so the red pin pops. */
.hero-locations{display:flex;flex-wrap:wrap;gap:var(--space-3);list-style:none;margin:0;padding:0}
.hero-locations a{display:inline-flex;align-items:center;gap:8px;padding:9px 18px;background:var(--navy-900);border:var(--border-width) solid var(--white);border-radius:var(--radius-pill);font-family:var(--font-display);font-weight:var(--fw-semibold);font-size:14px;letter-spacing:.04em;line-height:1.3;color:var(--white);white-space:nowrap;text-decoration:none;transition:transform var(--dur-base) var(--ease-standard),background var(--dur-base) var(--ease-standard),box-shadow var(--dur-base) var(--ease-standard)}
.hero-locations a:hover{transform:translateY(var(--hover-lift));background:var(--navy-800);box-shadow:0 8px 20px rgba(10,15,26,.55);color:var(--white);text-decoration:none}
.hero-locations a:active{transform:translateY(0)}
.hero-locations svg{width:16px;height:16px;color:var(--incare-red);flex:0 0 auto}
@media (prefers-reduced-motion:reduce){
  .hero-locations a,.hero-locations a:hover{transform:none;transition:none}
}
.hero .lead{font-size:20px;line-height:var(--lh-body);max-width:48ch}
.cta-row{display:flex;flex-wrap:wrap;gap:var(--space-4);align-items:center;margin-top:var(--space-2)}
.cta-row--center{justify-content:center}
.cta-row--spaced{margin-top:var(--space-16)}
/* Cutout is bottom-cropped, so it is pulled down to stand on the hero's bottom edge */
.hero-media{align-self:end;margin-bottom:calc(-1 * var(--hero-pad))}
.hero-media img{width:100%;height:auto;max-width:600px;margin-inline:auto}
/* Desktop only: the cutout breaks the container to run out to the viewport edge. It is
   right-aligned so it grows away from the copy — the text column and the 64px gap are
   untouched. The 48px inset holds the cutout off the viewport edge (and absorbs the
   100vw/scrollbar difference, so nothing gets clipped on classic-scrollbar browsers).
   880px cap keeps the 1371px-wide source above 1.5x density on the widest screens. */
@media (min-width:1025px){
  .hero-media{margin-right:calc(-1 * (max(0px,(100vw - var(--container-max)) / 2) + var(--container-pad-desktop) - 48px))}
  .hero-media img{max-width:min(880px,100%);margin-inline:auto 0}
}
@media (max-width:1024px){
  /* Stacked layout puts copy over the middle of the artwork, so the scrim goes flat */
  .hero{--hero-pad:var(--space-16);
    background-image:linear-gradient(rgba(34,49,78,.90),rgba(34,49,78,.90)),url("/assets/hero-bg.webp")}
  /* Overrides the usual image-on-top stacking: the cutout only reads correctly
     against the hero's bottom edge, so it stays below the copy */
  .hero .split-media{order:0}
  .hero-media{margin-top:var(--space-8)}
  .hero-media img{max-width:440px}
}
@media (max-width:640px){
  .hero{--hero-pad:var(--space-12);
    background-image:linear-gradient(rgba(34,49,78,.90),rgba(34,49,78,.90)),url("/assets/hero-bg-mobile.webp")}
  .hero h1{font-size:40px}
  .hero .lead{font-size:18px}
  /* Cutout breaks the container padding and runs edge to edge — at phone widths the
     360px cap left the doctors reading too small. The negative margin mirrors
     .container's own padding at this breakpoint, so it lands exactly on the edges.
     min-width:0 defeats the grid item's auto minimum size, which otherwise lets the
     image's intrinsic width push the column wider than the viewport. */
  .hero-media{min-width:0;width:100vw;margin-inline:calc(-1 * var(--container-pad-mobile))}
  .hero-media img{max-width:none;padding-inline:var(--space-3)}
}
/* Must follow the block above: the 320px guard narrows .container's padding to 16px,
   so the cutout's bleed has to narrow with it or it overhangs the right edge. */
@media (max-width:360px){
  .hero-media{margin-inline:-16px}
}

/* Primary care CTA row pairs a button with a question link */
.cta-row .text-link{font-size:var(--text-body-sm)}

/* Reviews embed: reserve space so the page does not jump while Elfsight loads */
.reviews-embed{min-height:320px}

/* --------------------------------------------------------------------------
   7. FOOTER
   -------------------------------------------------------------------------- */
.site-footer{background:#F2F5FA;color:var(--text-body);padding-top:var(--space-16);font-size:var(--text-body-sm)}
/* Logo + social row, centered above the link columns */
.footer-top{display:flex;flex-direction:column;align-items:center;gap:var(--space-5)}
.footer-logo{display:inline-flex}
.footer-logo img{height:68px;width:auto}
.footer-social{display:flex;gap:var(--space-3)}
.footer-social a{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:var(--radius-md);background:var(--blue-600);color:var(--white);box-shadow:var(--shadow-sm);transition:background var(--dur-base) var(--ease-standard),color var(--dur-base) var(--ease-standard)}
.footer-social a:hover{background:var(--red-600);color:var(--white);text-decoration:none}
.footer-social svg{width:22px;height:22px}
.footer-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr 1fr;gap:var(--space-8);margin-top:var(--space-12);padding:var(--space-12) 0;border-top:var(--border-width) solid var(--border-default)}
.footer-col h3{font-family:var(--font-display);font-weight:var(--fw-bold);font-size:var(--text-h5);color:var(--incare-red);margin:0 0 var(--space-4)}
.footer-col ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:var(--space-3)}
.footer-col a{color:var(--text-body);font-weight:var(--fw-regular)}
.footer-col a:hover{color:var(--blue-600);text-decoration:none}
@media (min-width:641px){
  .footer-col ul li{position:relative;padding-left:var(--space-4)}
  .footer-col ul li::before{content:"";position:absolute;left:0;top:.68em;width:5px;height:5px;border-radius:50%;background:var(--blue-600)}
  .footer-col ul li a{display:inline-block;transition:color var(--dur-base) var(--ease-standard),transform var(--dur-base) var(--ease-standard)}
  .footer-col ul li a:hover{color:var(--blue-800);transform:translateX(var(--space-1))}
}
.footer-address{display:flex;gap:10px;line-height:var(--lh-body);margin-bottom:var(--space-4)}
.footer-address svg{width:16px;height:16px;color:var(--incare-red);flex:0 0 auto;margin-top:4px}
.footer-address strong{color:var(--navy-700);font-weight:var(--fw-semibold)}
.footer-location-link{text-decoration:none}
.footer-location-link:hover strong{color:var(--blue-600);text-decoration:underline}
.footer-map-link{display:inline-flex;flex:0 0 auto;color:var(--incare-red)}
.footer-map-link:hover{color:var(--red-700);text-decoration:none}
.footer-map-link svg{margin-top:4px}
.footer-address-link{color:var(--text-body);font-weight:var(--fw-regular)}
.footer-address-link:hover{color:var(--blue-600);text-decoration:underline}
.footer-phone,.footer-contact-link{display:inline-flex;align-items:center;gap:8px;color:var(--text-body);font-weight:var(--fw-regular)}
.footer-phone svg,.footer-contact-link svg{width:15px;height:15px;color:var(--incare-red)}
.footer-phone:hover,.footer-contact-link:hover{color:var(--blue-600);text-decoration:none}
/* Sits directly under the phone link, so it needs its own row. */
.footer-contact-link{display:flex;width:fit-content;margin-top:var(--space-3)}
/* Dark bar: credit + web design line on the left, legal links on the right */
.footer-bottom{background:var(--navy-700);color:var(--text-on-dark-soft);padding:var(--space-5) 0}
.footer-bottom-inner{display:flex;justify-content:space-between;align-items:center;gap:var(--space-6);flex-wrap:wrap;font-size:var(--text-caption)}
.footer-credit{display:flex;flex-direction:column;gap:2px}
.footer-legal{display:flex;gap:var(--space-6);flex-wrap:wrap}
.footer-bottom a{color:inherit;font-weight:var(--fw-regular)}
.footer-bottom a:hover{color:var(--white);text-decoration:none}
@media (max-width:1024px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:var(--space-8)}
  .footer-grid .footer-col:first-child{grid-column:1 / -1}
}
@media (max-width:640px){
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom-inner{flex-direction:column;align-items:flex-start;gap:var(--space-3)}
  .footer-col ul li a{transition:none}
}
@media (prefers-reduced-motion:reduce) and (min-width:641px){
  .footer-col ul li a{transition:none}
  .footer-col ul li a:hover{transform:none}
}

/* --------------------------------------------------------------------------
   8. MOBILE TEXT ALIGNMENT
   Single-column stacking reads better centered, so content blocks center both
   their text and their flex cross-axis. Measure caps need margin-inline:auto to
   stay centered once the block is wider than the copy. The slide-out nav panel is
   the one exception — it is a menu, and its rows carry their own hit targets.
   -------------------------------------------------------------------------- */
@media (max-width:640px){
  .section-heading,.split-text{align-items:center;text-align:center;margin-inline:auto}
  .split-text > p,.section-heading .lead,.hero .lead{margin-inline:auto}
  .hero-locations,.cta-row{justify-content:center}
  .provider-info{align-items:center;text-align:center}
  /* Footer: address rows and the phone link stack icon-over-text on mobile rather
     than sitting side by side, so they need their own centering rather than relying
     on text-align alone. */
  .site-footer{text-align:center}
  .footer-address,.footer-phone,.footer-contact-link{flex-direction:column;align-items:center;gap:6px}
  .footer-contact-link{width:auto}
  .footer-address svg{margin-top:0}
  .footer-bottom-inner{align-items:center}
  .footer-legal{justify-content:center}
}

/* --------------------------------------------------------------------------
   9. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal{opacity:0;transform:translateY(24px)}
.reveal.in-view{animation:ds-reveal-up 700ms cubic-bezier(0.4,0,0.2,1) var(--reveal-delay,0ms) forwards}
@keyframes ds-reveal-up{
  from{opacity:0;transform:translateY(24px)}
  to{opacity:1;transform:translateY(0)}
}
@media (prefers-reduced-motion:reduce){
  .reveal,.reveal.in-view{opacity:1;transform:none;animation:none}
}

/* --------------------------------------------------------------------------
   10. INNER SERVICE PAGES
   -------------------------------------------------------------------------- */
.mt-12{margin-top:var(--space-12)}
.container--narrow{max-width:900px}
.eyebrow--on-dark{color:var(--text-on-dark-soft)}

.page-hero{padding:var(--space-20) 0;background:var(--navy-700);color:var(--white);overflow:hidden}
.page-hero-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(420px,.9fr);gap:var(--space-16);align-items:center}
.page-hero-copy{display:flex;flex-direction:column;align-items:flex-start;gap:var(--space-5)}
.page-hero h1{font-size:clamp(44px,4.3vw,62px);line-height:var(--lh-tight);color:var(--white);max-width:15ch}
.page-hero .lead{font-size:var(--text-lead);line-height:var(--lh-body);color:var(--text-on-dark-soft);max-width:52ch}
.page-hero-media{position:relative;border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-lg);border:1px solid rgba(255,255,255,.18);aspect-ratio:1 / 1}
.page-hero-media::after{content:"";position:absolute;inset:0;box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);pointer-events:none}

/* Legal pages */
.legal-hero{padding:var(--space-16) 0}
.legal-hero h1{max-width:none}
.legal-updated{font-size:var(--text-body-sm);color:var(--text-on-dark-soft)}
.legal-document{max-width:900px;margin-inline:auto}
.legal-document>section+section{margin-top:var(--space-10);padding-top:var(--space-10);border-top:1px solid var(--border-subtle)}
.legal-document h2{margin-bottom:var(--space-4);font-size:clamp(22px,2.2vw,28px);line-height:var(--lh-heading);color:var(--navy-700)}
.legal-document p,.legal-document li{font-size:var(--text-body-md);line-height:1.75;color:var(--text-body)}
.legal-document p+p{margin-top:var(--space-4)}
.legal-document ul{margin:var(--space-5) 0 0;padding-left:var(--space-6)}
.legal-document li+li{margin-top:var(--space-3)}
/* Preserve editorial rhythm after lists in legal copy and reusable long-form
   article containers, including future blog posts. */
:where(.legal-document,.article-content,.rich-text) :is(ul,ol)+p{margin-top:var(--space-6)}
:where(.legal-document,.article-content,.rich-text) :is(ul,ol)+:is(h2,h3,h4){margin-top:var(--space-10)}
.legal-disclaimer{padding:var(--space-6);border-left:4px solid var(--incare-red);background:var(--blue-50);font-size:var(--text-body-sm)!important}
.legal-addresses{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-5);margin-top:var(--space-6)}
.legal-address{padding:var(--space-6);font-style:normal}
.legal-address strong{display:block;margin-bottom:var(--space-2);font-family:var(--font-display);font-size:18px;color:var(--navy-700)}
.legal-address a{font-weight:var(--fw-medium)}

/* Contact and post-submission pages */
.contact-hero h1,.thank-you-hero h1{max-width:none}
.contact-layout{display:grid;grid-template-columns:minmax(340px,.8fr) minmax(0,1.2fr);grid-template-areas:"info form";gap:var(--space-8);align-items:start}
.contact-form-card{grid-area:form;padding:var(--space-10);overflow:visible;border-top:4px solid var(--incare-red)}
.contact-privacy-note{display:flex;gap:var(--space-4);margin-top:var(--space-8);padding:var(--space-5);border-radius:var(--radius-md);background:var(--blue-50);color:var(--text-body)}
.contact-privacy-note svg{width:24px;height:24px;flex:0 0 auto;margin-top:2px;color:var(--blue-600)}
.contact-privacy-note p{font-size:var(--text-body-sm);line-height:var(--lh-body)}
.contact-form{display:flex;flex-direction:column;gap:var(--space-6);margin-top:var(--space-8)}
.form-honeypot{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
.form-error{margin:0 0 var(--space-4);padding:12px 14px;border:1px solid var(--red-600);border-radius:var(--radius-sm);background:var(--red-50,#fdf2f4);font-family:var(--font-body);font-size:15px;line-height:1.5;color:var(--navy-800)}
.form-error[hidden]{display:none}
.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-5)}
.form-field{display:flex;flex-direction:column;gap:var(--space-2)}
.form-field label{font-family:var(--font-display);font-size:14px;font-weight:var(--fw-bold);line-height:var(--lh-snug);color:var(--navy-700)}
.form-optional{margin-left:var(--space-1);font-family:var(--font-body);font-size:12px;font-weight:var(--fw-regular);color:var(--text-muted)}
.form-field input,.form-field select,.form-field textarea{width:100%;min-height:48px;padding:12px 14px;border:1px solid var(--border-default);border-radius:var(--radius-sm);background:var(--white);font-family:var(--font-body);font-size:16px;line-height:1.4;color:var(--text-body);transition:border-color var(--dur-base) var(--ease-standard),box-shadow var(--dur-base) var(--ease-standard)}
.form-field textarea{min-height:150px;resize:vertical}
.form-field input:hover,.form-field select:hover,.form-field textarea:hover{border-color:var(--blue-400)}
.form-field input:focus,.form-field select:focus,.form-field textarea:focus{outline:0;border-color:var(--blue-600);box-shadow:var(--shadow-focus)}
.form-field small{font-size:12px;line-height:var(--lh-body);color:var(--text-muted)}
.form-submit-row{display:flex;align-items:center;gap:var(--space-5);padding-top:var(--space-2)}
.form-submit-row p{max-width:50ch;font-size:12px;line-height:var(--lh-body);color:var(--text-muted)}
.contact-sidebar{grid-area:info;display:flex;flex-direction:column;gap:var(--space-5)}
.contact-call-card,.contact-office-card{padding:var(--space-6)}
.contact-call-card{display:flex;flex-direction:column;align-items:flex-start;gap:var(--space-4);border-top:4px solid var(--blue-600)}
.contact-call-card h2{font-size:26px;color:var(--navy-700)}
.contact-call-card p{font-size:var(--text-body-sm);line-height:var(--lh-body)}
.contact-phone-large{display:inline-flex;align-items:center;gap:var(--space-3);font-family:var(--font-display);font-size:clamp(24px,2.5vw,32px);font-weight:var(--fw-extrabold);line-height:1.2;color:var(--navy-700)}
.contact-phone-large svg{width:26px;height:26px;color:var(--incare-red)}
.contact-phone-large:hover{color:var(--blue-600);text-decoration:none}
.contact-office-card{display:flex;align-items:flex-end;justify-content:space-between;gap:var(--space-5)}
.contact-office-card h3{margin-top:var(--space-2);font-size:20px;color:var(--navy-700)}
.contact-office-card address{margin-top:var(--space-3);font-size:var(--text-body-sm);font-style:normal;line-height:var(--lh-body)}
.contact-office-actions{display:flex;flex-direction:column;align-items:flex-end;gap:var(--space-2);flex:0 0 auto}
.contact-emergency-note{padding:var(--space-5);border-left:4px solid var(--incare-red);background:var(--red-100)}
.contact-emergency-note strong{display:block;margin-bottom:var(--space-1);font-family:var(--font-display);color:var(--navy-700)}
.contact-emergency-note p{font-size:var(--text-body-sm);line-height:var(--lh-body)}
.contact-resource-grid{display:flex;align-items:center;justify-content:space-between;gap:var(--space-10)}
.contact-resource-actions{display:flex;align-items:center;justify-content:flex-end;gap:var(--space-3);flex-wrap:wrap}
.thank-you-card{max-width:760px;margin-inline:auto;padding:var(--space-12);text-align:center;border-top:4px solid var(--success-600)}
.thank-you-check{display:flex;align-items:center;justify-content:center;width:72px;height:72px;margin:0 auto var(--space-6);border-radius:50%;background:var(--success-100);color:var(--success-600)}
.thank-you-check svg{width:38px;height:38px}
.thank-you-card h2{margin-top:var(--space-3);font-size:clamp(26px,3vw,34px);color:var(--navy-700)}
.thank-you-card>p{max-width:62ch;margin:var(--space-5) auto 0;line-height:var(--lh-body)}
.thank-you-notice{margin-top:var(--space-8);padding:var(--space-5);border-radius:var(--radius-md);background:var(--blue-50)}
.thank-you-notice strong{display:block;margin-bottom:var(--space-2);font-family:var(--font-display);color:var(--navy-700)}
.thank-you-notice p{font-size:var(--text-body-sm);line-height:var(--lh-body)}
.thank-you-actions{display:flex;align-items:center;justify-content:center;gap:var(--space-4);flex-wrap:wrap;margin-top:var(--space-8)}

@media (max-width:1024px){
  .contact-layout{grid-template-columns:1fr;grid-template-areas:"info" "form"}
  .contact-sidebar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
  .contact-call-card,.contact-emergency-note{grid-column:1 / -1}
  .contact-resource-grid{flex-direction:column;align-items:flex-start}
  .contact-resource-actions{justify-content:flex-start}
}

@media (max-width:640px){
  .contact-form-card,.thank-you-card{padding:var(--space-6)}
  .form-grid,.contact-sidebar{grid-template-columns:1fr}
  .contact-call-card,.contact-emergency-note{grid-column:auto}
  .form-submit-row{flex-direction:column;align-items:stretch;text-align:center}
  .form-submit-row .btn{width:100%}
  .contact-call-card{align-items:center;text-align:center}
  .contact-office-card{flex-direction:column;align-items:center;text-align:center}
  .contact-office-actions{align-items:center}
  .contact-resource-grid{align-items:center;text-align:center}
  .contact-resource-actions{width:100%;flex-direction:column}
  .contact-resource-actions .btn{width:100%}
  .thank-you-actions{flex-direction:column}
  .thank-you-actions .btn{width:100%}
}
.page-hero-media img{width:100%;height:100%;object-fit:cover}

.breadcrumbs ol{display:flex;align-items:center;flex-wrap:wrap;gap:8px;list-style:none;margin:0;padding:0;font-family:var(--font-display);font-size:13px;line-height:1.4}
.breadcrumbs li{display:flex;align-items:center;color:var(--text-on-dark-soft)}
.breadcrumbs li+li::before{content:"/";margin-right:8px;color:rgba(255,255,255,.45)}
.breadcrumbs a{color:var(--white);font-weight:var(--fw-semibold)}
.breadcrumbs a:hover{color:var(--white)}

.content-split{gap:var(--space-16)}
.content-split .section-photo{border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-md);aspect-ratio:1 / 1}
.content-split .section-photo img{width:100%;height:100%;object-fit:cover}
.content-split--media-left{grid-template-columns:.95fr 1.05fr}
.about-mission-copy{display:flex;flex-direction:column;gap:var(--space-5);margin-top:var(--space-8);text-align:center}
.about-mission-copy p{font-size:var(--text-body-md);line-height:var(--lh-body)}
.content-split .about-team-photo{aspect-ratio:1371 / 855;background:var(--navy-700)}
.about-team-photo img{object-position:center top}

.wellness-hub-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--space-6)}
.wellness-hub-grid--four{grid-template-columns:repeat(2,minmax(0,1fr));max-width:1040px;margin-inline:auto}
.wellness-hub-card{display:flex;flex-direction:column;padding:0;overflow:hidden;height:100%;text-decoration:none}
.wellness-hub-card:hover{text-decoration:none}
.wellness-hub-card-media{display:block;aspect-ratio:4 / 3;overflow:hidden;background:var(--gray-100)}
.wellness-hub-card-media img{width:100%;height:100%;object-fit:cover;transition:transform var(--dur-slow) var(--ease-standard)}
.wellness-hub-card:hover .wellness-hub-card-media img{transform:scale(1.025)}
.wellness-hub-card-body{display:flex;flex:1;flex-direction:column;align-items:flex-start;gap:var(--space-3);padding:var(--space-6);text-align:left}
.wellness-hub-card-body h3{font-size:22px;color:var(--navy-700)}
.wellness-hub-card-copy{flex:1;font-size:var(--text-body-sm);line-height:var(--lh-body);color:var(--text-body)}
.wellness-hub-card .card-link{margin-top:var(--space-2)}

/* Provider directory and physician profiles */
.providers-hero .page-hero-grid{grid-template-columns:minmax(0,.82fr) minmax(520px,1.18fr)}
.providers-hero .page-hero-media{aspect-ratio:1371 / 855}
.providers-hero .page-hero-media img{object-position:center center}
.providers-directory .provider-info{flex:1}
.provider-profile-link{display:inline-flex;align-items:center;gap:var(--space-2);margin-top:var(--space-2);font-family:var(--font-display);font-size:13px;font-weight:var(--fw-semibold);color:var(--white)}
.provider-card:hover .provider-profile-link{color:var(--white)}

.provider-profile-hero-grid{grid-template-columns:minmax(0,1fr) minmax(440px,.85fr)}
.provider-profile-hero h1{max-width:13ch}
.provider-portrait{aspect-ratio:4 / 3;background:var(--white)}
.provider-portrait img{object-fit:cover;object-position:center top}
.provider-locations{display:flex;flex-wrap:wrap;gap:var(--space-2)}
.provider-locations span{display:inline-flex;align-items:center;padding:var(--space-2) var(--space-4);border:1px solid var(--border-on-dark);border-radius:var(--radius-pill);background:rgba(255,255,255,.08);font-family:var(--font-display);font-size:13px;font-weight:var(--fw-semibold);line-height:1.3;color:var(--white)}

.provider-about-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);gap:var(--space-16);align-items:start}
.provider-bio{display:flex;flex-direction:column;align-items:flex-start;gap:var(--space-5);max-width:var(--measure-body)}
.provider-bio h2{font-size:clamp(30px,3vw,44px)}
.provider-bio p{font-size:var(--text-body-md);line-height:var(--lh-body)}
.provider-facts{padding:var(--space-8);border:1px solid var(--border-subtle);border-top:4px solid var(--incare-red);border-radius:var(--radius-lg);background:var(--blue-50);box-shadow:var(--shadow-sm)}
.provider-facts h2{margin-bottom:var(--space-6);font-size:24px}
.provider-facts dl{display:flex;flex-direction:column;margin:0}
.provider-facts dl div{display:grid;grid-template-columns:120px minmax(0,1fr);gap:var(--space-4);padding:var(--space-4) 0;border-top:1px solid var(--border-subtle)}
.provider-facts dl div:first-child{padding-top:0;border-top:0}
.provider-facts dl div:last-child{padding-bottom:0}
.provider-facts dt{font-family:var(--font-display);font-size:13px;font-weight:var(--fw-bold);color:var(--navy-700)}
.provider-facts dd{margin:0;font-size:14px;line-height:var(--lh-body);color:var(--text-body)}

.provider-mini-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-6);max-width:980px;margin-inline:auto}
.provider-mini-card{display:grid;grid-template-columns:180px minmax(0,1fr);align-items:center;padding:0}
.provider-mini-card img{width:100%;height:100%;aspect-ratio:4 / 3;object-fit:cover;object-position:center top}
.provider-mini-card>span{display:flex;flex-direction:column;gap:var(--space-2);padding:var(--space-6)}
.provider-mini-card strong{font-family:var(--font-display);font-size:18px;line-height:var(--lh-snug);color:var(--navy-700)}
.provider-mini-card small{font-size:13px;line-height:var(--lh-body);color:var(--text-muted)}
.provider-team-link{margin-top:var(--space-8);text-align:center}

.care-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--space-6)}
.care-card{padding:var(--space-8);display:flex;flex-direction:column;gap:var(--space-4)}
.care-card h3{font-size:22px;color:var(--navy-700)}
.care-card p{font-size:var(--text-body-sm);line-height:var(--lh-body)}
.care-card-icon{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:var(--radius-md);background:var(--blue-100);color:var(--blue-600)}
.care-card-icon svg{width:24px;height:24px}

/* Qualifying conditions: compact legal-condition directory */
.condition-directory-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--space-5)}
.condition-directory-card{min-height:156px;padding:var(--space-6);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;border-top:4px solid var(--red-600)}
.condition-directory-card h3{font-size:22px;color:var(--navy-700)}
.condition-legal-note{max-width:78ch;margin:var(--space-10) auto 0;text-align:center}

/* Insurance: scannable plan directory and coverage notes */
.insurance-plan-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:var(--space-5);margin-inline:0;padding:0;list-style:none}
.insurance-plan-card{min-height:112px;padding:var(--space-6);display:flex;align-items:center;justify-content:center;border-top:4px solid var(--blue-600);font-family:var(--font-display);font-size:20px;font-weight:var(--fw-bold);line-height:var(--lh-snug);text-align:center;color:var(--navy-700)}
/* Medicare HMO set: five across in one row, red top rule so it reads as the
   highlighted group against the blue-ruled general plan cards below. Declared
   ahead of the media queries so the 1024/640 overrides still win on source order. */
.insurance-plan-grid--hmo{grid-template-columns:repeat(5,minmax(0,1fr))}
.insurance-plan-card--featured{border-top-color:var(--incare-red)}
.insurance-detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-6)}
.insurance-detail-card{padding:var(--space-8);border-top:4px solid var(--blue-600);text-align:center}
.insurance-detail-card--alert{border-top-color:var(--incare-red)}
.insurance-detail-card h3{margin-bottom:var(--space-3);font-size:22px;color:var(--navy-700)}
.insurance-detail-card p{font-size:var(--text-body-sm);line-height:var(--lh-body)}

/* Location pages: map, contact details, services, and nearby communities */
.location-contact-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr);gap:var(--space-12);align-items:stretch}
.location-page-map{min-height:520px;overflow:hidden;border:1px solid var(--border-subtle);border-radius:var(--radius-xl);box-shadow:var(--shadow-md)}
.location-page-map iframe{display:block;width:100%;height:100%;min-height:520px;border:0}
.location-details-card{display:flex;flex-direction:column;align-items:flex-start;padding:var(--space-8);border-top:4px solid var(--incare-red)}
.location-details-card h2{margin-top:var(--space-3);font-size:32px;color:var(--navy-700)}
.location-detail-list{display:flex;flex-direction:column;width:100%;margin:var(--space-8) 0 0;font-style:normal}
.location-detail-list>div{display:flex;gap:var(--space-4);padding:var(--space-5) 0;border-top:1px solid var(--border-subtle)}
.location-detail-list>div:first-child{padding-top:0;border-top:0}
.location-detail-list svg{width:22px;height:22px;flex:0 0 auto;margin-top:2px;color:var(--incare-red)}
.location-detail-list span{display:flex;flex-direction:column;gap:var(--space-1);font-size:15px;line-height:var(--lh-body)}
.location-detail-list strong{font-family:var(--font-display);font-size:13px;color:var(--navy-700)}
.location-detail-list a{color:var(--text-body);font-weight:var(--fw-regular)}
.location-details-actions{display:flex;flex-direction:column;align-items:flex-start;gap:var(--space-4);margin-top:auto;padding-top:var(--space-8)}
.location-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--space-6)}
.location-service-card{display:flex;flex-direction:column;align-items:flex-start;gap:var(--space-3);padding:var(--space-8);border-top:4px solid var(--blue-600)}
.location-service-card h3{font-size:22px;color:var(--navy-700)}
.location-service-card p{flex:1;font-size:var(--text-body-sm);line-height:var(--lh-body)}
.service-area-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:var(--space-4);margin-inline:0;padding:0;list-style:none}
.service-area-card{display:flex;align-items:center;justify-content:center;min-height:76px;padding:var(--space-4);border:1px solid var(--border-on-dark);border-radius:var(--radius-lg);background:rgba(255,255,255,.06);font-family:var(--font-display);font-size:17px;font-weight:var(--fw-bold);text-align:center;color:var(--white)}
.service-area-note{max-width:78ch;margin:var(--space-8) auto 0;text-align:center;font-size:var(--text-body-sm)}
.section--navy .service-area-note a{color:var(--white);text-decoration:underline;text-decoration-color:var(--incare-red);text-underline-offset:4px}

@media (max-width:1024px){
  .condition-directory-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .insurance-plan-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .insurance-plan-grid--hmo{grid-template-columns:repeat(3,minmax(0,1fr))}
  .location-contact-grid{grid-template-columns:1fr}
  .location-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .service-area-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media (max-width:640px){
  .condition-directory-grid{grid-template-columns:1fr}
  .condition-directory-card{min-height:auto;text-align:center;align-items:center}
  .insurance-plan-grid,.insurance-detail-grid{grid-template-columns:1fr}
  .insurance-plan-card{min-height:auto}
  .location-page-map,.location-page-map iframe{min-height:380px}
  .location-details-card{align-items:center;text-align:center;padding:var(--space-6)}
  .location-detail-list>div{text-align:left}
  .location-details-actions{align-items:center;width:100%}
  .location-details-actions .btn{width:100%}
  .location-service-grid{grid-template-columns:1fr}
  .location-service-card{align-items:center;text-align:center;padding:var(--space-6)}
  .service-area-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

.exam-types{display:flex;flex-direction:column;gap:var(--space-5);width:100%}
.exam-types article{padding:var(--space-5);background:var(--blue-50);border-left:3px solid var(--incare-red);border-radius:0 var(--radius-md) var(--radius-md) 0}
.exam-types h3{font-size:20px;margin-bottom:var(--space-2)}
.exam-types p{font-size:var(--text-body-sm);line-height:var(--lh-body)}

/* Urgent care conditions stay a scannable list instead of individual cards.
   The decorative marker is Lucide's square-check-big icon (ISC license). */
.condition-layout{grid-template-columns:minmax(360px,.9fr) minmax(0,1.1fr);align-items:start}
.condition-list{display:grid;grid-template-columns:1fr;row-gap:var(--space-4);width:100%;margin:var(--space-2) 0 0;padding:0;list-style:none;text-align:left}
.condition-list li{position:relative;padding-left:32px;font-size:17px;line-height:var(--lh-body);color:var(--text-body)}
.condition-list li::before{content:"";position:absolute;left:0;top:.2em;width:20px;height:20px;background:var(--incare-red);-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E") center / contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 11 3 3L22 4'/%3E%3Cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3E%3C/svg%3E") center / contain no-repeat}
.condition-list-note{max-width:60ch;margin-top:var(--space-4);font-size:var(--text-body-sm);color:var(--text-muted)}
.middle-benefit-list{max-width:920px;margin-top:var(--space-8)}

.iv-drip-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-6);max-width:1100px;margin-inline:auto}
.iv-drip-card{padding:var(--space-8);border-top:4px solid var(--incare-red)}
.iv-drip-card-header{display:flex;align-items:flex-start;justify-content:space-between;gap:var(--space-4);margin-bottom:var(--space-4)}
.iv-drip-card h3{font-size:26px;color:var(--navy-700)}
.iv-drip-price{flex:0 0 auto;padding:var(--space-1) var(--space-3);border-radius:var(--radius-pill);background:var(--blue-100);color:var(--blue-700);font-family:var(--font-display);font-size:13px;font-weight:var(--fw-bold);line-height:1.2}
.iv-drip-tagline{margin-bottom:var(--space-3);color:var(--navy-700);font-weight:var(--fw-bold)}
.iv-drip-card>p:last-child{font-size:var(--text-body-sm);line-height:var(--lh-body)}
.iv-addons{max-width:1100px;margin-inline:auto;padding:var(--space-8);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);background:var(--surface-subtle)}
.iv-addons .section-heading h3{font-size:28px;color:var(--navy-700)}
.iv-addon-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-4);margin:var(--space-10) 0 0;padding:0;list-style:none}
.iv-addon-list li{display:flex;flex-direction:column;gap:var(--space-2);padding:var(--space-5);border-radius:var(--radius-md);background:var(--white);box-shadow:var(--shadow-xs)}
.iv-addon-list strong{color:var(--navy-700);font-family:var(--font-display);font-size:18px}
.iv-addon-list span{font-size:var(--text-body-sm);line-height:var(--lh-body);color:var(--text-body)}
.iv-menu-note{max-width:72ch;margin:var(--space-6) auto 0;text-align:center;font-size:var(--text-body-sm);color:var(--text-muted)}

.service-process{padding:var(--section-y) 0}
.process-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--space-6)}
.process-grid--two{grid-template-columns:repeat(2,minmax(0,1fr));max-width:1100px;margin-inline:auto}
.process-card{padding:var(--space-8);background:rgba(255,255,255,.06);border:1px solid var(--border-on-dark);border-radius:var(--radius-lg)}
.process-number{display:block;font-family:var(--font-display);font-weight:var(--fw-extrabold);font-size:36px;line-height:1;color:var(--incare-red);margin-bottom:var(--space-5)}

.resource-feature-grid{gap:var(--space-12)}
.resource-feature-grid>*{min-width:0}
.resource-video{aspect-ratio:16 / 9;overflow:hidden;border:1px solid var(--border-subtle);border-radius:var(--radius-xl);background:var(--navy-900);box-shadow:var(--shadow-md)}
.resource-video iframe{display:block;width:100%;height:100%;border:0}
.resource-feature--reverse .resource-video{order:2}
.resource-feature--reverse .resource-copy{order:1}
.resource-copy .btn{margin-top:var(--space-2)}
.process-card h3{font-size:22px;margin-bottom:var(--space-3)}
.process-card p{font-size:var(--text-body-sm)}

/* Embedded HTML inside a post body (maps, video). The source markup carries a
   fixed inline height and the sanitiser drops it, so sizing lives here and the
   embed stays responsive. */
.post-embed{margin:var(--space-6) 0}
.post-embed iframe{display:block;width:100%;height:450px;max-width:100%;border:0;border-radius:var(--radius-md)}
@media (max-width:640px){
  .post-embed iframe{height:300px}
}

/* Blog listing and single post templates */
.blog-hero{background:var(--navy-700)}
.blog-hero-inner{display:flex;flex-direction:column;align-items:center;gap:var(--space-5);text-align:center}
.blog-hero h1{max-width:22ch}
.blog-hero .lead{max-width:40rem;font-weight:var(--fw-medium)}
.blog-index{background:var(--gray-50)}
.blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--space-6);margin:0;padding:0;list-style:none}
.blog-grid>li{display:flex;min-width:0}
.blog-card{display:flex;width:100%;min-width:0;flex-direction:column;overflow:hidden;border:1px solid var(--border-subtle);border-radius:var(--radius-lg);background:var(--surface-card);color:var(--text-body);font-weight:var(--fw-regular);text-decoration:none;box-shadow:none;transition:border-color 200ms var(--ease-standard)}
.blog-card:hover,.blog-card:focus-visible{border-color:var(--border-strong);color:var(--text-body);text-decoration:none;box-shadow:none;transform:none}
.blog-card-image{display:block;overflow:hidden;aspect-ratio:16 / 10;background:var(--surface-subtle)}
.blog-card-image img{width:100%;height:100%;object-fit:cover;transition:transform 400ms var(--ease-out)}
.blog-card:hover .blog-card-image img,.blog-card:focus-visible .blog-card-image img{transform:scale(1.03)}
.blog-card-body{display:flex;flex:1;flex-direction:column;align-items:center;gap:var(--space-3);padding:var(--space-6) var(--space-6) var(--space-8);text-align:center}
.blog-card-title{font-size:18px;font-weight:var(--fw-extrabold);line-height:1.45;color:var(--navy-700)}
.blog-card-excerpt{font-size:15px;line-height:1.6;color:var(--text-muted)}
.blog-card-more{margin-top:auto;padding-top:var(--space-2);font-size:12px;font-weight:var(--fw-bold);line-height:1.4;letter-spacing:.16em;text-transform:uppercase;color:var(--red-700);transition:color 200ms var(--ease-standard)}
.blog-card:hover .blog-card-more,.blog-card:focus-visible .blog-card-more{color:var(--red-600)}
.blog-card-date{margin-top:auto;padding:var(--space-4) var(--space-6);border-top:1px solid var(--border-subtle);text-align:center;font-size:11px;font-weight:var(--fw-semibold);line-height:1.4;letter-spacing:.12em;text-transform:uppercase;color:var(--text-muted)}
.blog-empty{grid-column:1 / -1;display:block!important;padding:var(--space-12);text-align:center;color:var(--text-muted)}
.blog-pagination{display:grid;grid-template-columns:1fr 1fr;align-items:center;gap:var(--space-4);margin-top:var(--space-12)}
.blog-pagination-direction{display:inline-flex;align-items:center;justify-content:center;justify-self:start;min-width:40px;min-height:40px;padding:0 var(--space-5);border:1px solid var(--border-subtle);border-radius:var(--radius-pill);background:var(--white);color:var(--text-muted);font-size:12px;font-weight:var(--fw-bold);line-height:1;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;transition:border-color var(--dur-base) var(--ease-standard),color var(--dur-base) var(--ease-standard),background-color var(--dur-base) var(--ease-standard)}
.blog-pagination-direction:hover,.blog-pagination-direction:focus-visible{border-color:var(--red-600);color:var(--navy-700);text-decoration:none}
.blog-pagination-next{justify-self:end}
.blog-pagination-placeholder{visibility:hidden;min-width:5rem}
.post-hero{padding:var(--space-16) 0 var(--space-12);background:var(--navy-700);color:var(--white)}
.post-hero-inner{display:flex;max-width:48rem;flex-direction:column;align-items:center;text-align:center}
.post-back-link{margin-bottom:var(--space-8);font-size:12px;font-weight:var(--fw-bold);line-height:1.4;letter-spacing:.16em;text-transform:uppercase;color:var(--text-on-dark-soft)}
.post-back-link:hover{color:var(--white);text-decoration:none}
.post-hero h1{max-width:40rem;font-size:clamp(28px,calc(4vw + 8px),44px);font-weight:900;line-height:1.2;letter-spacing:.02em;color:var(--white)}
.post-deck{max-width:40rem;margin-top:var(--space-5);font-size:18px;font-weight:var(--fw-medium);line-height:1.7;color:var(--text-on-dark-soft)}
.post-meta{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:var(--space-2);margin-top:var(--space-5);font-size:13px;font-weight:var(--fw-semibold);line-height:1.6;letter-spacing:.04em;color:var(--text-on-dark-soft)}
.post-meta a{color:var(--white);font-weight:var(--fw-bold)}
.post-meta a:hover{color:var(--white)}
.post-share{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:var(--space-3)}
.post-share--top{margin-top:var(--space-6)}
.post-share--bottom{justify-content:flex-start;margin-top:var(--space-10);padding-top:var(--space-10);border-top:1px solid var(--border-subtle)}
.post-share-label{font-size:12px;font-weight:var(--fw-bold);line-height:1.4;letter-spacing:.16em;text-transform:uppercase;color:var(--text-muted)}
.post-share-actions{display:flex;flex-wrap:wrap;gap:var(--space-2)}
.post-share-button{display:inline-grid;width:40px;height:40px;flex:0 0 40px;place-items:center;padding:0;border:1px solid var(--border-subtle);border-radius:50%;background:transparent;color:var(--navy-700);cursor:pointer;transition:transform var(--dur-base) var(--ease-standard),border-color var(--dur-base) var(--ease-standard),background-color var(--dur-base) var(--ease-standard),color var(--dur-base) var(--ease-standard)}
.post-share-button svg{width:18px;height:18px}
.post-share-button .post-share-icon--pinterest{width:22px;height:22px}
.post-share-button [data-share-icon-check]{display:none}
.post-share-button.is-copied [data-share-icon-link]{display:none}
.post-share-button.is-copied [data-share-icon-check]{display:block}
.post-share-button:hover,.post-share-button:focus-visible{border-color:var(--red-600);background:var(--red-600);color:var(--white);text-decoration:none;transform:translateY(-2px)}
.post-share-button.is-copied{border-color:var(--success-600);background:var(--success-600);color:var(--white)}
.post-share-status{min-width:52px;font-size:12px;font-weight:var(--fw-semibold);color:var(--success-600)}
.post-hero .post-share-label{color:var(--text-on-dark-soft)}
.post-hero .post-share-button{border-color:var(--border-on-dark);color:var(--white)}
.post-hero .post-share-status{color:var(--text-on-dark-soft)}
.post-featured-container{max-width:1064px;margin-top:var(--space-6)}
.post-featured{overflow:hidden;border:1px solid var(--border-subtle);border-radius:12px;aspect-ratio:16 / 9;background:var(--surface-subtle)}
.post-featured img{width:100%;height:100%;object-fit:cover}
.post-article{padding-top:var(--space-16)}
.post-content-measure{max-width:900px;margin-inline:auto}
.post-body{font-size:17px;line-height:1.75;color:var(--text-body);overflow-wrap:anywhere}
.post-body>:first-child{margin-top:0}
.post-body p,.post-body li{margin:0 0 1.15em;font-family:var(--font-body);font-size:17px;line-height:1.75;color:var(--text-body)}
.post-body>:last-child,.post-body li:last-child,.post-body blockquote p:last-child{margin-bottom:0}
.post-body h2{margin:clamp(32px,4vw,44px) 0 .6em;font-family:var(--font-display);font-size:24px;font-weight:var(--fw-extrabold);line-height:1.3;color:var(--blue-600)}
.post-body h3{margin:clamp(28px,3.5vw,36px) 0 .6em;font-family:var(--font-display);font-size:20px;font-weight:var(--fw-extrabold);line-height:1.35;color:var(--navy-700)}
.post-body h4{margin:clamp(24px,3vw,32px) 0 .5em;font-family:var(--font-display);font-size:18px;font-weight:var(--fw-bold);line-height:1.4;color:var(--navy-700)}
.post-body a{color:var(--blue-600);text-decoration:underline;text-underline-offset:3px}
.post-body a:hover{color:var(--navy-700)}
.post-body strong{font-weight:var(--fw-bold);color:var(--navy-700)}
.post-body em{font-style:italic}
.post-body ul,.post-body ol{margin:0 0 1.15em;padding-left:24px}
.post-body blockquote{margin:clamp(24px,3vw,32px) 0;padding-left:20px;border-left:3px solid var(--red-600);font-style:italic}
.post-body figure{margin:clamp(28px,4vw,44px) 0}
.post-body img{display:block;max-width:100%;height:auto;border-radius:10px}
.post-body figcaption{margin-top:12px;text-align:center;font-size:13px;line-height:1.5;color:var(--text-muted)}
.post-body table{display:block;width:100%;margin:var(--space-8) 0;border-collapse:collapse;overflow-x:auto;font-size:15px;line-height:1.55}
.post-body th,.post-body td{padding:12px 16px;border:1px solid var(--border-subtle);text-align:left;vertical-align:top}
.post-body th{background:var(--surface-subtle);font-weight:var(--fw-bold);color:var(--navy-700)}
.post-body iframe{display:block;width:100%;border:0;border-radius:10px;aspect-ratio:16 / 9;margin:var(--space-8) 0;background:var(--surface-subtle)}
.post-related-heading{margin-bottom:var(--space-10)}
.post-related-eyebrow{display:block;font-family:var(--font-display);font-size:13px;font-weight:var(--fw-bold);line-height:1.2;letter-spacing:.16em;text-transform:uppercase;color:var(--text-muted)}
.post-related-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--space-6)}
.blog-card--compact .blog-card-body{justify-content:center;padding:var(--space-6)}
.blog-card--compact .blog-card-title{font-size:17px;line-height:1.4}

@media (prefers-reduced-motion:reduce){
  .blog-card,.blog-card-image img,.blog-card-more,.blog-pagination-direction,.post-share-button{transition:none}
}

/* 404 recovery page */
.not-found-hero{position:relative;isolation:isolate;overflow:hidden;padding:var(--space-24) 0 var(--space-20);background:linear-gradient(145deg,var(--navy-900) 0%,var(--navy-700) 52%,var(--blue-700) 100%);color:var(--white)}
.not-found-hero::before{content:"";position:absolute;inset:0;z-index:-2;opacity:.22;background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(to bottom,black,transparent 82%)}
.not-found-glow{position:absolute;z-index:-1;border-radius:50%;filter:blur(2px);pointer-events:none}
.not-found-glow--one{top:-240px;right:-120px;width:560px;height:560px;background:radial-gradient(circle,rgba(91,120,168,.5),rgba(91,120,168,0) 68%)}
.not-found-glow--two{bottom:-360px;left:-220px;width:700px;height:700px;background:radial-gradient(circle,rgba(217,25,55,.18),rgba(217,25,55,0) 70%)}
.not-found-grid{display:grid;grid-template-columns:minmax(0,.86fr) minmax(500px,1.14fr);gap:var(--space-16);align-items:center}
.not-found-copy{display:flex;flex-direction:column;align-items:flex-start;gap:var(--space-6);position:relative;z-index:2}
.not-found-eyebrow{display:inline-flex;align-items:center;gap:var(--space-3);padding:var(--space-2) var(--space-4);border:1px solid rgba(255,255,255,.2);border-radius:var(--radius-pill);background:rgba(255,255,255,.07);color:var(--text-on-dark-soft);font-family:var(--font-display);font-size:var(--text-eyebrow);font-weight:var(--fw-bold);letter-spacing:var(--ls-eyebrow);text-transform:uppercase;backdrop-filter:blur(10px)}
.not-found-eyebrow>span{width:8px;height:8px;border-radius:50%;background:var(--incare-red);box-shadow:0 0 0 5px rgba(217,25,55,.18)}
.not-found-copy h1{max-width:10ch;color:var(--white);font-size:clamp(44px,5vw,72px);line-height:var(--lh-tight)}
.not-found-copy .lead{max-width:55ch;color:var(--text-on-dark-soft);font-size:18px;line-height:var(--lh-body)}
.not-found-copy .cta-row{gap:var(--space-3)}
.not-found-copy .btn svg{width:20px;height:20px}
.not-found-outline-btn{border:1px solid rgba(255,255,255,.34);background:rgba(255,255,255,.06);color:var(--white);box-shadow:var(--shadow-inset-top);backdrop-filter:blur(8px)}
.not-found-outline-btn:hover{border-color:rgba(255,255,255,.64);background:rgba(255,255,255,.12);color:var(--white);text-decoration:none;transform:translateY(var(--hover-lift))}
.not-found-help{padding-top:var(--space-2);color:rgba(255,255,255,.74);font-size:var(--text-body-sm)}
.not-found-help a{color:var(--white);font-weight:var(--fw-bold);text-decoration:underline;text-decoration-color:rgba(255,255,255,.4);text-underline-offset:4px}
.not-found-help a:hover{text-decoration-color:var(--incare-red)}
.not-found-visual{position:relative;min-height:430px;display:grid;place-items:center}
.not-found-visual::before{content:"";position:absolute;inset:32px 0;border:1px solid rgba(255,255,255,.16);border-radius:40px;background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.025));box-shadow:inset 0 1px 0 rgba(255,255,255,.16),0 32px 80px rgba(9,15,28,.28);backdrop-filter:blur(10px);transform:rotate(-2deg)}
.not-found-number{position:relative;z-index:2;display:flex;align-items:center;justify-content:center;color:var(--white);font-family:var(--font-display);font-size:clamp(112px,13vw,190px);font-weight:var(--fw-extrabold);line-height:1;letter-spacing:-.1em;text-shadow:0 16px 40px rgba(9,15,28,.28);transform:translateX(-.04em)}
.not-found-zero{position:relative;color:rgba(255,255,255,.07);-webkit-text-stroke:2px rgba(255,255,255,.78);text-stroke:2px rgba(255,255,255,.78)}
.not-found-pulse{position:absolute;inset:0;display:grid;place-items:center;color:var(--incare-red);filter:drop-shadow(0 4px 10px rgba(217,25,55,.35))}
.not-found-pulse svg{width:48%;overflow:visible}
.not-found-orbit{position:absolute;z-index:1;border:1px dashed rgba(255,255,255,.22);border-radius:50%;pointer-events:none}
.not-found-orbit--outer{width:390px;height:390px;animation:not-found-orbit 28s linear infinite}
.not-found-orbit--inner{width:270px;height:270px;border-style:solid;border-color:rgba(255,255,255,.1)}
.not-found-dot{position:absolute;z-index:2;width:9px;height:9px;border-radius:50%;background:var(--blue-400);box-shadow:0 0 0 7px rgba(91,120,168,.15)}
.not-found-dot--one{top:90px;left:76px}
.not-found-dot--two{right:76px;bottom:92px;background:var(--incare-red);box-shadow:0 0 0 7px rgba(217,25,55,.15)}
.not-found-dot--three{right:22px;top:52%;width:6px;height:6px;background:var(--white);box-shadow:0 0 0 6px rgba(255,255,255,.1)}
.not-found-shortcuts{position:relative;z-index:3;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--space-4);margin-top:var(--space-16)}
.not-found-shortcut{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;gap:var(--space-4);min-width:0;padding:var(--space-5);border:1px solid rgba(255,255,255,.18);border-radius:var(--radius-lg);background:rgba(255,255,255,.07);color:var(--white);box-shadow:var(--shadow-inset-top);backdrop-filter:blur(10px);transition:transform var(--dur-base) var(--ease-standard),background-color var(--dur-base) var(--ease-standard),border-color var(--dur-base) var(--ease-standard)}
.not-found-shortcut:hover{border-color:rgba(255,255,255,.38);background:rgba(255,255,255,.12);color:var(--white);text-decoration:none;transform:translateY(-4px)}
.not-found-shortcut-icon{display:grid;place-items:center;width:48px;height:48px;border-radius:var(--radius-md);background:rgba(227,233,243,.12);color:var(--blue-200)}
.not-found-shortcut-icon svg{width:24px;height:24px}
.not-found-shortcut>span:nth-child(2){display:flex;min-width:0;flex-direction:column;gap:2px}
.not-found-shortcut strong{font-family:var(--font-display);font-size:15px;color:var(--white)}
.not-found-shortcut small{overflow:hidden;color:rgba(255,255,255,.7);font-size:12px;line-height:var(--lh-snug);text-overflow:ellipsis;white-space:nowrap}
.not-found-shortcut-arrow{width:19px;height:19px;color:rgba(255,255,255,.54);transition:transform var(--dur-base) var(--ease-standard),color var(--dur-base) var(--ease-standard)}
.not-found-shortcut:hover .not-found-shortcut-arrow{color:var(--white);transform:translateX(3px)}
@keyframes not-found-orbit{to{transform:rotate(360deg)}}
@media (prefers-reduced-motion:reduce){.not-found-orbit{animation:none}.not-found-shortcut,.not-found-outline-btn,.not-found-shortcut-arrow{transition:none}}

.care-setting-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:var(--space-6)}
.care-setting-grid--two{grid-template-columns:repeat(2,minmax(0,1fr));max-width:980px;margin-inline:auto}
.care-setting-card{padding:var(--space-8);border-top:3px solid var(--blue-600)}
.care-setting-card h3{font-size:22px;margin-bottom:var(--space-3)}
.care-setting-card p{font-size:var(--text-body-sm);line-height:var(--lh-body)}
.care-setting-card--alert{border-top-color:var(--incare-red)}

.location-panel{display:flex;align-items:center;justify-content:space-between;gap:var(--space-12)}
.location-panel-actions{display:flex;flex:0 0 auto;flex-wrap:wrap;gap:var(--space-3)}

.faq-list{display:flex;flex-direction:column;gap:var(--space-3)}
.faq-item{background:var(--white);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);box-shadow:var(--shadow-xs);overflow:hidden}
.faq-item summary{position:relative;display:flex;align-items:center;justify-content:space-between;gap:var(--space-4);padding:var(--space-5) var(--space-12) var(--space-5) var(--space-6);font-family:var(--font-display);font-weight:var(--fw-bold);font-size:16px;line-height:var(--lh-snug);color:var(--navy-700);cursor:pointer;list-style:none;transition:background-color var(--dur-base) var(--ease-standard)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary:hover{background:var(--gray-50)}
.faq-item summary::after{content:"+";position:absolute;right:var(--space-6);top:50%;transform:translateY(-50%);font-size:24px;font-weight:var(--fw-regular);color:var(--blue-600);transition:transform var(--dur-base) var(--ease-standard)}
.faq-item[open] summary::after{transform:translateY(-50%) rotate(45deg)}
.faq-item[open] summary{border-bottom:1px solid var(--border-subtle)}
.faq-answer{padding:var(--space-5) var(--space-6) var(--space-6);background:var(--surface-subtle)}
.faq-answer p{font-size:var(--text-body-sm);line-height:var(--lh-body)}

.peptide-disclosure{margin-top:var(--space-10);padding:var(--space-8);border:1px solid var(--border-subtle);border-left:4px solid var(--incare-red);border-radius:var(--radius-lg);background:var(--surface-subtle);box-shadow:var(--shadow-xs)}
.peptide-disclosure h3{margin-bottom:var(--space-3);font-size:22px;color:var(--navy-700)}
.peptide-disclosure p{font-size:var(--text-body-sm);line-height:var(--lh-body)}
.peptide-disclosure p+p{margin-top:var(--space-3)}
.peptide-status{display:inline-flex;align-items:center;width:max-content;max-width:100%;padding:var(--space-1) var(--space-3);border-radius:var(--radius-pill);font-family:var(--font-display);font-size:12px;font-weight:var(--fw-bold);line-height:1.4;text-align:center}
.peptide-status--approved{background:var(--success-100);color:var(--success-600)}
.peptide-status--mixed{background:var(--warning-100);color:var(--warning-600)}
.peptide-status--research{background:var(--danger-100);color:var(--danger-600)}
.peptide-menu-list{display:flex;flex-direction:column;gap:var(--space-3)}
.peptide-menu-item{overflow:hidden;border:1px solid var(--border-subtle);border-radius:var(--radius-lg);background:var(--white);box-shadow:var(--shadow-xs)}
.peptide-menu-item summary{position:relative;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:var(--space-4);padding:var(--space-5) var(--space-12) var(--space-5) var(--space-6);font-family:var(--font-display);font-size:17px;font-weight:var(--fw-bold);line-height:var(--lh-snug);color:var(--navy-700);cursor:pointer;list-style:none;transition:background-color var(--dur-base) var(--ease-standard)}
.peptide-menu-item summary::-webkit-details-marker{display:none}
.peptide-menu-item summary:hover{background:var(--gray-50)}
.peptide-menu-item summary::after{content:"+";position:absolute;right:var(--space-5);top:50%;transform:translateY(-50%);font-size:24px;font-weight:var(--fw-regular);color:var(--blue-600);transition:transform var(--dur-base) var(--ease-standard)}
.peptide-menu-item[open] summary{border-bottom:1px solid var(--border-subtle)}
.peptide-menu-item[open] summary::after{transform:translateY(-50%) rotate(45deg)}
.peptide-menu-item summary small{display:block;margin-top:var(--space-1);font-family:var(--font-body);font-size:13px;font-weight:var(--fw-regular);color:var(--text-muted)}
.peptide-menu-body{padding:var(--space-5) var(--space-6) var(--space-6);background:var(--surface-subtle)}
.peptide-menu-body p{font-size:var(--text-body-sm);line-height:var(--lh-body)}
.peptide-menu-body p+p{margin-top:var(--space-3)}

/* Approved supplements directory */
.supplement-directory{background:var(--surface-subtle)}
.supplement-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:var(--space-5)}
.supplement-card{position:relative;padding:var(--space-6);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);background:var(--white);box-shadow:var(--shadow-xs)}
.supplement-card::before{content:"";position:absolute;top:var(--space-6);bottom:var(--space-6);left:0;width:4px;border-radius:0 4px 4px 0;background:var(--incare-red)}
.supplement-card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:var(--space-4);margin-bottom:var(--space-3)}
.supplement-brand{font-family:var(--font-display);font-size:12px;font-weight:var(--fw-bold);letter-spacing:.12em;text-transform:uppercase;color:var(--red-600)}
.supplement-dose{flex:none;padding:var(--space-1) var(--space-3);border-radius:var(--radius-pill);background:var(--blue-50);font-size:12px;font-weight:var(--fw-semibold);line-height:1.5;color:var(--navy-700)}
.supplement-card h3{margin-bottom:var(--space-3);color:var(--navy-700)}
.supplement-card p{font-size:var(--text-body-sm);line-height:var(--lh-body);color:var(--text-secondary)}
.supplement-disclaimer{margin-top:var(--space-10);padding:var(--space-5) var(--space-6);border-left:4px solid var(--navy-600);border-radius:var(--radius-md);background:var(--white);box-shadow:var(--shadow-xs)}
.supplement-disclaimer p{font-size:13px;line-height:1.7;color:var(--text-muted)}

.closing-cta{padding:var(--space-20) 0;background-color:var(--surface-inverse);background-image:linear-gradient(rgba(34,49,78,.90),rgba(34,49,78,.90)),url("/assets/hero-bg.webp");background-size:cover;background-position:center;background-repeat:no-repeat;color:var(--text-on-dark-soft)}
.closing-cta-inner{display:flex;flex-direction:column;align-items:center;text-align:center;gap:var(--space-4)}
.closing-cta h2{color:var(--white);max-width:22ch}
.closing-cta p{font-size:var(--text-lead);max-width:58ch}
.closing-cta .cta-row{justify-content:center}

/* Current submenu item: use the hover treatment with a slightly deeper fill
   on desktop. Keep the existing underlined treatment inside the mobile panel. */
@media (min-width:1025px){
  .submenu a[aria-current="page"]{background:var(--blue-100);color:var(--blue-700);text-decoration:none}
}
@media (max-width:1024px){
  .nav a[aria-current="page"]{color:var(--blue-600);text-decoration:underline;text-decoration-color:var(--incare-red);text-decoration-thickness:2px;text-underline-offset:6px}
}

@media (max-width:1024px){
  .page-hero{padding:var(--space-16) 0}
  .page-hero-grid{grid-template-columns:1fr;gap:var(--space-8)}
  .page-hero-media{order:-1;max-width:760px;width:100%;margin-inline:auto}
  .content-split--media-left{grid-template-columns:1fr}
  .wellness-hub-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .care-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .process-grid,.care-setting-grid,.iv-drip-grid,.iv-addon-list{grid-template-columns:1fr}
  .resource-feature--reverse .resource-video{order:initial}
  .resource-feature--reverse .resource-copy{order:initial}
  .location-panel{flex-direction:column;align-items:flex-start}
  .providers-hero .page-hero-grid,.provider-profile-hero-grid{grid-template-columns:1fr}
  .provider-about-grid{grid-template-columns:1fr;gap:var(--space-10)}
  .provider-bio{max-width:none}
  .blog-grid,.post-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .not-found-hero{padding:var(--space-16) 0}
  .not-found-grid{grid-template-columns:1fr;gap:var(--space-8)}
  .not-found-copy{align-items:center;text-align:center}
  .not-found-copy h1{max-width:14ch}
  .not-found-copy .cta-row{justify-content:center}
  .not-found-visual{width:min(100%,680px);margin-inline:auto}
  .not-found-shortcuts{margin-top:var(--space-8)}
}

@media (max-width:640px){
  .page-hero{padding:var(--space-12) 0}
  .page-hero-copy{align-items:center;text-align:center}
  .page-hero h1{font-size:38px}
  .page-hero .lead{font-size:18px}
  .breadcrumbs ol{justify-content:center}
  .care-grid{grid-template-columns:1fr}
  .wellness-hub-grid{grid-template-columns:1fr}
  .location-directory-grid{grid-template-columns:1fr}
  .legal-addresses{grid-template-columns:1fr}
  .provider-bio{align-items:center;text-align:center}
  .provider-facts{padding:var(--space-6)}
  .provider-facts dl div{grid-template-columns:1fr;gap:var(--space-1);text-align:center}
  .provider-mini-grid{grid-template-columns:1fr}
  .provider-mini-card{grid-template-columns:120px minmax(0,1fr);text-align:left}
  .provider-mini-card>span{padding:var(--space-4)}
  .iv-drip-card,.iv-addons{padding:var(--space-6)}
  .iv-drip-card-header{align-items:center}
  .resource-copy .btn{width:100%;white-space:normal;line-height:var(--lh-snug);text-align:center}
  .care-card,.process-card,.care-setting-card{text-align:center;align-items:center}
  .location-panel{align-items:center;text-align:center}
  .location-panel .section-heading{align-items:center;text-align:center}
  .location-panel-actions{justify-content:center;width:100%}
  .location-panel-actions .btn{width:100%}
  .faq-item summary{text-align:left;font-size:16px;padding-left:var(--space-5);padding-right:var(--space-12)}
  .peptide-disclosure{padding:var(--space-6)}
  .peptide-menu-item summary{grid-template-columns:1fr;align-items:start;padding-left:var(--space-5);padding-right:var(--space-12)}
  .peptide-menu-item summary .peptide-status{margin-top:var(--space-1)}
  .peptide-menu-body{padding:var(--space-5)}
  .supplement-grid{grid-template-columns:1fr;gap:var(--space-4)}
  .supplement-card{padding:var(--space-5)}
  .supplement-card::before{top:var(--space-5);bottom:var(--space-5)}
  .supplement-card-top{display:block}
  .supplement-dose{display:inline-block;margin-top:var(--space-2)}
  .supplement-disclaimer{padding:var(--space-5)}
  .blog-grid,.post-related-grid{grid-template-columns:1fr;gap:var(--space-5)}
  .blog-card-body{padding:var(--space-5) var(--space-5) var(--space-6)}
  .blog-pagination{gap:var(--space-4);margin-top:var(--space-10)}
  .blog-pagination-direction{width:100%;justify-self:stretch}
  .blog-pagination-next{justify-self:stretch}
  .blog-pagination-placeholder{min-width:0}
  .post-hero{padding:var(--space-12) 0 var(--space-8)}
  .post-back-link{margin-bottom:var(--space-6)}
  .post-share{gap:var(--space-2)}
  .post-share-label{width:100%;text-align:center}
  .post-share--bottom{justify-content:center}
  .post-share-status{width:100%;min-width:0;text-align:center}
  .post-featured{border-radius:10px}
  .post-article{padding-top:var(--space-12)}
  .post-body table{font-size:14px}
  .post-body th,.post-body td{padding:var(--space-3)}
  .post-related-heading{margin-bottom:var(--space-8)}
  .not-found-hero{padding:var(--space-12) 0}
  .not-found-eyebrow{font-size:11px}
  .not-found-copy{gap:var(--space-5)}
  .not-found-copy h1{font-size:40px}
  .not-found-copy .lead{font-size:17px}
  .not-found-copy .cta-row{width:100%}
  .not-found-copy .btn{width:100%}
  .not-found-visual{min-height:300px}
  .not-found-visual::before{inset:20px 0;border-radius:var(--radius-xl)}
  .not-found-number{font-size:clamp(92px,34vw,132px)}
  .not-found-orbit--outer{width:270px;height:270px}
  .not-found-orbit--inner{width:190px;height:190px}
  .not-found-dot--one{top:62px;left:30px}
  .not-found-dot--two{right:34px;bottom:58px}
  .not-found-dot--three{right:12px}
  .not-found-shortcuts{grid-template-columns:1fr;gap:var(--space-3)}
  .not-found-shortcut{padding:var(--space-4)}
  .not-found-shortcut small{white-space:normal}
  .closing-cta{padding:var(--space-16) 0;background-image:linear-gradient(rgba(34,49,78,.90),rgba(34,49,78,.90)),url("/assets/hero-bg-mobile.webp")}
}

@media print{
  .site-header,.site-footer,.post-share,.post-related,.closing-cta{display:none!important}
  body,.post-hero,.post-article{background:white!important;color:black!important}
  .post-hero{padding-bottom:24px}
  .post-hero h1,.post-deck,.post-meta,.post-body,.post-body :is(p,li,h2,h3,h4,strong,th,td,figcaption){color:black!important}
  .post-featured-container{max-width:900px}
  .post-body a[href]::after{content:" (" attr(href) ")";font-size:.85em;font-weight:400;text-decoration:none}
}
