/* ============================================================
   Bellfield Partners — styles.css
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Brand blues — anchored to #1c2c44 */
  --navy-900: #111e2e;
  --navy-800: #1c2c44;
  --navy-700: #24395a;
  --navy-600: #2d4570;

  --ivory:      #f4efe3;
  --ivory-warm: #ede5d4;
  --ivory-deep: #e5dac6;

  --ink:        #1a1a1a;
  --ink-dim:    rgba(26,26,26,0.66);
  --ink-muted:  rgba(26,26,26,0.48);

  /* Brand gold — anchored to #ebaa2d */
  --amber:      #ebaa2d;
  --amber-deep: #c2891a;
  --amber-light: #f4c76a;

  --cream:      #f2ecdf;
  --cream-dim:  rgba(242,236,223,0.72);
  --cream-muted:rgba(242,236,223,0.50);

  --hairline-dark:        rgba(242,236,223,0.13);
  --hairline-strong-dark: rgba(242,236,223,0.24);
  --hairline-light:       rgba(26,26,26,0.12);
  --hairline-strong-light:rgba(26,26,26,0.25);

  --sans:  "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Newsreader", "Times New Roman", serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ---------- Base ---------- */
body {
  font-family: var(--sans);
  background: var(--navy-800);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
}

/* ---------- Layout ---------- */
.shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 56px;
}

/* ---------- Section surfaces ---------- */
.sec-dark      { background: var(--navy-800); color: var(--cream); }
.sec-light     { background: var(--ivory);    color: var(--ink);   }
.sec-ivory-deep{ background: var(--ivory-deep); color: var(--ink); }

section.block  { padding: 140px 0; position: relative; }


/* ---------- Italic accent ---------- */
.ital {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: -0.015em;
}
.sec-light .ital,
.sec-ivory-deep .ital { color: var(--amber-deep); }

/* ---------- Display headings ---------- */
h1.display,
h2.display {
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
}
h1.display { font-size: clamp(48px, 7.4vw, 108px); }
h2.display { font-size: clamp(38px,  5vw,  72px);  }
h1.display .ital,
h2.display .ital { font-weight: 400; letter-spacing: -0.02em; }

/* ---------- Sub copy ---------- */
.sub {
  font-size: 17px;
  line-height: 1.55;
  max-width: 58ch;
  color: var(--cream-dim);
}
.sec-light .sub,
.sec-ivory-deep .sub { color: var(--ink-dim); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--amber);
  color: #1a1205;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.btn-primary:hover  { background: var(--amber-light); transform: translate(-1px,-1px); }
.btn-primary:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  color: var(--cream);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hairline-strong-dark);
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }

/* Ghost button variant for light section backgrounds */
.sec-light .btn-ghost,
.sec-ivory-deep .btn-ghost {
  color: var(--ink);
  border-bottom-color: var(--hairline-strong-light);
}
.sec-light .btn-ghost:hover,
.sec-ivory-deep .btn-ghost:hover { border-color: var(--amber-deep); color: var(--amber-deep); }

/* Contact section on light background */
.sec-light .contact-copy p            { color: var(--ink); }
.sec-light .contact-direct            { color: var(--ink-muted); }
.sec-light .contact-direct b          { color: var(--ink); }
.sec-light .contact-direct a:hover    { color: var(--ink); }
.sec-light .form-field                { border-bottom-color: var(--hairline-light); }
.sec-light .form-field:nth-child(odd) { border-right-color: var(--hairline-light); }
.sec-light .form-field label          { color: var(--ink-muted); }
.sec-light .form-field input,
.sec-light .form-field textarea       { color: var(--ink); }
.sec-light .form-field input::placeholder,
.sec-light .form-field textarea::placeholder { color: var(--ink-muted); }
.sec-light .form-field:focus-within   { background: rgba(26,26,26,0.03); }
.sec-light .form-note                 { color: var(--ink-muted); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--navy-800) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--hairline-dark); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}

.nav-logo img { height: 28px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream-dim);
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] { color: var(--cream); }
.nav-links a.active::after,
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
}

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  text-transform: uppercase;
  border: 1px solid var(--hairline-strong-dark);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: rgba(242,236,223,0.06); border-color: var(--cream-dim); }
.nav-cta .dot  { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; flex-shrink: 0; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: transform .25s, opacity .2s;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-900);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 56px 56px;
  gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--cream-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-dark);
  width: 100%;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--cream); }
