/* =========================================================
   DREAMERS INVESTMENT CONSORTIUM
   Bold contrarian aesthetic — high contrast, oversized type,
   editorial weight, blood-red accents.
   ========================================================= */

:root {
  --ink: #0A0A0A;
  --bone: #F2EFE8;
  --paper: #ECE7DD;
  --blood: #C8102E;
  --blood-deep: #8E0B20;
  --steel: #1A1A1A;
  --hair: #2A2A2A;
  --whisper: #6B6B6B;
  --gold: #B7873B;
  --max-w: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

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

/* ----- Typography ----- */
.serif { font-family: "Fraunces", "Times New Roman", Georgia, serif; font-style: normal; }
.mono  { font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace; }

h1, h2, h3, h4 {
  font-family: "Fraunces", "Times New Roman", Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blood);
  font-weight: 500;
}

.eyebrow.bone { color: var(--bone); opacity: 0.7; }

/* ----- Layout ----- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

.divider { height: 1px; background: var(--hair); width: 100%; }
.divider.blood { background: var(--blood); height: 2px; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hair);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand__mark {
  width: 28px; height: 28px;
  border: 1.5px solid var(--bone);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800;
  font-family: "Fraunces", serif;
  position: relative;
}
.brand__mark::after {
  content: ""; position: absolute; inset: -3px;
  border: 1px solid var(--blood);
  pointer-events: none;
}
.nav__links { display: flex; gap: 36px; align-items: center; }
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.78;
  transition: opacity .2s, color .2s;
}
.nav__links a:hover { opacity: 1; color: var(--blood); }
.nav__links a.active { color: var(--blood); opacity: 1; }
.nav__cta {
  border: 1px solid var(--bone);
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .2s, color .2s, border-color .2s;
}
.nav__cta:hover { background: var(--blood); border-color: var(--blood); color: var(--bone); }

@media (max-width: 820px) {
  .nav__links { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: clamp(80px, 12vw, 180px) 0 clamp(60px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero__bar {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px;
}
.hero__bar .line { flex: 1; height: 1px; background: var(--hair); }
.hero h1 {
  font-size: clamp(56px, 11vw, 184px);
  letter-spacing: -0.04em;
  line-height: 0.86;
  margin-bottom: 36px;
}
.hero h1 .ital { font-style: italic; color: var(--blood); font-weight: 400; }
.hero h1 .mute { color: var(--whisper); font-weight: 300; }

.hero__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 100px);
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--hair);
}
.hero__sub p {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--bone);
  max-width: 60ch;
}
.hero__sub p.lead {
  font-family: "Fraunces", serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
@media (max-width: 820px) {
  .hero__sub { grid-template-columns: 1fr; gap: 24px; }
}

.hero__stamp {
  position: absolute;
  right: var(--gutter);
  top: 110px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--whisper);
  text-align: right;
  line-height: 1.8;
}
@media (max-width: 820px) { .hero__stamp { display: none; } }

/* =========================================================
   PRINCIPALS — Chairman + Founder cards on landing
   ========================================================= */
.principals {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.principals__head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 60px;
}
.principals__head h2 {
  font-size: clamp(40px, 6vw, 88px);
  max-width: 12ch;
}
.principals__head h2 em { color: var(--blood); font-style: italic; font-weight: 400; }
.principals__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.pcard {
  background: var(--ink);
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  min-height: 480px;
}
.pcard__role {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blood);
}
.pcard h3 {
  font-size: clamp(36px, 4.4vw, 64px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.pcard h3 .nick {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.42em;
  color: var(--whisper);
  letter-spacing: 0;
  margin-top: 14px;
  line-height: 1.3;
}
.pcard p { color: var(--bone); opacity: 0.82; max-width: 55ch; }
.pcard__meta {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pcard__meta div .l {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--whisper);
  margin-bottom: 6px;
}
.pcard__meta div .v { font-family: "Fraunces", serif; font-size: 18px; font-weight: 600; }
.pcard__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  border-bottom: 1px solid var(--bone);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color .2s, border-color .2s;
}
.pcard__cta:hover { color: var(--blood); border-color: var(--blood); }
@media (max-width: 820px) { .principals__grid { grid-template-columns: 1fr; } }

/* =========================================================
   MANIFESTO / DOCTRINE BANNER
   ========================================================= */
.doctrine {
  padding: clamp(100px, 14vw, 180px) 0;
  background: var(--bone);
  color: var(--ink);
  position: relative;
}
.doctrine .eyebrow { color: var(--blood); }
.doctrine h2 {
  font-size: clamp(44px, 7.5vw, 124px);
  letter-spacing: -0.035em;
  line-height: 0.92;
  margin: 32px 0 48px;
  max-width: 14ch;
}
.doctrine h2 .strike { text-decoration: line-through; text-decoration-color: var(--blood); text-decoration-thickness: 6px; color: var(--whisper); }
.doctrine h2 .ital { font-style: italic; color: var(--blood); font-weight: 400; }
.doctrine__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.doctrine__grid > div {
  padding: 32px 28px 32px 0;
  border-right: 1px solid var(--ink);
}
.doctrine__grid > div:last-child { border-right: none; padding-right: 0; }
.doctrine__grid > div:not(:first-child) { padding-left: 28px; }
.doctrine__grid h4 {
  font-size: 22px;
  font-family: "Fraunces", serif;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.doctrine__grid p { color: var(--ink); opacity: 0.78; font-size: 15px; line-height: 1.55; }
.doctrine__grid .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--blood);
  margin-bottom: 18px;
  display: block;
}
@media (max-width: 820px) {
  .doctrine__grid { grid-template-columns: 1fr; border-top: none; }
  .doctrine__grid > div { border-right: none; border-top: 1px solid var(--ink); padding: 28px 0; }
}

