/* ============================================================
   Nathan Buzza — v5 (Apple-style)
   Clean monochromatic system. Inter typography.
   White / near-black / neutral grays. Generous whitespace.
   ============================================================ */

/* ----- Fonts ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Newsreader:ital,wght@0,400;0,500;0,600;1,400;1,500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ----- Design tokens ----- */
:root {
  /* Apple-style color system */
  --white:        #ffffff;
  --off-white:    #fbfbfd;     /* Apple's bg */
  --light:        #f5f5f7;     /* Apple's light gray section bg */
  --light-2:      #e8e8ed;
  --rule:         #d2d2d7;
  --rule-soft:    rgba(0,0,0,0.08);
  --ink:          #1d1d1f;     /* Apple's near-black */
  --ink-2:        #424245;
  --ink-soft:     #6e6e73;     /* Apple's secondary */
  --ink-faint:    #86868b;     /* Apple's tertiary */
  --black:        #000000;
  --accent:       #1d1d1f;     /* Use ink as accent — monochromatic */
  --link:         #0066cc;     /* Apple's link blue */

  /* Type scale */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --font-serif:   'Newsreader', Georgia, serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', Menlo, monospace;

  /* Layout */
  --container:    1240px;
  --container-narrow: 880px;
  --pad-x:        max(24px, 5vw);

  /* Timing */
  --ease:         cubic-bezier(0.42, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --dur:          0.4s;
  --dur-slow:     0.9s;

  /* Shadows */
  --shadow-sm:    0 1px 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04);
  --shadow:       0 4px 12px rgba(0,0,0,0.06), 0 16px 48px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.08), 0 32px 96px rgba(0,0,0,0.16);
}

/* ----- Base ----- */
html, body { background: var(--white); }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' 1, 'cv11' 1;
  padding-top: 52px;
}
::selection { background: var(--ink); color: var(--white); }

/* ----- Type ----- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.font-serif { font-family: var(--font-serif); font-weight: 400; }
.italic { font-style: italic; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-transform: none;
  margin-bottom: 16px;
}
.eyebrow--accent { color: var(--link); }

/* ============================================================
   Sticky Nav (Apple-style)
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 52px;
  background: #ffffff;
  border-bottom: 1px solid var(--rule);
  transition: background var(--dur) var(--ease);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.nav.dark {
  background: var(--ink);
  border-bottom-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.nav__inner {
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav.dark .nav__brand { color: var(--white); }
.nav__brand-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); display: inline-block; }
.nav.dark .nav__brand-dot { background: var(--white); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.nav.dark .nav__links a { color: var(--white); }
.nav__links a:hover { color: var(--ink-soft); }
.nav__links a.active { font-weight: 600; }

.nav__cta,
.nav__links a.nav__cta {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  border: 1px solid var(--ink);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav.dark .nav__cta,
.nav.dark .nav__links a.nav__cta { background: var(--white); color: var(--ink); border-color: var(--white); }
.nav__cta:hover,
.nav__links a.nav__cta:hover { background: #000; border-color: #000; color: #ffffff; }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  width: 36px; height: 36px;
  position: relative;
}
.nav__toggle::before,
.nav__toggle::after {
  content: "";
  position: absolute;
  left: 8px; right: 8px;
  height: 1.2px;
  background: var(--ink);
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease);
}
.nav.dark .nav__toggle::before,
.nav.dark .nav__toggle::after { background: var(--white); }
.nav__toggle::before { top: 13px; }
.nav__toggle::after { top: 21px; }
.nav__toggle.open::before { top: 17px; transform: rotate(45deg); }
.nav__toggle.open::after { top: 17px; transform: rotate(-45deg); }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__links.open {
    display: flex;
    position: fixed;
    inset: 52px 0 0 0;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 32px 24px;
    gap: 4px;
    border-top: 1px solid var(--rule-soft);
  }
  .nav__links.open a {
    font-size: 22px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .nav__links.open .nav__cta {
    margin-top: 16px;
    text-align: center;
    padding: 14px;
    font-size: 16px;
  }
}

/* ============================================================
   Container + section primitives
   ============================================================ */
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--xl { padding: 160px 0; }
.section--dark { background: var(--ink); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--ink-faint); }
.section--light { background: var(--light); }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.wrap--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

