/* ============================================================
   LIMITLESS CAPITAL MANAGEMENT — Design System
   ============================================================
   HOW TO EDIT COLORS: Change the values in :root below.
   They apply everywhere automatically.

   HOW TO EDIT FONTS:
   Live site uses Adobe Fonts — Futura PT (headings) + Proxima Nova (body).
   We load free licensed lookalikes from Fontshare (Satoshi + Switzer)
   that match that geometric / institutional feel — not Playfair/Inter.
   To use exact Adobe fonts later: create a kit at fonts.adobe.com,
   add Futura PT + Proxima Nova, and replace the @import below.
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,400i,500i&f[]=switzer@300,400,500,600&display=swap');

:root {
  /* — Colors — */
  /* True black base reads more luxurious with gold than navy-blue */
  --black:      #050505;
  --navy:       #0E0E0E;
  --navy-light: #141414;
  --gold:       #C4A96A;
  --gold-bright:#D4BC82;
  --gold-dim:   rgba(196,169,106,0.14);
  --gold-rule:  rgba(196,169,106,0.38);
  --parchment:  #F0EBE1;
  --slate:      #A39E94;
  --slate-lt:   #C8C2B6;
  --white:      #FFFFFF;

  /* — Typography (matches live site: Futura PT + Proxima Nova) — */
  --font-display: 'Satoshi', 'futura-pt', 'Futura', 'Century Gothic', sans-serif;
  --font-body:    'Switzer', 'proxima-nova', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* — Spacing — */
  --section-v:  120px;
  --gutter:     64px;
  --max-width:  1280px;
  /* Synced to .site-nav height (JS updates on scroll/resize) */
  --nav-h:      112px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ── Utility ────────────────────────────────────────────────── */
.inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.gold { color: var(--gold); }
.italic { font-style: italic; }

/* Shared page reveal (all pages) */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal="fade"] { transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  padding: 16px var(--gutter);
  background: rgba(8,12,20,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--gold-rule);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(220px, 48vw);
}
.site-nav.scrolled .nav-logo-img {
  height: 44px;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 28px;
  flex-shrink: 1;
  min-width: 0;
}
.nav-links > li {
  flex-shrink: 0;
}
.nav-links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 6px; }
.nav-item > a::after { content: none !important; }
.nav-chevron {
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
  transition: transform 0.2s;
  pointer-events: none; /* click/hover goes to parent link, not the tiny arrow */
}
.nav-item:hover .nav-chevron,
.nav-item:focus-within .nav-chevron { transform: rotate(-135deg) translateY(-1px); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  /* Invisible bridge so the cursor can travel into the menu */
  padding: 14px 0 10px;
  background: transparent;
  border: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 220;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  border: 1px solid var(--gold-rule);
  z-index: -1;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 11px 22px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--slate-lt);
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus {
  color: var(--gold);
  background: var(--gold-dim);
  outline: none;
}
.nav-dropdown a::after { display: none !important; }

.nav-cta {
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  color: rgba(255,255,255,0.9) !important;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}
.nav-cta:hover {
  color: var(--gold) !important;
  background: transparent !important;
}
.nav-cta::after { display: none !important; }

.nav-portal {
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  background: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  padding: 10px 16px !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.nav-portal:hover {
  background: var(--gold-bright) !important;
  border-color: var(--gold-bright) !important;
  color: var(--black) !important;
}
.nav-portal::after { display: none !important; }
.nav-portal.active::after { display: none !important; }

.nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.nav-social a:hover { color: var(--gold); }
.nav-social svg { display: block; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--parchment);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 190;
  padding: 100px var(--gutter) 60px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer > a,
.nav-drawer-parent {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--parchment);
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid var(--gold-rule);
  background: none;
  transition: color 0.2s;
  text-align: left;
  width: 100%;
}
.nav-drawer > a:hover,
.nav-drawer-parent:hover { color: var(--gold); }
.nav-drawer-group {
  border-bottom: 1px solid var(--gold-rule);
}
.nav-drawer-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  border-bottom: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-drawer-chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-right: 4px;
}
.nav-drawer-group.open .nav-drawer-chevron {
  transform: rotate(-135deg);
}
.nav-drawer-subs {
  display: none;
  flex-direction: column;
  padding: 0 0 12px 12px;
}
.nav-drawer-group.open .nav-drawer-subs {
  display: flex;
}
.nav-drawer-subs a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--slate);
  padding: 12px 0;
  border-bottom: none;
}
.nav-drawer-subs a:hover,
.nav-drawer-subs a.active {
  color: var(--gold);
}
.nav-drawer-cta {
  margin-top: 36px;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold-rule) !important;
  padding: 16px 32px !important;
  text-align: center;
}
.nav-drawer-portal {
  margin-top: 12px;
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  padding: 16px 32px !important;
  text-align: center;
}

