/* ================================================================
   USHSG - Inner Page Styles v5
   Companion to shared.css. Deep navy / steel blue - no green.
   ================================================================ */

/* ── Inner Page Hero ─────────────────────────────────────────── */
.page-hero {
  padding: 96px 0 88px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(30,95,168,.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201,97,10,.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-display);
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.page-hero-badge::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.page-hero h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.04; letter-spacing: -.05em;
  max-width: 760px;
}
.page-hero-sub {
  margin: 20px 0 0;
  color: rgba(255,255,255,.56);
  font-size: clamp(.95rem, 1.3vw, 1.08rem);
  line-height: 1.7; max-width: 620px;
}
.page-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px;
}
.page-hero-ctas .btn-outline {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.82);
}
.page-hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.38);
}

/* ── Page Section base ───────────────────────────────────────── */
.page-section { padding: 88px 0; }
.page-section--surface { background: var(--surface); }
.page-section--dark { background: var(--ink); }
.page-section--white { background: var(--white); }

/* ── ───────────────── SERVICES PAGE ──────────────────────────── */

/* Service groups */
.svc-group { margin-bottom: 72px; }
.svc-group:last-child { margin-bottom: 0; }
.svc-group-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; margin-bottom: 0;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.svc-group-num {
  color: #8b4400; /* darkened from --gold #c9610a: 5.31:1 on white, WCAG AA */
  font-family: var(--font-display);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  margin-bottom: 10px;
}
.svc-group-header h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.038em;
}
.svc-group-desc { color: var(--muted); font-size: .96rem; line-height: 1.68; margin: 0; }

/* Service deliverables */
.deliverables-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.deliverable-item {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
}
.deliverable-item h4 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
}
.deliverable-item p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.56; }
.deliverable-item .di-tag {
  display: inline-block; margin-bottom: 8px;
  padding: 2px 8px; border-radius: 4px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-display); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}

/* Not statement band */
.not-statement {
  padding: 32px 36px;
  border-radius: var(--r-lg);
  background: var(--ink); color: var(--white);
  margin-bottom: 72px;
}
.not-statement h2, .not-statement h3 { /* h2 is correct semantic level on services page; h3 kept for other contexts */
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: .75rem; font-weight: 700; color: #f59e42; /* lightened from --gold for WCAG AA on --ink bg: 4.61:1 */
  letter-spacing: .05em; text-transform: uppercase;
}
.not-statement p { margin: 0; color: rgba(255,255,255,.6); font-size: .96rem; line-height: 1.68; max-width: 860px; }

/* ── ─────────────────── FOCUS PAGE ───────────────────────────── */

.focus-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.focus-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  transition: box-shadow .2s, border-color .2s;
}
.focus-card:hover {
  box-shadow: var(--sh-lg);
  border-color: rgba(30,95,168,.22);
}
.focus-card svg {
  width: 28px; height: 28px;
  color: var(--accent);
  margin-bottom: 18px;
}
.focus-card-num {
  font-family: var(--font-display);
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  color: #8b4400; /* darkened from --gold for WCAG AA on white: 5.31:1 */
  text-transform: uppercase; margin-bottom: 8px;
}
.focus-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700; letter-spacing: -.022em; line-height: 1.2;
}
.focus-card p { margin: 0 0 16px; color: var(--muted); font-size: .9rem; line-height: 1.65; }
.focus-tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.focus-tag {
  padding: 3px 9px; border-radius: 4px;
  border: 1px solid var(--line);
  font-family: var(--font-display); font-size: .65rem; font-weight: 600;
  letter-spacing: .04em; color: var(--muted);
}
.focus-crossover {
  padding: 36px;
  border: 1px solid rgba(30,95,168,.18);
  border-radius: var(--r-lg);
  background: var(--accent-soft);
  margin-top: 40px;
}
.focus-crossover h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
}
.focus-crossover p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── ────────────────── ABOUT PAGE ────────────────────────────── */