.nav-mobile .nav-mobile-cta {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 14px 20px;
  display: inline-block;
  transition: background .2s;
}
.nav-mobile .nav-mobile-cta:hover { background: var(--amber); color: #1a1205; }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--amber);
  color: #1a1205;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  z-index: 200;
}
.skip-link:focus { left: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 120px 0 0;
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgba(28,44,68,0.72) 0%, rgba(28,44,68,0.42) 100%),
    url('../assets/images/rva_bridge.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.hero .eyebrow    { margin-top: 80px; margin-bottom: 44px; }
.hero-head        { max-width: 18ch; }
.hero-sub {
  margin-top: 44px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream-dim);
  max-width: 54ch;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* Stat strip */
.hero-stats {
  margin-top: 120px;
  border-top: 1px solid var(--hairline-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-stat {
  padding: 56px 48px;
  border-left: 1px solid var(--hairline-dark);
}
.hero-stat:first-child { border-left: none; padding-left: 0; }
.hero-stat-num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(52px, 6.6vw, 92px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
}
.hero-stat-num .plus {
  color: var(--amber);
  font-size: 0.55em;
  vertical-align: super;
  margin-left: -2px;
}
.hero-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--cream-muted);
  margin-top: 18px;
  text-transform: uppercase;
}

/* ============================================================
   OUR STORY
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
}
.story-head { margin-bottom: 44px; }
.story-copy p {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin: 0 0 26px;
  color: var(--ink);
  max-width: 34ch;
}
.story-copy p.sm {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 44ch;
}
.story-pillars        { display: flex; flex-direction: column; gap: 44px; padding-top: clamp(88px, calc(5.1vw + 44px), 118px); }
.pillar               { display: grid; grid-template-columns: 56px 1fr; gap: 28px; align-items: start; padding-bottom: 36px; border-bottom: 1px solid var(--hairline-light); }
.pillar:last-child    { border-bottom: none; padding-bottom: 0; }
.pillar .num {
  font-weight: 300;
  font-size: 28px;
  color: var(--amber-deep);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pillar h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--ink);
  font-weight: 500;
}
.pillar p {
  margin: 0;
  font-size: 15px;
  line-height: 1.58;
  color: var(--ink-dim);
  max-width: 46ch;
}
.pillar em { font-style: italic; font-family: var(--serif); color: var(--ink); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
}
.service {
  padding: 44px 40px 48px;
  border-bottom: 1px solid var(--hairline-dark);
  border-right: 1px solid var(--hairline-dark);
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: background .3s;
}
.service:hover      { background: rgba(242,236,223,0.025); }
.service .num {
  font-weight: 300;
  font-size: 64px;
  color: var(--cream-muted);
  line-height: 0.8;
  letter-spacing: -0.04em;
  margin-bottom: 56px;
  transition: color .3s;
}
.service:hover .num { color: var(--amber); }
.service h3 {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  max-width: 14ch;
}
.service p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--cream-dim);
  margin: 0;
  max-width: 38ch;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
  margin-bottom: 80px;
}
.process-intro p {
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink-dim);
  margin: 0;
  max-width: 42ch;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--hairline-light);
  padding-top: 56px;
}
.step .roman {
  width: 44px; height: 44px;
  border: 1px solid var(--amber-deep);
  border-radius: 50%;
  color: var(--amber-deep);
  font-size: 14px;
  letter-spacing: 0.05em;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
}
.step h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.022em;
  margin: 0 0 18px;
  color: var(--ink);
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
  max-width: 36ch;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.philosophy-left h2 { max-width: 14ch; }
.philosophy-tenet-list { margin-top: 48px; }
.tenet {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline-dark);
  align-items: start;
}
.tenet:last-child { border-bottom: none; }
.tenet .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 10px;
}
.tenet b {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  display: block;
}
.tenet .tenet-body {
  margin-top: 6px;
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: var(--cream-dim);
  max-width: 44ch;
}
.philosophy-quote {
  border-left: 1px solid var(--hairline-dark);
  padding: 20px 0 20px 56px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.philosophy-quote .mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 88px;
  line-height: 0.6;
  color: var(--amber);
  margin-bottom: 24px;
  opacity: 0.8;
  user-select: none;
}
.philosophy-quote blockquote {
  font-weight: 300;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0 0 36px;
  max-width: 24ch;
}
.philosophy-quote blockquote em {
  color: var(--amber);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.philosophy-quote cite {
  font-family: var(--mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--cream-muted);
  text-transform: uppercase;
}

/* ============================================================
   ENGAGEMENTS
   ============================================================ */
.eng-head     { margin-bottom: 64px; }
.eng-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top:  1px solid var(--hairline-light);
  border-left: 1px solid var(--hairline-light);
}
.eng-card {
  padding: 44px 44px 48px;
  border-right:  1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  transition: background .25s;
}
.eng-card:hover   { background: rgba(26,26,26,0.025); }
.eng-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 22px;
}
.eng-card h3 {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink);
}
.eng-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
  max-width: 48ch;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-head  { margin-bottom: 72px; }
.team-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }

.bio-photo {
  aspect-ratio: 3 / 4;
  background: var(--ivory-deep);
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
}
/* Placeholder hatch — hidden once real image loads */
.bio-photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(26,26,26,0.06) 14px 15px);
  z-index: 0;
}
.bio-photo-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  z-index: 1;
}
.bio-headshot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 2;
  transition: opacity .3s;
}
.bio-headshot.errored { display: none; }

