@charset "utf-8";
/* ==========================================================================
   Utah Veterans Massage — site.css  (v4 — clean, modern, functional)
   One crisp modern sans (Inter) everywhere; strong hierarchy by weight/size/
   colour rather than ornament. Cool near-white surfaces, navy text, brand-blue
   (#4A90E2) actions. Photography used cleanly. No serif, no moody bands.
   Real font files only — no synthetic width/slant distortion.
   ========================================================================== */

/* --------------------------------------------------------------- fonts --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
}

/* --------------------------------------------------------------- tokens -- */
:root {
  font-size: 100%; /* 1rem = 16px; scales with the reader's setting */

  /* Option B — Calm & Personal: warm greige, teal accent, blue actions */
  --navy: #21302D;            /* dark green-black — headings + dark bands + footer */
  --navy-deep: #18231F;
  --navy-600: #3A5450;
  --slate: #33534E;           /* mid green-slate */
  --teal: #2F7E78;            /* secondary accent — eyebrows, marks, ticks */
  --teal-soft: #7FBAB4;       /* teal for labels on dark */
  --ink: #2A322F;             /* warm near-black body text */
  --paper: #F6F2EC;           /* warm greige */
  --paper-2: #EFE8DC;
  --surface: #FFFFFF;

  --accent: #4A90E2;          /* required brand blue — buttons, pins, focus */
  --accent-ink: #2A756F;      /* teal for links / accent text on light */
  --accent-strong: #3A79C4;   /* blue button hover */
  --accent-tint: #E6F1EF;     /* soft teal wash for subtle bars/callouts */
  --accent-soft: #7FBAB4;     /* teal for labels/marks on dark */

  --gold: #D69A3F;            /* warm amber — reserved for "opening soon" only */
  --gold-soft: #E7B96A;
  --gold-ink: #7E4E12;

  --muted: #5F6E70;
  --muted-2: #808E8B;
  --line: #E7E0D5;
  --line-strong: #D8CFBF;
  --sand: #F3E7CF;
  --sand-line: #E4D2AC;
  --danger: #A2461F;

  --wrap: 78rem;
  --wrap-narrow: 46rem;
  --gap: clamp(1.25rem, 3vw, 2.25rem);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-photo: 14px;
  --shadow-sm: 0 1px 2px rgba(16, 32, 52, .05), 0 4px 12px rgba(16, 32, 52, .05);
  --shadow-md: 0 4px 14px rgba(16, 32, 52, .08), 0 18px 40px rgba(16, 32, 52, .10);
  --shadow-blue: 0 2px 10px rgba(74, 144, 226, .30);

  --ff-display: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ff-wordmark: 'Inter', system-ui, 'Arial Narrow', sans-serif;

  --step--1: 0.8125rem;   /* 13px labels */
  --step-0: 1.0625rem;    /* 17px body */
  --step-1: 1.1875rem;    /* 19px lead */
  --step-2: 1.375rem;     /* 22px card titles / h3 */
  --step-3: clamp(1.5rem, 1.25rem + 1vw, 1.9rem);      /* h2 */
  --step-4: clamp(1.85rem, 1.45rem + 1.9vw, 2.5rem);   /* section display / page h1 */
  --step-5: clamp(2.15rem, 1.55rem + 2.7vw, 3.35rem);  /* home hero h1 */
}

/* --------------------------------------------------------------- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; font-optical-sizing: auto; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
svg { display: block; }
a { color: var(--accent-ink); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }
li { list-style: none; }
strong { font-weight: 700; }

::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

/* --------------------------------------------------------------- a11y ----- */
.skip-link {
  position: absolute; left: 0; top: -100%;
  background: var(--navy); color: #fff;
  padding: .8rem 1.2rem; z-index: 200;
  font-weight: 700; text-decoration: none; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; color: #fff; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --------------------------------------------------------------- layout --- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }
.wrap--narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(3rem, 5.5vw, 4.75rem); }
.section--tight { padding-block: clamp(2rem, 3.5vw, 2.75rem); }
.section--navy { background: var(--navy); color: #E7EEF6; }
.section--paper2 { background: var(--paper-2); }
.section + .section { border-top: 1px solid var(--line); }
.section--navy + .section, .section + .section--navy,
.section--paper2 + .section--paper2 { border-top: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 .9rem;
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 2px; background: var(--teal); border-radius: 2px;
}
.eyebrow--gold { color: var(--gold); }
.section--navy .eyebrow, .eyebrow--onDark { color: var(--accent-soft); }

/* small letterspaced label chip */
.tag-bar {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--accent-ink);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 0;
}
.tag-bar::before { content: ""; width: 1.6rem; height: 2px; background: var(--teal); border-radius: 2px; }
.tag-bar--accent { color: var(--accent-ink); }
.tag-bar--soon { color: var(--muted); }

