/* ============================================================
   Decuman Partners — shared site styles
   Design tokens per the Claude Design handoff.
   ============================================================ */

:root {
  --navy: #0B1F33;
  --ivory: #F5F1E8;
  --gold: #C29A5B;
  --gold-hover: #d4b072;
  --panel: #12293f;
  --card: #e7e0d0;
  --serif: 'Libre Caslon Text', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'Courier New', Courier, monospace;
  --wrap: 1240px;
  --pad: clamp(20px, 5vw, 48px);
  --section-y: clamp(72px, 12vw, 120px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }
::selection { background: var(--gold); color: var(--navy); }
img { display: block; max-width: 100%; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Shared utilities ---------- */
.rule { width: 64px; height: 3px; background: var(--gold); }
.mono-eyebrow {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}

/* Striped image placeholders (swap for real <img> when photos exist) */
.ph {
  background-color: var(--card);
  background-image: repeating-linear-gradient(45deg, rgba(11,31,51,0.06) 0 10px, rgba(11,31,51,0) 10px 20px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(11,31,51,0.08); border-radius: 2px; overflow: hidden;
}
.ph span {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: rgba(11,31,51,0.45); text-align: center; padding: 8px;
}
.ph--gold-border { border-color: rgba(194,154,91,0.35); }
.ph--navy {
  background-color: var(--panel);
  background-image: repeating-linear-gradient(45deg, rgba(245,241,232,0.05) 0 10px, rgba(245,241,232,0) 10px 20px);
  border-color: rgba(194,154,91,0.28);
}
.ph--navy span { color: rgba(245,241,232,0.4); }

/* Full-bleed placeholder used as a section background, with a scrim over it */
.cover-ph {
  position: absolute; inset: 0; z-index: 0;
  background-color: var(--panel);
  background-image: repeating-linear-gradient(45deg, rgba(245,241,232,0.05) 0 10px, rgba(245,241,232,0) 10px 20px);
  display: flex; align-items: center; justify-content: center;
}
.cover-ph span {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em;
  color: rgba(245,241,232,0.4);
}
.scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.scrim--portfolio { background: linear-gradient(180deg, rgba(11,31,51,0.42) 0%, rgba(11,31,51,0.5) 42%, rgba(11,31,51,0.92) 100%); }
.scrim--press { background: linear-gradient(180deg, rgba(11,31,51,0.55) 0%, rgba(11,31,51,0.55) 40%, rgba(11,31,51,0.9) 100%); }
.scrim--contact { background: linear-gradient(180deg, rgba(11,31,51,0.42) 0%, rgba(11,31,51,0.55) 45%, rgba(11,31,51,0.9) 100%); }

/* ---------- Buttons ---------- */
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid rgba(245,241,232,0.45); color: var(--ivory);
  font-size: 16px; font-weight: 600; padding: 16px 32px; border-radius: 2px;
  transition: all .22s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); gap: 18px; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(11,31,51,0.28); color: var(--navy);
  font-size: 15px; font-weight: 600; padding: 13px 24px; border-radius: 2px;
  transition: all .22s;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); gap: 15px; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 16px; font-weight: 600; padding: 15px 30px; border-radius: 2px;
  transition: all .22s;
}
.btn-gold:hover { background: var(--gold-hover); color: var(--navy); gap: 18px; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
}
.back-link:hover { color: var(--gold); }
.back-link span { font-size: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy); border-bottom: 1px solid rgba(194,154,91,0.28);
}
.site-header__bar {
  max-width: var(--wrap); margin: 0 auto;
  padding: 13px var(--pad) 5px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: flex-end; flex: none; }