.reveal-fade {
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-fade.in { opacity: 1; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  background: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(0,0,0,0.04), transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(0,0,0,0.03), transparent 60%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero__title {
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 28px;
  color: var(--ink);
}
.hero__title .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero__sub {
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 560px;
  font-weight: 400;
  margin-bottom: 40px;
}
.hero__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
}
.hero__meta-item .label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.hero__meta-item .value {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__portrait {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__portrait img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__portrait { max-width: 340px; margin: 0 auto; order: -1; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 999px;
  transition: all var(--dur) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--dark {
  background: var(--ink);
  color: var(--white);
}
.btn--dark:hover { background: #000; transform: translateY(-1px); }
.btn--light {
  background: var(--white);
  color: var(--ink);
}
.btn--light:hover { background: var(--light); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--link {
  padding: 0;
  background: none;
  color: var(--link);
  font-weight: 400;
  border-radius: 0;
}
.btn--link:hover { text-decoration: underline; }
.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============================================================
   Section heading
   ============================================================ */
.section-head { margin-bottom: 64px; }
.section-head--center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 20px;
}
.section-head h2 .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.section-head p {
  font-size: 20px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 640px;
}
.section-head--center p { margin-left: auto; margin-right: auto; }

/* ============================================================
   Stats band
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.stat__num {
  display: block;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 12px;
  font-feature-settings: 'tnum' 1;
}
.stat__num .suffix { font-size: 0.55em; font-weight: 500; opacity: 0.7; margin-left: 2px; }
.stat__label {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.section--dark .stat__label { color: var(--ink-faint); }

@media (max-width: 880px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
}

/* ============================================================
   Company chapter (image + content)
   ============================================================ */
.chapter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--rule-soft);
}
.chapter-card:last-child { border-bottom: 1px solid var(--rule-soft); }
.chapter-card--reverse { direction: rtl; }
.chapter-card--reverse > * { direction: ltr; }

.chapter-card__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--light);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chapter-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chapter-card__media--dark {
  background: var(--ink);
  color: var(--white);
}
.chapter-card__media svg.wordmark { width: 60%; max-width: 320px; height: auto; }

.chapter-card__years {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.chapter-card__name {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 12px;
}
.chapter-card__role {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.chapter-card__body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.chapter-card__body p { margin-bottom: 16px; }
.chapter-card__body p:last-child { margin-bottom: 0; }

.chapter-card__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-soft);
}
.fact__num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
  font-feature-settings: 'tnum' 1;
}
.fact__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .chapter-card { grid-template-columns: 1fr; gap: 40px; }
  .chapter-card--reverse { direction: ltr; }
  .chapter-card__facts { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Quote pull
   ============================================================ */
.quote-pull {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.quote-pull p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.quote-pull cite {
  font-style: normal;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
  display: block;
}

/* ============================================================
   Awards grid
   ============================================================ */
.awards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.award {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px;
  transition: all var(--dur) var(--ease);
}
.award:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.award__year {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.award__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.award__org {
  font-size: 14px;
  color: var(--ink-soft);
}
@media (max-width: 880px) {
  .awards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .awards { grid-template-columns: 1fr; }
}

/* ============================================================
   Family
   ============================================================ */
.family {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.family-card {
  background: var(--light);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all var(--dur) var(--ease);
}
.family-card:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.family-card__name {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.family-card__role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.family-card__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
@media (max-width: 880px) {
  .family { grid-template-columns: 1fr; }
}

/* ============================================================
   Home / HIA
   ============================================================ */
.home-hero-img {
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 1200px;
}
.home-hero-img img { width: 100%; }
.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.home-grid figure {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.home-grid img { width: 100%; transition: transform 0.8s var(--ease-out); }
.home-grid figure:hover img { transform: scale(1.03); }
.home-grid figcaption {
  padding: 16px 4px 0;
  font-size: 14px;
  color: var(--ink-soft);
  text-align: center;
}
.home-award {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 20px;
}
.home-award__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ffffff;
  display: inline-block;
}
@media (max-width: 760px) {
  .home-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Family Office / Portfolio
   ============================================================ */
.fo-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.fo-summary__card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  text-align: left;
}
.section--dark .fo-summary__card {
  background: #2c2c2e;
  border-color: rgba(255,255,255,0.06);
}
.fo-summary__num {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
  font-feature-settings: 'tnum' 1;
}
.fo-summary__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.section--dark .fo-summary__label { color: var(--ink-faint); }

.allocation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.allocation__bar {
  display: flex;
  width: 100%;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}
.allocation__bar > div {
  transition: opacity var(--dur) var(--ease);
}
.allocation__bar > div:hover { opacity: 0.85; }
.allocation__legend {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.allocation__legend-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 14px;
}
.allocation__legend-dot { width: 12px; height: 12px; border-radius: 3px; }
.allocation__legend-pct {
  font-feature-settings: 'tnum' 1;
  font-weight: 500;
  color: var(--ink);
}
.section--dark .allocation__legend-pct { color: var(--white); }

.holdings {
  margin-top: 64px;
}
.holdings__table {
  width: 100%;
  border-top: 1px solid var(--rule);
}
.holdings__row {
  display: grid;
  grid-template-columns: 100px 1fr auto 120px;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-soft);
  transition: background var(--dur) var(--ease);
}
.section--dark .holdings__row { border-bottom-color: rgba(255,255,255,0.08); }
.holdings__row:hover { background: var(--light); padding-left: 12px; padding-right: 12px; margin-left: -12px; margin-right: -12px; border-radius: 8px; }
.section--dark .holdings__row:hover { background: rgba(255,255,255,0.04); }
.holdings__ticker {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}
.section--dark .holdings__ticker { color: var(--white); }
.holdings__name {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.3;
}
.section--dark .holdings__name { color: var(--ink-faint); }
.holdings__type {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--light);
  border-radius: 999px;
  white-space: nowrap;
}
.section--dark .holdings__type { background: rgba(255,255,255,0.08); color: var(--ink-faint); }
.holdings__pct {
  font-feature-settings: 'tnum' 1;
  font-weight: 600;
  font-size: 17px;
  text-align: right;
  color: var(--ink);
}
.section--dark .holdings__pct { color: var(--white); }
.holdings__head {
  display: grid;
  grid-template-columns: 100px 1fr auto 120px;
  gap: 24px;
  padding: 12px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}
.holdings__head > *:last-child { text-align: right; }

@media (max-width: 880px) {
  .fo-summary { grid-template-columns: 1fr 1fr; }
  .allocation { grid-template-columns: 1fr; gap: 32px; }
  .holdings__row, .holdings__head { grid-template-columns: 80px 1fr 80px; }
  .holdings__type { display: none; }
}

/* ============================================================
   Company wordmarks (SVG containers)
   ============================================================ */
.wordmark-tile {
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  padding: 8%;
  position: relative;
  overflow: hidden;
}
.wordmark-tile--light {
  background: var(--light);
  color: var(--ink);
}
.wordmark-tile--accent { background: #0a4b78; color: var(--white); }
.wordmark-tile--green { background: #1d4d3e; color: var(--white); }
.wordmark-tile--burgundy { background: #5c1f25; color: var(--white); }
.wordmark-tile--cobalt { background: #1c3d6d; color: var(--white); }
.wordmark-tile--charcoal { background: #2c2c2e; color: var(--white); }
.wordmark-tile--purple { background: #2d1b4e; color: var(--white); }

.wordmark-tile svg { width: 70%; max-width: 280px; height: auto; }

.wordmark-tile__bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wordmark-tile__bg svg { width: 200%; height: 200%; }

/* ============================================================
   Page hero (for sub-pages)
   ============================================================ */
.page-hero {
  padding: 120px 0 80px;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  border-bottom: 1px solid var(--rule-soft);
}
.page-hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 16px;
  display: block;
}
.page-hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}
.page-hero h1 .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.page-hero__lede {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ============================================================
   Story / chapter page (full chronology)
   ============================================================ */
.chapter-full { padding: 100px 0; border-top: 1px solid var(--rule-soft); }
.chapter-full__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
}
.chapter-full__rail {
  position: sticky;
  top: 80px;
  align-self: start;
}
.chapter-full__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 80px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
}
.chapter-full__years {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.chapter-full__role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
}
.chapter-full__body {
  max-width: 680px;
}
.chapter-full__body h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 16px;
}
.chapter-full__body h2 .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.chapter-full__body .tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  line-height: 1.4;
}
.chapter-full__body p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 20px;
  color: var(--ink-2);
}
.chapter-full__body em {
  font-family: var(--font-serif);
  font-style: italic;
}

.chapter-full--dark { background: var(--ink); color: var(--white); }
.chapter-full--dark h2 { color: var(--white); }
.chapter-full--dark p { color: var(--ink-faint); }
.chapter-full--dark .chapter-full__num { color: rgba(255,255,255,0.2); }
.chapter-full--dark .chapter-full__years { color: var(--ink-faint); }
.chapter-full--dark .chapter-full__role { color: var(--ink-faint); }
.chapter-full--dark .chapter-full__body .tagline { color: var(--ink-faint); }

.story-callout {
  background: var(--light);
  padding: 32px;
  border-radius: 16px;
  margin: 32px 0;
  border-left: 4px solid var(--ink);
}
.chapter-full--dark .story-callout {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--white);
}
.story-callout__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.chapter-full--dark .story-callout__label { color: var(--ink-faint); }
.story-callout h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.chapter-full__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
}
.chapter-full--dark .chapter-full__facts { border-top-color: rgba(255,255,255,0.08); }

@media (max-width: 980px) {
  .chapter-full__inner { grid-template-columns: 1fr; gap: 24px; }
  .chapter-full__rail { position: static; }
  .chapter-full__num { font-size: 56px; }
}

/* Chapter brand mark — small refined logo above the H2 in each chapter */
.chapter-full__brand {
  height: 64px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
}
.chapter-full__brand img {
  max-height: 64px;
  max-width: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.95;
}
.chapter-full__brand--tall img { max-height: 96px; }
/* Force black-on-transparent logos to render white on dark chapters */
.chapter-full--dark .chapter-full__brand img.tint-light {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
@media (max-width: 720px) {
  .chapter-full__brand { height: 48px; margin-bottom: 20px; }
  .chapter-full__brand img { max-height: 48px; max-width: 220px; }
  .chapter-full__brand--tall img { max-height: 72px; }
}

/* Inline mini-figure used inside a story-callout (e.g. Secret Service photo + badge) */
.callout-figure {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 14px 0 8px;
}
.callout-figure__img {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}
.callout-figure__img img {
  width: 100%;
  height: auto;
  display: block;
}
.callout-figure__badge {
  flex: 0 0 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.callout-figure__badge img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.92;
}
@media (max-width: 560px) {
  .callout-figure { flex-direction: column; align-items: stretch; }
  .callout-figure__badge { flex: 0 0 auto; max-width: 96px; margin: 0 auto; }
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 120px 0 48px;
  position: relative;
}
.footer__cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
  padding: 0 var(--pad-x);
}
.footer__cta h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--white);
}
.footer__cta h2 .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.footer__cta p {
  font-size: 19px;
  color: var(--ink-faint);
  margin-bottom: 32px;
  line-height: 1.5;
}
.footer__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.footer__meta {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px var(--pad-x) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-faint);
}
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: flex-end; }
.footer__links a { color: var(--ink-faint); transition: color var(--dur) var(--ease); }
.footer__links a:hover { color: var(--white); }
@media (max-width: 640px) {
  .footer__meta { flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer__links { justify-content: flex-start; gap: 16px 20px; }
}

/* Backwards-compatible alias — historic markup used .footer__bottom in places */
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px var(--pad-x) 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-faint);
  gap: 16px;
  flex-wrap: wrap;
}

