/* PMT Group — content pages (services, partners, markets hub).
   Builds on site.css tokens. No hero, no globe: these are reading pages.
   The homepage does not load this file. */

.page {
  padding: calc(var(--nav-h) + 56px) var(--pad-x) 0;
  max-width: 1320px; margin: 0 auto;
}
.page-inner { max-width: 760px; }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: 13px; color: var(--mute); margin-bottom: 22px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.crumbs li::after { content: "/"; margin-left: 6px; color: var(--faint); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--mute); }
.crumbs a:hover { color: var(--teal-deep); }
.crumbs [aria-current] { color: var(--ink); }

/* ---------- Page head ---------- */
.page h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px); line-height: 1.1; letter-spacing: -0.022em;
  color: var(--ink); margin-bottom: 24px; max-width: 16ch;
  max-width: min(100%, 20ch);
}
/* The opening paragraph is written to be quotable — give it presence without
   turning it into marketing display type. */
.lede { font-size: clamp(17px, 1.7vw, 20px); line-height: 1.6; color: var(--body-text); margin-bottom: 8px; }

/* ---------- Prose ---------- */
.prose { padding-bottom: 20px; }
.prose h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.2; letter-spacing: -0.015em;
  color: var(--ink); margin: 52px 0 16px;
}
.prose h3 {
  font-family: var(--display); font-weight: 700; font-size: 17px;
  color: var(--ink); margin: 30px 0 10px;
}
.prose p { font-size: 16.5px; line-height: 1.7; color: var(--body-text); margin-bottom: 18px; }
.prose ul { margin: 0 0 20px; padding-left: 0; list-style: none; }
.prose ul li {
  position: relative; padding-left: 22px; margin-bottom: 11px;
  font-size: 16.5px; line-height: 1.65; color: var(--body-text);
}
.prose ul li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
}
.prose strong { font-weight: 600; color: var(--ink); }
.prose a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--teal); }
.prose hr { border: 0; border-top: 1px solid var(--hairline); margin: 44px 0; }

/* ---------- Market list on /markets/ ---------- */
.mkt-group { margin-bottom: 30px; }
.mkt-group h3 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute); margin: 0 0 12px; font-family: var(--sans);
}
.mkt-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--hairline); }
.mkt-list li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px;
  padding: 13px 2px; border-bottom: 1px solid var(--hairline);
}
.mkt-name { font-weight: 600; color: var(--ink); font-size: 16px; min-width: 168px; }
.mkt-code { font-size: 12.5px; color: var(--mute); letter-spacing: 0.05em; min-width: 82px; }
.mkt-air { font-size: 13.5px; color: var(--mute); }
.mkt-note { flex-basis: 100%; font-size: 14px; color: var(--mute); }

/* ---------- Service / partner card grid ---------- */
.tiles { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 8px 0 12px; }
@media (max-width: 620px) { .tiles { grid-template-columns: 1fr; } }
.tile {
  display: block; padding: 22px 22px 20px;
  border: 1px solid var(--hairline); border-radius: 16px; background: var(--surface-card);
  transition: border-color 0.2s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.tile:hover {
  border-color: var(--ink); transform: translateY(-2px);
  box-shadow: 0 14px 30px -20px rgba(0, 0, 0, 0.35);
}
/* Tiles sit inside .prose, so they inherit its underlined link styling.
   They are whole-card links, not inline links — strip it back off. */
.prose a.tile { text-decoration: none; }
.tile h3 {
  font-family: var(--display); font-weight: 700; font-size: 18px;
  color: var(--ink); margin: 0 0 8px; display: flex; align-items: center; gap: 8px;
}
.tile h3 svg { flex: none; color: var(--teal-deep); transition: transform 0.25s var(--ease-out); }
.tile:hover h3 svg { transform: translateX(3px); }
.tile p { font-size: 14.5px; line-height: 1.6; color: var(--mute); margin: 0; }
@media (prefers-reduced-motion: reduce) {
  .tile, .tile h3 svg { transition: none; }
  .tile:hover { transform: none; }
}

/* ---------- Related links ---------- */
.related { border-top: 1px solid var(--hairline); padding: 26px 0 0; margin-top: 44px; }
.related h2 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute); margin: 0 0 14px; font-family: var(--sans);
}
.related ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.related a { font-size: 15.5px; color: var(--mute); }
.related a:hover { color: var(--teal-deep); }