.bio-name {
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}
.bio-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 20px;
}
.bio-desc { font-size: 13px; line-height: 1.62; color: var(--ink-dim); max-width: 42ch; text-align: justify; }
.bio-email {
  margin-top: 18px;
  font-size: 12px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  display: inline-block;
  border-bottom: 1px solid var(--hairline-light);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.bio-email:hover        { color: var(--amber-deep); border-color: var(--amber-deep); }
.bio-email:focus-visible{ outline: 2px solid var(--amber-deep); outline-offset: 2px; }

/* Clickable bio cards */
a.bio {
  cursor: pointer;
  max-width: 420px;
  padding: 32px 64px 36px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s;
}
a.bio:hover {
  background-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}
a.bio:focus-visible { outline: 2px solid var(--amber-deep); outline-offset: 6px; }
.bio-cue {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  transition: letter-spacing 0.25s;
}
a.bio:hover .bio-cue { letter-spacing: 0.22em; }

/* Bio modal */
.bio-modal {
  padding: 0;
  border: none;
  max-width: 820px;
  width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(17,30,46,0.32);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.bio-modal::backdrop {
  background: rgba(17,30,46,0.55);
  backdrop-filter: blur(4px);
}
.bio-modal-inner {
  position: relative;
  padding: 56px 56px 56px;
}
.bio-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--ink-muted);
  cursor: pointer;
  transition: color 0.2s;
}
.bio-modal-close:hover { color: var(--ink); }
.bio-modal-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 36px;
}
.bio-modal-photo-col {
  padding-right: 36px;
}
.bio-modal-headshot {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.bio-modal-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 36px;
  border-left: 1px solid var(--hairline-strong-light);
}
.bio-modal-name {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.1;
}
.bio-modal-role {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin: 0 0 16px;
}
.bio-modal-contact { }
.bio-modal-email {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--amber-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.bio-modal-email:hover { border-color: var(--amber-deep); }
.bio-modal-linkedin {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.bio-modal-linkedin:hover { color: var(--ink); border-color: var(--ink-dim); }
.bio-modal-body p {
  font-size: 15px;
  line-height: 1.74;
  color: var(--ink-dim);
  margin: 0 0 18px;
}
.bio-modal-body p:last-child { margin-bottom: 0; }

/* Advisory Board */
.advisors-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.advisor .bio-photo-round {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--ivory-deep);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.advisor .bio-photo-round::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 10px, rgba(26,26,26,0.06) 10px 11px);
}
.advisor-name {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.advisor-role {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 14px;
  line-height: 1.4;
}
.advisor p { font-size: 12px; line-height: 1.55; color: var(--ink-dim); margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
  margin-top: 64px;
}
.contact-copy p {
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  max-width: 38ch;
  color: var(--cream);
}
.contact-direct {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  line-height: 2.2;
}
.contact-direct b   { color: var(--cream); font-weight: 500; display: block; margin-top: 16px; }
.contact-direct a   { color: var(--amber); transition: color .2s; }
.contact-direct a:hover { color: var(--cream); }

/* Contact form */
.contact-form        { display: flex; flex-direction: column; gap: 0; }
.form-row            { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.form-field          { display: flex; flex-direction: column; border-bottom: 1px solid var(--hairline-dark); }
.form-field:nth-child(odd)  { border-right: 1px solid var(--hairline-dark); }
.form-field label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 18px 20px 0;
}
.form-field label .req { color: var(--amber); margin-left: 2px; }
.form-field input,
.form-field textarea,
.form-field select {
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  padding: 8px 20px 18px;
  outline: none;
  transition: background .2s;
  resize: none;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--cream-muted); }
.form-field:focus-within { background: rgba(242,236,223,0.04); }
.form-field.full-width   { grid-column: 1 / -1; border-right: none; }

