/* ==========================================================================
   Licking County Bar Association — shared stylesheet
   Hand-authored, framework-free. Navy/white brand, Raleway + Roboto.
   ========================================================================== */

/* ----- Design tokens ----------------------------------------------------- */
:root {
  --navy:        #002e4f;   /* brand primary */
  --navy-600:    #004170;   /* hover / borders */
  --navy-800:    #00253f;   /* deep panels */
  --navy-900:    #001b2e;   /* copyright bar */
  --red:         #c8102e;   /* logo red — sparing accent */
  --blue:        #0046a8;   /* logo blue / pay button */
  --maroon:      #7d1d1d;   /* deadline / warning text */

  --ink:         #16212e;   /* body text */
  --muted:       #56657a;   /* secondary text */
  --line:        #e3e8ef;   /* hairlines */
  --bg:          #ffffff;
  --bg-alt:      #f3f6fa;   /* tinted section */

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --radius: 3px;
  --shadow-sm: 0 1px 3px rgba(16, 33, 51, .08), 0 1px 2px rgba(16, 33, 51, .06);
  --shadow-md: 0 6px 24px rgba(0, 46, 79, .12);
  --shadow-lg: 0 18px 50px rgba(0, 25, 46, .28);

  --ff-head: "Raleway", "Segoe UI", system-ui, sans-serif;
  --ff-body: "Roboto", "Segoe UI", system-ui, -apple-system, sans-serif;

  --header-h: 76px;
}

/* ----- Reset / base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--navy);
  font-weight: 700;
  text-wrap: balance;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--navy-600); }
a:hover { color: var(--red); }

img { max-width: 100%; height: auto; display: block; }

ul { margin: 0 0 1em; padding-left: 1.25em; }

/* Visible focus for keyboard users (WCAG 2.4.7) */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ----- Layout helpers ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(48px, 8vw, 104px); }
.section--alt { background: var(--bg-alt); }

.eyebrow {
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--red);
  margin: 0 0 .75rem;
}

.lead { font-size: 1.16rem; color: var(--muted); }

/* visually-hidden but available to screen readers */
.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;
}

/* ----- Skip link (accessible, replaces broken <font> markup) ------------- */
.skip-link {
  position: absolute;
  left: 50%; top: 8px;
  transform: translate(-50%, -200%);
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--ff-head);
  font-weight: 600;
  text-decoration: none;
  transition: transform .18s ease;
}
.skip-link:focus { transform: translate(-50%, 0); color: #fff; }

/* ----- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.1;
  padding: 14px 26px;
  min-height: 48px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--primary:hover { background: var(--navy-600); border-color: var(--navy-600); color: #fff; }

.btn--ghost { background: rgba(0, 46, 79, .28); color: #fff; border-color: #fff; backdrop-filter: blur(2px); }
.btn--ghost:hover { background: var(--navy); color: #fff; border-color: #fff; }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }

.btn--pay { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--pay:hover { background: #00347f; border-color: #00347f; color: #fff; }

.btn--outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
/* header spans full width so the long nav has room; content sections stay capped */
.site-header > .container { max-width: none; }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { width: 184px; height: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .015em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 9px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background-color .18s, color .18s;
}
.nav__link:hover { background: var(--navy); color: #fff; }
.nav__link[aria-current="page"] {
  color: var(--red);
  box-shadow: inset 0 -3px 0 var(--red);
  border-radius: 0;
}
.nav__link[aria-current="page"]:hover { color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 24px; height: 2px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 12px var(--gutter) 22px;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    font-size: 1rem;
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav__link[aria-current="page"] { box-shadow: inset 4px 0 0 var(--red); }
}

/* ==========================================================================
   Hero (home) + interior page headers
   ========================================================================== */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  background: var(--navy);
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,20,36,.62), rgba(0,28,48,.52) 55%, rgba(0,30,52,.72));
}
.hero__inner { padding-block: clamp(96px, 20vh, 220px) clamp(120px, 18vh, 230px); max-width: 760px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: .35em;
  text-shadow: 0 2px 22px rgba(0,0,0,.35);
}
.hero p {
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-family: var(--ff-head);
  font-weight: 500;
  max-width: 36ch;
  margin-bottom: 1.8em;
  color: #eaf1f8;
}