/* ── Section base ────────────────────────────────────────────── */
.section { padding: var(--section-v) 0; }
.section--navy { background: var(--navy); }
.section--navy-light { background: var(--navy-light); }
.section--black { background: var(--black); }

.section-kicker {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(196,169,106,0.35);
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--parchment);
}
.section-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.section-body {
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--slate-lt);
  max-width: 560px;
}

/* ── Gold divider ────────────────────────────────────────────── */
.gold-rule {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 28px 0;
  box-shadow: 0 0 10px rgba(196,169,106,0.3);
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 34px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-bright); }
.btn-outline {
  background: transparent;
  color: var(--parchment);
  border: 1px solid var(--gold-rule);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0;
  border-bottom: 1px solid var(--gold-rule);
  padding-bottom: 3px;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
.btn-ghost:hover { border-color: var(--gold); }

.btn-dark {
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 40px;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}
.btn-dark:hover { background: var(--navy); }

/* ── Media / images ──────────────────────────────────────────── */
.media-frame {
  position: relative;
  overflow: hidden;
  background: var(--navy-light);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Shared page hero (inner pages) ──────────────────────────── */
.page-hero {
  padding: 140px 0 56px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gold-rule);
}
/* Subnav already clears the fixed header — don't double-pad the hero */
.subnav + .page-hero {
  padding-top: 48px;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: -20%;
  width: 55%;
  height: 140%;
  background: radial-gradient(ellipse 60% 55% at 60% 45%, rgba(196,169,106,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--parchment);
  max-width: 780px;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.page-hero-sub {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate-lt);
  max-width: 540px;
  margin-top: 18px;
}

/* Compact firm layouts — fewer stacked sections */
.section--firm { padding: 64px 0; }
.firm-stack {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.firm-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 64px;
  align-items: start;
}
.firm-duo .detail-body p + p { margin-top: 14px; }
.firm-aside-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  max-height: 560px;
  overflow: hidden;
  background: var(--navy-light);
}
.firm-aside-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.firm-quote-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--gold-rule);
}
.firm-quote-row .prose-quote { margin: 0; }
.steps--rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 28px;
  border: 1px solid var(--gold-rule);
}
.steps--rail .step-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
  border-bottom: none;
  border-right: 1px solid var(--gold-rule);
  grid-template-columns: none;
}
.steps--rail .step-row:first-child { border-top: none; }
.steps--rail .step-row:last-child { border-right: none; }
.steps--rail .step-title { font-size: 1rem; margin-bottom: 0; }
.steps--rail .step-body { font-size: 0.82rem; line-height: 1.55; }
.vision-triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gold-rule);
  overflow: hidden;
}
.vision-card {
  padding: 0;
  border-right: 1px solid var(--gold-rule);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}