.form-field .field-error {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #e87070;
  padding: 0 20px 12px;
  display: none;
}
.form-field.has-error .field-error { display: block; }
.form-field.has-error { border-color: rgba(232,112,112,0.4); }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 0;
  flex-wrap: wrap;
}
.form-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--cream-muted);
  text-transform: uppercase;
}
.form-status {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: none;
}
.form-status.visible { display: block; }
.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer.foot {
  background: var(--navy-900);
  padding: 60px 0 36px;
  border-top: 1px solid var(--hairline-dark);
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.foot-brand img    { height: 24px; width: auto; }
.foot-disclosure {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
  line-height: 1.7;
  text-align: right;
}

/* ============================================================
   RESPONSIVE — Tablet (≤1080px)
   ============================================================ */
@media (max-width: 1080px) {
  .shell { padding: 0 40px; }

  .nav-links,
  .nav-cta   { display: none; }
  .nav-burger{ display: flex; }

  .services-grid,
  .process-steps,
  .team-grid         { grid-template-columns: 1fr 1fr; }

  .advisors-grid     { grid-template-columns: repeat(3, 1fr); }

  .story-grid,
  .process-grid,
  .philosophy-grid,
  .contact-layout    { grid-template-columns: 1fr; gap: 56px; }

  .services-head     { grid-template-columns: 1fr; gap: 24px; }

  .hero-stats        { grid-template-columns: 1fr; }
  .hero-stat {
    border-left: none;
    border-top: 1px solid var(--hairline-dark);
    padding: 32px 0;
  }
  .hero-stat:first-child { border-top: none; }

  .eng-grid          { grid-template-columns: 1fr; }

  .philosophy-quote  { border-left: none; padding-left: 0; }
  .form-row          { grid-template-columns: 1fr; }
  .form-field:nth-child(odd) { border-right: none; }

}

/* ============================================================
   RESPONSIVE — Mobile (≤700px)
   ============================================================ */
@media (max-width: 700px) {
  .shell      { padding: 0 24px; }
  section.block { padding: 80px 0; }
  .hero       { padding: 48px 0 0; }

  .hero .eyebrow  { margin-top: 40px; margin-bottom: 28px; }
  .hero-stats { margin-top: 72px; }
  .hero-stat  { padding: 28px 0; }

  .services-grid,
  .team-grid  { grid-template-columns: 1fr; }
  .advisors-grid { grid-template-columns: 1fr 1fr; }

  .foot-inner { flex-direction: column; align-items: flex-start; }
  .foot-disclosure { text-align: left; }

  .nav-mobile { padding: 100px 24px 48px; }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: 148px 0 108px;
  border-bottom: 1px solid var(--hairline-dark);
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgba(28,44,68,0.72) 0%, rgba(28,44,68,0.42) 100%),
    url('../assets/images/rva_bridge.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: sticky;
  top: 0;
  z-index: 1;
}

/* All content after the sticky hero scrolls over it */
.page-hero + section {
  border-radius: 16px 16px 0 0;
}
.page-hero ~ section,
.page-hero ~ div,
footer.foot {
  position: relative;
  z-index: 2;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.page-hero h1.display {
  font-size: clamp(48px, 7vw, 96px);
  max-width: 18ch;
}
.page-hero-right {
  padding-bottom: 6px;
}
.page-hero-sub {
  font-size: 18px;
  line-height: 1.62;
  color: var(--cream-dim);
  max-width: 42ch;
  margin-top: 0;
}

/* ---------- Page hero entry animation ---------- */
.page-hero h1.display {
  animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.page-hero-sub {
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.30s both;
}

/* ============================================================
   SECTION CTA
   ============================================================ */
.section-cta {
  padding: 120px 0;
  border-top: 1px solid var(--hairline-dark);
}
.section-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.section-cta h2.display { max-width: 14ch; }
.section-cta-sub {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-dim);
  max-width: 42ch;
}
.section-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

/* ============================================================
   ENGAGEMENT MODAL (uses <dialog> element)
   ============================================================ */
dialog.eng-modal {
  background: var(--ivory);
  color: var(--ink);
  border: none;
  padding: 0;
  max-width: 680px;
  width: calc(100% - 48px);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
dialog.eng-modal::backdrop {
  background: rgba(13,20,40,0.84);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
dialog.eng-modal[open] {
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-top {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 20px 24px 0;
  background: var(--ivory);
  z-index: 1;
}
.modal-close-btn {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--hairline-strong-light);
  background: transparent;
  color: var(--ink-dim);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  font-family: var(--sans);
  transition: background .2s, color .2s, border-color .2s;
}
.modal-close-btn:hover { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.modal-inner { padding: 8px 56px 56px; }
.modal-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline-light);
}
.modal-company {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 32px;
  color: var(--ink);
}
.modal-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  margin-bottom: 32px;
}
.modal-meta-item label {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.modal-meta-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.modal-description { /* kept for legacy; new pages use .modal-company-desc / .modal-deal-desc */
  font-size: 15px;
  line-height: 1.68;
  color: var(--ink-dim);
  margin-bottom: 32px;
}
.modal-highlights { border-top: 1px solid var(--hairline-light); padding-top: 24px; }
.modal-highlights h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.modal-highlights-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.modal-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.58;
  color: var(--ink-dim);
}
.modal-highlights-list li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber-deep);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ============================================================
   CARD INTERACTIVE
   ============================================================ */
.eng-card[data-id]  { cursor: pointer; }
.eng-card:focus-visible { outline: 2px solid var(--amber); outline-offset: -2px; }
.card-cue {
  display: block;
  margin-top: auto;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  transition: color .2s, letter-spacing .2s;
}
.eng-card:hover .card-cue,
.eng-card:focus-visible .card-cue { color: var(--amber); letter-spacing: 0.2em; }

/* ============================================================
   HOME — ENGAGEMENTS PREVIEW LINK
   ============================================================ */
.eng-view-all {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ============================================================
   NEWS & INSIGHTS
   ============================================================ */
.insights-index { border-top: 1px solid var(--hairline-light); }

.insights-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}

/* Vertical stack of horizontal cards */
.insights-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline-light);
}

.insight-card {
  position: relative;
  border-bottom: 1px solid var(--hairline-light);
  overflow: hidden;
}

/* Amber left-edge reveal on hover */
.insight-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--amber);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.insight-card:hover::before { transform: scaleY(1); }

