/* ============================================================
   STONES · Chartered Accountants — Production stylesheet
   Diamond direction · B&W editorial system
   ============================================================ */

:root {
  --ink:        #0A0A0A;
  --ink-mid:    #2A2A2A;
  --paper:      #F4F1EA;
  --paper-soft: #ECE7DB;
  --paper-deep: #DED9CB;
  --grey-1:     #C4C0B5;
  --grey-2:     #8C8B86;
  --grey-3:     #58564F;
  --rule:       rgba(10,10,10,0.14);
  --rule-soft:  rgba(10,10,10,0.07);
  --rule-light: rgba(244,241,234,0.20);

  /* The Secretary — sister-practice accent */
  --gold-1:     #C9A227;
  --gold-2:     #E2BD3E;
  --gold-soft:  rgba(201,162,39,0.20);

  --f-display:  "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --f-sans:     "Geist", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --f-mono:     "JetBrains Mono", "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --m-out: clamp(20px, 4.5vw, 56px);
  --max-w: 1320px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--paper); }
body {
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--ink); color: var(--paper); }

/* Skip link for accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  z-index: 200;
}
.skip-link:focus { left: 8px; }

/* ---------- Typography utilities ---------- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.96;
}
.italic { font-style: italic; }
.serif-it { font-family: var(--f-display); font-style: italic; font-weight: 400; letter-spacing: -0.022em; }
.eyebrow {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-weight: 500;
}
.eyebrow--light { color: var(--grey-1); }
.label {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; }
.muted { color: var(--grey-3); }

/* ---------- Top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(244,241,234,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--m-out);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  height: 32px;
}
.nav__brand img { height: 32px; width: auto; }
.nav__links {
  display: none;
  gap: 32px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links a { color: var(--ink); position: relative; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -7px;
  border-bottom: 1px solid var(--ink);
}
.nav__cta {
  display: none;
  padding-left: 24px;
  border-left: 1px solid var(--ink);
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__cta:hover { color: var(--grey-3); }
.nav__burger {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: 8px;
  margin: -8px;
}
.nav__burger span {
  display: block; width: 22px; height: 1px; background: var(--ink);
}
@media (min-width: 980px) {
  .nav__links, .nav__cta { display: flex; align-items: center; }
  .nav__burger { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--paper);
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.7,.0,.2,1);
  display: flex; flex-direction: column;
}
.drawer[aria-hidden="false"] { transform: translateY(0); }
.drawer__top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px var(--m-out); border-bottom: 1px solid var(--ink);
}
.drawer__top img { height: 32px; }
.drawer__close { font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; }
.drawer__links {
  display: flex; flex-direction: column;
  padding: 32px var(--m-out);
  gap: 4px;
}
.drawer__links a {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 44px;
  letter-spacing: -0.025em;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.drawer__cta {
  margin: 32px var(--m-out) 40px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 28px;
  background: var(--ink); color: var(--paper);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  align-self: flex-start;
}

/* ---------- Layout primitives ---------- */
.section {
  padding: clamp(56px, 9vw, 120px) var(--m-out);
}
.section--dark {
  background: var(--ink); color: var(--paper);
}
.section--dark .eyebrow { color: var(--grey-1); }
.section--soft { background: var(--paper-soft); }
.section__inner { max-width: var(--max-w); margin: 0 auto; }

/* The Secretary — sister-practice section */
.section--secretary {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.section--secretary::before {
  content: "";
  position: absolute;
  top: clamp(28px, 4vw, 56px);
  right: clamp(20px, 4.5vw, 56px);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-1);
  z-index: 2;
}
.section--secretary .folio { border-bottom-color: var(--gold-1); }
.section--secretary .folio__no,
.section--secretary .folio__left span,
.section--secretary .folio__right span { color: var(--gold-1); }
.section--secretary .eyebrow { color: var(--gold-1); }
.ts-h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 124px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--paper);
}
.ts-h i { font-style: italic; color: var(--gold-1); }
.ts-body { color: var(--grey-1); font-size: 18px; line-height: 1.65; max-width: 50ch; }
.ts-body + .ts-body { margin-top: 14px; }
.ts-body strong {
  font-weight: 400;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold-1);
  font-size: 1.05em;
}
.ts-body a {
  color: var(--gold-1);
  border-bottom: 1px solid var(--gold-1);
  padding-bottom: 2px;
}
.ts-body a:hover { color: var(--gold-2); border-bottom-color: var(--gold-2); }