/* Skip-link — keyboard a11y. Visible only on focus. */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  font-weight: 600;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; outline: 2px solid var(--white); outline-offset: -4px; }

/* ============================================================
   Memberships — real organisation marks on white tiles, with
   caption below. Replaces the previous credentials-list block.
   ============================================================ */
.memberships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
}
.memberships-grid__cell {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.memberships-grid__tile {
  aspect-ratio: 4 / 3;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.memberships-grid__cell:hover .memberships-grid__tile {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}
.memberships-grid__tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.memberships-grid__cell figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 4px;
}
.memberships-grid__cell figcaption strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.memberships-grid__cell figcaption span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
@media (max-width: 480px) {
  .memberships-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .memberships-grid__tile { padding: 14px; border-radius: 10px; }
  .memberships-grid__cell figcaption strong { font-size: 12px; }
  .memberships-grid__cell figcaption span { font-size: 10.5px; }
}

/* ============================================================
   "Right Now" grid — current vs historical positions, homepage
   ============================================================ */
.now-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.now-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.now-card:hover { border-color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.now-card__tag {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
}
.now-card__tag--active {
  background: #0a0a0c;
  color: var(--white);
}
.now-card__tag--historical {
  background: var(--light);
  color: var(--ink-soft);
  border: 1px solid var(--rule);
}
.now-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0;
  margin: 0;
  padding-right: 80px;
  line-height: 1.3;
}
.now-card__org {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 4px 0 8px;
}
.now-card__years {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0;
}
.now-card__note {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 640px) {
  .now-grid { gap: 12px; }
  .now-card { padding: 20px 18px 16px; }
  .now-card__org { font-size: 19px; }
}

/* ============================================================
   Cross-check / References grid — homepage verification block
   ============================================================ */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
  margin-top: 32px;
}
.refs-card {
  display: block;
  padding: 20px 22px 18px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.refs-card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}