.vision-card:last-child { border-right: none; }
.vision-card-media {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--navy-light);
  flex-shrink: 0;
}
.vision-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.vision-card-body { padding: 28px 24px 32px; }
.vision-card .prose-quote {
  margin: 16px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: none;
}
.firm-wide-img {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 0;
  max-height: 360px;
  overflow: hidden;
  background: var(--navy-light);
  margin: 0 0 28px;
}
.firm-wide-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.num-grid--dense .num-cell { padding: 24px 22px; }
.num-grid--dense .num-title { font-size: 1.05rem; margin-bottom: 6px; }
.num-grid--dense .num-body { font-size: 0.84rem; line-height: 1.55; }
.section-rule {
  height: 1px;
  background: var(--gold-rule);
  margin: 8px 0;
}
@media (max-width: 900px) {
  .firm-duo,
  .firm-quote-row,
  .vision-triad { grid-template-columns: 1fr; gap: 28px; }
  .firm-aside-img {
    aspect-ratio: 4 / 5;
    max-width: min(100%, 420px);
    max-height: 480px;
    min-height: 0;
  }
  .vision-card { border-right: none; border-bottom: 1px solid var(--gold-rule); }
  .vision-card:last-child { border-bottom: none; }
  .vision-card-media { aspect-ratio: 3 / 2; min-height: 0; }
  .firm-wide-img { aspect-ratio: 3 / 2; min-height: 0; max-height: 280px; }
  .steps--rail { grid-template-columns: 1fr; }
  .steps--rail .step-row {
    border-right: none;
    border-bottom: 1px solid var(--gold-rule);
    flex-direction: row;
    gap: 16px;
  }
  .steps--rail .step-row:last-child { border-bottom: none; }
}

/* ── Section sub-nav ─────────────────────────────────────────── */
.subnav {
  position: sticky;
  top: var(--nav-h);
  z-index: 150;
  margin-top: var(--nav-h);
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-rule);
}
.subnav .inner {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.subnav .inner::-webkit-scrollbar { display: none; }
.subnav .inner::after {
  content: '';
  flex: 0 0 8px;
}
.subnav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  white-space: nowrap;
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.subnav a:hover { color: var(--parchment); }
.subnav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ── Hub destination links ───────────────────────────────────── */
.hub-list {
  border-top: 1px solid var(--gold-rule);
}
.hub-link {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--gold-rule);
  transition: background 0.2s;
}
.hub-link:hover .hub-link-title { color: var(--gold); }
.hub-link:hover .hub-link-arrow { transform: translateX(6px); color: var(--gold); }
.hub-link-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
}
.hub-link-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--parchment);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.hub-link-body {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--slate-lt);
  max-width: 520px;
}
.hub-link-arrow {
  font-size: 1.2rem;
  color: var(--slate);
  transition: transform 0.25s, color 0.25s;
}

/* ── Detail page content ─────────────────────────────────────── */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.detail-body {
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--slate-lt);
}
.detail-body p + p { margin-top: 20px; }
.detail-body strong { color: var(--parchment); font-weight: 500; }
.detail-media {
  height: auto;
  overflow: hidden;
  background: var(--navy-light);
}
.detail-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}
.detail-list { display: flex; flex-direction: column; gap: 0; margin-top: 36px; }
.detail-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--gold-rule);
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  align-items: start;
}
.detail-item:first-child { border-top: 1px solid var(--gold-rule); }
.detail-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  margin-top: 8px;
}
.detail-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 4px;
}
.detail-item-body {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--slate-lt);
}

/* Rich article sections (Firm pages) */
.prose-block { max-width: 760px; }
.prose-block + .prose-block,
.section + .section { }
.prose-h {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--parchment);
  margin: 0 0 20px;
}
.prose-h em { font-style: italic; font-weight: 400; color: var(--gold); }
.prose-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--parchment);
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 36px 0;
  max-width: 720px;
}
.prose-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px 56px;
  align-items: start;
}
.prose-split.reverse {
  direction: rtl;
}
.prose-split.reverse > * { direction: ltr; }