/* Service desk cards — dark ground with gold accent */
.ts-desk {
  border-left: 1px solid var(--gold-1);
  padding: 4px 0 4px 22px;
}
.ts-desk__eyebrow {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-1);
}
.ts-desk__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 32px);
  letter-spacing: -0.018em;
  color: var(--paper);
  margin-top: 6px;
  line-height: 1.05;
}
.ts-desk__title i { font-style: italic; color: var(--gold-1); }
.ts-desk__body {
  margin-top: 8px;
  color: var(--grey-1);
  font-size: 14px;
  line-height: 1.6;
}

/* Seal — ink ground with gold border and gold serif text */
.ts-seal {
  width: 132px; height: 132px;
  border-radius: 50%;
  border: 1px solid var(--gold-1);
  color: var(--gold-1);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--f-display);
  font-size: 24px; font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.01em;
  position: relative;
  flex-shrink: 0;
}
.ts-seal::before, .ts-seal::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 64%; height: 1px;
  background: var(--gold-1);
  opacity: 0.6;
}
.ts-seal::before { top: 22px; }
.ts-seal::after  { bottom: 22px; }
.ts-seal__top, .ts-seal__bot {
  position: absolute;
  left: 0; right: 0;
  font-family: var(--f-mono);
  font-size: 8.5px;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.ts-seal__top { top: 10px; }
.ts-seal__bot { bottom: 10px; }

/* Pako card eyebrow tint */
.person--affiliated .person__role { color: var(--gold-1) !important; }
.person--affiliated .person__plate::after { opacity: 0.04; }
.person--affiliated { border-color: var(--gold-soft); }

.folio {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid currentColor;
  padding-bottom: 12px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.folio__left, .folio__right { display: flex; gap: 22px; }
.folio__no { color: var(--grey-2); }
.section--dark .folio__no { color: var(--grey-1); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(48px, 8vw, 120px) var(--m-out) clamp(64px, 10vw, 120px);
  max-width: var(--max-w); margin: 0 auto;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: end;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.45fr 1fr; }
}
.hero__title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 11vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-top: 28px;
}
.hero__lede {
  max-width: 44ch;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--grey-3);
  margin-top: clamp(20px, 2.5vw, 32px);
}
.hero__cta-row {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero__plate {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.04) 0%, rgba(10,10,10,0.12) 100%),
    repeating-linear-gradient(135deg, #111 0 10px, #1a1a1a 10px 20px);
  border: 1px solid var(--rule-light);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__plate::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("../brand/stones-mark-paper.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
  opacity: 0.06;
  pointer-events: none;
}
.hero__plate-cap {
  position: relative; z-index: 2;
  background: var(--paper); color: var(--ink);
  padding: 6px 10px; margin: 14px;
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: 0.20em; text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 16px 26px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn--solid {
  background: var(--ink); color: var(--paper);
}
.btn--solid:hover { background: var(--grey-3); border-color: var(--grey-3); }
.btn--ghost {
  background: transparent; color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--light {
  background: var(--paper); color: var(--ink); border-color: var(--paper);
}
.btn--light:hover { background: transparent; color: var(--paper); }
.btn--outline-light {
  background: transparent; color: var(--paper); border-color: var(--paper);
}
.btn--outline-light:hover { background: var(--paper); color: var(--ink); }
.btn--gold {
  background: var(--gold-1); color: var(--ink); border-color: var(--gold-1);
}
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); }
.btn--outline-gold {
  background: transparent; color: var(--gold-1); border-color: var(--gold-1);
}
.btn--outline-gold:hover { background: var(--gold-1); color: var(--ink); }

/* ---------- Pillars row ---------- */
.pillars {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.4vw, 32px);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  background: var(--paper);
  transition: background .35s ease;
}
.pillar:hover { background: var(--paper-soft); }
@media (min-width: 1080px) { .pillar:nth-child(4n) { border-right: 0; } }
@media (min-width: 720px) and (max-width: 1079px) { .pillar:nth-child(2n) { border-right: 0; } }
@media (max-width: 719px) { .pillar { border-right: 0; } }
.pillar h3 {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3vw, 36px);
  margin-top: 12px;
  letter-spacing: -0.022em;
}
.pillar p {
  font-size: 14.5px;
  color: var(--grey-3);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 32ch;
}
.pillar__more {
  margin-top: 22px;
  display: inline-block;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

/* ---------- Manifest ---------- */
.manifest {
  display: grid; grid-template-columns: 1fr; gap: 40px;
}
@media (min-width: 900px) { .manifest { grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 96px); } }
.manifest__h {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.manifest__h i { font-style: italic; }
.manifest__body p { color: var(--grey-3); font-size: 17px; line-height: 1.65; max-width: 50ch; }
.manifest__body p + p { margin-top: 16px; }

/* ---------- Pull quote ---------- */
.pullquote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 22ch;
}
.pullquote__attr {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.section--dark .pullquote__attr { color: var(--grey-1); }

/* ---------- Notes / editorial list ---------- */
.notes {
  border-top: 1px solid currentColor;
}
.note-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: clamp(20px, 2.5vw, 28px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: padding-left .3s ease;
}
.section--dark .note-row { border-bottom-color: var(--rule-light); }
.note-row:hover { padding-left: 8px; }
.note-row__n {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--grey-2);
}
.section--dark .note-row__n { color: var(--grey-1); }
.note-row__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 24px;
}
@media (min-width: 720px) {
  .note-row__body { grid-template-columns: 1fr 180px 100px; align-items: baseline; }
}
.note-row__t {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.022em;
  line-height: 1.1;
}
.note-row__meta, .note-row__date {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.section--dark .note-row__meta, .section--dark .note-row__date { color: var(--grey-1); }
.note-row__date { text-align: left; }
@media (min-width: 720px) { .note-row__date { text-align: right; } }

/* ---------- Office cards ---------- */
.offices {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 720px) { .offices { grid-template-columns: 1fr 1fr; } }
.office {
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.office__plate {
  aspect-ratio: 16/9;
  background: repeating-linear-gradient(135deg, #111 0 10px, #1a1a1a 10px 20px);
  border: 1px solid var(--rule-light);
  margin: -8px 0 8px;
  position: relative;
  overflow: hidden;
}
.office__plate::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("../brand/stones-mark-paper.png");
  background-repeat: no-repeat; background-position: center; background-size: 35%;
  opacity: 0.07;
}
.office h3 {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.022em;
}
.office address {
  font-style: normal; font-size: 14.5px; color: var(--grey-3); line-height: 1.6;
}
.office__meta {
  display: grid; grid-template-columns: 1fr; gap: 6px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink);
  padding-top: 16px;
  border-top: 1px dotted var(--rule);
}
.office__meta div { display: flex; justify-content: space-between; gap: 16px; }
.office__meta span:first-child { color: var(--grey-2); }

/* ---------- Big CTA band ---------- */
.cta-band {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: end;
}
@media (min-width: 900px) { .cta-band { grid-template-columns: 1.4fr 1fr; gap: 48px; } }
.cta-band h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.cta-band h2 i { font-style: italic; }
.cta-band p { color: var(--grey-1); font-size: 17px; line-height: 1.6; max-width: 36ch; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 7vw, 88px) var(--m-out) 40px;
}
.footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand img { height: 36px; width: auto; }
.footer__blurb {
  margin-top: 22px;
  font-size: 14px;
  color: var(--grey-1);
  line-height: 1.65;
  max-width: 32ch;
}
.footer__sister {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dotted var(--rule-light);
  display: flex; flex-direction: column;
  gap: 8px;
  max-width: 32ch;
}
.footer__sister-eyebrow {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-1);
}
.footer__sister-link {
  font-family: var(--f-display); font-size: 17px;
  color: var(--paper);
  border-bottom: 1px solid var(--gold-1);
  padding-bottom: 3px;
  display: inline-block;
  width: max-content;
}
.footer__sister-link em { color: var(--gold-1); font-style: italic; }
.footer__sister-link:hover { color: var(--gold-2); }
.footer h4 {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--grey-1);
  font-weight: 500;
  margin-bottom: 14px;
}
.footer ul li { font-size: 13.5px; line-height: 2; color: var(--paper); }
.footer ul li a:hover { color: var(--grey-1); }
.footer__bar {
  max-width: var(--max-w); margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule-light);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-1);
}