/* =========================================================
   STATS RIBBON
   ========================================================= */
.stats {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--ink);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.stats__head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 60px; }
.stats__head h2 {
  font-size: clamp(36px, 5vw, 72px);
  max-width: 16ch;
}
.stats__head p { max-width: 38ch; opacity: 0.7; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
}
.stats__grid > div {
  padding: 36px 24px;
  border-right: 1px solid var(--hair);
  position: relative;
}
.stats__grid > div:last-child { border-right: none; }
.stats__grid .big {
  font-family: "Fraunces", serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bone);
}
.stats__grid .big sup { font-size: 0.5em; color: var(--blood); margin-left: 4px; vertical-align: top; top: 0.3em; position: relative;}
.stats__grid .big .unit { font-size: 0.45em; color: var(--blood); font-weight: 400; }
.stats__grid .lbl { display: block; margin-top: 18px; font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--whisper); }
.stats__foot { margin-top: 40px; font-size: 12px; color: var(--whisper); font-family: "JetBrains Mono", monospace; letter-spacing: 0.06em; }
@media (max-width: 820px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid > div { border-bottom: 1px solid var(--hair); }
  .stats__grid > div:nth-child(2) { border-right: none; }
}

/* =========================================================
   SERVICES / WHAT WE DO
   ========================================================= */
.services { padding: clamp(80px, 10vw, 140px) 0; }
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
}
.services__head h2 {
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: -0.03em;
}
.services__head h2 em { color: var(--blood); font-style: italic; font-weight: 400; }
.services__head p { font-size: 18px; opacity: 0.78; max-width: 50ch; }
@media (max-width: 820px) { .services__head { grid-template-columns: 1fr; gap: 24px; } }

.svc {
  display: grid;
  grid-template-columns: 80px 1.5fr 2fr 1fr;
  gap: 40px;
  padding: 36px 0;
  border-top: 1px solid var(--hair);
  align-items: start;
  transition: padding-left .3s;
}
.svc:last-child { border-bottom: 1px solid var(--hair); }
.svc:hover { padding-left: 16px; }
.svc:hover .svc__num { color: var(--blood); }
.svc:hover .svc__title { color: var(--blood); }
.svc__num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--whisper);
  letter-spacing: 0.18em;
  padding-top: 8px;
  transition: color .3s;
}
.svc__title {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.05;
  transition: color .3s;
}
.svc__body { color: var(--bone); opacity: 0.78; font-size: 16px; max-width: 50ch; }
.svc__tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blood);
  text-align: right;
  padding-top: 8px;
}
@media (max-width: 1000px) {
  .svc { grid-template-columns: 60px 1fr; gap: 16px; }
  .svc__body, .svc__tag { grid-column: 2; }
  .svc__tag { text-align: left; padding-top: 0; }
}

/* =========================================================
   PROCESS / APPROACH
   ========================================================= */
.process { padding: clamp(80px, 10vw, 140px) 0; background: var(--bone); color: var(--ink); }
.process .eyebrow { color: var(--blood); }
.process h2 {
  font-size: clamp(40px, 6vw, 96px);
  letter-spacing: -0.03em;
  margin: 28px 0 60px;
  max-width: 14ch;
}
.process h2 em { color: var(--blood); font-style: italic; font-weight: 400; }
.process__row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1.5px solid var(--ink);
  align-items: start;
}
.process__row:last-child { border-bottom: 1.5px solid var(--ink); }
.process__row .step {
  font-family: "Fraunces", serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--ink);
}
.process__row .step .dot { color: var(--blood); }
.process__row h3 {
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.01em;
  font-weight: 700;
}
.process__row p { font-size: 16px; line-height: 1.6; color: var(--ink); opacity: 0.82; max-width: 60ch; }
@media (max-width: 820px) {
  .process__row { grid-template-columns: 1fr; gap: 16px; }
}