.brand img { height: 82px; width: auto; max-height: 140px; }
.nav {
  display: flex; align-items: center; align-self: center;
  gap: clamp(16px, 2.6vw, 40px); flex-wrap: wrap; justify-content: flex-end;
}
.nav a {
  color: var(--ivory); font-size: 15px; font-weight: 500;
  letter-spacing: 0.02em; transition: color .2s;
}
.nav a:hover { color: var(--gold); }
.nav a.active { color: var(--gold); font-weight: 600; }
.nav a.active:hover { color: var(--gold-hover); }
.btn-pill {
  background: var(--gold); font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em; padding: 11px 22px; border-radius: 2px;
  transition: background .2s;
}
.nav a.btn-pill, .mobile-menu a.btn-pill { color: var(--navy); }
.nav a.btn-pill:hover, .mobile-menu a.btn-pill:hover { background: var(--gold-hover); color: var(--navy); }
.burger {
  align-self: center; display: none; flex-direction: column;
  justify-content: center; gap: 5px; width: 46px; height: 46px; padding: 11px;
  background: transparent; border: 1px solid rgba(194,154,91,0.4);
  border-radius: 2px; cursor: pointer; flex: none;
}
.burger span { height: 2px; width: 100%; background: var(--gold); display: block; }
.mobile-menu {
  overflow: hidden; background: var(--navy);
  border-top: 1px solid rgba(245,241,232,0.10);
  padding: 10px var(--pad) 22px; display: none; flex-direction: column; gap: 2px;
}
.site-header.open .mobile-menu { display: flex; }
.mobile-menu a {
  color: var(--ivory); font-size: 17px; font-weight: 500;
  padding: 13px 4px; border-bottom: 1px solid rgba(245,241,232,0.08);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a.active { color: var(--gold); font-weight: 600; }
.mobile-menu .btn-pill {
  font-size: 16px; padding: 14px 16px; margin-top: 10px;
  text-align: center; border-bottom: none;
}
@media (max-width: 899px) {
  .nav { display: none; }
  .burger { display: flex; }
  .brand img { height: 46px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); border-top: 1px solid rgba(194,154,91,0.28); }
.site-footer__inner { max-width: var(--wrap); margin: 0 auto; padding: clamp(56px,9vw,72px) var(--pad) 40px; }
.site-footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(245,241,232,0.12);
}
.site-footer__tag { color: rgba(245,241,232,0.75); font-size: 16px; line-height: 1.6; max-width: 34ch; }
.site-footer__label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 18px; }
.site-footer__email { color: var(--ivory); font-size: 16px; font-weight: 600; }
.site-footer__email:hover { color: var(--gold); }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; padding-top: 28px;
}
.site-footer__legal { display: flex; gap: 24px; }
.site-footer__legal a { color: rgba(245,241,232,0.6); font-size: 14px; }
.site-footer__legal a:hover { color: var(--gold); }
.site-footer__copy { color: rgba(245,241,232,0.5); font-size: 14px; }

/* ---------- Home: hero ---------- */
.hero { position: relative; background: var(--navy); overflow: hidden; }
.hero__bars {
  position: absolute; right: 0; bottom: 0; display: flex; align-items: flex-end;
  gap: 12px; padding: 0 clamp(16px,5vw,60px) 0 0; opacity: 0.10; pointer-events: none;
}
.hero__bars span { width: 18px; background: var(--gold); display: block; }
.hero__inner {
  position: relative; max-width: var(--wrap); margin: 0 auto;
  padding: clamp(96px,14vw,150px) var(--pad) clamp(112px,16vw,168px); text-align: center;
}
.hero__eyebrow {
  color: var(--gold); font-size: 14px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; margin-bottom: clamp(22px,4vw,34px); animation: riseIn .7s ease both;
}
.hero h1 {
  font-family: var(--serif); color: var(--ivory); font-weight: 400;
  font-size: clamp(38px,8.5vw,76px); line-height: 1.08; letter-spacing: -0.01em;
  margin: 0 auto; max-width: 14ch; animation: riseIn .8s ease .08s both;
}
.hero__cta { margin-top: 48px; animation: riseIn .8s ease .18s both; }
.hero__cta a span { font-size: 18px; }

/* ---------- Home: build-wealth marquee + intro ---------- */
.about-band { background: var(--ivory); padding: var(--section-y) 0; overflow: hidden; }
.marquee {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee__track { display: flex; width: max-content; will-change: transform; animation: marqueeScroll 30s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 56px; padding-right: 56px; }
.marquee__word {
  font-family: var(--serif); font-weight: 400; font-size: clamp(38px,8vw,76px);
  line-height: 1.3; letter-spacing: -0.01em; color: var(--navy); white-space: nowrap;
}
.marquee__diamond { width: 13px; height: 13px; background: var(--gold); transform: rotate(45deg); flex: none; display: inline-block; }
.about-band__body { max-width: 1080px; margin: 0 auto; padding: 0 var(--pad); }
.about-band__rule { margin: clamp(40px,7vw,64px) 0 clamp(28px,4vw,44px); }
.two-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: clamp(28px,5vw,56px); max-width: 900px; }
.two-col p { font-size: 18px; line-height: 1.6; color: var(--navy); }