/* ---------- Closing CTA ---------- */
.page-cta {
  margin: 56px 0 0; padding: 34px 32px;
  border: 1px solid var(--hairline); border-radius: 20px; background: var(--canvas-soft);
}
.page-cta h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2.2vw, 26px);
  color: var(--ink); margin: 0 0 8px; letter-spacing: -0.015em;
}
.page-cta p { font-size: 15.5px; color: var(--mute); margin: 0 0 20px; max-width: 52ch; }
@media (max-width: 620px) { .page-cta { padding: 26px 22px; } }

/* Content pages end at the footer — give the last block room to breathe. */
.page-foot-space { height: clamp(64px, 9vw, 104px); }

/* ============================================================
   MARKETS — display type, soft surfaces, dark statement panel
   ============================================================ */

/* Scroll reveals: the observer lives in site.js on every page, but the CSS
   shipped only with the homepage. Content pages get the same entrance. */
.sreveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.sreveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .sreveal { transition: none; opacity: 1; transform: none; } }

/* Wider canvas: this page is a data page, not a reading column. */
.page.page-wide .page-inner { max-width: 1120px; }

.page-eyebrow {
  display: inline-flex; align-items: center; gap: 13px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 30px;
}
.page-eyebrow svg { flex: none; color: var(--teal); overflow: visible; }
.page-eyebrow .node { animation: beacon 2.8s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .page-eyebrow .node { animation: none; } }

/* Display-scale head, same voice as the hero */
.page-wide h1 {
  font-size: clamp(38px, 5vw, 62px); line-height: 1.06; letter-spacing: -0.025em;
  max-width: 17ch; margin-bottom: 28px;
}
.page-wide h1 em { font-style: normal; color: var(--teal-deep); }
.page-wide .lede { max-width: 58ch; font-size: clamp(17px, 1.8vw, 21px); color: var(--mute); }

/* ---------- Stat row: big numbers, hairline separators, no boxes ---------- */
.statrow {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px); margin: 64px 0 12px;
}
.statrow div { border-left: 2px solid var(--hairline); padding-left: clamp(14px, 1.6vw, 22px); }
.statrow div:first-child { border-left-color: var(--teal); }
.statrow .n {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 4.6vw, 62px); line-height: 1; letter-spacing: -0.035em;
  color: var(--ink); display: block;
}
.statrow .n em { font-style: normal; color: var(--teal-deep); }
.statrow .l { display: block; margin-top: 10px; font-size: 13.5px; color: var(--mute); line-height: 1.45; }
@media (max-width: 760px) {
  .statrow { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 18px; }
}

/* ---------- Two-column editorial band ---------- */
.band { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 5vw, 72px); margin: clamp(64px, 9vw, 104px) 0 0; }
.band h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12; letter-spacing: -0.022em; color: var(--ink); margin: 0; max-width: 14ch;
}
.band > p { font-size: 16.5px; line-height: 1.7; color: var(--body-text); margin: 0; align-self: end; max-width: 46ch; }
.band p { font-size: 16.5px; line-height: 1.7; color: var(--body-text); margin: 0 0 16px; }
.band div p:last-child { margin-bottom: 0; }
.band a { text-decoration: underline; text-underline-offset: 3px; }
/* Band used as a heading for the block below it, not as a standalone section. */
.band-head { margin-bottom: 0; align-items: baseline; }
@media (max-width: 860px) { .band { grid-template-columns: 1fr; gap: 18px; } .band > p { align-self: start; } }

/* ---------- Office hub cards: photo cards with group hover-reveal ----------
   Vanilla translation of the shadcn HoverRevealCards pattern: hovering the grid
   de-emphasises every card (scale down, dim, blur); the hovered or focused card
   overrides that and lifts. Each card carries its city photo via --hub-img. */
.hubs, .scards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 36px; }
@media (max-width: 860px) { .hubs, .scards { grid-template-columns: 1fr; } }