/* ---------- Page intro (sub-pages) ---------- */
.page-intro {
  padding: clamp(56px, 8vw, 120px) var(--m-out) clamp(48px, 6vw, 80px);
  max-width: var(--max-w); margin: 0 auto;
}
.page-intro__head {
  display: grid; gap: 28px;
}
.page-intro__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  max-width: 14ch;
}
.page-intro__title i { font-style: italic; }
.page-intro__lede {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  max-width: 40ch;
  color: var(--ink);
  margin-top: 8px;
}

/* ---------- Numbered list ---------- */
.num-list {
  border-top: 1px solid var(--ink);
}
.num-list > li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--rule);
}
.num-list > li > .n {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--grey-2);
  padding-top: 6px;
}
.num-list > li > .body {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .num-list > li > .body { grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
}
.num-list h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.num-list p {
  color: var(--grey-3);
  font-size: 16px;
  line-height: 1.65;
  max-width: 48ch;
}
.num-list ul {
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.num-list ul li {
  padding: 8px 0;
  border-bottom: 1px dotted var(--rule);
  display: flex; justify-content: space-between; gap: 24px;
}
.num-list ul li span:first-child { color: var(--grey-2); text-transform: uppercase; letter-spacing: 0.18em; font-size: 10.5px; }

/* ---------- Team rows (associates below partners) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 32px);
}
@media (min-width: 1280px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px);
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper);
  border: 1px solid var(--rule);
  align-items: start;
}
@media (min-width: 600px) {
  .team-row { grid-template-columns: 180px 1fr; gap: clamp(24px, 3.5vw, 40px); }
}
.team-row__plate {
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, #111 0 10px, #1a1a1a 10px 20px);
  border: 1px solid var(--rule-light);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.team-row__plate::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("../brand/stones-mark-paper.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 45%;
  opacity: 0.07;
  pointer-events: none;
}
.team-row__cap {
  position: relative; z-index: 2;
  background: var(--paper); color: var(--ink);
  padding: 5px 9px; margin: 12px;
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: 0.20em; text-transform: uppercase;
}
.team-row__name {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 32px);
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin-top: 8px;
}
.team-row__cred {
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.team-row__bio {
  margin-top: 16px;
  font-size: 14.5px;
  color: var(--grey-3);
  line-height: 1.65;
}

/* ---------- People grid ---------- */
.people-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 720px)  { .people-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .people-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1320px) { .people-grid { grid-template-columns: repeat(5, 1fr); gap: 22px; } }
.person {
  border: 1px solid var(--rule);
  background: var(--paper);
  display: flex; flex-direction: column;
}
.person__plate {
  aspect-ratio: 4/5;
  background: repeating-linear-gradient(135deg, #111 0 10px, #1a1a1a 10px 20px);
  position: relative; overflow: hidden;
}
.person__plate::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("../brand/stones-mark-paper.png");
  background-repeat: no-repeat; background-position: center; background-size: 35%;
  opacity: 0.08;
}
.person__plate-cap {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--paper); color: var(--ink);
  padding: 5px 9px;
  font-family: var(--f-mono); font-size: 9.5px;
  letter-spacing: 0.20em; text-transform: uppercase;
}
.person__body { padding: 24px; }
.person__name {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 30px; letter-spacing: -0.022em; line-height: 1.05;
}
.person__role {
  margin-top: 6px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--grey-2);
}
.person__bio { margin-top: 16px; font-size: 14px; color: var(--grey-3); line-height: 1.6; }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 56px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.2fr 1fr; gap: 88px; } }
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 10px 0 12px;
  color: var(--ink);
  border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-bottom-color: var(--ink);
  box-shadow: 0 1px 0 0 var(--ink);
}
.field textarea { resize: vertical; min-height: 120px; }
.form__submit { justify-self: flex-start; margin-top: 8px; }