.refs-card__source {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 8px;
}
.refs-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.refs-card__note {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
}

/* ============================================================
   Family note — small block under the three family cards on
   index.html acknowledging family of origin without naming
   people who didn't sign up to be on the site.
   ============================================================ */
.family-note {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
  padding: 24px 28px;
  border-top: 1px solid var(--rule);
}
.family-note p {
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-serif);
}
.family-note em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--ink);
  font-weight: 600;
}

/* ============================================================
   v3.9 — Responsive overflow fixes
   ============================================================ */

/* CSS-grid items resolve to `min-content` minimum unless told otherwise.
   When images / long tokens (tickers, ACNs, single long words) live
   inside a 1fr grid track, they force the track wider than the parent.
   Setting min-width: 0 lets the track shrink correctly. */
.chapter-card > *,
.invest-card > *,
.invest-grid > *,
.chapter-card__facts > *,
.biz-meta > *,
.biz-facts > *,
.house-specs > *,
.fo-summary > *,
.stats > *,
.highlights > *,
.family > *,
.recognition-wall > *,
.press-grid > *,
.moments > *,
.logo-grid > *,
.criteria > *,
.contact-layout > *,
.form-grid > * {
  min-width: 0;
}

/* Long inline tokens (tickers, ACNs, URLs in monospace) should wrap
   rather than push the parent wider. */