/* ---------- Home: news ---------- */
.news { background: var(--ivory); padding: 24px var(--pad) var(--section-y); }
.news__inner { max-width: var(--wrap); margin: 0 auto; }
.section-head { display: flex; align-items: center; gap: 24px; margin-bottom: clamp(32px,5vw,52px); }
.section-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px,5vw,36px); color: var(--navy); }
.section-head__line { flex: 1; height: 1px; background: rgba(11,31,51,0.14); }
.news__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px,1fr)); gap: clamp(24px,3vw,36px); }
.news__card { display: block; }
.news__thumb { aspect-ratio: 4/3; }
.news__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--gold); margin: 20px 0 8px; }
.news__card h3 { font-family: var(--serif); font-weight: 400; font-size: 23px; line-height: 1.25; color: var(--navy); }
.news__card:hover h3 { color: var(--gold); }

/* ---------- Home: philosophy ---------- */
.philosophy { background: var(--navy); overflow: hidden; }
.philosophy__row { display: flex; flex-wrap: wrap; align-items: stretch; min-height: 640px; }
.philosophy__media { position: relative; flex: 1 1 400px; min-height: clamp(380px,50vw,640px); }
.philosophy__photo {
  position: absolute; inset: 0; overflow: hidden;
  background-color: var(--panel);
  background-image: repeating-linear-gradient(45deg, rgba(245,241,232,0.05) 0 10px, rgba(245,241,232,0) 10px 20px);
  display: flex; align-items: center; justify-content: flex-start; padding-left: 13%;
  clip-path: url(#decumanWave); -webkit-clip-path: url(#decumanWave);
}
.philosophy__photo span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; color: rgba(245,241,232,0.4); }
.philosophy__stroke { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.philosophy__text {
  flex: 1 1 400px;
  padding: clamp(56px,10vw,100px) max(24px, calc((100vw - 1240px)/2)) clamp(56px,10vw,100px) clamp(24px,6vw,84px);
  display: flex; flex-direction: column; justify-content: center;
}
.philosophy__head { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.philosophy__head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px,5vw,36px); color: var(--ivory); }
.philosophy__lede { font-family: var(--serif); font-weight: 400; font-size: clamp(27px,5.5vw,38px); line-height: 1.28; color: var(--ivory); max-width: 16ch; }
.philosophy__accent { font-size: 19px; line-height: 1.6; color: var(--gold); font-weight: 600; margin-top: 24px; }
.philosophy__body { font-size: 17px; line-height: 1.6; color: rgba(245,241,232,0.78); margin-top: 32px; max-width: 44ch; }

/* ---------- Dark page hero (About, etc.) ---------- */
.page-hero { position: relative; background: var(--navy); overflow: hidden; }
.page-hero__bars {
  position: absolute; right: 0; bottom: 0; display: flex; align-items: flex-end;
  gap: 10px; padding: 0 clamp(16px,5vw,60px) 0 0; opacity: 0.08; pointer-events: none;
}
.page-hero__bars span { width: 15px; background: var(--gold); display: block; }
.page-hero__inner {
  position: relative; max-width: 1080px; margin: 0 auto;
  padding: clamp(84px,12vw,132px) var(--pad) clamp(84px,12vw,128px);
}
.page-hero__eyebrow {
  color: var(--gold); font-size: 14px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; margin-bottom: clamp(20px,4vw,30px); animation: riseIn .7s ease both;
}
.page-hero h1 {
  font-family: var(--serif); color: var(--ivory); font-weight: 400;
  font-size: clamp(34px,6.5vw,62px); line-height: 1.1; letter-spacing: -0.01em;
  max-width: 15ch; animation: riseIn .8s ease .08s both;
}
.page-hero__standfirst {
  color: rgba(245,241,232,0.82); font-size: clamp(17px,2.2vw,20px); line-height: 1.6;
  max-width: 52ch; margin-top: clamp(24px,3.5vw,32px); animation: riseIn .8s ease .16s both;
}

/* ---------- About: what we do / who we back ---------- */
.about-firm { background: var(--ivory); padding: var(--section-y) var(--pad); }
.about-firm__inner { max-width: 1080px; margin: 0 auto; }
.about-firm h2 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(30px,4.6vw,48px);
  line-height: 1.14; letter-spacing: -0.01em; color: var(--navy); max-width: 22ch;
}
.criteria { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); gap: clamp(28px,3vw,40px); }
.criteria__item { border-top: 1px solid rgba(11,31,51,0.16); padding-top: 22px; }
.criteria__idx { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 16px; }
.criteria__item h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.2; color: var(--navy); margin-bottom: 10px; }
.criteria__item p { font-size: 16px; line-height: 1.6; color: var(--navy); }
.about-firm__closing { font-size: clamp(19px,2.4vw,22px); line-height: 1.6; color: var(--navy); max-width: 60ch; margin-top: clamp(48px,7vw,72px); }