.contact-aside {
  border-left: 1px solid var(--rule);
  padding-left: clamp(20px, 3vw, 40px);
}
@media (max-width: 899px) { .contact-aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); padding-top: 32px; } }
.contact-aside h4 {
  font-family: var(--f-mono); font-size: 10.5px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--grey-2); margin-bottom: 12px;
}
.contact-aside p { font-size: 15px; line-height: 1.7; color: var(--ink); }
.contact-aside p + h4 { margin-top: 28px; }

/* ---------- Cells (used in deep pages) ---------- */
.cells {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 720px)  { .cells { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .cells--3 { grid-template-columns: repeat(3, 1fr); } }
.cell {
  background: var(--paper-soft);
  border: 1px solid var(--rule);
  padding: clamp(22px, 2.5vw, 32px);
  display: flex; flex-direction: column; gap: 12px;
}
.cell--ink { background: var(--ink); color: var(--paper); border-color: var(--rule-light); }
.cell h3 {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -0.022em;
}
.cell p { color: var(--grey-3); font-size: 15px; line-height: 1.6; }
.cell--ink p { color: var(--grey-1); }

/* ---------- Two-column read ---------- */
.read {
  max-width: 64ch;
  margin: 0 auto;
}
.read p { font-size: 17.5px; line-height: 1.7; color: var(--ink); }
.read p + p { margin-top: 18px; }
.read p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding: 4px 12px 0 0;
  color: var(--ink);
}

/* ---------- Rule ---------- */
.rule { border: 0; border-top: 1px solid var(--ink); width: 100%; margin: 0; }
.rule--soft { border-top-color: var(--rule); }
.rule--light { border-top-color: var(--paper); opacity: 0.5; }

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .drawer, .footer { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 0 !important; }
}