.about-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.about-intro-copy h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.04em;
}
.about-intro-copy p {
  color: var(--muted); font-size: .96rem; line-height: 1.7; margin: 0 0 16px;
}
.about-intro-copy p:last-child { margin-bottom: 0; }

/* Founder card - no photo */
.founder-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.founder-id {
  margin-bottom: 20px;
}
.founder-name {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700; letter-spacing: -.018em;
}
.founder-role { color: var(--muted); font-size: .85rem; margin-top: 3px; }
.founder-card p { margin: 0 0 14px; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.founder-card p:last-of-type { margin-bottom: 20px; }
.founder-tag-list { display: flex; flex-wrap: wrap; gap: 6px; }
.founder-tag {
  padding: 3px 10px; border-radius: 4px;
  border: 1px solid var(--line); background: var(--white);
  font-family: var(--font-display); font-size: .65rem; font-weight: 600;
  letter-spacing: .05em; color: var(--muted);
}

/* Values */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.value-item {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
}
.value-item h3, .value-item h4 { /* h3 promoted for heading order */
  margin: 0 0 10px; color: var(--white);
  font-family: var(--font-display); font-size: .95rem; font-weight: 700;
}
.value-item p { margin: 0; color: rgba(255,255,255,.45); font-size: .84rem; line-height: 1.6; }
.value-num {
  display: block; margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--font-display); font-size: .65rem; font-weight: 700; letter-spacing: .12em;
}

/* Tributary context */
.tributary-band {
  padding: 36px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(30,95,168,.18);
  background: var(--accent-soft);
}
.tributary-band h3 {
  margin: 0 0 10px; color: var(--ink);
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
}
.tributary-band p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── ─────────────────── CONTACT PAGE ─────────────────────────── */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
.contact-info h2 {
  margin: 0 0 20px; color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.04em;
}
.contact-info p { color: var(--muted); font-size: .96rem; line-height: 1.7; margin: 0 0 32px; }

.contact-links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.contact-link-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color .16s, box-shadow .16s;
  text-decoration: none; color: inherit;
}
.contact-link-item:hover {
  border-color: rgba(30,95,168,.3); box-shadow: var(--sh-sm);
}
.contact-link-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.cli-label { font-family: var(--font-display); font-size: .75rem; font-weight: 700; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.cli-value { color: var(--ink); font-size: .9rem; font-weight: 500; margin-top: 1px; }

.contact-ctas { display: flex; flex-direction: column; gap: 10px; }

/* Contact form */
.contact-form-wrap {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.contact-form-wrap h3 {
  margin: 0 0 24px; color: var(--ink);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label {
  color: var(--ink);
  font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .04em;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink); font-size: .9rem;
  transition: border-color .16s, box-shadow .16s;
  outline: none;
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,95,168,.1);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit { margin-top: 6px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  text-align: center; margin-top: 12px;
  font-size: .75rem; color: var(--muted);
}

/* Newsletter strip */
.newsletter-strip {
  padding: 40px;
  border-radius: var(--r-lg);
  background: var(--ink);
  margin-top: 32px;
}
.newsletter-strip h3 {
  margin: 0 0 6px; color: var(--white);
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
}
.newsletter-strip p { margin: 0 0 20px; color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.6; }
.newsletter-strip .newsletter-form { display: flex; gap: 10px; }
.newsletter-strip .newsletter-form input {
  flex: 1; padding: 11px 14px;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  color: var(--white); font-size: .9rem; outline: none;
}
.newsletter-strip .newsletter-form input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-strip .newsletter-form input:focus { border-color: rgba(30,95,168,.6); }

/* ── Responsive (inner pages) ────────────────────────────────── */
@media (max-width: 900px) {
  .svc-group-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 0; padding-bottom: 20px; }
  .deliverables-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .focus-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .deliverables-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .page-section { padding: 56px 0; }
  .page-hero { padding: 64px 0 56px; }
  .svc-group { margin-bottom: 48px; }
  .not-statement { padding: 24px 20px; margin-bottom: 48px; }
  .page-hero h1 { font-size: clamp(1.9rem, 7.5vw, 2.6rem); letter-spacing: -.02em; max-width: 100%; }
  .page-hero-sub { max-width: 100%; font-size: .94rem; }
  .page-hero-badge { white-space: normal; }
  .page-hero-ctas { flex-direction: column; }
  .page-hero-ctas .btn { width: 100%; justify-content: center; max-width: 100%; }
}

/* ── About - Full bio section ────────────────────────────────── */
.founder-full-bio {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.fbio-approach h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.fbio-approach p {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.72;
  margin: 0 0 16px;
}
.fbio-approach p:last-child { margin-bottom: 0; }

.fbio-foundation-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: var(--ink);
}
.fbio-foundation-card h3, .fbio-foundation-card h4 { /* h3 promoted; h4 kept for compat; white for contrast on --ink bg */
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.fbio-foundation-card p {
  color: rgba(255,255,255,.75); /* raised from .52 for WCAG AA on --ink bg */
  font-size: .88rem;
  line-height: 1.68;
  margin: 0 0 14px;
}


@media (max-width: 900px) {
  .founder-full-bio { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Newsletter ─────────────────────────────────────────────── */
.newsletter-section {
  background: var(--surface);
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.newsletter-copy h2 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.newsletter-copy p { color: var(--body); line-height: 1.7; margin: 0; }
.newsletter-form { display: flex; flex-direction: column; gap: 14px; }
.nf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nf-row input, .newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
}
.nf-row input:focus, .newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}
.nf-consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .85rem; color: var(--muted); line-height: 1.5;
  cursor: pointer;
}
.nf-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); }
.nf-consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.nf-note { font-size: .78rem; color: #4e5f70; margin: 0; } /* darkened from --subtle for WCAG AA */
.nf-success { padding: 14px 16px; background: var(--accent-soft); border-radius: var(--r-sm); color: var(--accent); font-size: .9rem; font-weight: 500; }
@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 36px; }
  .nf-row { grid-template-columns: 1fr; }
}