/* Full portrait media — sized to fill the column beside rich copy */
.figure-tall {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  background: var(--navy-light);
  align-self: stretch;
}
.figure-tall > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Founder / leadership */
.leadership {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.leadership-head {
  max-width: 680px;
}
.leadership-head .section-kicker { margin-bottom: 14px; }
.leadership-head .prose-h {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}
.leadership-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.58fr);
  gap: 48px;
  align-items: start;
}
.leadership-portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-light);
  align-self: start;
  min-height: 0;
  border: 1px solid var(--gold-rule);
}
.leadership-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.leadership-portrait::after {
  content: '';
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(5,5,5,0.88));
  pointer-events: none;
}
.leadership-identity {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 22px;
}
.leadership-identity p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 3px;
}
.leadership-identity span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.leadership-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}
.leadership-journey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
  border-top: 1px solid var(--gold-rule);
  border-left: 1px solid var(--gold-rule);
}
.leadership-stage {
  position: relative;
  padding: 24px 24px 26px;
  border-right: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
  min-width: 0;
}
.leadership-stage--synthesis {
  background: var(--gold-dim);
}
.leadership-stage .num-label { margin-bottom: 10px; }
.leadership-stage .num-title {
  font-size: 1.05rem;
  margin-bottom: 7px;
}
.leadership-stage .num-body {
  font-size: 0.82rem;
  line-height: 1.58;
}
.leadership-foot {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px 48px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--gold-rule);
}
.leadership-foot .prose-quote {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}
.leadership-foot .ext-links { margin-top: 0; }

/* Beliefs page */
.belief-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px 56px;
  align-items: start;
}
.belief-feature-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  overflow: hidden;
  background: var(--navy-light);
  border: 1px solid var(--gold-rule);
}
.belief-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.belief-placards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--gold-rule);
  overflow: hidden;
}
.belief-placard {
  padding: 28px 24px 32px;
  border-right: 1px solid var(--gold-rule);
  min-width: 0;
}
.belief-placard:last-child { border-right: none; }
.belief-placard .num-label { margin-bottom: 14px; }
.belief-placard .num-title { margin-bottom: 10px; }

/* Legacy founder block (if referenced) */
.founder-block {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 40px 56px;
  align-items: start;
}
.founder-block-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}
.founder-intro-copy .prose-h { margin-bottom: 16px; }
.founder-block-main .ext-links { margin-top: 0; }
.founder-journey-grid { margin-top: 0; }
.figure-tall--founder {
  width: 100%;
  max-width: none;
  max-height: none;
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin-left: 0;
  background: transparent;
  align-self: start;
}
.figure-tall--founder > img {
  object-position: center top;
}

/* Landscape media — dashboards, wide photos */
.figure-land {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  min-height: clamp(240px, 22vw, 360px);
  overflow: hidden;
  background: var(--navy-light);
  align-self: start;
}
.figure-land > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.figure-wide {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy-light);
  margin: 28px 0;
}
.figure-wide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--gold-rule);
  margin-top: 28px;
}
.num-cell {
  padding: 28px 26px;
  border-right: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
}
.num-cell:nth-child(2n) { border-right: none; }
.num-cell:nth-last-child(-n+2) { border-bottom: none; }
.num-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.num-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 10px;
}
.num-body {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate-lt);
}
.steps {
  counter-reset: step;
  margin-top: 28px;
}
.step-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gold-rule);
}
.step-row:first-child { border-top: 1px solid var(--gold-rule); }
.step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 8px;
}
.step-body {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate-lt);
}
.ext-links { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }
.ext-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gold-rule);
  font-size: 0.88rem;
  color: var(--slate-lt);
  transition: color 0.2s;
  min-width: 0;
  overflow-wrap: anywhere;
}
.ext-link:first-child { border-top: 1px solid var(--gold-rule); }
.ext-link::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold-rule);
  transition: width 0.2s, background 0.2s;
}
.ext-link:hover { color: var(--gold); }
.ext-link:hover::before { width: 34px; background: var(--gold); }

.pager {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0 0;
  border-top: 1px solid var(--gold-rule);
  margin-top: 40px;
}
.pager a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-lt);
  transition: color 0.2s;
}
.pager a:hover { color: var(--gold); }
.pager-next { text-align: right; margin-left: auto; }