.hub, .scard {
  position: relative; overflow: hidden;
  background-color: #14181b; /* readable fallback while (or if) the photo loads */
  background-image: var(--hub-img); background-size: cover; background-position: center;
  border-radius: 24px; padding: 28px 28px 14px;
  display: flex; flex-direction: column; justify-content: flex-end; min-height: 310px;
  cursor: pointer; box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s var(--ease-out), opacity 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
}
/* gradient overlay for text contrast, bottom-heavy like the component */
.hub::before, .scard::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,0,0,0.82), rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.12));
}
.hub > *, .scard > * { position: relative; }

/* the group effect */
.hubs:hover .hub, .scards:hover .scard { transform: scale(0.97); opacity: 0.6; filter: blur(2px); }
.hubs .hub:hover,
.hubs .hub:focus-visible,
.scards .scard:hover,
.scards .scard:focus-visible {
  transform: scale(1.03); opacity: 1; filter: none; z-index: 2;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.65);
}
.hub:focus-visible, .scard:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  .hub, .scard { transition: none; }
  .hubs:hover .hub, .hubs .hub:hover, .hubs .hub:focus-visible,
  .scards:hover .scard, .scards .scard:hover, .scards .scard:focus-visible { transform: none; filter: none; opacity: 1; }
}
.hub.is-hq { grid-column: 1 / -1; }

/* Card content: badge floats top-right, everything else anchors to the
   bottom of the photo like the source component — subtitle over title,
   then one compact line per market. No boxes, no pills, no notes. */
.hub-tag, .scard-num {
  position: absolute; top: 20px; right: 20px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); background: #fff;
  padding: 5px 11px; border-radius: 999px;
}
.hub-meta {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75); margin-bottom: 6px;
}
.hub-city {
  margin: 0 0 14px;
  font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.018em; color: #fff; line-height: 1.05;
}
.hub-markets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.hub.is-hq .hub-markets { flex-direction: row; flex-wrap: wrap; gap: 7px 36px; }
.hub-markets li { display: flex; align-items: baseline; gap: 9px; }
.m-country { font-weight: 600; font-size: 15.5px; color: #fff; line-height: 1.35; }
.m-codes { font-size: 13px; font-weight: 500; letter-spacing: 0.07em; color: rgba(255, 255, 255, 0.66); font-variant-numeric: tabular-nums; }
.m-only { font-size: 12.5px; font-weight: 600; color: var(--teal-bright); white-space: nowrap; }

/* ---------- Dark statement panel: the page's one big moment ---------- */
.closer {
  margin-top: clamp(72px, 10vw, 120px);
  background: var(--canvas-dark); color: var(--on-dark);
  border-radius: 28px; padding: clamp(44px, 6vw, 80px) clamp(28px, 5vw, 72px);
  position: relative; overflow: hidden;
}
.closer h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 4.6vw, 58px); line-height: 1.08; letter-spacing: -0.028em;
  color: #fff; margin: 0 0 20px; max-width: 16ch;
}
.closer h2 em { font-style: normal; color: var(--teal-bright); }
.closer p { font-size: clamp(16px, 1.7vw, 18.5px); line-height: 1.7; color: var(--on-dark-mute); max-width: 56ch; margin: 0 0 32px; }
.closer .btn { background: #fff; color: var(--ink); }
.closer .btn:hover { background: var(--canvas-soft); transform: translateY(-2px); box-shadow: none; }
/* faint contrail echo in the corner */
.closer svg.contrail {
  position: absolute; right: -30px; bottom: -20px; width: clamp(200px, 30vw, 380px); height: auto;
  color: var(--teal-bright); opacity: 0.14; pointer-events: none;
}

/* ---------- Service cards (same hover-reveal, link variant) ---------- */
.scards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 40px 0 0; }
/* Restated after the shared rule above, which this block would otherwise win against. */
@media (max-width: 860px) { .scards { grid-template-columns: 1fr; } }
.scard { text-decoration: none; min-height: 300px; }
.scard-num { color: var(--ink); background: #fff; }
.scard-kicker {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75); margin-bottom: 6px;
}
.scard-title {
  margin: 0 0 10px;
  font-family: var(--display); font-weight: 700; font-size: clamp(23px, 2.3vw, 29px);
  letter-spacing: -0.018em; color: #fff; line-height: 1.08;
  display: flex; align-items: center; gap: 10px;
}
.scard-title svg { flex: none; transition: transform 0.4s var(--ease-out); }
.scard:hover .scard-title svg { transform: translateX(4px); }
@media (prefers-reduced-motion: reduce) { .scard-title svg { transition: none; } }
.scard p { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.82); max-width: 40ch; }

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */

/* Banner carries the same photo as the card that linked here, so arriving on
   the page feels continuous with the grid you clicked from. */
.page-banner {
  margin: 44px 0 0; border-radius: 24px; overflow: hidden;
  background: var(--canvas-soft);
}
.page-banner img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 16 / 6; object-fit: cover;
}
@media (max-width: 620px) { .page-banner img { aspect-ratio: 16 / 9; } }

/* Numbered kicker pairing the page with its card on /services/ */
.page-eyebrow .idx {
  font-variant-numeric: tabular-nums; color: var(--teal-deep);
}

/* Checklist — replaces a plain bulleted list where the copy is a set of
   discrete capabilities rather than prose. */
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--hairline); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.checklist li {
  background: var(--canvas); padding: 16px 2px 16px 34px; position: relative;
  font-size: 16.5px; line-height: 1.6; color: var(--body-text);
}
.checklist li::before {
  content: ""; position: absolute; left: 4px; top: 23px;
  width: 15px; height: 8px; border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal); transform: rotate(-45deg);
}
.checklist strong { font-weight: 600; color: var(--ink); }

/* Sibling service navigation at the foot of a detail page */
.sibnav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 40px; }
@media (max-width: 760px) { .sibnav { grid-template-columns: 1fr; } }
.sibnav a {
  display: block; padding: 20px 22px; border: 1px solid var(--hairline);
  border-radius: 16px; text-decoration: none;
  transition: border-color 0.2s, transform 0.25s var(--ease-out);
}
.sibnav a:hover { border-color: var(--ink); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .sibnav a { transition: none; } .sibnav a:hover { transform: none; } }
.sibnav .k {
  display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--mute); margin-bottom: 7px;
}
.sibnav .t {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: 17px; color: var(--ink);
}
.sibnav .t svg { flex: none; color: var(--teal-deep); transition: transform 0.25s var(--ease-out); }
.sibnav a:hover .t svg { transform: translateX(3px); }

/* ============================================================
   PARTNER PAGES
   ============================================================ */

.partner-mark {
  display: flex; align-items: center; gap: 16px; margin-bottom: 26px;
  padding-bottom: 22px; border-bottom: 1px solid var(--hairline);
}
.partner-mark img { display: block; width: auto; }
.partner-mark img.fz { height: 26px; }
.partner-mark img.ek { height: 40px; }
.partner-mark .role {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute); border-left: 1px solid var(--hairline); padding-left: 16px;
}

/* Market coverage cards — the count of tiles IS the claim, so it reads at a
   glance rather than as a comma list buried in a paragraph. Separate cards
   rather than a seamless grid, so it doesn't read as a table. */
