/* ============================================================
   URSA / NTCC — Clinical Editorial site styles (light theme — 20260803 palette)
   Built on the URSA / TSN design tokens.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&family=Newsreader:opsz,wght@6..72,300;6..72,400;6..72,500;6..72,600&family=Spectral:wght@300;400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand */
  --navy-900: #0A1A33;
  --navy-800: #0C2040;
  --navy-700: #0F2347;
  --navy-600: #132D54;
  --navy-500: #1A3A6B;
  --navy-400: #2152A0;
  --navy-100: #E8EEF7;
  --navy-050: #F2F6FC;
  --royal:    #2B4BB5;

  --teal-100: #E0F7F5;
  --teal-200: #B2ECE8;
  --teal-400: #128C83;
  --teal-500: #0F7A73;
  --teal-600: #0C6058;

  --white: #FFFFFF;

  /* Tweakable */
  --accent: var(--teal-400);
  --accent-deep: var(--teal-600);
  --accent-soft: rgba(18,140,131,0.12);
  --font-display: 'Newsreader', Georgia, serif;
  --font-sans: 'Raleway', system-ui, sans-serif;

  /* Light surface system */
  --bg-page: #FFFFFF;
  --bg-alt: #F5F8FC;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F5F8FC;
  --hero-bg: var(--bg-alt);
  --border-soft: #DCE3EC;
  --border-med: #C3CFDF;
  --ink: #0A1A33;           /* headings / high-emphasis text */
  --grey-600: #4A5568;      /* body / lead text */
  --grey-500: #7A8699;      /* labels, captions, secondary */
  --grey-800: #4A5568;      /* base body copy */
  --grey-400: #DCE3EC;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius: 10px;
  --radius-sm: 5px;
  --shadow-sm: 0 1px 2px rgba(10,26,51,0.06), 0 1px 3px rgba(10,26,51,0.05);
  --shadow-md: 0 6px 22px rgba(10,26,51,0.10);
  --shadow-lg: 0 20px 55px rgba(10,26,51,0.14);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--grey-800);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