.invest-card__ticker,
.biz-meta dd,
.contact-card__value,
.press-card__pub,
.press-card__title,
.chapter-card__years,
.thc__ticker {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Contact page two-column layout — was an inline 1.4fr 1fr grid that
   never collapsed on mobile. Now collapses at the tablet breakpoint. */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Hero portrait + page-hero block — make sure the figure doesn't
   force the surrounding flex container wider than the viewport. */
.hero__portrait,
.page-hero__portrait {
  min-width: 0;
}

/* Defensive: belt-and-braces clipping of any rogue element that
   slips past the rules above. The fixes above address the cause;
   this catches any future regression. */
html, body {
  overflow-x: clip;
}

/* ============================================================
   Portfolio (investments) — for portfolio.html
   ============================================================ */
.invest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.invest-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 20px;
  padding: 32px;
  transition: all var(--dur) var(--ease);
}
.invest-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.invest-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 16px;
}
.invest-card__name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.invest-card__ticker {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
}
.invest-card__status {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  background: var(--light);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.invest-card__status--exit {
  background: var(--ink);
  color: var(--white);
}
.invest-card__role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.invest-card__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}
.invest-card__pct {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}
.invest-card__pct strong { color: var(--ink); font-weight: 600; }

/* Dark variant — for use inside .section--dark.
   Without this rule, .invest-card kept background:white while .section--dark
   set color:white, making the un-coloured .invest-card__name text invisible. */
.invest-card--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
.invest-card--dark:hover {
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}
.invest-card--dark .invest-card__name { color: var(--white); }
.invest-card--dark .invest-card__ticker { color: var(--ink-faint); }
.invest-card--dark .invest-card__role { color: rgba(255, 255, 255, 0.65); }
.invest-card--dark .invest-card__body { color: rgba(255, 255, 255, 0.78); }
.invest-card--dark .invest-card__pct {
  color: var(--ink-faint);
  border-top-color: rgba(255, 255, 255, 0.12);
}
.invest-card--dark .invest-card__pct strong { color: var(--white); }
.invest-card--dark .invest-card__status {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.invest-card--dark .invest-card__status--exit {
  background: var(--white);
  color: var(--ink);
}
@media (max-width: 760px) {
  .invest-grid { grid-template-columns: 1fr; }
}

/* Criteria list */
.criteria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.criterion {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}
.criterion__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink-faint);
  line-height: 1;
}
.criterion__body strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.criterion__body p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
}
@media (max-width: 760px) {
  .criteria { grid-template-columns: 1fr; }
}

/* ============================================================
   Utility — writing teaser, contact channels
   ============================================================ */
.writing-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.writing-card {
  padding: 32px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  transition: all var(--dur) var(--ease);
  display: block;
}
.writing-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.writing-card__date {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-faint);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.writing-card__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.writing-card__excerpt {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.writing-card__excerpt em { font-family: var(--font-serif); font-style: italic; }
@media (max-width: 860px) { .writing-list { grid-template-columns: 1fr; } }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  padding: 32px;
  background: var(--light);
  border-radius: 16px;
  transition: all var(--dur) var(--ease);
  display: block;
}
.contact-card:hover { background: var(--white); box-shadow: var(--shadow); }
.contact-card__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-card__value {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.contact-card__note {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================================
   v5.1 — image-rich additions
   ============================================================ */

/* "Moments" gallery — 3 image cards with hover effect */
.moments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.moment {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  aspect-ratio: 4 / 5;
  display: block;
  text-decoration: none;
  transition: transform var(--dur) var(--ease);
}
.moment:hover { transform: translateY(-4px); }
.moment__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.moment:hover .moment__img { transform: scale(1.05); }
.moment__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.moment__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
}
.moment__year {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  opacity: 0.85;
}
.moment__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--white);
}
.moment__note {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .moments { grid-template-columns: 1fr; gap: 16px; }
  .moment { aspect-ratio: 16 / 10; }
}

/* Story page — chapter inline imagery */
.chapter-full__hero-img {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--light);
}
.chapter-full--dark .chapter-full__hero-img { background: rgba(255,255,255,0.04); }
.chapter-full__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chapter-full__hero-img figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-serif);
  font-style: italic;
}