@media (max-width: 900px) {
  .hub-link { grid-template-columns: 48px 1fr; gap: 16px; }
  .hub-link-arrow { display: none; }
  .detail-layout { grid-template-columns: 1fr; gap: 36px; }
  .detail-media { height: auto; }
  .prose-split, .prose-split.reverse { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
  /* Keep image-first stacking even when DOM order is reversed for desktop */
  .prose-split.reverse > .figure-tall,
  .prose-split.reverse > .figure-land { order: -1; }
  .figure-tall:not(.figure-tall--founder) {
    aspect-ratio: 4 / 5;
    max-width: min(100%, 480px);
    max-height: none;
    width: 100%;
    min-height: 0;
  }
  .founder-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .leadership-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .leadership-portrait {
    width: min(100%, 380px);
    aspect-ratio: 4 / 5;
    align-self: start;
  }
  .leadership-content { justify-content: flex-start; }
  .leadership-foot {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }
  .belief-feature {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .belief-feature-media {
    max-width: min(100%, 420px);
    max-height: 480px;
  }
  .belief-placards { grid-template-columns: 1fr; }
  .belief-placard {
    border-right: none;
    border-bottom: 1px solid var(--gold-rule);
  }
  .belief-placard:last-child { border-bottom: none; }
  .figure-tall--founder {
    width: min(100%, 400px);
    max-width: 400px;
    margin-left: 0;
    max-height: none;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }
  .figure-land { aspect-ratio: 3 / 2; width: 100%; max-width: none; min-height: 0; }
  .figure-wide { aspect-ratio: 16 / 9; min-height: 0; }
  .num-grid { grid-template-columns: 1fr; }
  .num-cell { border-right: none; }
  .num-cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--gold-rule); }
  .num-cell:last-child { border-bottom: none; }
  .subnav .inner {
    gap: 20px;
    mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 24px), transparent 100%);
  }
  .subnav .inner::after { flex-basis: 20px; }
}

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band {
  background: var(--gold);
  padding: 56px 0;
}
.cta-band .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.cta-band-kicker {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(8,12,20,0.5);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-band-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
}
.cta-band-headline em {
  font-style: italic;
  font-weight: 400;
  color: rgba(8,12,20,0.55);
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--gold-rule);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}
.footer-logo img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 260px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-rule);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate-lt);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { display: block; }
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--slate);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gold-rule);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: 0.66rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate);
  max-width: 720px;
}
.footer-legal a { color: var(--gold); }
.footer-legal a:hover { text-decoration: underline; }
.footer-reg {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-disclaimer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(196,169,106,0.2);
  font-size: 0.64rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--slate);
  max-width: 960px;
}
.footer-disclaimer a { color: var(--gold); }
.footer-disclaimer a:hover { text-decoration: underline; }

/* ── Compliance / disclosures ────────────────────────────────── */
.compliance-callout {
  border: 1px solid var(--gold-rule);
  background: rgba(196,169,106,0.06);
  padding: 20px 24px;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate-lt);
  max-width: 860px;
}
.compliance-callout strong { color: var(--parchment); font-weight: 500; }
.compliance-callout a { color: var(--gold); border-bottom: 1px solid var(--gold-rule); }
.compliance-note {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate-lt);
  border-left: 2px solid var(--gold);
  padding-left: 16px;
  margin-top: 20px;
}
.process-steps { display: flex; flex-direction: column; gap: 48px; margin-top: 8px; }
.process-step .step-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.process-step .step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.screen-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--gold-rule);
}
.screen-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
  min-width: 480px;
}
.screen-table th,
.screen-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gold-rule);
}
.screen-table th {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,169,106,0.06);
}
.screen-table td { color: var(--slate-lt); font-weight: 300; }
.screen-table tr:last-child td { border-bottom: none; }
.page-disclosures {
  border-top: 1px solid var(--gold-rule);
  padding-top: 40px;
  max-width: 760px;
}
.page-disclosures-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.page-disclosures-body {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate);
}
.page-disclosures-body p + p { margin-top: 12px; }
.page-disclosures-body strong { color: var(--slate-lt); font-weight: 500; }
.page-disclosures-body a { color: var(--gold); }