/* ---- Type helpers ---- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1.5px; background: var(--accent);
  display: inline-block;
}
.eyebrow.center::before { display: none; }

.display {
  font-family: var(--font-display);
  font-weight: 400; line-height: 1.08;
  letter-spacing: -0.015em; color: var(--ink);
}
h1.display { font-size: clamp(2.6rem, 5.4vw, 4.4rem); }
h2.display { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.01em; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); font-weight: 300; color: var(--grey-600); line-height: 1.65; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,0.90);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo img { height: 46px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 14px; }
.nav-links a {
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.01em; color: var(--grey-600); white-space: nowrap;
  position: relative; padding: 6px 0; transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1.5px;
  background: var(--accent); transition: right 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-right { display: flex; align-items: center; gap: 8px; flex: none; }
.nav-phone { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; white-space: nowrap; }
.nav-phone svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 6px; color: var(--accent); }
.office-strip { background: var(--navy-900); border-bottom: 1px solid rgba(255,255,255,0.10); }
.office-strip-inner { display: flex; align-items: center; gap: 26px; height: 34px; font-size: 11.5px; color: rgba(255,255,255,0.62); letter-spacing: 0.02em; }
.office-strip-label { display: flex; align-items: center; gap: 6px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; font-size: 10.5px; white-space: nowrap; }
.office-strip-label svg { width: 12px; height: 12px; color: var(--accent); }
.office-strip-numbers { display: flex; align-items: center; justify-content: space-evenly; flex: 1; }
.office-strip-inner span { white-space: nowrap; }
.office-strip-inner strong { color: var(--teal-200); font-weight: 700; margin-right: 5px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 10.5px; }
.office-strip-inner a { color: #fff; font-weight: 600; }
.office-strip-inner a:hover { color: var(--teal-200); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; color: var(--ink); }

/* ---- Buttons ---- */
.btn {
  font-family: var(--font-sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid transparent; border-radius: var(--radius-sm);
  padding: 12px 22px; cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  transition: all 0.2s var(--ease); white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); color: #fff; transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-med); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { border-color: var(--teal-200); color: var(--teal-200); }
.btn-sm { padding: 7px 10px; font-size: 10.5px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: var(--hero-bg); position: relative; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px);
  align-items: stretch; padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 7vw, 92px);
}
.hero h1 { margin: 22px 0 24px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lead { max-width: 30em; margin-bottom: 24px; }
.hero-phones { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-phone-item { display: flex; flex-direction: column; gap: 3px; }
.hero-phone-item strong { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.hero-phone-item a { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.hero-phone-item a:hover { color: var(--accent); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-media { position: relative; display: flex; }
.hero-media image-slot, .hero-media .media-frame {
  width: 100%; border-radius: 14px; box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}
.hero-media .media-frame { flex: 1; aspect-ratio: 4/3.4; position: relative; }
.hero-media image-slot { aspect-ratio: 4 / 4.4; }
.hero-badge {
  position: absolute; left: -22px; bottom: 28px; background: var(--bg-card);
  border-radius: 12px; box-shadow: var(--shadow-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px; border: 1px solid var(--border-soft);
}
.hero-badge .hb-num { font-family: var(--font-display); font-size: 2rem; color: var(--ink); line-height: 1; }
.hero-badge .hb-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-500); line-height: 1.4; max-width: 11ch; }

/* ECG line */
.ecg { width: 100%; height: 30px; display: block; color: var(--accent); opacity: 0.5; }
.ecg path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stats { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: var(--bg-card); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat { padding: 34px 24px; text-align: center; border-right: 1px solid var(--border-soft); }
.stat:last-child { border-right: 0; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 3.2vw, 2.9rem); color: var(--ink); line-height: 1; }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-500); margin-top: 10px; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: clamp(64px, 9vw, 112px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin: 16px 0 18px; }
.section-head .lead { margin: 0; }
.section-head.center .lead { margin-inline: auto; }

/* About */
.about { background: var(--bg-page); }
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-media image-slot, .about-media .media-frame { width: 100%; height: auto; aspect-ratio: 16/9; border-radius: 14px; background: transparent; }
.about-body p { color: var(--grey-600); font-size: 1.02rem; line-height: 1.75; margin-bottom: 18px; max-width: 42em; }
.about-body p strong { color: var(--ink); font-weight: 600; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: rgba(18,140,131,0.07); border: 1px solid rgba(18,140,131,0.28);
  padding: 8px 15px; border-radius: 999px;
}

/* Services */
.services { background: var(--bg-alt); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card {
  display: block; background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 32px 28px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.svc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-med); }
.svc-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.svc-card p { font-size: 0.95rem; color: var(--grey-600); line-height: 1.65; }
.svc-tag { display: inline-block; margin-top: 16px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
button.svc-card { width: 100%; text-align: left; font: inherit; cursor: pointer; }
.svc-more { display: flex; align-items: center; gap: 5px; margin-top: 16px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.svc-more svg { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.svc-card[aria-expanded="true"] { border-color: var(--accent); box-shadow: var(--shadow-md); }
.svc-card[aria-expanded="true"] .svc-more svg { transform: rotate(180deg); }
.svc-detail { grid-column: 1 / -1; }
.svc-detail-in {
  background: var(--bg-card); border: 1px solid var(--accent); border-radius: var(--radius);
  padding: 32px 36px; max-width: 780px;
  opacity: 0; transform: translateY(-6px); transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.svc-detail.open .svc-detail-in { opacity: 1; transform: none; }
.svc-detail-in h4 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--ink); margin-bottom: 14px; }
.svc-detail-in p { font-size: 0.98rem; color: var(--grey-600); line-height: 1.75; margin-bottom: 14px; text-wrap: pretty; }
.svc-detail-in p a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.svc-detail-in p a:hover { color: var(--accent-dark, var(--accent)); }
.svc-detail-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 10px; }
.svc-logo-link { display: inline-flex; align-items: center; padding: 6px 12px; border: 1px solid var(--border-soft); border-radius: var(--radius-sm, 6px); background: #fff; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease); }
.svc-logo-link:hover { border-color: var(--border-med); box-shadow: var(--shadow-sm, 0 2px 8px rgba(10,26,51,0.08)); transform: translateY(-1px); }
.svc-logo-link img { height: 34px; width: auto; display: block; }

/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--bg-page); }
.team-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 38px; }
.filter-pill {
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; white-space: nowrap;
  color: var(--grey-600); background: var(--bg-card); border: 1px solid var(--border-med);
  padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: all 0.18s var(--ease);
}
.filter-pill:hover { border-color: var(--accent); color: var(--accent); }
.filter-pill.active { background: var(--accent-deep); border-color: var(--accent-deep); color: #fff; }

.leaders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 44px; }
.leader-card {
  display: flex; gap: 24px; align-items: center; background: var(--bg-card);
  border: 1px solid var(--border-soft); border-radius: 14px; padding: 24px 26px;
  text-align: left; cursor: pointer;
}
.leader-card .avatar { width: 96px; height: 120px; flex: 0 0 96px; }
.leader-card > div { min-width: 0; }
.leader-card .l-role { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.leader-card .l-name { font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 1.45rem); font-weight: 500; color: var(--ink); margin: 5px 0 6px; line-height: 1.2; }
.leader-card .l-spec { font-size: 0.92rem; color: var(--grey-600); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 18px; }
.member {
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 12px;
  padding: 22px 18px 22px; text-align: center; cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s var(--ease);
}
.member:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--border-med); }
.member .avatar { margin: 0 auto 16px; width: 96px; height: 120px; }
.member .m-name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 500; color: var(--ink); line-height: 1.2; }
.member .m-spec { font-size: 12.5px; color: var(--grey-600); margin-top: 6px; }
.member .m-role { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 9px; }
.member.hidden { display: none; }