/* Page-hero with portrait inset */
.page-hero--with-portrait {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 64px;
  align-items: center;
  padding: 120px var(--pad-x) 80px;
  max-width: var(--container);
  margin: 0 auto;
  border-bottom: 1px solid var(--rule-soft);
}
.page-hero--with-portrait > div:first-child { padding-right: 0; }
.page-hero--with-portrait .page-hero__portrait {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.page-hero--with-portrait .page-hero__portrait img {
  width: 100%;
  display: block;
}
@media (max-width: 880px) {
  .page-hero--with-portrait { grid-template-columns: 1fr; gap: 32px; }
  .page-hero--with-portrait .page-hero__portrait { max-width: 380px; }
}

/* Inline portrait — used inside long-form content */
.inline-portrait {
  margin: 48px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.inline-portrait img { width: 100%; display: block; }
.inline-portrait figcaption {
  background: var(--light);
  padding: 16px 24px;
  font-size: 14px;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-style: italic;
}
.chapter-full--dark .inline-portrait figcaption {
  background: rgba(255,255,255,0.04);
  color: var(--ink-faint);
}

/* ============================================================
   v5.2 — businesses page, highlights, contact form, house gallery
   ============================================================ */

/* Sub-nav (sticky under main nav) — used on businesses page */
.subnav {
  position: sticky;
  top: 52px;
  z-index: 900;
  background: #ffffff;
  border-bottom: 1px solid var(--rule-soft);
  padding: 12px 0;
}
.subnav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.subnav__inner::-webkit-scrollbar { display: none; }
.subnav__inner a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
}
.subnav__inner a:hover { color: var(--ink); background: var(--light); }
.subnav__inner a.active { background: var(--ink); color: var(--white); }

/* Business deep section — used on businesses.html */
.biz-section {
  padding: 100px 0;
  border-top: 1px solid var(--rule-soft);
  scroll-margin-top: 96px;
}
.biz-section:first-of-type { border-top: none; }
.biz-section--dark { background: var(--ink); color: var(--white); border-top-color: transparent; }
.biz-section--dark h2, .biz-section--dark h3 { color: var(--white); }
.biz-section--dark p { color: var(--ink-faint); }
.biz-section--light { background: var(--light); border-top-color: transparent; }

.biz-section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.biz-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 48px;
}
.biz-header__left { display: flex; flex-direction: column; gap: 16px; }
.biz-logo {
  width: 200px;
  height: 80px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  margin-bottom: 12px;
}
.biz-section--dark .biz-logo { background: rgba(255,255,255,0.05); }
.biz-logo svg { max-width: 100%; max-height: 100%; }
.biz-section--dark .biz-logo svg { color: var(--white); }
.biz-section--dark .biz-logo--white svg { color: var(--white); }
.biz-logo--bg-charcoal { background: #2c2c2e; }
.biz-logo--bg-cobalt   { background: #1c3d6d; }
.biz-logo--bg-green    { background: #1d4d3e; }
.biz-logo--bg-burgundy { background: #5c1f25; }
.biz-logo--bg-purple   { background: #2d1b4e; }
.biz-logo--bg-accent   { background: #0a4b78; }
.biz-logo--bg-charcoal svg, .biz-logo--bg-cobalt svg, .biz-logo--bg-green svg,
.biz-logo--bg-burgundy svg, .biz-logo--bg-purple svg, .biz-logo--bg-accent svg { color: var(--white); }

.biz-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  font-size: 14px;
}
.biz-section--dark .biz-meta {
  background: #2c2c2e;
  border-color: rgba(255,255,255,0.06);
  color: var(--ink-faint);
}
.biz-meta dt {
  font-size: 11px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 2px;
}
.biz-meta dd { font-weight: 500; color: var(--ink); }
.biz-section--dark .biz-meta dd { color: var(--white); }

.biz-name {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 8px;
}
.biz-name .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.biz-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink-soft);
}
.biz-section--dark .biz-tagline { color: var(--ink-faint); }

.biz-body {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
}
.biz-section--dark .biz-body { color: var(--ink-faint); }
.biz-body p { margin-bottom: 20px; }
.biz-body em {
  font-family: var(--font-serif);
  font-style: italic;
}
.biz-body p:last-child { margin-bottom: 0; }

.biz-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule-soft);
}
.biz-section--dark .biz-facts { border-top-color: rgba(255,255,255,0.08); }
.biz-fact__num {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--ink);
  font-feature-settings: 'tnum' 1;
}
.biz-section--dark .biz-fact__num { color: var(--white); }
.biz-fact__num small { font-size: 0.55em; font-weight: 600; opacity: 0.7; }
.biz-fact__label {
  font-size: 12px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.4;
}

.biz-image {
  margin-top: 48px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.biz-image img { width: 100%; height: auto; display: block; }
.biz-image figcaption {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-soft);
  padding: 16px 4px 0;
  text-align: center;
}
.biz-section--dark .biz-image figcaption { color: var(--ink-faint); }

@media (max-width: 980px) {
  .biz-header { grid-template-columns: 1fr; gap: 32px; }
  .biz-facts { grid-template-columns: repeat(2, 1fr); }
}

/* Highlights section — "Would You Believe" style brag content */
.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.highlight {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 20px;
  transition: all var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.highlight:hover {
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.section--dark .highlight {
  background: #2c2c2e;
  border-color: rgba(255,255,255,0.06);
}
.section--dark .highlight:hover {
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.highlight__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.section--dark .highlight__icon { background: var(--white); color: var(--ink); }
.highlight__icon svg { width: 24px; height: 24px; }
.highlight__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section--dark .highlight__title { color: var(--white); }
.highlight__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}
.section--dark .highlight__body { color: var(--ink-faint); }
.highlight__body em { font-family: var(--font-serif); font-style: italic; }
@media (max-width: 880px) { .highlights { grid-template-columns: 1fr; } }

/* House feature section — full-bleed hero treatment */
.house-hero {
  position: relative;
  margin-top: 48px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.house-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.house-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.house-hero__caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: var(--white);
}
.house-hero__caption h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--white);
}
.house-hero__caption h3 .accent {
  font-family: var(--font-serif);
  font-style: italic;
}
.house-hero__caption p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
}