/* Horizontal card layout */
.insight-card a {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: stretch;
  min-height: 172px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.insight-card a:hover     { background: rgba(255,255,255,0.65); }
.insight-card a:focus-visible {
  outline: 2px solid var(--amber-deep);
  outline-offset: -2px;
}

/* Left panel — thumbnail / category placeholder */
.insight-thumb-ph {
  background: var(--ivory-deep);
  background-image: repeating-linear-gradient(135deg, transparent 0 10px, rgba(26,26,26,0.05) 10px 11px);
  border-right: 1px solid var(--hairline-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s;
}
.insight-card:hover .insight-thumb-ph { background-color: var(--ivory-warm); }
.insight-thumb-ph span {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Right panel — content */
.insight-card-body {
  padding: 32px 48px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.insight-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.insight-meta span { color: var(--amber-deep); }
.insight-meta time::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hairline-strong-light);
  margin: 0 14px 2px 0;
}
.insight-card h3 {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 12px;
  max-width: 60ch;
}
.insight-card p {
  color: var(--ink-dim);
  font-size: 13.5px;
  line-height: 1.62;
  margin: 0;
  max-width: 72ch;
}
.insight-card .card-cue {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  transition: letter-spacing 0.25s;
}
.insight-card:hover .card-cue { letter-spacing: 0.22em; }

/* ============================================================
   ARTICLE TEMPLATE
   ============================================================ */
.article-page {
  padding-top: 116px;
}
.article-shell {
  max-width: 920px;
}
.article-hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--hairline-light);
}
.article-back {
  display: inline-flex;
  margin-bottom: 48px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--hairline-strong-light);
  padding-bottom: 8px;
  transition: color .2s, border-color .2s;
}
.article-back:hover {
  color: var(--amber-deep);
  border-color: var(--amber-deep);
}
.article-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.article-kicker span {
  color: var(--amber-deep);
}
.article-kicker time::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--hairline-strong-light);
  margin: 0 16px 2px 0;
}
.article-hero h1.display {
  font-size: clamp(44px, 6.4vw, 82px);
  max-width: 13ch;
}
.article-dek {
  margin: 32px 0 0;
  max-width: 58ch;
  font-size: 20px;
  line-height: 1.58;
  color: var(--ink-dim);
}
.article-byline {
  margin-top: 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.article-body {
  padding: 72px 0 104px;
  font-size: 17px;
  line-height: 1.78;
  color: var(--ink-dim);
}
.article-body .lead {
  font-size: 21px;
  line-height: 1.62;
  color: var(--ink);
  margin-top: 0;
}
.article-body h2 {
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.14;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  margin: 56px 0 18px;
}
.article-body p {
  margin: 0 0 22px;
}
.article-body ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-body li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.article-body li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber-deep);
  flex: 0 0 auto;
  margin-top: 12px;
}
.article-callout {
  margin: 48px 0;
  padding: 32px;
  border-left: 3px solid var(--amber-deep);
  background: var(--ivory-warm);
}
.article-callout h3 {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
}
.article-callout p {
  margin: 0;
  font-size: 18px;
  line-height: 1.58;
  color: var(--ink);
}
.article-disclaimer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-light);
  font-size: 12px;
  line-height: 1.65;
  color: var(--ink-muted);
}
.article-related {
  padding-top: 96px;
}

/* ============================================================
   SERVICES — LIGHT SECTION VARIANT (What We Do page)
   ============================================================ */
#services { padding-bottom: 72px; }
#process  { padding-top: 72px; }
.sec-light .services-grid { border-color: var(--hairline-light); }
.sec-light .service { border-color: var(--hairline-light); }
.sec-light .service       { border-right-color: var(--hairline-light); }
.sec-light .service:hover { background: rgba(26,26,26,0.03); }
.sec-light .service h3    { color: var(--ink); }
.sec-light .service p     { color: var(--ink-dim); }
.sec-light .service .num  { color: rgba(26,26,26,0.09); }
.sec-light .service:hover .num { color: var(--amber-deep); }
.sec-light .services-head .sub { color: var(--ink-dim); }

.sec-ivory-deep .services-grid { border-color: var(--hairline-light); }
.sec-ivory-deep .service       { border-color: var(--hairline-light); border-right-color: var(--hairline-light); }
.sec-ivory-deep .service:hover { background: rgba(26,26,26,0.03); }
.sec-ivory-deep .service h3    { color: var(--ink); }
.sec-ivory-deep .service p     { color: var(--ink-dim); }
.sec-ivory-deep .service .num  { color: rgba(26,26,26,0.09); }
.sec-ivory-deep .service:hover .num { color: var(--amber-deep); }

/* ============================================================
   ENGAGEMENTS — SMALL CARDS GRID (completed-engagements page)
   ============================================================ */
.eng-grid-lg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top:  1px solid var(--hairline-light);
  border-left: 1px solid var(--hairline-light);
}
.eng-card-sm {
  border-right:  1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background .2s;
  background: transparent;
}
.eng-card-sm:hover       { background: rgba(26,26,26,0.03); }
.eng-card-sm:focus-visible { outline: 2px solid var(--amber-deep); outline-offset: -2px; }
.eng-card-sm[data-hidden] { display: none; }

.eng-logo-ph {
  width: 100%;
  aspect-ratio: 2.8 / 1;
  background: var(--ivory-deep);
  background-image: repeating-linear-gradient(135deg, transparent 0 10px, rgba(26,26,26,0.06) 10px 11px);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.eng-logo-ph.has-logo {
  background: transparent;
}
.eng-logo-ph img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.eng-logo-ph-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eng-logo-ph.is-anonymous {
  background: transparent;
  background-image: none;
}
.eng-logo-ph.is-anonymous .eng-logo-ph-label {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--ink);
}
.eng-card-sm .eng-eyebrow { margin-bottom: 10px; }
.eng-card-sm h3 {
  font-weight: 400;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  flex: 1;
}
.eng-card-sm .card-cue {
  padding-top: 16px;
  font-size: 9px;
  letter-spacing: 0.12em;
}

/* Load More */
.eng-load-more {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.eng-load-more-count {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.btn-load-more {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--hairline-strong-light);
  padding: 14px 28px;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
  background: transparent;
}
.btn-load-more:hover  { color: var(--ink); border-color: var(--ink-dim); background: rgba(26,26,26,0.04); }
.btn-load-more:disabled,
.btn-load-more[hidden] { display: none; }

/* ============================================================
   ENGAGEMENT MODAL — EXPANDED (updated fields)
   ============================================================ */
.modal-logo-ph {
  width: 100%;
  aspect-ratio: 4.5 / 1;
  background: var(--ivory-deep);
  background-image: repeating-linear-gradient(135deg, transparent 0 12px, rgba(26,26,26,0.06) 12px 13px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  overflow: hidden;
}
.modal-logo-ph.has-logo {
  background: transparent;
}
.modal-logo-ph img {
  max-width: min(70%, 420px);
  max-height: 86%;
  object-fit: contain;
}
.modal-logo-ph-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.modal-logo-ph.is-anonymous {
  background: transparent;
  background-image: none;
}
.modal-logo-ph.is-anonymous .modal-logo-ph-label {
  font-family: var(--sans);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: none;
  color: var(--ink);
}
.modal-section {
  margin-bottom: 28px;
}
.modal-section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 12px;
  font-weight: 500;
}
.modal-company-desc,
.modal-deal-desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--ink-dim);
  margin: 0;
}
.modal-press-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-light);
}
.modal-press-link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.modal-press-link:hover { color: var(--amber); border-color: var(--amber); }
.modal-press-row[hidden] { display: none; }