/* ── Focus card photos ───────────────────────────────────────── */
.focus-card-photo {
  position: relative;
  width: calc(100% + 64px);
  margin: -32px -32px 28px;
  height: 220px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.focus-card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s ease;
}
.focus-card:hover .focus-card-photo img {
  transform: scale(1.03);
}
.focus-card-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 20px 14px;
  background: linear-gradient(to top, rgba(13,27,46,.72) 0%, transparent 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}

/* ── Founder photo ───────────────────────────────────────────── */
.founder-photo-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.founder-photo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--line);
  flex-shrink: 0;
}

/* ── Role routing bar ────────────────────────────────────────── */
.role-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--header-h);
  z-index: 900;
}
.role-bar-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  flex-wrap: wrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.role-bar-inner::-webkit-scrollbar { display: none; }
.role-bar-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}
.role-bar-inner a {
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s, border-color .15s, color .15s;
  white-space: nowrap;
}
.role-bar-inner a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ── Service best-for badge ──────────────────────────────────── */
.svc-best-for {
  display: inline-block;
  margin: 10px 0 20px;
  padding: 7px 14px;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .8rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.45;
}

/* ── Advisory body ───────────────────────────────────────────── */
.advisory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.advisory-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .2s, border-color .2s;
}
.advisory-card:hover {
  box-shadow: var(--sh-md);
  border-color: #c4d5e8;
}
.advisory-specialty {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--ink); line-height: 1.25;
}
.advisory-desc {
  color: var(--body); font-size: .875rem; line-height: 1.7; margin: 0; flex: 1;
}
.advisory-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.advisory-tags span {
  padding: 4px 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: .72rem; font-weight: 600;
  color: var(--muted);
  letter-spacing: .04em;
}
.advisory-cta {
  align-self: flex-start;
  margin-top: 4px;
  font-size: .8rem;
}
.advisory-note {
  max-width: 700px;
  font-size: .8rem; color: #4e5f70; /* darkened from --subtle #8fa3b3 for WCAG AA on white */
  line-height: 1.7;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
@media (max-width: 768px) {
  .advisory-grid { grid-template-columns: 1fr; }
}

/* ── Service Group CTA Bar ── */
.svc-group-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  margin-bottom: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 600px) {
  .svc-group-cta {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
    padding: 16px 0;
  }
  .svc-group-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Deliverables Accordion ── */
.deliverables-accordion {
  margin-top: 0;
}

/* Outer toggle: "Deliverables  6 outputs  v" */
.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background .15s, border-color .15s;
}
.accordion-toggle:hover {
  background: var(--accent-soft);
  border-color: #c4d5e8;
}
.acc-count {
  margin-left: 4px;
  padding: 2px 8px;
  background: var(--accent-soft);
  border: 1px solid #c4d5e8;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .04em;
}
.acc-chevron {
  margin-left: auto;
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform .25s ease;
  flex-shrink: 0;
  position: relative;
  top: -2px;
}
.accordion-toggle[aria-expanded="true"] .acc-chevron {
  transform: rotate(-135deg);
  top: 2px;
}