/* =========================================================
   QUOTE / PULLQUOTE
   ========================================================= */
.pull {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--ink);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.pull__inner { max-width: 1100px; }
.pull blockquote {
  font-family: "Fraunces", serif;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--bone);
}
.pull blockquote::before {
  content: "“";
  display: block;
  font-size: 1.4em;
  color: var(--blood);
  line-height: 0.4;
  margin-bottom: 20px;
}
.pull blockquote em { color: var(--blood); font-style: italic; font-weight: 400; }
.pull cite {
  display: block;
  margin-top: 40px;
  font-style: normal;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--whisper);
}
.pull cite strong { color: var(--bone); font-weight: 600; }

/* =========================================================
   CTA / ENGAGE
   ========================================================= */
.cta {
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--blood);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "DREAMERS · DREAMERS · DREAMERS · DREAMERS · DREAMERS · DREAMERS · DREAMERS · DREAMERS";
  position: absolute;
  bottom: -20px; left: 0; right: 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 400;
  letter-spacing: -0.05em;
  color: rgba(255,255,255,0.08);
  white-space: nowrap;
  pointer-events: none;
  line-height: 0.9;
}
.cta__inner { position: relative; }
.cta h2 {
  font-size: clamp(48px, 9vw, 144px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  max-width: 14ch;
  margin-bottom: 40px;
}
.cta h2 em { font-style: italic; color: var(--ink); font-weight: 400; }
.cta p { font-size: clamp(18px, 1.8vw, 24px); max-width: 50ch; margin-bottom: 48px; opacity: 0.92; }
.cta .btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 20px 32px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid currentColor;
  background: transparent;
  color: var(--bone);
  transition: background .2s, color .2s;
  cursor: pointer;
}
.btn:hover { background: var(--bone); color: var(--blood); }
.btn--ink { color: var(--ink); border-color: var(--ink); }
.btn--ink:hover { background: var(--ink); color: var(--bone); }
.btn--solid { background: var(--bone); color: var(--blood); border-color: var(--bone); }
.btn--solid:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(6px); }

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  background: var(--ink);
  border-top: 1px solid var(--hair);
  padding: 80px 0 40px;
}
.foot__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
.foot__brand h3 {
  font-size: clamp(40px, 5vw, 64px);
  font-family: "Fraunces", serif;
  letter-spacing: -0.025em;
  line-height: 0.95;
  max-width: 14ch;
  margin-bottom: 20px;
}
.foot__brand h3 em { color: var(--blood); font-style: italic; font-weight: 400; }
.foot__brand p { color: var(--whisper); max-width: 40ch; font-size: 15px; }
.foot__col h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blood);
  margin-bottom: 18px;
  font-weight: 600;
}
.foot__col ul { list-style: none; }
.foot__col li { margin-bottom: 10px; font-size: 14px; }
.foot__col a { opacity: 0.78; transition: opacity .2s, color .2s; }
.foot__col a:hover { opacity: 1; color: var(--blood); }
.foot__bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--hair);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--whisper);
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 820px) { .foot__top { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   PAGE HEADER (interior pages)
   ========================================================= */
.pagehead {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--hair);
}
.pagehead .crumbs {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--whisper); margin-bottom: 32px;
}
.pagehead .crumbs a { color: var(--blood); }
.pagehead h1 {
  font-size: clamp(56px, 10vw, 168px);
  letter-spacing: -0.04em;
  line-height: 0.86;
  margin-bottom: 32px;
}
.pagehead h1 em { color: var(--blood); font-style: italic; font-weight: 400; }
.pagehead p {
  font-family: "Fraunces", serif;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 28ch;
  color: var(--bone); opacity: 0.86;
}

/* =========================================================
   BIO / LONGFORM
   ========================================================= */
.bio { padding: clamp(60px, 8vw, 120px) 0; }
.bio__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
}
@media (max-width: 900px) { .bio__grid { grid-template-columns: 1fr; } }

.bio__rail .pill {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--blood);
  color: var(--blood);
  padding: 8px 14px;
  margin-bottom: 24px;
}
.bio__rail .meta { display: grid; gap: 18px; padding-top: 24px; border-top: 1px solid var(--hair); }
.bio__rail .meta div .l {
  display: block; font-family: "JetBrains Mono", monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--whisper); margin-bottom: 4px;
}
.bio__rail .meta div .v { font-family: "Fraunces", serif; font-size: 18px; font-weight: 600; }