/* Transaction advisors */
.modal-advisors-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-light);
}
.modal-advisors-row[hidden] { display: none; }
.modal-advisors-row .modal-section-label { margin-bottom: 20px; }
.modal-advisors {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
}
.modal-advisor {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.modal-advisor-cat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.modal-advisor-logo {
  max-height: 28px;
  max-width: 110px;
  object-fit: contain;
  display: block;
}
.modal-advisor-name {
  font-size: 13px;
  color: var(--ink-dim);
  font-weight: 500;
}

/* ============================================================
   IMAGE PLACEHOLDERS (team / firm candid shots)
   ============================================================ */
.img-ph-section {
  padding: 0;
}
.img-ph-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--hairline-light);
}
.img-ph-strip--2col { grid-template-columns: 1.4fr 1fr; }
.img-ph {
  aspect-ratio: 4 / 3;
  background: var(--ivory-deep);
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(26,26,26,0.05) 14px 15px);
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--hairline-light);
}
.img-ph:last-child { border-right: none; }
.img-ph-wide {
  width: 100%;
  aspect-ratio: 16 / 6;
  background: var(--ivory-deep);
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(26,26,26,0.05) 14px 15px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
}
.img-ph-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  padding: 20px;
}
/* Ivory-deep surface variant — slightly lighter so placeholder reads */
.sec-ivory-deep .img-ph,
.sec-ivory-deep .img-ph-wide {
  background: var(--ivory-warm);
  border-color: var(--hairline-light);
}
/* Dark surface variants */
.sec-dark .img-ph,
.sec-dark .img-ph-wide {
  background: rgba(255,255,255,0.04);
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(242,236,223,0.06) 14px 15px);
  border-color: var(--hairline-dark);
}
.sec-dark .img-ph-strip { border-top-color: var(--hairline-dark); }
.sec-dark .img-ph-label { color: var(--cream-muted); }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1080px) {
  .section-cta-inner { flex-direction: column; align-items: flex-start; }
  .page-hero-inner   { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-right   { padding-bottom: 0; }
  .eng-grid-lg       { grid-template-columns: repeat(3, 1fr); }
  .insights-head     { grid-template-columns: 1fr; gap: 28px; }
  .insight-card a    { grid-template-columns: 180px 1fr; }
  .img-ph-strip      { grid-template-columns: 1fr 1fr; }
  .img-ph-strip--2col { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .page-hero         { padding: 96px 0 64px; }
  .modal-inner       { padding: 8px 24px 40px; }
  .section-cta       { padding: 80px 0; }
  .eng-grid-lg       { grid-template-columns: repeat(2, 1fr); }
  .insights-index    { padding-top: 96px; }
  .insights-head     { margin-bottom: 44px; }
  .insight-card a    { grid-template-columns: 1fr; }
  .insight-thumb-ph  { aspect-ratio: 3 / 1; border-right: none; border-bottom: 1px solid var(--hairline-light); }
  .insight-card-body { padding: 24px 24px 28px; }
  .article-page      { padding-top: 80px; }
  .article-hero      { padding: 64px 0 56px; }
  .article-back      { margin-bottom: 36px; }
  .article-dek       { font-size: 18px; }
  .article-body      { padding: 56px 0 80px; font-size: 16px; }
  .article-body .lead { font-size: 18px; }
  .article-callout   { padding: 24px; }
  .img-ph-strip      { grid-template-columns: 1fr; }
  .img-ph-wide       { aspect-ratio: 4 / 3; }
  .eng-load-more     { flex-direction: column; align-items: flex-start; }
  .bio-modal-inner        { padding: 32px 28px; }
  .bio-modal-header       { grid-template-columns: 1fr; }
  .bio-modal-photo-col    { padding-right: 0; padding-bottom: 28px; }
  .bio-modal-intro        { border-left: none; border-top: 1px solid var(--hairline-strong-light); padding-left: 0; padding-top: 28px; }
}

/* ============================================================
   BIO PAGES — CLASSIC LAYOUT
   ============================================================ */

/* Hero */
.bio-page-hero {
  padding: 148px 0 108px;
  border-bottom: 1px solid var(--hairline-dark);
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgba(28,44,68,0.72) 0%, rgba(28,44,68,0.42) 100%),
    url('../assets/images/rva_bridge.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: sticky;
  top: 0;
  z-index: 1;
}
.bio-page-hero + section {
  border-radius: 16px 16px 0 0;
}
.bio-page-hero ~ section,
.bio-page-hero ~ div,
.bio-page-hero ~ footer { position: relative; z-index: 2; }
.bio-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
.bio-hero-left .page-hero-eyebrow { margin-bottom: 28px; }
.bio-hero-left h1 { margin-bottom: 0; }
.bio-hero-meta {
  font-family: var(--mono);
  font-size: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 8px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.bio-hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.bio-hero-meta .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}
.bio-role-intro {
  font-size: 19px;
  line-height: 1.55;
  color: var(--cream-dim);
}
.bio-role-intro strong { color: var(--cream); font-weight: 500; }

/* Standalone headshot wrapper on bio pages.
   Reuses the team-card .bio-headshot pattern: container provides aspect ratio,
   image is absolutely positioned and uses object-fit: cover. */
.bio-page-photo {
  aspect-ratio: 3 / 4;
  background: var(--ivory-warm);
  position: relative;
  overflow: hidden;
  width: 100%;
}
.bio-page-photo .bio-page-headshot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Bio body */
.bio-body-section { padding: 96px 0 112px; }
.bio-body-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}
.bio-aside {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.bio-headshot {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.bio-contact-card {
  margin-top: 32px;
  padding-top: 8px;
  border-top: 1px solid var(--hairline-strong-light);
}
.bio-contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 24px;
  align-items: baseline;
}
.bio-contact-row dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.bio-contact-row dd {
  font-size: 14px;
  color: var(--ink);
}
.bio-contact-row dd a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-light);
  padding-bottom: 1px;
  transition: border-color 160ms ease;
}
.bio-contact-row dd a:hover { border-color: var(--ink); }