/* ---------- General Partners ---------- */
.partners { background: var(--navy); padding: var(--section-y) var(--pad); }
.partners__inner { max-width: 1080px; margin: 0 auto; }
.partners__head { display: flex; align-items: center; gap: 24px; margin-bottom: clamp(40px,6vw,60px); }
.partners__head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px,5vw,40px); color: var(--ivory); flex: none; }
.partners__head-line { flex: 1; height: 1px; background: rgba(245,241,232,0.16); }
.gp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(28px,4vw,48px); max-width: 820px; }
.gp-card { display: block; color: var(--ivory); transition: transform .25s ease, color .2s ease; }
.gp-card:hover { color: var(--gold); transform: translateY(-5px); }
.gp-card__photo { aspect-ratio: 3/4; }
.gp-card h3 { font-family: var(--serif); font-weight: 400; font-size: 27px; line-height: 1.2; color: inherit; margin: 24px 0 8px; }
.gp-card__role { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.gp-card__link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: var(--gold); }
.gp-card__link span { font-size: 17px; }

/* ---------- Portfolio ---------- */
.pf-panel { position: relative; overflow: hidden; background: var(--navy); min-height: clamp(560px,86vh,900px); display: flex; }
.pf-panel__content {
  position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding: clamp(32px,5vw,52px) var(--pad) clamp(44px,6vw,72px);
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px; pointer-events: none;
}
.pf-panel__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.pf-panel__kicker { font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.pf-panel__index { font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em; color: rgba(245,241,232,0.6); }
.pf-panel__body { max-width: 760px; }
.status-chip {
  display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(194,154,91,0.7);
  color: var(--gold); font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 8px 14px; border-radius: 2px; margin-bottom: clamp(20px,3vw,28px);
}
.status-chip__dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; display: inline-block; }
.pf-panel h1 { font-family: var(--serif); color: var(--ivory); font-weight: 400; font-size: clamp(46px,9vw,92px); line-height: 1.02; letter-spacing: -0.015em; animation: riseIn .8s ease both; }
.pf-panel__desc { color: rgba(245,241,232,0.85); font-size: clamp(17px,2.2vw,20px); line-height: 1.55; max-width: 48ch; margin-top: clamp(20px,3vw,28px); }
.pf-panel__cta { margin-top: clamp(28px,4vw,40px); }
.pf-panel__cta a { pointer-events: auto; }

/* ---------- Press hub ---------- */
.press-hero { position: relative; overflow: hidden; background: var(--navy); min-height: clamp(360px,52vh,560px); display: flex; }
.press-hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding: clamp(56px,9vw,96px) var(--pad); display: flex; flex-direction: column;
  justify-content: flex-end; pointer-events: none;
}
.press-hero__kicker { font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: clamp(16px,2.5vw,22px); }
.press-hero h1 { font-family: var(--serif); color: var(--ivory); font-weight: 400; font-size: clamp(46px,8.5vw,86px); line-height: 1.02; letter-spacing: -0.015em; animation: riseIn .8s ease both; }
.press-hero__standfirst { color: rgba(245,241,232,0.85); font-size: clamp(17px,2.2vw,20px); line-height: 1.55; max-width: 52ch; margin-top: clamp(18px,2.5vw,26px); }
.articles { background: var(--ivory); padding: clamp(64px,10vw,104px) var(--pad); }
.articles__inner { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; }
.article-row { display: flex; flex-wrap: wrap; gap: clamp(28px,5vw,56px); align-items: center; padding: clamp(48px,7vw,72px) 0; }
.articles__inner .article-row:first-child { padding-top: 0; }
.articles__inner .article-row:last-child { padding-bottom: 0; }
.articles__inner .article-row:not(:first-child) { border-top: 1px solid rgba(11,31,51,0.14); }
.article-row__media { flex: 1 1 240px; max-width: 340px; width: 100%; aspect-ratio: 3/4; }
.article-row__text { flex: 1 1 420px; display: flex; flex-direction: column; }
.article-row__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.article-row h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(26px,3.4vw,34px); line-height: 1.18; letter-spacing: -0.01em; color: var(--navy); max-width: 22ch; }
.article-row h2 a { color: var(--navy); transition: color .2s; }
.article-row h2 a:hover { color: var(--gold); }
.article-row__catch { font-size: 18px; line-height: 1.6; color: var(--navy); max-width: 52ch; margin-top: 16px; }
.article-row__cta { margin-top: 26px; }