.house-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 40px;
  background: var(--light);
  border-radius: 20px;
}
.house-spec__num {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}
.house-spec__num .unit { font-size: 0.55em; font-weight: 600; color: var(--ink-soft); }
.house-spec__label {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 760px) {
  .house-specs { grid-template-columns: 1fr 1fr; padding: 24px; }
}

.house-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  margin-top: 48px;
}
.house-gallery__main {
  border-radius: 20px;
  overflow: hidden;
}
.house-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.house-gallery__side { display: grid; gap: 16px; }
.house-gallery__side figure { border-radius: 20px; overflow: hidden; }
.house-gallery__side img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 760px) {
  .house-gallery { grid-template-columns: 1fr; }
}

/* Investment briefs — used on family-office page (Active / Passive briefs) */
.brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.brief {
  padding: 40px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--rule);
  transition: all var(--dur) var(--ease);
}
.brief--active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.brief__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.brief--active .brief__eyebrow { color: var(--ink-faint); }
.brief__heading {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.brief--active .brief__heading { color: var(--white); }
.brief__heading .accent { font-family: var(--font-serif); font-style: italic; }
.brief__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.brief--active .brief__lede { color: var(--ink-faint); }
.brief__list {
  list-style: none;
  margin: 0; padding: 0;
}
.brief__list li {
  padding: 12px 0;
  border-top: 1px solid var(--rule-soft);
  font-size: 14px;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
}
.brief--active .brief__list li { border-top-color: rgba(255,255,255,0.08); }
.brief__list li:first-child { border-top: 0; }
.brief__list dt {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brief--active .brief__list dt { color: var(--white); }
.brief__list dd { color: var(--ink-soft); }
.brief--active .brief__list dd { color: var(--ink-faint); }
@media (max-width: 880px) {
  .brief-grid { grid-template-columns: 1fr; }
}

/* Contact form */
.form-wrap {
  background: var(--light);
  border-radius: 24px;
  padding: 48px;
  max-width: 720px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.form-field label .req { color: #cc4444; font-weight: 400; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-sans);
  color: var(--ink);
  transition: all var(--dur) var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(29, 29, 31, 0.1);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field__hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-faint);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .form-field { margin-bottom: 0; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.form-status {
  font-size: 14px;
  color: var(--ink-soft);
}
.form-status.success { color: #2a7a3f; font-weight: 500; }
.form-status.error { color: #cc4444; font-weight: 500; }

/* === Real-image logo handling === */
.biz-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.biz-logo--white-bg { background: var(--white); }
.biz-section--dark .biz-logo--white-bg { background: var(--white); }

/* === Recognition wall (industry awards) === */
.recognition-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin: 56px 0 40px;
}
.recognition-wall__item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.recognition-wall__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.recognition-wall__item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  margin-bottom: 12px;
}
.recognition-wall__item .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--ink-faint);
  text-align: center;
}
.section--dark .recognition-wall__item { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
.section--dark .recognition-wall__item .label { color: rgba(255,255,255,0.6); }

/* === Inline product photos within sections === */
.biz-photo {
  margin: 32px 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.biz-photo img { width: 100%; height: auto; display: block; }
.biz-photo figcaption {
  font-size: 13px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
}
.biz-section--dark .biz-photo { border-color: rgba(255,255,255,0.08); }
.biz-section--dark .biz-photo figcaption { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.08); }

/* === Logo grid for ecosystem display === */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.logo-grid__cell {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
}
.logo-grid__cell img { max-width: 100%; max-height: 50px; object-fit: contain; opacity: 0.85; }
.section--dark .logo-grid__cell { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.08); }

/* === Signature block === */
.signature {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 48px 0 16px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(0,0,0,0.02), rgba(0,0,0,0.05));
  border-radius: 14px;
  border-left: 3px solid var(--accent, #5d6ad2);
}
.signature img { height: 64px; width: auto; }
.signature__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
}
.signature__role {
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pie-chart-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0;
}
.pie-chart {
  width: 280px;
  height: 280px;
  max-width: 100%;
  filter: drop-shadow(0 12px 36px rgba(0,0,0,0.3));
}
@media (min-width: 768px) {
  .pie-chart {
    width: 360px;
    height: 360px;
  }
}

.top-holdings-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}
.thc__row {
  display: grid;
  grid-template-columns: 64px 1fr 56px;
  align-items: center;
  gap: 16px;
}
.thc__ticker {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
}
.thc__bar-track {
  height: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}