/* Outer accordion body */
.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
  overflow: hidden;
}
.accordion-body.is-open {
  grid-template-rows: 1fr;
}
.accordion-body-inner {
  min-height: 0;
  overflow: hidden;
}

/* Individual output rows */
.acc-item {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.acc-item:first-child {
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.acc-item-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.acc-item-toggle:hover {
  background: var(--surface);
}
.acc-item-title {
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}
.acc-item-chevron {
  width: 12px;
  height: 12px;
  border-right: 1.8px solid var(--muted);
  border-bottom: 1.8px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
  position: relative;
  top: -2px;
}
.acc-item-toggle[aria-expanded="true"] .acc-item-chevron {
  transform: rotate(-135deg);
  top: 2px;
}
.acc-item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
  overflow: hidden;
}
.acc-item-body.is-open {
  grid-template-rows: 1fr;
}
.acc-item-body-inner {
  min-height: 0;
  overflow: hidden;
}
.acc-item-body-inner p {
  padding: 0 20px 16px 20px;
  margin: 0;
  font-size: .85rem;
  color: var(--body);
  line-height: 1.7;
}

@media (max-width: 520px) {
  .accordion-toggle,
  .acc-item-toggle {
    padding: 12px 14px;
  }
  .acc-item-body-inner p {
    padding: 0 14px 14px 14px;
  }
}

/* ── Role bar mobile ── */
@media (max-width: 600px) {
  .role-bar-inner {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .role-bar-label { display: none; }
  .role-bar-inner a { flex-shrink: 0; }
}

/* ── CLINICAL ABOUT PHOTO (about.html) ──────────────────── */
.clinical-about {
  background: var(--ink);
  overflow: hidden;
}
.clinical-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.clinical-about-image {
  overflow: hidden;
}
.clinical-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.82) contrast(1.05);
}
.clinical-about-copy {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  color: var(--white);
}
.clinical-about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--white);
  margin: 0;
}
.clinical-about-copy p {
  color: rgba(255,255,255,.78);
  font-size: .97rem;
  line-height: 1.72;
  margin: 0;
}
.clinical-about-copy .cc-eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #f59e42; /* lightened from --gold for WCAG AA on --ink dark bg: 4.61:1 */
}
.clinical-about-copy .cc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  margin-top: 8px;
  transition: color .2s;
}
.clinical-about-copy .cc-link svg {
  width: 16px; height: 16px;
}
.clinical-about-copy .cc-link:hover { color: var(--white); }
@media (max-width: 768px) {
  .clinical-about-inner {
    grid-template-columns: 1fr;
  }
  .clinical-about-image {
    height: 280px;
  }
  .clinical-about-copy {
    padding: 40px 24px;
  }
}

/* no-PHI form notice */
.form-privacy-note {
  font-size: .78rem;
  color: #4e5f70; /* darkened from #7a8fa6 for WCAG AA on --surface bg */
  line-height: 1.55;
  margin: 6px 0 0;
}
.form-privacy-note a {
  color: var(--accent);
  text-decoration: underline;
}