/* angled SVG divider that sits at the bottom of dark sections */
.angle-divider { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 1; pointer-events: none; }
.angle-divider svg { display: block; width: 100%; height: 56px; }
.angle-divider--bottom { bottom: -1px; }
.angle-divider--bottom svg { transform: scaleY(-1); }
.angle-divider--top { top: -1px; }
.angle-divider .fill { fill: var(--navy); }
.angle-divider--alt .fill { fill: var(--bg-alt); }
.angle-divider--white .fill { fill: #fff; }

/* interior page header (shorter hero) */
.page-head {
  position: relative;
  color: #fff;
  background: var(--navy);
  isolation: isolate;
}
.page-head__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.page-head__media img { width: 100%; height: 100%; object-fit: cover; }
.page-head::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,20,36,.74), rgba(0,30,52,.8));
}
.page-head__inner { padding-block: clamp(64px, 12vh, 128px) clamp(80px, 13vh, 150px); }
.page-head h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: .25em; }
.page-head p { color: #dce6f0; font-family: var(--ff-head); font-weight: 500; font-size: 1.1rem; margin: 0; }
.breadcrumb { font-size: .85rem; margin-bottom: 1.1rem; color: #b9c9d8; }
.breadcrumb a { color: #dce6f0; text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb span[aria-current] { color: #fff; }

/* ==========================================================================
   About card (home)
   ========================================================================== */
.about {
  position: relative;
  background: #e7eaef url("../images/about-bg.png") center/cover no-repeat;
  isolation: isolate;
}
.about__inner { padding-block: clamp(72px, 11vw, 140px); display: flex; min-height: 520px; align-items: center; }
.about__card {
  background: rgba(0, 38, 66, .92);
  color: #fff;
  max-width: 560px;
  padding: clamp(32px, 4vw, 54px);
  box-shadow: var(--shadow-lg);
}
.about__card h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.9rem); }
.about__card p { color: #e7eef5; }
.about__card .btn { margin-top: 1.6rem; }

/* ==========================================================================
   Generic content cards (resources, officers, etc.)
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 26px;
}
/* fixed 4-up that steps down to a 2x2, then a single column */
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .card-grid--4 { grid-template-columns: 1fr; } }
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card h3 { font-size: 1.18rem; letter-spacing: .01em; }
.card__eyebrow { font-family: var(--ff-head); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; color: var(--red); margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .97rem; }
.card__link { margin-top: auto; padding-top: 16px; font-family: var(--ff-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; font-size: .82rem; }
.card__link a { color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: .4em; }
.card__link a:hover { color: var(--red); }
.card__link a::after { content: "\2192"; transition: transform .2s ease; }
.card__link a:hover::after { transform: translateX(4px); }

/* officer cards (name + role + address + phone) */
.officer { border-top: 4px solid var(--navy); }
.officer h3 { margin-bottom: .15em; }
.officer__role { font-family: var(--ff-head); font-weight: 600; color: var(--red); margin-bottom: 1rem; font-size: .95rem; }
.officer address { font-style: normal; color: var(--muted); font-size: .96rem; margin-bottom: .8rem; white-space: pre-line; }
.officer a[href^="tel"] { font-weight: 600; color: var(--navy); text-decoration: none; display: inline-flex; align-items: center; gap: .45em; }
.officer a[href^="tel"]:hover { color: var(--red); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: #fff; }
.site-footer a { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 48px;
  padding-block: clamp(44px, 6vw, 72px);
  border-top: 3px solid var(--navy-600);
}
.site-footer h2 { color: #fff; font-size: 1.5rem; margin-bottom: .6rem; }
.site-footer p { color: #cddae6; font-size: .96rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-links a {
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.footer-links a::after {
  content: ""; display: block; width: 0; height: 2px; background: #fff;
  transition: width .25s ease;
}
.footer-links a:hover::after { width: 100%; }
.footer-cta { align-self: start; }
.footer-bottom {
  background: var(--navy-900);
  text-align: center;
  padding-block: 22px;
}
.footer-bottom p { color: #b9c9d8; font-size: .9rem; margin: 0; line-height: 1.9; }
.footer-bottom a { color: #fff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .brand img { width: 188px; }
}

/* scroll reveal (progressive enhancement; styles apply only when JS adds .js) */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   Directory (listing + search)
   ========================================================================== */
.directory-tools {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.search { position: relative; flex: 1 1 340px; max-width: 480px; }
.search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.search input {
  width: 100%; font: inherit; font-size: 1rem;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink);
}
.search input::placeholder { color: #94a1b2; }
.search input:focus-visible { outline: 3px solid var(--blue); outline-offset: 1px; border-color: var(--navy); }
.directory-meta { font-size: .95rem; color: var(--muted); margin: 0 0 26px; }

.member-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .member-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .member-grid { grid-template-columns: 1fr; } }
.member-card {
  display: flex; gap: 15px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow-sm);
  text-decoration: none; color: inherit;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.member-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #cdd8e4; }
.member-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.avatar {
  flex: none; width: 62px; height: 62px; border-radius: 50%;
  object-fit: cover; background: #eef1f5; border: 2px solid #e7ecf2;
}
.member-card__text { display: flex; flex-direction: column; min-width: 0; }
.member-card__name { font-family: var(--ff-head); font-weight: 700; color: var(--navy); font-size: 1.04rem; line-height: 1.2; margin: 0 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.member-card__role { font-size: .84rem; color: var(--muted); margin: 0; }
.member-card__go { margin-left: auto; color: var(--muted); font-weight: 700; transition: color .2s, transform .2s; }
.member-card:hover .member-card__go { color: var(--navy); transform: translateX(3px); }
#directory-empty { padding: 48px 0; color: var(--muted); font-size: 1.05rem; }

/* ==========================================================================
   Member profile
   ========================================================================== */
.profile { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; }
.profile__aside {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 30px; text-align: center;
  position: sticky; top: calc(var(--header-h) + 16px);
}
.profile__photo {
  width: 184px; height: 184px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 18px; background: #eef1f5; border: 4px solid #eef1f5;
}
.profile__name { font-size: 1.4rem; margin: 0 0 4px; }
.profile__role { color: var(--muted); font-family: var(--ff-head); font-weight: 600; margin: 0; }
.profile__body h2 { font-size: 1.4rem; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; max-width: 560px; }
.contact-row { display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: start; }
.contact-row .ci { color: var(--navy); margin-top: 1px; }
.contact-row .ci svg { width: 22px; height: 22px; display: block; }
.contact-row .cc { display: flex; flex-direction: column; min-width: 0; }
.contact-list .label { font-family: var(--ff-head); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; font-size: .72rem; color: var(--muted); margin-bottom: 2px; }
.contact-list .value { font-size: 1.05rem; color: var(--ink); }
.contact-list a { color: var(--navy-600); text-decoration: none; word-break: break-word; }
.contact-list a:hover { color: var(--navy); text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: .4em; margin-top: 24px; font-family: var(--ff-head); font-weight: 600; color: var(--navy); text-decoration: none; }
.back-link:hover { color: var(--navy-600); }
@media (max-width: 760px) {
  .profile { grid-template-columns: 1fr; gap: 30px; }
  .profile__aside { position: static; }
}

/* ==========================================================================
   Accordion (Judges & Magistrates)
   ========================================================================== */
.accordion { display: grid; gap: 14px; }
.accordion__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); overflow: hidden; }
.accordion__trigger {
  width: 100%; text-align: left; cursor: pointer; border: 0;
  background: var(--navy); color: #fff;
  padding: 18px 22px; font-family: var(--ff-head); font-weight: 700; font-size: 1.06rem;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.accordion__trigger:hover { background: var(--navy-600); }
.accordion__trigger .chev { width: 11px; height: 11px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); transition: transform .25s ease; flex: none; margin-right: 4px; }
.accordion__trigger[aria-expanded="true"] .chev { transform: rotate(-135deg); }
.accordion__panel { padding: 24px 22px; }
.judge-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.judge { display: flex; gap: 14px; align-items: center; }
.judge .avatar { width: 58px; height: 58px; }
.judge__name { font-family: var(--ff-head); font-weight: 700; color: var(--navy); margin: 0; font-size: 1.02rem; line-height: 1.2; }
.judge__title { color: var(--muted); font-size: .85rem; margin: 3px 0 6px; }
.judge__links { display: flex; flex-wrap: wrap; gap: 4px 14px; }
.judge__links a { font-size: .82rem; color: var(--navy-600); text-decoration: none; }
.judge__links a:hover { color: var(--red); text-decoration: underline; }

/* ==========================================================================
   Prose / content blocks (Resources, Scholarship, Membership, legal pages)
   ========================================================================== */
.prose { max-width: 760px; }
.prose > h2 { margin-top: 1.7em; }
.prose > h2:first-child { margin-top: 0; }
.prose ul { padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.notice {
  border-left: 4px solid var(--maroon); background: #fbf3f3; color: #5e1b1b;
  padding: 18px 22px; border-radius: var(--radius); margin: 26px 0; font-weight: 500; line-height: 1.6;
}
.levels { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 12px; max-width: 640px; }
.levels li {
  display: flex; justify-content: space-between; gap: 20px; align-items: baseline;
  padding: 16px 22px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.levels .price { font-family: var(--ff-head); font-weight: 800; color: var(--navy); font-size: 1.25rem; white-space: nowrap; }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 18px; max-width: 760px; }
.steps li { position: relative; padding-left: 54px; padding-top: 3px; min-height: 36px; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff; font-family: var(--ff-head); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.pay-box { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: sticky; top: calc(var(--header-h) + 16px); }
.pay-box h3 { margin-top: 0; }
.pay-box .btn { width: 100%; margin-bottom: 12px; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 30px; } .pay-box { position: static; } }

/* ==========================================================================
   Profile extras (firm, bio, practice-area tags)
   ========================================================================== */
.profile__firm { color: var(--muted); font-size: .95rem; margin: 8px 0 0; }
.profile__body > h2 { font-size: 1.4rem; margin: 1.7em 0 .6em; }
.profile__body > h2:first-child { margin-top: 0; }
.bio { color: var(--ink); max-width: 62ch; }
.tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.tag { background: var(--bg-alt); border: 1px solid var(--line); color: var(--navy); font-family: var(--ff-head); font-weight: 600; font-size: .82rem; padding: 6px 13px; border-radius: 999px; }