.thc__bar {
  height: 100%;
  border-radius: 8px;
  animation: thc-grow 1.4s cubic-bezier(0.2, 0.8, 0.4, 1.0);
  transform-origin: left center;
}
@keyframes thc-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.thc__pct {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-align: right;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 16px 0;
}
.product-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-radius: 14px;
  padding: 20px 18px 18px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.18);
}
.product-card img {
  width: 100%;
  max-width: 180px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
}
.product-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card figcaption strong {
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.product-card figcaption span {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.testimonial-quote {
  margin: 48px 0;
  padding: 32px 36px;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid #50c8a3;
  border-radius: 6px;
  max-width: 820px;
}
.biz-section--dark .testimonial-quote { background: rgba(255,255,255,0.05); }
.biz-section:not(.biz-section--dark) .testimonial-quote {
  background: var(--light);
  border-left-color: var(--accent, #5d6ad2);
}
.testimonial-quote__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 16px;
}
.biz-section--dark .testimonial-quote__text { color: white; }
.biz-section:not(.biz-section--dark) .testimonial-quote__text { color: var(--ink); }
.testimonial-quote__attrib {
  font-size: 14px;
  margin: 0;
}
.biz-section--dark .testimonial-quote__attrib { color: rgba(255,255,255,0.65); }
.biz-section--dark .testimonial-quote__attrib strong { color: rgba(255,255,255,0.9); }
.biz-section:not(.biz-section--dark) .testimonial-quote__attrib { color: var(--ink-soft); }
.biz-section:not(.biz-section--dark) .testimonial-quote__attrib strong { color: var(--ink); }

/* ============================================================
   Press archive — grid of clipping tiles linking to PDFs/sources
   ============================================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.press-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
a.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--ink-faint);
}
.press-card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin: 0;
  background: var(--light);
  border-bottom: 1px solid var(--rule-soft);
}
.press-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.press-card__meta {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.press-card__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.press-card__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.press-card__pub {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.4;
}
a.press-card .press-card__title {
  position: relative;
}
a.press-card .press-card__title::after {
  content: " \2197";
  font-weight: 400;
  color: var(--ink-faint);
  font-size: 14px;
  transition: transform 0.25s ease;
  display: inline-block;
  margin-left: 4px;
}
a.press-card:hover .press-card__title::after {
  transform: translate(2px, -2px);
  color: var(--accent);
}

/* ============================================================
   Invest-card logo strip — small brand mark above the card name
   ============================================================ */
.invest-card__logo {
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.invest-card__logo img {
  max-height: 48px;
  max-width: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Dark-card variant: wrap the logo in a white tile so multi-colour logos
   (which would otherwise be flattened by a brightness/invert filter)
   render with their actual brand colours. */
.invest-card--dark .invest-card__logo {
  background: #ffffff;
  border-radius: 8px;
  padding: 10px 14px;
  align-self: flex-start;
  width: auto;
  max-width: 230px;
  height: auto;
  min-height: 56px;
}
.invest-card--dark .invest-card__logo img {
  max-height: 36px;
  max-width: 200px;
  filter: none;
  opacity: 1;
}
@media (max-width: 740px) {
  .invest-card__logo { height: 40px; margin-bottom: 14px; }
  .invest-card__logo img { max-height: 40px; max-width: 170px; }
  .invest-card--dark .invest-card__logo { min-height: 50px; padding: 8px 12px; }
  .invest-card--dark .invest-card__logo img { max-height: 32px; max-width: 170px; }
}

/* ============================================================
   Awards list — media.html
   ============================================================ */
.award-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
@media (max-width: 880px) {
  .award-list { grid-template-columns: 1fr; gap: 22px; }
}
.award-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 28px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: start;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.award-card:hover {
  border-color: var(--ink-faint);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}
.award-card--feature {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
  border-color: var(--rule);
}
.award-card__logo {
  width: 120px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--rule-soft);
}
.award-card__logo img,
.award-card__logo svg {
  max-width: 95px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.award-card__logo--solid { background: var(--light); }
.award-card__logo--icon { background: var(--white); }

.award-card__body { min-width: 0; }
.award-card__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.award-card__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.3;
}
.award-card--feature .award-card__title { font-size: 22px; }
.award-card__category {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 12px;
  font-weight: 500;
}
.award-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 12px;
}
.award-card__link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.award-card__link:hover { color: var(--ink); }

.awards-footnote {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 740px) {
  .award-card {
    grid-template-columns: 80px 1fr;
    gap: 16px;
    padding: 20px;
  }
  .award-card__logo {
    width: 80px;
    height: 80px;
  }
  .award-card__logo img,
  .award-card__logo svg {
    max-width: 64px;
    max-height: 60px;
  }
  .award-card__title { font-size: 17px; }
  .award-card--feature .award-card__title { font-size: 19px; }
}

/* ============================================================
   Long-form article rows — media.html
   ============================================================ */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.article-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}
.article-row:first-child { border-top: 0; }

.article-row__meta { min-width: 0; }
.article-row__date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 8px;
}
.article-row__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1.25;
}
.article-row__pub {
  font-size: 13px;
  color: var(--ink-faint);
  margin: 0;
  font-style: italic;
  font-family: var(--font-serif);
}

.article-row__body { color: var(--ink-faint); min-width: 0; }
.article-row__body p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.article-row__body em { color: rgba(255, 255, 255, 0.85); font-style: italic; }

.article-row__link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.article-row__link:hover { color: var(--white); }

@media (max-width: 740px) {
  .article-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
  }
}