.section-head { max-width: 44rem; margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: var(--step-1); margin-top: .5rem; }
.section--navy .section-head p { color: #B7C6D8; }

h1.display, .h-display {
  font-family: var(--ff-display);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.h2 { font-family: var(--ff-display); font-weight: 800; font-size: var(--step-3); letter-spacing: -0.02em; line-height: 1.15; }
.h3 { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-2); letter-spacing: -0.015em; line-height: 1.25; }
.lead { font-size: var(--step-1); color: var(--muted); line-height: 1.58; }
.section--navy .lead { color: #C6D3E2; }

/* --------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 2.875rem; padding: .68rem 1.35rem;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 700; line-height: 1.1;
  letter-spacing: .005em;
  border: 1.5px solid transparent; border-radius: 100px;
  text-decoration: none; cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }
/* Primary = brand blue #4A90E2 (non-negotiable). */
.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-blue); }
.btn--primary:hover { background: var(--accent-strong); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,144,226,.38); }
.btn--onNavy.btn--primary { box-shadow: 0 2px 12px rgba(0,0,0,.25); }
.btn--ghost { background: var(--surface); color: var(--navy); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-1px); }
.btn--onNavy.btn--ghost { background: rgba(255,255,255,.06); color: #EAF0F7; border-color: rgba(255,255,255,.42); box-shadow: none; }
.btn--onNavy.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; color: #fff; }
.btn--onPhoto.btn--ghost { background: rgba(12,27,46,.35); color: #fff; border-color: rgba(255,255,255,.55); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); box-shadow: none; }
.btn--onPhoto.btn--ghost:hover { background: rgba(12,27,46,.55); border-color: #fff; color: #fff; }
.btn--block { width: 100%; }
.btn--sm { min-height: 2.5rem; font-size: .95rem; padding: .45rem 1rem; }
.btn svg { flex: 0 0 auto; }

.linkarrow { font-weight: 700; text-decoration: none; color: var(--accent-ink); display: inline-flex; align-items: center; gap: .4rem; }
.linkarrow:hover { color: var(--navy); }
.linkarrow:hover .linkarrow__x { transform: translateX(3px); }
.linkarrow__x { transition: transform .15s ease; }
.section--navy .linkarrow, .on-dark .linkarrow { color: var(--accent-soft); }
.section--navy .linkarrow:hover { color: #fff; }

/* --------------------------------------------------------------- header --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: 4.1rem; }
.site-header__nav { margin-left: auto; }
.nav-toggle { display: none; }
.mainnav ul { display: flex; align-items: center; gap: .1rem; flex-wrap: wrap; }
.mainnav a {
  display: inline-flex; align-items: center; min-height: 2.75rem;
  padding: .4rem .7rem; border-radius: var(--radius);
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: .975rem;
  transition: background-color .15s ease, color .15s ease;
}
.mainnav a:hover { background: var(--paper-2); color: var(--navy); }
.mainnav a[aria-current="page"] { color: var(--accent-ink); }
.mainnav a[aria-current="page"]::after { content: none; }
.mainnav li:has(a[aria-current="page"]) a { box-shadow: inset 0 -2.5px 0 var(--accent); border-radius: var(--radius) var(--radius) 0 0; }
.header-call {
  display: inline-flex; align-items: center; gap: .45rem; margin-left: .35rem;
  padding: .5rem .95rem; min-height: 2.75rem;
  background: var(--navy); color: #fff !important; text-decoration: none; font-weight: 700; border-radius: var(--radius);
  transition: background-color .15s ease;
}
.header-call:hover { background: var(--accent); }

/* wordmark (recreated boxed logo) ----------------------------------------- */
.wordmark { text-decoration: none; display: inline-block; line-height: 1; }
.wordmark:focus-visible { outline-offset: 4px; }
.wm { --wm-fg: var(--navy); display: grid; width: max-content; }
.wm__utah {
  font-family: var(--ff-wordmark); font-weight: 800;
  font-size: .6rem; letter-spacing: .34em; color: var(--wm-fg);
  line-height: 1; margin: 0 0 .28em .16em;
}
.wm__box { position: relative; border: 2px solid var(--wm-fg); padding: .26em .5em .42em; }
.wm__veterans {
  font-family: var(--ff-wordmark); font-weight: 900;
  font-size: 1.3rem; letter-spacing: .01em; color: var(--wm-fg); line-height: .9;
}
.wm__massage {
  position: absolute; left: 50%; bottom: -0.58em; transform: translateX(-50%);
  background: var(--wm-fg); color: var(--wm-bg-text, var(--paper));
  font-family: var(--ff-body); font-weight: 700; font-size: .5rem; letter-spacing: .32em;
  padding: .3em .28em .26em .5em; white-space: nowrap;
}
.wordmark--dark .wm { --wm-fg: #fff; }
.wordmark--dark .wm__massage { color: var(--navy); }
.site-header .wm__veterans { font-size: 1.2rem; }

/* --------------------------------------------------------------- footer --- */
.site-footer { background: var(--navy); color: #C6D3E2; }
.site-footer a { color: #DCE6F2; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem clamp(1.5rem, 4vw, 3rem); padding-block: clamp(3rem, 5vw, 4rem); }
.footer-grid h2 { font-family: var(--ff-body); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .13em; color: var(--accent-soft); margin-bottom: 1rem; font-weight: 700; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { text-decoration: none; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }
.footer-contact p { margin-bottom: .55rem; }
.footer-contact .big { font-family: var(--ff-display); font-weight: 700; font-size: 1.25rem; display: flex; align-items: center; gap: .5rem; }
.footer-contact .big a { text-decoration: none; }
.footer-contact svg { color: var(--accent-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 1.4rem; display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; align-items: center; font-size: var(--step--1); color: #92A6BF; }
.footer-bottom .npi { font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.footer-bottom a { color: #B7C6D8; text-decoration: none; }
.footer-bottom a:hover { color: #fff; text-decoration: underline; }
.footer-foot-wordmark { margin-bottom: 1.2rem; }

/* ====================================================== HERO (Option B) === */
/* Calm & Personal: a full-width warm photograph with a soft gradient panel;
   the headline sits over the readable (left) side. Stacks on mobile. */
.hero-b { position: relative; background: var(--paper); isolation: isolate; overflow: hidden; }
.hero-b__img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 42%; }
.hero-b__panel { position: relative; z-index: 2; }
.hero-b__inner { padding-block: clamp(2.25rem, 5vw, 3.5rem); max-width: 40rem; }
.hero-b__panel > .wrap { width: 100%; }
.hero-b__title {
  font-family: var(--ff-display); font-weight: 800; font-size: var(--step-5);
  color: var(--navy); line-height: 1.08; letter-spacing: -0.028em; margin: .2rem 0 0;
}
.accentword { color: var(--teal); }
.hero-b__sub { color: #45524d; font-size: var(--step-1); line-height: 1.55; margin: 1.1rem 0 1.6rem; max-width: 36rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* mobile: photo on top, text on warm paper below */
.hero-b { display: flex; flex-direction: column; }
.hero-b__media { order: -1; width: 100%; aspect-ratio: 16 / 11; }
.hero-b__scrim { display: none; }

@media (min-width: 56rem) {
  .hero-b { display: block; }
  .hero-b__media { position: absolute; inset: 0; z-index: 0; aspect-ratio: auto; height: 100%; }
  .hero-b__scrim {
    display: block; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, var(--paper) 0%, rgba(246,242,236,.94) 34%, rgba(246,242,236,.35) 62%, rgba(246,242,236,0) 100%);
  }
  .hero-b__panel { min-height: clamp(28rem, 60vh, 40rem); display: flex; align-items: center; }
  .hero-b__inner { padding-block: 0; }
}

/* slim referral bar (gold) — echoes the current site's info bar */
.referral-bar { background: var(--accent-tint); color: var(--navy); border-bottom: 1px solid #D6E4F6; }
.referral-bar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .3rem .7rem; padding-block: .8rem; text-align: center; font-weight: 600; font-size: 1.0625rem; }
.referral-bar a { color: var(--navy); font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.referral-bar a:hover { text-decoration: underline; }

/* ---------------------------------------------------- how-we-operate band -- */
.oper { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.oper__item {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.oper__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); color: inherit; }
.oper__icon { width: 2.9rem; height: 2.9rem; border-radius: 12px; display: grid; place-items: center; background: var(--accent-tint); color: var(--accent-ink); margin-bottom: 1rem; }
.oper__icon svg { width: 1.5rem; height: 1.5rem; }
.oper__item h3 { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-2); color: var(--navy); letter-spacing: -0.01em; margin-bottom: .45rem; }
.oper__item p { color: var(--muted); margin: 0; font-size: 1rem; }
.oper__item .linkarrow { margin-top: .9rem; font-size: .95rem; }

/* --------------------------------------------------------------- trust ---- */
.trust { background: var(--navy); color: #EAF0F7; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: clamp(1.5rem, 3vw, 2.2rem) clamp(1rem, 2.5vw, 1.7rem); border-left: 1px solid rgba(255,255,255,.12); }
.trust__item:first-child { border-left: 0; }
.trust__num { font-family: var(--ff-display); font-weight: 800; font-size: clamp(1.7rem, 3.2vw, 2.35rem); color: #fff; line-height: 1; display: block; letter-spacing: -0.02em; }
.trust__item::before { content: ""; display: block; width: 1.8rem; height: 3px; background: var(--teal); border-radius: 2px; margin-bottom: .9rem; }
.trust__label { display: block; margin-top: .55rem; font-size: .95rem; color: #B7C6D8; line-height: 1.4; }
.trust__item--word .trust__num { font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: 0; }

/* --------------------------------------------------------------- steps ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 3vw, 2rem); }
.step { position: relative; padding-top: 1.1rem; border-top: 2px solid var(--teal); }
.step__n { font-family: var(--ff-display); font-weight: 800; font-size: .95rem; color: var(--accent-ink); letter-spacing: .04em; }
.step h3 { margin: .45rem 0 .5rem; font-size: var(--step-2); font-family: var(--ff-display); font-weight: 700; letter-spacing: -0.01em; color: var(--navy); }
.step p { color: var(--muted); margin: 0; }
.section--navy .step { border-top-color: var(--teal); }
.section--navy .step h3 { color: #fff; }
.section--navy .step p { color: #B7C6D8; }
.section--navy .step__n { color: var(--accent-soft); }

/* --------------------------------------------------------------- cards ---- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.card--link { transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease; }
a.card--link, .card--link a.stretch { text-decoration: none; color: inherit; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

/* region summary card (home) */
.region-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; margin-bottom: .9rem; }
.region-card__name { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-2); color: var(--navy); letter-spacing: -0.01em; }

/* location card / row */
.loc-card { position: relative; }
.loc-card__region { font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--accent-ink); }
.loc-card__name { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-2); color: var(--navy); margin: .3rem 0 .5rem; line-height: 1.12; letter-spacing: -0.01em; }
.loc-card__name a { color: inherit; text-decoration: none; }
.loc-card__name a:hover { color: var(--accent-ink); }
.loc-card__addr { color: var(--muted); margin: 0 0 1.1rem; font-style: normal; }
.loc-card__addr .miles { color: var(--accent-ink); font-weight: 700; display: inline-block; margin-top: .2rem; }
.loc-card__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; }
.loc-card.is-nearest { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(74,144,226,.28), var(--shadow-md); }
.nearest-flag { display: none; }
.loc-card.is-nearest .nearest-flag { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; color: var(--accent-ink); font-size: var(--step--1); letter-spacing: .04em; text-transform: uppercase; }

.badge { display: inline-flex; align-items: center; gap: .4rem; font-size: var(--step--1); font-weight: 700; letter-spacing: .04em; padding: .3rem .65rem; border-radius: 100px; text-transform: uppercase; }
.badge--soon { background: var(--sand); color: var(--gold-ink); border: 1px solid var(--sand-line); }
.badge--dot::before { content: ""; width: .5rem; height: .5rem; border-radius: 50%; background: var(--gold); }

/* therapist card */
.t-card { scroll-margin-top: 6rem; text-align: center; align-items: center; }
/* circular headshot */
.t-avatar { width: 132px; height: 132px; border-radius: 50%; overflow: hidden; background: var(--paper-2); margin: 0 auto 1rem; box-shadow: 0 0 0 4px var(--surface), 0 4px 14px rgba(16,32,52,.12); }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.t-avatar--initials { display: grid; place-items: center; background: linear-gradient(150deg, var(--navy-600), var(--navy)); }
.t-avatar--initials span { font-family: var(--ff-display); font-weight: 800; font-size: 2.4rem; color: #fff; letter-spacing: .01em; }
.t-card__name { font-family: var(--ff-display); font-weight: 700; font-size: 1.3rem; color: var(--navy); line-height: 1.1; letter-spacing: -0.01em; }
.t-card__cred { font-size: var(--step--1); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); margin: .35rem 0 .85rem; }
.t-card .chips { justify-content: center; }
.t-card__bio { text-align: left; }
.t-card__bio p { font-size: 1rem; color: var(--ink); margin-bottom: .7rem; }
.t-card__bio p:last-child { margin-bottom: 0; }
.t-card__bio--preview { color: var(--ink); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; line-clamp: 3; overflow: hidden; }
.t-card__bio.clamped { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; line-clamp: 4; overflow: hidden; }
.t-card__more { display: inline-block; margin-top: .5rem; padding: 0; background: none; border: 0; cursor: pointer; font: inherit; font-weight: 700; font-size: .95rem; color: var(--accent-ink); }
.t-card__more:hover { color: var(--navy); text-decoration: underline; }
.t-card__foot { margin-top: auto; padding-top: 1rem; align-self: stretch; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin: .2rem 0 1rem; }
.chip {
  display: inline-flex; align-items: center; gap: .35rem; min-height: 2rem;
  padding: .25rem .7rem; border-radius: 100px; font-size: .9rem; font-weight: 600;
  background: var(--paper-2); color: var(--navy); text-decoration: none; border: 1px solid var(--line);
  transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}
.chip svg { color: var(--muted); }
a.chip:hover { background: var(--surface); border-color: var(--accent); color: var(--accent-ink); }
a.chip:hover svg { color: var(--accent); }
.chip--photo { padding-left: .3rem; }
.chip__thumb { width: 1.6rem; height: 1.6rem; border-radius: 50%; object-fit: cover; object-position: center 22%; }
.chip__thumb--initials { display: grid; place-items: center; background: var(--navy); color: #fff; font-weight: 700; font-size: .7rem; }

/* --------------------------------------------------- split (photo + text) -- */
.split { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
@media (min-width: 52rem) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--rev .split__media { order: 2; }
}
.split__media { border-radius: var(--radius-photo); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; }
.split__media--tall { aspect-ratio: 4 / 5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body { min-width: 0; }
.split__body .lead { margin-bottom: 1rem; }

/* full-width value band (slate, Zeel-style) with bleeding photo */
.valueband { background: var(--surface); color: var(--ink); overflow: hidden; border-block: 1px solid var(--line); }
.valueband__grid { display: grid; }
.valueband__body { padding: clamp(2.5rem, 5vw, 4rem) clamp(1.15rem, 4vw, 2.5rem); max-width: 40rem; margin-left: auto; }
.valueband__body .eyebrow { color: var(--accent-ink); }
.valueband__body h2 { font-family: var(--ff-display); font-weight: 800; font-size: var(--step-4); color: var(--navy); letter-spacing: -0.02em; margin-bottom: .8rem; }
.valueband__body p { color: var(--muted); }
.valueband__media { position: relative; min-height: 18rem; }
.valueband__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 56rem) {
  .valueband__grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .valueband__body { padding-inline: clamp(2rem, 5vw, 4rem) clamp(2rem, 6vw, 5rem); }
}

/* about pillars (numbered) */
.pillar { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.pillar + .pillar { margin-top: clamp(2.5rem, 6vw, 4.5rem); }
@media (min-width: 54rem) {
  .pillar { grid-template-columns: 1fr 1fr; }
  .pillar--rev .pillar__media { order: 2; }
}
.pillar__media { border-radius: var(--radius-photo); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; }
.pillar__media img { width: 100%; height: 100%; object-fit: cover; }
.pillar__n { font-family: var(--ff-display); font-weight: 800; font-size: 1rem; color: var(--accent-ink); letter-spacing: .06em; display: inline-flex; align-items: center; gap: .5rem; margin-bottom: .6rem; }
.pillar__n::before { content: ""; width: 1.6rem; height: 2px; background: var(--teal); border-radius: 2px; }
.pillar h2 { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-3); color: var(--navy); letter-spacing: -0.015em; margin-bottom: .7rem; }
.pillar p { color: var(--muted); }

/* recruiting block */
.recruit { background: var(--navy); color: #E7EEF6; border-radius: var(--radius-lg); overflow: hidden; }
.recruit__grid { display: grid; }
.recruit__body { padding: clamp(2rem, 4vw, 3rem); }
.recruit__body .eyebrow { color: var(--accent-soft); }
.recruit__body h2 { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-4); color: #fff; letter-spacing: -0.02em; margin-bottom: .8rem; }
.recruit__body p { color: #C6D3E2; }
.recruit__list { display: grid; gap: .7rem; margin: 1.2rem 0 1.6rem; }
.recruit__list li { position: relative; padding-left: 1.9rem; color: #DCE5EF; }
.recruit__list li::before { content: ""; position: absolute; left: 0; top: .34em; width: 1.1rem; height: .6rem; border-left: 2.5px solid var(--teal); border-bottom: 2.5px solid var(--teal); transform: rotate(-45deg); }
.recruit__media { position: relative; min-height: 16rem; }
.recruit__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 54rem) { .recruit__grid { grid-template-columns: 1.1fr .9fr; } .recruit__media { min-height: 100%; } }

/* --------------------------------------------------------------- finder --- */
.finder { display: grid; grid-template-columns: 1fr; gap: clamp(1.2rem, 3vw, 2rem); }
@media (min-width: 61rem) { .finder { grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: start; } }
.finder__mapwrap { position: sticky; top: 5rem; }
#map { width: 100%; height: clamp(24rem, 68vh, 44rem); border-radius: var(--radius-lg); border: 1px solid var(--line-strong); background: #dfe6ea; z-index: 1; box-shadow: var(--shadow-sm); }
.map-detail { height: clamp(15rem, 40vh, 22rem); }
.map-fallback { display: grid; place-items: center; text-align: center; padding: 2rem; color: var(--muted); }
.map-tools { margin-top: .8rem; display: flex; flex-wrap: wrap; gap: .6rem; align-items: center; }
.geo-status { font-size: .95rem; color: var(--muted); }
.geo-status[data-state="error"] { color: var(--danger); }

/* leaflet custom pin */
.uvm-pin { position: relative; width: 26px; height: 26px; }
.uvm-pin span {
  position: absolute; inset: 0; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: var(--accent); border: 2.5px solid #fff; box-shadow: 0 2px 6px rgba(18,38,63,.45);
}
.uvm-pin.soon span { background: var(--gold); }
.uvm-pin.near span { background: var(--navy); width: 30px; height: 30px; }
.leaflet-popup-content-wrapper { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.leaflet-popup-content { font-family: var(--ff-body); margin: .9rem 1rem; font-size: .95rem; line-height: 1.4; }
.popup-name { font-family: var(--ff-display); font-weight: 700; color: var(--navy); font-size: 1.05rem; display: block; margin-bottom: .2rem; letter-spacing: -0.01em; }
.popup-addr { color: var(--muted); }
.popup-soon { color: var(--gold-ink); font-weight: 700; }
.leaflet-container a.leaflet-popup-close-button { font-size: 1.4rem; padding: 6px 8px 0 0; }

/* region spine (north -> south geographic order) */
.region { position: relative; padding-left: 2.2rem; }
.region + .region { margin-top: clamp(2rem, 4.5vw, 3rem); }
.region::before {
  content: ""; position: absolute; left: .55rem; top: .7rem; bottom: -2.4rem;
  width: 2px; background: repeating-linear-gradient(var(--line-strong) 0 6px, transparent 6px 12px);
}
.region:last-child::before { bottom: 40%; }
.region__node { position: absolute; left: 0; top: .3rem; width: 1.15rem; height: 1.15rem; border-radius: 50%; background: var(--surface); border: 3px solid var(--teal); }
.region__head { display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.region__name { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-2); color: var(--navy); letter-spacing: -0.01em; }
.region__count { font-size: var(--step--1); color: var(--muted); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.finder__list .grid--2 { grid-template-columns: 1fr; }

/* --------------------------------------------------------------- callout -- */
.callout {
  background: var(--sand); border: 1px solid var(--sand-line); border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 1.6rem) clamp(1.3rem, 3vw, 1.8rem);
}
.callout__label { display: flex; align-items: center; gap: .55rem; font-weight: 700; color: var(--accent-ink); text-transform: uppercase; letter-spacing: .07em; font-size: var(--step--1); margin-bottom: .6rem; }
.callout__label svg { color: var(--accent-ink); }
.callout p:last-child { margin-bottom: 0; }
.callout--info { background: #EAF1FA; border-color: #CFE0F4; }
.callout--info .callout__label { color: var(--accent-ink); }
.callout--info .callout__label svg { color: var(--accent-ink); }

/* address block */
.addr-block { font-style: normal; font-size: var(--step-1); line-height: 1.5; }
.addr-block .street { font-weight: 700; color: var(--navy); }

/* two-column detail layout */
.detail-grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); }
@media (min-width: 55rem) { .detail-grid { grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); align-items: start; } }
.detail-aside { position: sticky; top: 5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.panel h2 { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-2); color: var(--navy); margin-bottom: .8rem; letter-spacing: -0.01em; }
.detail-photo { border-radius: var(--radius-photo); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 3 / 2; margin-bottom: 1.5rem; }
.detail-photo img { width: 100%; height: 100%; object-fit: cover; }

.stacklist { display: flex; flex-direction: column; gap: .8rem; }
.stacklist > * { margin: 0; }

/* breadcrumb */
.crumbs { font-size: .95rem; color: var(--muted); padding-top: 1.4rem; }
.crumbs a { color: var(--accent-ink); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { color: var(--line-strong); margin: 0 .4rem; }

/* ---------------------------------------------------- page hero (interior) */
.page-hero { background: var(--navy); color: #EAF0F7; position: relative; overflow: hidden; isolation: isolate; }
.page-hero__inner { position: relative; z-index: 2; padding-block: clamp(2.6rem, 5vw, 3.8rem); }
.page-hero h1 { font-family: var(--ff-display); font-weight: 800; font-size: var(--step-4); color: #fff; letter-spacing: -0.025em; max-width: 22ch; line-height: 1.08; }
.page-hero p { color: #C6D3E2; font-size: var(--step-1); max-width: 44rem; margin-top: .8rem; margin-bottom: 0; }
.page-hero .eyebrow { color: var(--accent-soft); }
/* photographic interior hero */
.page-hero--photo { background: var(--navy-deep); }
.page-hero--photo .page-hero__media { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.page-hero--photo .page-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(96deg, rgba(9,20,34,.90) 0%, rgba(9,20,34,.74) 42%, rgba(9,20,34,.44) 100%),
    linear-gradient(0deg, rgba(9,20,34,.55) 0%, rgba(9,20,34,0) 55%);
}
.page-hero--photo .page-hero__inner { padding-block: clamp(3rem, 6vw, 4.75rem); }

/* faq */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 2.5rem 1.15rem 0; position: relative;
  font-family: var(--ff-display); font-weight: 700; font-size: var(--step-2); color: var(--navy);
  line-height: 1.2; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .35rem; top: 1.45rem; width: 12px; height: 12px;
  border-right: 2.5px solid var(--muted); border-bottom: 2.5px solid var(--muted);
  transform: rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.faq summary:focus-visible { outline-offset: -2px; }
.faq__body { padding: 0 2rem 1.4rem 0; color: var(--ink); }
.faq__body p { margin-bottom: .8rem; }
.faq__body :last-child { margin-bottom: 0; }

/* prose */
.prose { max-width: 40rem; }
.prose p { margin-bottom: 1.1rem; }
.prose h2 { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-3); color: var(--navy); margin: 2rem 0 .8rem; letter-spacing: -0.015em; }
.prose h3 { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-2); color: var(--navy); margin: 1.6rem 0 .6rem; letter-spacing: -0.01em; }
.ticks, .prose ul.ticks { display: flex; flex-direction: column; gap: .7rem; margin: 0 0 1.2rem; }
.ticks li, .prose ul.ticks li { position: relative; padding-left: 1.9rem; }
.ticks li::before, .prose ul.ticks li::before {
  content: ""; position: absolute; left: 0; top: .34em; width: 1.1rem; height: .6rem;
  border-left: 2.5px solid var(--teal); border-bottom: 2.5px solid var(--teal); transform: rotate(-45deg);
}

/* clinic table (VA staff — print target) */
.clinic-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.clinic-table caption { text-align: left; color: var(--muted); margin-bottom: .8rem; font-size: .95rem; }
.clinic-table th, .clinic-table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.clinic-table thead th { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); border-bottom: 2px solid var(--navy); }
.clinic-table tbody tr:hover { background: var(--paper-2); }
.clinic-table .c-name { font-weight: 700; color: var(--navy); }
.clinic-table .c-region { color: var(--muted); font-size: .92rem; }
.clinic-table .c-soon { color: var(--gold-ink); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); }
.table-scroll .clinic-table th, .table-scroll .clinic-table td { white-space: nowrap; }
.table-scroll .clinic-table td.c-addr { white-space: normal; min-width: 16rem; }

.factbar { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; padding: 1.4rem 0; border-block: 1px solid var(--line); }
.fact dt { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.fact dd { margin: .25rem 0 0; font-weight: 700; color: var(--navy); font-size: var(--step-1); font-variant-numeric: tabular-nums; }
.fact dd a { text-decoration: none; }

/* CTA band */
.ctaband { text-align: center; }
.ctaband h2 { font-family: var(--ff-display); font-weight: 800; font-size: var(--step-4); color: #fff; letter-spacing: -0.025em; }
.ctaband p { color: #C6D3E2; font-size: var(--step-1); max-width: 40rem; margin: .8rem auto 1.7rem; }
.ctaband .hero__cta { justify-content: center; }

/* 404 */
.err { text-align: center; padding-block: clamp(3rem, 10vw, 6rem); }
.err__code { font-family: var(--ff-display); font-weight: 800; font-size: clamp(3.5rem, 14vw, 7.5rem); color: var(--navy); line-height: .9; letter-spacing: -0.03em; }

/* misc */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-1 { margin-top: 1rem; }
.muted { color: var(--muted); }
.nowrap { white-space: nowrap; }
.contact-lines { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-lines .row { display: flex; gap: .9rem; align-items: flex-start; }
.contact-lines .row svg { flex: 0 0 auto; margin-top: .2rem; color: var(--accent-ink); }
.contact-lines .k { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.contact-lines .v { font-size: var(--step-1); font-weight: 700; color: var(--navy); }
.contact-lines .v a { text-decoration: none; }

/* --------------------------------------------------------------- responsive */
@media (max-width: 60rem) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .oper { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .trust__item:nth-child(odd) { border-left: 0; }
  .detail-aside, .finder__mapwrap { position: static; }
}
@media (max-width: 46rem) {
  .site-header__nav { position: fixed; inset: 4.1rem 0 auto 0; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .2s ease; max-height: calc(100vh - 4.1rem); overflow-y: auto; }
  .site-header__nav[data-open="true"] { transform: translateY(0); }
  .mainnav ul { flex-direction: column; align-items: stretch; gap: 0; padding: .6rem clamp(1.15rem,4vw,2.5rem) 1.2rem; }
  .mainnav a { min-height: 3rem; padding: .75rem .4rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .mainnav li:has(a[aria-current="page"]) a { box-shadow: inset 4px 0 0 var(--accent); border-radius: 0; }
  .header-call { margin: .6rem 0 0; justify-content: center; }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: .5rem; margin-left: auto;
    min-height: 2.9rem; padding: .5rem .8rem; background: var(--surface); border: 1px solid var(--line-strong);
    border-radius: var(--radius); font-family: var(--ff-body); font-weight: 700; font-size: 1rem; color: var(--navy); cursor: pointer;
  }
  .nav-toggle__bars { display: inline-grid; gap: 3px; }
  .nav-toggle__bars i { display: block; width: 18px; height: 2px; background: var(--navy); }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 30rem) {
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-left: 0 !important; border-bottom: 1px solid rgba(255,255,255,.12); }
}

/* --------------------------------------------------------------- print ---- */
@media print {
  .site-header, .site-footer, .map-tools, #map, .ctaband, .nav-toggle, .btn, .skip-link, .hero-b__media, .hero-b__scrim { display: none !important; }
  :root { font-size: 100%; }
  body { background: #fff; color: #000; }
  .section { padding-block: 1rem; }
  .page-hero, .page-hero--photo { background: #fff; color: #000; }
  .page-hero__media, .page-hero__scrim { display: none !important; }
  .page-hero h1, .page-hero p, .page-hero .eyebrow { color: #000; }
  .clinic-table th, .clinic-table td { border-color: #999; }
  a { color: #000; text-decoration: none; }
  .table-scroll { border: 0; box-shadow: none; }
  .print-note { display: block !important; }
}
.print-note { display: none; }

/* ---------------------------------------------------------- legal pages --- */
.legal h2 { font-family: var(--ff-display); font-weight: 700; font-size: var(--step-2); color: var(--navy); margin: 2.2rem 0 .7rem; letter-spacing: -0.01em; }
.legal p, .legal li { max-width: 68ch; }
.legal ul { padding-left: 1.4rem; margin: .8rem 0 1.2rem; }
.legal li { margin: .45rem 0; list-style: disc; }
.legal blockquote {
  margin: 1.2rem 0; padding: 1rem 1.3rem; background: var(--paper-2);
  border-left: 4px solid var(--accent); border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.legal blockquote p { margin: 0; font-style: italic; }