/* ── Forms ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-lt);
  margin-bottom: 10px;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-rule);
  padding: 12px 0;
  color: var(--parchment);
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: var(--gold);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--slate);
  opacity: 0.7;
}
.form-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--slate);
  margin-top: 16px;
  line-height: 1.6;
}

/* ── ADV request (locked brochure) ───────────────────────────── */
.adv-request-wrap {
  margin-top: 28px;
  max-width: 480px;
}
#adv-request {
  scroll-margin-top: calc(var(--nav-h, 80px) + 24px);
}
.adv-request-form-box {
  background: var(--navy);
  border: 1px solid var(--gold-rule);
  padding: 32px 28px;
}
.adv-request-wrap .form-success {
  display: none;
  padding: 8px 0;
}
.adv-request-wrap.sent .contact-form { display: none; }
.adv-request-wrap.sent .form-success { display: block; }
.adv-request-wrap .form-success h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 8px;
}
.adv-request-wrap .form-success p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--slate-lt);
  line-height: 1.65;
}
.adv-request-wrap .form-error {
  display: none;
  margin-bottom: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(200, 80, 80, 0.45);
  background: rgba(200, 80, 80, 0.12);
}
.adv-request-wrap .form-error[hidden] { display: none; }
.adv-request-wrap .form-error:not([hidden]) { display: block; }
.adv-request-wrap .form-error p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--slate-lt);
  line-height: 1.65;
}
.adv-request-wrap .form-error a { color: var(--gold); }
.adv-request-wrap .contact-form.is-sending .btn {
  opacity: 0.65;
  pointer-events: none;
}
.adv-request-wrap .form-note { margin-bottom: 24px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --gutter: 40px; }
  .nav-links { gap: 18px; }
  .nav-social { display: none; } /* free space before hamburger kicks in */
}
/* Hamburger earlier — desktop links + CTA + portal don't fit mid widths */
@media (max-width: 1080px) {
  :root {
    --section-v: 72px;
    --gutter: 20px;
    --nav-h: 72px;
  }
  .site-nav {
    padding: 14px var(--gutter);
    min-height: var(--nav-h);
  }
  .nav-logo-img {
    height: 40px;
    max-width: min(168px, 58vw);
  }
  .site-nav.scrolled {
    padding: 12px var(--gutter);
  }
  .site-nav.scrolled .nav-logo-img {
    height: 36px;
  }
  .nav-links,
  .nav-social { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { padding-top: calc(var(--nav-h) + 28px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-band { padding: 44px 0; }
  .cta-band .inner { grid-template-columns: 1fr; gap: 24px; }
  .cta-band .btn-dark { width: 100%; text-align: center; }
  .page-hero { padding: 100px 0 40px; }
  .subnav + .page-hero { padding-top: 36px; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .page-hero-sub { font-size: 0.95rem; margin-top: 14px; }
  .section--firm { padding: 40px 0; }
  .firm-stack { gap: 36px; }
  .prose-h { font-size: clamp(1.55rem, 6.5vw, 2rem); }
  .pager { margin-top: 28px; gap: 16px; }
  .footer-logo img { height: 52px; max-width: min(220px, 70vw); }
}
@media (max-width: 520px) {
  :root {
    --gutter: 16px;
    --nav-h: 68px;
  }
  .site-nav { padding: 12px var(--gutter); }
  .nav-logo-img { height: 36px; }
  .site-nav.scrolled { padding: 10px var(--gutter); }
  .site-nav.scrolled .nav-logo-img { height: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-reg { white-space: normal; }
  .subnav .inner { gap: 16px; padding-top: 12px; padding-bottom: 12px; }
  .leadership { gap: 28px; }
  .leadership-portrait { width: 100%; }
  .leadership-journey { grid-template-columns: 1fr; }
  .leadership-stage { padding: 22px 20px 24px; }
  .leadership-foot { padding-top: 28px; }
}