/* Article */
.bio-article { max-width: 64ch; }
.bio-article-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 24px;
  display: block;
}
.bio-article h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 36px;
  max-width: 22ch;
}
.bio-article p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 1.2em;
  color: var(--ink-dim);
}
.bio-article p:last-child { margin-bottom: 0; }

/* Teammate nav */
.teammate-nav {
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.teammate-nav-cell {
  padding: 32px 0;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 160ms ease;
}
.teammate-nav-cell:hover { background: rgba(26,26,26,0.03); }
.teammate-nav-cell.next {
  border-left: 1px solid var(--hairline-light);
  align-items: flex-end;
  text-align: right;
  padding-left: 40px;
  padding-right: 40px;
}
.teammate-nav-cell.prev { padding-left: 40px; padding-right: 40px; }
.teammate-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.teammate-name {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.teammate-role { font-size: 13px; color: var(--ink-dim); }

/* Responsive */
@media (max-width: 1080px) {
  .bio-hero-inner { grid-template-columns: 1fr; gap: 40px; align-items: start; }
  .bio-body-grid  { grid-template-columns: 1fr; gap: 56px; }
  .bio-aside      { position: static; max-width: 340px; }
  .teammate-nav-cell.next { padding-left: 24px; }
  .teammate-nav-cell.prev { padding-right: 24px; }
}
@media (max-width: 700px) {
  .bio-page-hero  { padding: 56px 0 64px; }
  .bio-body-section { padding: 64px 0 80px; }
  .teammate-nav   { grid-template-columns: 1fr; }
  .teammate-nav-cell.next {
    border-left: none;
    border-top: 1px solid var(--hairline-light);
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
  }
  .teammate-nav-cell.prev { padding-right: 0; }
}

/* ============================================================
   ANIMATIONS & SCROLL REVEALS
   ============================================================ */

/* ---------- Shared keyframes ---------- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0);     }
}

/* ---------- Page-load — nav ---------- */
.nav {
  animation: fadeSlideDown 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ---------- Page-load — hero ---------- */
.hero h1.display {
  animation: fadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-sub {
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}
.hero-cta-row {
  animation: fadeSlideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}
.hero-stats .hero-stat:nth-child(1) {
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.58s both;
}
.hero-stats .hero-stat:nth-child(2) {
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.70s both;
}
.hero-stats .hero-stat:nth-child(3) {
  animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.82s both;
}

/* ---------- Scroll-reveal system ---------- */
/* Gated on .js class — without JS elements are always visible */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.js [data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Headings: shorter travel, longer duration — feels more anchored */
.js h2.display[data-reveal] {
  transform: translateY(16px);
  transition-duration: 1.05s;
}

/* Stagger delays for sibling groups */
.js [data-reveal][data-delay="1"] { transition-delay: 0.10s; }
.js [data-reveal][data-delay="2"] { transition-delay: 0.20s; }
.js [data-reveal][data-delay="3"] { transition-delay: 0.30s; }
.js [data-reveal][data-delay="4"] { transition-delay: 0.40s; }
.js [data-reveal][data-delay="5"] { transition-delay: 0.50s; }

/* ============================================================
   OUR FIRM — NEW SECTIONS
   ============================================================ */

/* ---------- Firm stats band (inside page-hero) ---------- */
.firm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--hairline-dark);
}
.firm-stat {
  padding: clamp(24px, 3vw, 36px) 0;
  padding-right: clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--hairline-dark);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.firm-stat:first-child { padding-left: 0; }
.firm-stat:last-child  { border-right: none; padding-right: 0; padding-left: clamp(24px, 3vw, 48px); }
.firm-stat:not(:first-child):not(:last-child) { padding-left: clamp(24px, 3vw, 48px); }
.firm-stat-num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--cream);
}
.firm-stat-num .sup {
  font-size: 0.48em;
  vertical-align: super;
  color: var(--amber);
  letter-spacing: 0;
  font-weight: 400;
}
.firm-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--cream-muted);
  line-height: 1.55;
}