/* Avatar (photo or monogram) — rectangular portrait card */
.avatar { position: relative; border-radius: 10px; overflow: hidden; background: var(--bg-alt); border: 1px solid var(--border-soft); }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar .mono {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 500; color: var(--accent);
  background: linear-gradient(155deg, #EEF3F9, var(--border-soft));
  letter-spacing: 0.02em;
}
.avatar.ring { box-shadow: 0 0 0 3px var(--bg-page), 0 0 0 5px var(--accent); }

.team-subhead {
  font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--grey-500); margin: 0 0 22px;
  display: flex; align-items: center; gap: 16px;
}
.team-subhead::after { content: ''; flex: 1; height: 1px; background: var(--border-soft); }
.team-subhead .count { color: var(--accent); }
.team-block + .team-block { margin-top: 56px; }

/* fellows accent */
.fellow-note {
  background: rgba(18,140,131,0.07); border: 1px solid rgba(18,140,131,0.28); border-radius: 12px;
  padding: 18px 24px; margin: 0 0 24px;
}
.fellow-note .fn-title { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.fellow-note .fn-sub { font-size: 0.92rem; color: var(--grey-600); margin-top: 4px; }
.member.fellow { border-top: 3px solid var(--accent); }

/* ============================================================
   HOSPITALS
   ============================================================ */
.hospitals { background: var(--bg-alt); }
.hosp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.hosp-card { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 24px 26px; display: flex; gap: 18px; align-items: center; }
.hosp-body { flex: 1; min-width: 0; }
.hosp-directions { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; transition: background 0.18s var(--ease), color 0.18s var(--ease); }
.hosp-directions:hover { background: var(--accent); color: #fff; }
.hosp-directions svg { width: 18px; height: 18px; }
.footer-ntcc-cta { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 30px 0; border-bottom: 1px solid var(--border-soft); }
.footer-ntcc-cta .fn-brand { display: flex; align-items: center; gap: 16px; }
.footer-ntcc-cta .fn-brand img { height: 40px; width: auto; background: #fff; border-radius: 6px; padding: 6px 10px; }
.footer-ntcc-cta .fn-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.footer-ntcc-cta .fn-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); }
.hosp-icon { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 10px; background: var(--teal-100); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.hosp-icon svg { width: 22px; height: 22px; }
.hosp-name { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.hosp-note { font-size: 0.85rem; color: var(--grey-500); margin-top: 3px; letter-spacing: 0.02em; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta { background: var(--navy-900); position: relative; overflow: hidden; }
.cta::after {
  content: ''; position: absolute; right: -8%; top: -40%; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(18,140,131,0.28), transparent 65%); pointer-events: none;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: clamp(48px, 6vw, 72px) 0; position: relative; z-index: 1; }
.cta h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: #fff; line-height: 1.12; letter-spacing: -0.01em; }
.cta p { color: rgba(255,255,255,0.62); margin-top: 10px; font-size: 0.95rem; letter-spacing: 0.04em; }
.cta-phone { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: #fff; }
.cta-phones { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.cta-phone-item { text-align: right; }
.cta-phone-item span { display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-200); font-weight: 700; margin-bottom: 2px; }
.cta-phone-item a { font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.5rem); color: #fff; }
.cta-phone-item a:hover { color: var(--teal-200); }
.cta-right { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-page); }
.contact-grid { display: grid; grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--grey-500); text-transform: uppercase; }
.field input, .field textarea, .field select {
  font-family: var(--font-sans); font-size: 15px; color: var(--ink);
  border: 1.5px solid var(--border-med); border-radius: var(--radius-sm); padding: 13px 15px;
  background: var(--bg-card); outline: none; transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 14px; padding: clamp(28px, 4vw, 40px); color: var(--grey-800); }
.transfer-notice { display: flex; gap: 16px; align-items: flex-start; background: var(--bg-card); border: 1px solid var(--accent); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 32px; font-size: 0.98rem; color: var(--grey-600); line-height: 1.55; }
.transfer-notice strong { color: var(--ink); }
.transfer-notice-icon { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; }
.transfer-notice-icon svg { width: 17px; height: 17px; }
.transfer-notice a { color: var(--accent); font-weight: 700; }
.transfer-notice a:hover { color: var(--accent-deep); }
.office-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.info-item { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 20px; }
.info-icon { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 9px; background: var(--teal-100); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.info-icon svg { width: 18px; height: 18px; }
.info-k { font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 4px; }
.info-v { font-size: 0.98rem; color: var(--ink); line-height: 1.55; }
.info-v strong { font-weight: 700; }
.info-v a:hover { color: var(--accent); }
.info-divider { height: 1px; background: var(--border-soft); margin: 26px 0; }

.forms-list { margin-top: 18px; background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 12px; padding: 24px; }
.forms-list .eyebrow { margin-bottom: 16px; }
.forms-list a { display: flex; align-items: center; gap: 11px; font-size: 14px; font-weight: 500; color: var(--grey-600); padding: 9px 0; border-bottom: 1px solid var(--border-soft); transition: color 0.18s var(--ease); }
.forms-list a:last-child { border-bottom: 0; }
.forms-list a:hover { color: var(--accent); }
.forms-list a svg { width: 16px; height: 16px; color: var(--accent); }
.forms-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 8px; }
.forms-pay-btn { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg, var(--accent-deep) 0%, var(--navy-900) 100%); border: 1px solid var(--accent); border-radius: 10px; padding: 22px 24px; text-decoration: none; box-shadow: 0 8px 24px rgba(10,26,51,0.18); }
.forms-pay-btn:hover { filter: brightness(1.1); }
.forms-pay-btn .fp-icon { background: var(--accent); color: #fff; width: 40px; height: 40px; border-radius: 8px; }
.forms-pay-btn .fp-title { display: block; color: #fff; font-size: 16px; font-weight: 700; }
.forms-pay-btn .fp-sub { display: block; color: rgba(255,255,255,0.75); font-size: 12.5px; margin-top: 3px; }
.forms-portal-card { display: flex; align-items: center; justify-content: space-between; gap: 20px; background: linear-gradient(135deg, var(--accent) 0%, var(--teal-600, #1c8f86) 100%); border-radius: 10px; padding: 22px 24px; text-decoration: none; }
.forms-portal-card:hover { filter: brightness(1.05); }
.forms-portal-card .fp-title { display: block; font-size: 15px; font-weight: 700; color: #fff; }
.forms-portal-card .fp-sub { display: block; font-size: 12.5px; color: rgba(255,255,255,0.80); margin-top: 3px; }
.forms-portal-card .fp-icon { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: #fff; }
.forms-download-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-600); margin: 22px 0 12px; }
.forms-download-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.forms-download-grid a { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border-soft); border-radius: 8px; padding: 14px 16px; text-decoration: none; }
.forms-download-grid a:hover { border-color: var(--accent); }
.forms-download-grid .fd-icon { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 6px; background: var(--teal-100); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.forms-download-grid .fd-title { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.forms-download-grid .fd-note { display: block; font-size: 11px; color: var(--grey-600); margin-top: 2px; }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.map-card { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.map-card-label { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.map-embed { border-radius: 8px; overflow: hidden; border: 1px solid var(--border-soft); }
.map-embed iframe { display: block; width: 100%; height: 220px; border: 0; }
.map-note { display: flex; gap: 10px; align-items: flex-start; background: var(--bg-alt); border: 1px solid var(--border-soft); border-radius: 8px; padding: 12px 14px; font-size: 12.5px; color: var(--grey-600); line-height: 1.6; }
.map-note strong { color: var(--ink); }
.map-note svg { width: 16px; height: 16px; flex: 0 0 auto; margin-top: 2px; color: var(--accent); }
.hipaa-note { display: flex; align-items: flex-start; gap: 9px; font-size: 12px; color: var(--grey-600); line-height: 1.6; margin: 12px 0 0; }
.hipaa-note svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: clamp(48px, 6vw, 72px) 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo img { height: 52px; margin-bottom: 18px; background: #fff; border-radius: 6px; padding: 6px 10px; }
.footer-blurb { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 30ch; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 11px; transition: color 0.18s var(--ease); }
.footer-col a:hover { color: var(--teal-200); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 28px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom .sister { display: flex; gap: 22px; }
.footer-bottom .sister a:hover { color: var(--teal-200); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,26,51,0.45); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 200; padding: 24px;
  opacity: 0; transition: opacity 0.2s var(--ease);
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 18px; max-width: 520px; width: 100%; overflow: hidden;
  box-shadow: var(--shadow-lg); transform: translateY(12px); transition: transform 0.25s var(--ease);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-head { display: flex; gap: 22px; align-items: center; padding: 32px 32px 24px; background: var(--bg-alt); border-bottom: 1px solid var(--border-soft); }
.modal-head .avatar { width: 96px; height: 120px; flex: 0 0 96px; }
.modal-head .m-role { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.modal-head h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--ink); margin: 6px 0 4px; }
.modal-head .m-spec { font-size: 0.95rem; color: var(--grey-600); }
.modal-body { padding: 26px 32px 32px; }
.modal-body .row { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border-soft); font-size: 0.95rem; }
.modal-body .row:last-child { border-bottom: 0; }
.modal-body .row .k { flex: 0 0 130px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-500); padding-top: 2px; }
.modal-body .row .v { color: var(--grey-600); }
.modal-close { position: absolute; top: 20px; right: 24px; background: var(--bg-alt); border: 1px solid var(--border-soft); width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--grey-600); transition: all 0.18s var(--ease); }
.modal-close:hover { color: var(--ink); border-color: var(--border-med); }
.modal { position: relative; }
.modal-foot { padding: 0 32px 32px; }
.modal-foot .btn { width: 100%; justify-content: center; }

/* ============================================================
   BIOGRAPHY PAGE
   ============================================================ */
.bio-nav { border-bottom: 1px solid var(--border-soft); background: rgba(255,255,255,0.92); }
.bio-nav .nav-inner { height: 76px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; color: var(--grey-600); transition: color 0.2s var(--ease); }
.back-link svg { width: 16px; height: 16px; }
.back-link:hover { color: var(--accent); }
.bio-hero { background: var(--bg-alt); border-bottom: 1px solid var(--border-soft); }
.bio-hero-inner { display: flex; gap: clamp(28px, 4vw, 48px); align-items: center; padding: clamp(40px, 6vw, 64px) 0; }
.bio-hero .avatar { width: 168px; height: 210px; flex: 0 0 168px; }
.bio-hero .b-role { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.bio-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.1rem); font-weight: 400; color: var(--ink); letter-spacing: -0.015em; margin: 10px 0 8px; line-height: 1.05; }
.bio-hero .b-spec { font-size: 1.05rem; color: var(--grey-600); }
.bio-hero .b-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.bio-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; padding: clamp(48px, 7vw, 80px) 0; }
.bio-main h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 16px; }
.bio-main .bio-narrative p { color: var(--grey-600); line-height: 1.8; margin-bottom: 16px; max-width: 54ch; }
.bio-main .bio-block + .bio-block { margin-top: 44px; }
.cred-card { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 14px; padding: 28px 30px; box-shadow: var(--shadow-sm); }
.cred-card + .cred-card { margin-top: 18px; }
.cred-card .cc-title { display: flex; align-items: center; gap: 11px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 18px; }
.cred-card .cc-title svg { width: 17px; height: 17px; color: var(--accent); }
.cred-row { padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
.cred-row:last-child { border-bottom: 0; padding-bottom: 0; }
.cred-row:first-of-type { padding-top: 0; }
.cred-row .cr-k { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 4px; }
.cred-row .cr-v { font-size: 0.98rem; color: var(--grey-800); line-height: 1.5; }
.tbd { color: var(--grey-500); font-style: italic; font-size: 0.92rem; opacity: 0.8; }
@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; }
  .bio-hero-inner { flex-direction: column; text-align: center; align-items: center; }
  .bio-hero .b-meta { justify-content: center; }
}

/* ============================================================
   ENTRANCE ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin: 0 auto; }
  .hero-badge { position: static; margin-top: 16px; }
  .about-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .leaders { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-right { align-items: flex-start; }
  .cta-phones { align-items: flex-start; }
  .cta-phone-item { text-align: left; }
}
@media (max-width: 680px) {
  .nav-links, .nav-phone { display: none; }
  .office-strip-label { display: none; }
  .office-strip-inner { height: auto; padding: 8px var(--gutter); }
  .office-strip-numbers { justify-content: space-between; gap: 10px; }
  .office-strip-inner span { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 10.5px; }
  .office-strip-inner strong { margin-right: 0; }
  .office-strip-inner a { font-size: 12px; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--bg-page); border-bottom: 1px solid var(--border-soft); padding: 12px var(--gutter); }
  .nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
  .svc-grid, .team-grid, .hosp-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .team-grid, .stats-grid, .footer-top { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  .wrap { padding-left: 16px; padding-right: 16px; }
}