/* ---------- Single article ---------- */
.article { background: var(--ivory); padding: clamp(40px,6vw,64px) var(--pad) clamp(72px,11vw,110px); }
.article__head { max-width: 760px; margin: 0 auto; }
.article__head .back-link { margin-bottom: clamp(32px,5vw,48px); }
.article__meta { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.article h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px,5.2vw,54px); line-height: 1.1; letter-spacing: -0.015em; color: var(--navy); }
.article__standfirst { font-family: var(--serif); font-weight: 400; font-size: clamp(20px,2.6vw,25px); line-height: 1.4; color: var(--navy); margin-top: 22px; }
.article__lead { max-width: 1080px; margin: clamp(40px,6vw,60px) auto 0; width: 100%; aspect-ratio: 16/9; }
.article__body { max-width: 720px; margin: clamp(44px,6vw,64px) auto 0; }
.article__body p { font-size: 18px; line-height: 1.75; color: var(--navy); }
.article__body p + p { margin-top: 24px; }
.article__body blockquote {
  font-family: var(--serif); font-weight: 400; font-size: clamp(24px,3.2vw,30px);
  line-height: 1.32; color: var(--navy); margin: clamp(36px,5vw,48px) 0;
  padding-left: 28px; border-left: 3px solid var(--gold);
}

/* ---------- Partner profile ---------- */
.profile { background: var(--ivory); padding: clamp(40px,6vw,64px) var(--pad) clamp(72px,11vw,110px); }
.profile__inner { max-width: 1080px; margin: 0 auto; }
.profile__inner .back-link { margin-bottom: clamp(36px,6vw,52px); }
.profile__row { display: flex; flex-wrap: wrap; gap: clamp(36px,6vw,72px); align-items: flex-start; }
.profile__media { flex: 1 1 300px; max-width: 420px; }
.profile__photo { aspect-ratio: 4/5; }
.profile__body { flex: 1 1 420px; }
.profile__role { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.profile__body h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(38px,6vw,60px); line-height: 1.05; letter-spacing: -0.01em; color: var(--navy); }
.profile__standfirst { font-family: var(--serif); font-weight: 400; font-size: clamp(20px,2.6vw,25px); line-height: 1.4; color: var(--navy); margin-top: 20px; max-width: 34ch; }
.profile__rule { margin: 32px 0; }
.profile__body p.para { font-size: 18px; line-height: 1.6; color: var(--navy); max-width: 60ch; }
.profile__body p.para + p.para { margin-top: 22px; }
.profile__meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: clamp(32px,5vw,56px);
  margin-top: clamp(56px,9vw,88px); padding-top: clamp(40px,5vw,52px); border-top: 1px solid rgba(11,31,51,0.16);
}
.profile__meta-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.profile__focus { display: flex; flex-direction: column; gap: 14px; }
.profile__focus p { font-size: 17px; line-height: 1.5; color: var(--navy); }
.profile__email { font-size: 18px; font-weight: 600; color: var(--navy); }
.profile__email:hover { color: var(--gold); }

/* ---------- Contact panels ---------- */
.contact-panels { background: var(--navy); }
.contact-panels__row { display: flex; flex-wrap: wrap; gap: 1px; background: rgba(194,154,91,0.45); }
.contact-panel { flex: 1 1 300px; position: relative; min-height: clamp(460px,76vh,840px); background: var(--navy); overflow: hidden; display: flex; }
.contact-panel__content {
  position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column;
  justify-content: space-between; gap: 40px; padding: clamp(28px,3vw,44px); pointer-events: none;
}
.contact-panel__idx { font-family: var(--mono); font-size: 13px; letter-spacing: 0.2em; color: var(--gold); }
.contact-panel__title {
  pointer-events: auto; display: inline-block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(29px,3.2vw,40px); line-height: 1.06; letter-spacing: -0.01em; color: var(--ivory); transition: color .2s;
}
.contact-panel__title:hover { color: var(--gold); }
.contact-panel__desc { color: rgba(245,241,232,0.85); font-size: 16px; line-height: 1.55; max-width: 32ch; margin-top: 16px; }
.contact-panel__cta { pointer-events: auto; display: inline-flex; align-items: center; gap: 9px; color: var(--gold); font-size: 15px; font-weight: 600; margin-top: 24px; transition: gap .2s; }
.contact-panel__cta:hover { gap: 15px; color: var(--gold); }
.contact-panel__cta span { font-size: 17px; }