/* ---------- Intro marker (chapter label row) ---------- */
.intro-marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(44px, 5.5vw, 72px);
  padding-bottom: 26px;
  border-bottom: 1px solid var(--hairline-light);
}
.intro-chapter {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.intro-chapter::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--amber-deep);
  flex-shrink: 0;
}
.intro-locator {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* ---------- Intro pull heading ---------- */
.display.intro-pull {
  margin: 0 0 clamp(28px, 3.5vw, 48px);
  max-width: 20ch;
}

/* ---------- Story lede (left-border italic paragraph) ---------- */
.story-lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.48;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0 0 clamp(48px, 5.5vw, 72px);
  border-left: 2px solid var(--amber-deep);
  padding-left: 22px;
  max-width: 56ch;
}

/* ---------- Story prose body (reused inside .story-grid left col) ---------- */
.story-prose p {
  margin: 0 0 1.1em;
  font-size: 16px;
  line-height: 1.72;
  color: var(--ink-dim);
  max-width: 48ch;
}
.story-prose p:last-child { margin-bottom: 0; }

/* ---------- Why Bellfield section (sec-dark) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}
.why-grid h2.display { max-width: 14ch; }
.why-prose p {
  margin: 0 0 1.15em;
  color: var(--cream-dim);
  line-height: 1.75;
  font-size: 16.5px;
  max-width: 52ch;
}
.why-prose p:last-child { margin-bottom: 0; }
.why-quote {
  margin-top: clamp(64px, 8vw, 112px);
  padding-top: clamp(36px, 4vw, 52px);
  border-top: 1px solid var(--hairline-dark);
}
.why-quote-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
}
.why-quote-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}
.why-quote-body {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(21px, 2.1vw, 32px);
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
}
.why-quote-body .accent { color: var(--amber); }

/* ---------- Owner Q&A section (sec-light) ---------- */
.who-head {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.who-head h2.display { max-width: 22ch; }
.qa-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 48px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline-light);
  margin-bottom: 0;
}
.qa-header span:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 19px);
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--ink);
}
.qa-header span:last-child {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-dim);
  line-height: 1.72;
}
.qa-list { border-top: none; }
.qa-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(28px, 3.2vw, 40px) 0;
  border-bottom: 1px solid var(--hairline-light);
  align-items: start;
  transition: background .22s;
}
.qa-row:last-child { border-bottom: none; }
.qa-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--amber-deep);
  padding-top: 4px;
}
.qa-q {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.38;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0;
}
.qa-a-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.qa-a {
  font-size: 15.5px;
  line-height: 1.72;
  color: var(--ink-dim);
  margin: 0;
}
.who-foot {
  margin-top: clamp(40px, 5vw, 64px);
}
.who-foot p {
  margin: 0;
  color: var(--ink-dim);
  line-height: 1.75;
  max-width: 60ch;
  font-size: 15.5px;
  background: var(--ivory-warm);
  border: 1px solid var(--hairline-light);
  border-radius: 8px;
  padding: clamp(20px, 2.5vw, 32px) clamp(24px, 3vw, 40px);
}

/* ---------- Our Approach section (sec-ivory-deep) ---------- */
.approach-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: end;
}
.approach-head h2.display { max-width: 14ch; }
.approach-head p {
  margin: 0;
  color: var(--ink-dim);
  line-height: 1.72;
  font-size: 16.5px;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.5vw, 48px);
}
.approach-card {
  border-top: 1px solid var(--hairline-light);
  padding-top: clamp(24px, 2.8vw, 36px);
  position: relative;
}
.approach-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--amber-deep);
}
.approach-phase {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 28px;
}
.approach-title {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(21px, 1.9vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}
.approach-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber-deep);
  font-weight: 400;
}
.approach-body {
  margin: 0;
  color: var(--ink-dim);
  font-size: 15.5px;
  line-height: 1.72;
}

/* ---------- Our Competitive Edge (colonnade, sec-light) ---------- */
.edge-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: end;
}
.edge-head h2.display { max-width: 16ch; }
.edge-head p {
  margin: 0;
  color: var(--ink-dim);
  line-height: 1.72;
  font-size: 16.5px;
}
.edge-pillars {
  grid-template-columns: repeat(5, 1fr);
}
.edge-pillars .service {
  min-height: 460px;
}
.edge-pillars .service .num {
  font-size: 36px;
  margin-bottom: 24px;
}

/* ---- Our Firm responsive ---- */
@media (max-width: 1080px) {
  .why-grid          { grid-template-columns: 1fr; }
  .who-head          { grid-template-columns: 1fr; }
  .approach-head     { grid-template-columns: 1fr; }
  .approach-grid     { grid-template-columns: 1fr; gap: 40px; }
  .edge-head         { grid-template-columns: 1fr; }
  .edge-pillars      { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .qa-row            { grid-template-columns: 1fr; }
  .edge-pillars      { grid-template-columns: 1fr; }

  /* Modal logo — taller container on mobile so portraits/squares aren't cropped */
  .modal-logo-ph     { aspect-ratio: 3 / 1; }

  /* Anonymous label on small engagement card — smaller text to fit 2-col mobile grid */
  .eng-logo-ph.is-anonymous .eng-logo-ph-label { font-size: 18px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:   0.01ms !important;
    animation-delay:      0ms    !important;
    transition-duration:  0.01ms !important;
    transition-delay:     0ms    !important;
  }
  /* Ensure reveals don't leave elements permanently hidden */
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  dialog.eng-modal[open] { animation: none; }
  .page-hero h1.display, .page-hero-sub { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