.mgrid {
  list-style: none; margin: 30px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
}
@media (max-width: 900px) { .mgrid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 620px) { .mgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.mgrid li {
  background: var(--surface-card); border: 1px solid var(--hairline);
  border-radius: 14px; padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.2s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.mgrid li:hover {
  border-color: var(--hairline-strong); transform: translateY(-2px);
  box-shadow: 0 14px 30px -22px rgba(0, 0, 0, 0.4);
}
@media (prefers-reduced-motion: reduce) {
  .mgrid li { transition: none; }
  .mgrid li:hover { transform: none; }
}
.mgrid .c {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  color: var(--ink); line-height: 1.25; letter-spacing: -0.01em;
}
.mgrid .a { display: flex; gap: 5px; flex-wrap: wrap; margin-top: auto; }
.mgrid .a span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; color: var(--mute);
  background: var(--canvas-soft); border-radius: 6px; padding: 3px 7px;
  font-variant-numeric: tabular-nums;
}
.mgrid .o {
  font-size: 12px; color: var(--mute); letter-spacing: 0.02em;
  padding-top: 10px; border-top: 1px solid var(--hairline);
}
.mgrid .o b { font-weight: 600; color: var(--ink); }

/* Baseline alignment pins a 56px numeral to the FIRST line of a wrapping
   label, leaving it floating near the top of the block. Centre it instead. */
.mcount { display: flex; align-items: center; gap: 18px; margin-top: 34px; }
.mcount .big {
  flex: none;
  font-family: var(--display); font-weight: 800; font-size: clamp(38px, 4.4vw, 56px);
  line-height: 1; letter-spacing: -0.035em; color: var(--teal-deep);
}
.mcount .lbl { max-width: 40ch; }
.mcount .lbl b {
  display: block; font-weight: 600; font-size: 16px; color: var(--ink); line-height: 1.35;
}
.mcount .lbl i {
  display: block; font-style: normal; margin-top: 3px;
  font-size: 14.5px; color: var(--mute); line-height: 1.45;
}

/* Unfilled placeholder from the copy deck — deliberately conspicuous so it
   cannot ship unnoticed. Remove the wrapper once a real value is in. */
.tbd { border-bottom: 1px dashed var(--stone); color: var(--mute); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Leadership pull quote — a single attributed line, with the full statement
   still living on the homepage. */
.pullquote { margin: 26px 0 0; padding-left: 22px; border-left: 2px solid var(--teal); }
.pullquote blockquote {
  margin: 0; font-family: var(--display); font-weight: 700;
  font-size: clamp(20px, 2.2vw, 27px); line-height: 1.28; letter-spacing: -0.018em;
  color: var(--ink); max-width: 24ch;
}
.pullquote figcaption { margin-top: 14px; font-size: 14.5px; color: var(--mute); line-height: 1.5; }
.pullquote figcaption b { display: block; font-weight: 600; color: var(--ink); font-size: 15px; }

/* ---------- Executive team: portrait with an overlapping bio card ----------
   Two side by side, spanning the full content width. Photo and card share one
   grid row and overlap by 15% of the column, so the row height is whichever is
   taller and neither can spill out. The photo is the larger of the two. */
.bios { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 3vw, 40px); margin-top: clamp(34px, 4vw, 52px); }

.bio { display: grid; grid-template-columns: repeat(20, 1fr); align-items: center; }
.bio-shot {
  grid-column: 1 / 13; grid-row: 1;          /* 60% of the column */
  border-radius: 22px; overflow: hidden; background: var(--canvas-soft);
}
.bio-shot img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }

.bio-card {
  grid-column: 10 / 21; grid-row: 1; z-index: 1;   /* 55%, overlapping by 15% */
  background: #fff; border-radius: 18px; padding: clamp(20px, 1.8vw, 26px);
  box-shadow: 0 30px 70px -34px rgba(0, 0, 0, 0.34), 0 2px 10px -5px rgba(0, 0, 0, 0.08);
}
.bio-name {
  margin: 0; font-family: var(--display); font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.15; letter-spacing: -0.018em; color: var(--ink);
}
.bio-role {
  display: block; margin-top: 6px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--teal-deep);
}
.bio-text { margin: 14px 0 0; font-size: 14px; line-height: 1.55; color: var(--body-text); }

.bio-social { display: flex; gap: 9px; list-style: none; margin: 16px 0 0; padding: 0; }
.bio-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--ink); color: #fff; transition: background 0.2s, transform 0.2s var(--ease-out);
}
.bio-social a svg { width: 17px; height: 17px; }
.bio-social a:hover { background: var(--teal-deep); transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .bio-social a { transition: none; } .bio-social a:hover { transform: none; } }

/* One bio per row — the pair no longer fits side by side legibly. */
@media (max-width: 1040px) {
  .bios { grid-template-columns: 1fr; gap: clamp(40px, 6vw, 64px); }
  .bio-name { font-size: clamp(23px, 2.4vw, 30px); }
  .bio-role { font-size: 14px; }
  .bio-text { font-size: 16px; line-height: 1.65; }
  .bio-card { padding: clamp(28px, 3vw, 40px); }
  .bio-social a { width: 46px; height: 46px; }
  .bio-social a svg { width: 19px; height: 19px; }
}
/* Stack: the card lifts over the base of the photo. */
@media (max-width: 680px) {
  .bio { grid-template-columns: 1fr; }
  .bio-shot { grid-column: 1; grid-row: 1; max-width: 460px; }
  .bio-card { grid-column: 1; grid-row: 2; margin: -52px 13px 0; }
}