/* ---------- Contact detail (subpages) ---------- */
.contact-detail { background: var(--ivory); padding: clamp(44px,7vw,72px) var(--pad) clamp(72px,11vw,110px); }
.contact-detail__inner { max-width: 720px; margin: 0 auto; }
.contact-detail__inner .back-link { margin-bottom: clamp(36px,6vw,52px); }
.contact-detail__eyebrow { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.contact-detail h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(34px,5.2vw,54px); line-height: 1.08; letter-spacing: -0.015em; color: var(--navy); }
.contact-detail__blurb { font-size: 19px; line-height: 1.65; color: var(--navy); max-width: 56ch; margin-top: 24px; }
.contact-detail__rule { margin: clamp(36px,5vw,48px) 0 clamp(28px,4vw,36px); }
.contact-detail__email-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.contact-detail__email { display: inline-block; font-size: clamp(22px,3.4vw,32px); font-weight: 600; letter-spacing: -0.01em; color: var(--gold); transition: color .2s; }
.contact-detail__email:hover { color: var(--navy); }
.contact-detail__reply { font-size: 16px; line-height: 1.6; color: var(--navy); margin-top: 22px; }

/* ---------- Investor login (standalone) ---------- */
body.investor { background: #000; color: var(--ivory); }
body.investor a { color: var(--ivory); }
body.investor a:hover { color: var(--gold); }
body.investor ::selection { background: var(--gold); color: #000; }
.investor-wrap {
  flex: 1; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 48px 24px;
  background: radial-gradient(115% 90% at 50% 42%, #242424 0%, #161616 34%, #0a0a0a 66%, #000 100%);
}
.investor-card { width: 100%; max-width: 384px; display: flex; flex-direction: column; align-items: center; text-align: center; animation: riseIn .85s ease both; }
.investor-card__logo { display: block; margin-bottom: clamp(36px,6vw,52px); }
.investor-card__logo img { width: 230px; max-width: 70vw; height: auto; }
.investor-kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.investor-card h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(30px,4.5vw,38px); line-height: 1.1; letter-spacing: -0.01em; color: var(--ivory); }
.investor-card__sub { font-size: 15px; line-height: 1.6; color: rgba(245,241,232,0.6); margin-top: 14px; max-width: 34ch; }
.investor-form { width: 100%; display: flex; flex-direction: column; gap: 20px; margin-top: clamp(32px,5vw,44px); text-align: left; }
.investor-form label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,241,232,0.7); margin-bottom: 9px; }
.investor-form input {
  width: 100%; background: rgba(245,241,232,0.05); border: 1px solid rgba(245,241,232,0.22);
  border-radius: 2px; color: var(--ivory); font-family: var(--sans); font-size: 16px;
  padding: 14px 15px; outline: none; transition: border-color .2s, background .2s;
}
.investor-form input:focus { border-color: var(--gold); background: rgba(245,241,232,0.08); }
.investor-form input::placeholder { color: rgba(245,241,232,0.35); }
.investor-submit {
  width: 100%; background: var(--gold); color: var(--navy); font-family: var(--sans);
  font-size: 16px; font-weight: 600; letter-spacing: 0.01em; padding: 15px; border: none;
  border-radius: 2px; cursor: pointer; margin-top: 4px; transition: background .2s;
}
.investor-submit:hover { background: var(--gold-hover); }
.investor-msg { font-size: 14px; line-height: 1.55; color: var(--gold); margin-top: 18px; min-height: 1px; }
.investor-forgot { font-size: 14px; color: rgba(245,241,232,0.6); margin-top: 8px; }
.investor-divider { width: 100%; height: 1px; background: rgba(245,241,232,0.12); margin: clamp(32px,5vw,44px) 0 24px; }
.investor-return { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,241,232,0.45); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track,
  .hero__eyebrow, .hero h1, .hero__cta,
  .page-hero__eyebrow, .page-hero h1, .page-hero__standfirst,
  .pf-panel h1, .press-hero h1, .investor-card { animation: none; }
}