.bio__body p { font-size: 18px; line-height: 1.6; margin-bottom: 24px; }
.bio__body p.lead { font-family: "Fraunces", serif; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.25; letter-spacing: -0.015em; font-weight: 500; color: var(--bone); margin-bottom: 36px; }
.bio__body p.lead em { color: var(--blood); font-style: italic; font-weight: 400; }
.bio__body h3 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700; letter-spacing: -0.02em;
  margin: 56px 0 20px; padding-top: 36px; border-top: 1px solid var(--hair);
}
.bio__body h3 em { color: var(--blood); font-style: italic; font-weight: 400; }
.bio__body ul { list-style: none; padding: 0; margin: 0 0 24px; }
.bio__body ul li {
  padding: 14px 0; border-bottom: 1px solid var(--hair);
  display: grid; grid-template-columns: 100px 1fr; gap: 24px;
  font-size: 16px;
}
.bio__body ul li .y {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px; letter-spacing: 0.16em;
  color: var(--blood); padding-top: 4px;
}

/* =========================================================
   ENGAGE / FORM
   ========================================================= */
.engage { padding: clamp(60px, 8vw, 120px) 0; }
.engage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 900px) { .engage__grid { grid-template-columns: 1fr; } }
.engage__left h2 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.engage__left h2 em { color: var(--blood); font-style: italic; font-weight: 400; }
.engage__left p { opacity: 0.82; font-size: 17px; margin-bottom: 18px; max-width: 40ch; }
.engage__left .email-card {
  margin-top: 36px;
  border: 1px solid var(--hair);
  padding: 32px;
  background: var(--steel);
}
.engage__left .email-card .l {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blood); margin-bottom: 14px;
}
.engage__left .email-card a {
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 2px solid var(--hair);
  padding-bottom: 8px;
  display: inline-block;
  transition: color .2s, border-color .2s;
}
.engage__left .email-card a:hover { color: var(--blood); border-color: var(--blood); }

.criteria {
  border-top: 1px solid var(--hair);
  padding-top: 32px;
}
.criteria h4 { font-family: "JetBrains Mono", monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blood); margin-bottom: 24px; font-weight: 600; }
.criteria ul { list-style: none; }
.criteria li {
  display: grid; grid-template-columns: 1fr auto; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid var(--hair);
  font-size: 15px;
}
.criteria li .v { font-family: "Fraunces", serif; font-weight: 600; color: var(--bone); }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--ink);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-block;
  animation: scroll 60s linear infinite;
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--bone);
}
.marquee__track span { margin: 0 32px; }
.marquee__track em { color: var(--blood); font-style: italic; font-weight: 400; }
.marquee__track .sep { color: var(--blood); }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   PORTRAITS
   Pure black & white via CSS, editorial framing
   ========================================================= */
.portrait {
  position: relative;
  overflow: hidden;
  background: var(--steel);
  display: block;
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: filter .6s ease, transform .8s ease;
}
.portrait::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 50%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
}
.portrait:hover img { transform: scale(1.02); }

/* Fallback monogram shown when image is missing */
.portrait .fallback {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: clamp(64px, 9vw, 140px);
  color: var(--whisper);
  letter-spacing: -0.04em;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 8px, transparent 8px 16px),
    var(--steel);
  z-index: 0;
}
.portrait img + .fallback { display: none; }

/* Principal-card portrait band: top of card, dramatic */
.pcard__portrait {
  margin: calc(-1 * clamp(36px, 4vw, 56px)) calc(-1 * clamp(36px, 4vw, 56px)) 28px;
  aspect-ratio: 5 / 4;
  border-bottom: 1px solid var(--blood);
}

/* Bio-rail portrait: tall, editorial */
.bio__rail .portrait {
  aspect-ratio: 4 / 5;
  margin-bottom: 28px;
  border: 1px solid var(--hair);
}
.bio__rail .portrait::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 60px; height: 4px;
  background: var(--blood);
  z-index: 2;
}

/* Page-header portrait — for chairman/founder pages, oversized */
.pagehead--with-portrait {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.pagehead--with-portrait .portrait {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--hair);
}
@media (max-width: 900px) {
  .pagehead--with-portrait { grid-template-columns: 1fr; }
}

/* Reveal on scroll utility */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Print fallback */
@media print {
  .nav, .cta, .marquee { display: none; }
  body { background: white; color: black; }
}
