:root {
  --bg: #ffffff;
  --ink: #0b0b0c;
  --muted: #4a4f57;
  --soft: #fafaf7;
  --line: #e6e4dd;
  --line-strong: #cfcdc5;
  --accent: #b11226;
  --accent-dark: #7f0d19;
  --max: 1200px;
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
}

/* ---------- header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-name small {
  font-size: 0.85em;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  background: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

/* ---------- shared ---------- */

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
  border-top: 1px solid var(--line);
}

.rule {
  width: 56px;
  height: 2px;
  background: var(--accent);
  margin: 18px 0 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: gap 180ms ease;
}

.cta:hover {
  gap: 14px;
}

.cta span {
  font-weight: 400;
}

/* ---------- hero ---------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 72px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 32px 0 96px;
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 14ch;
}

.hero-copy p {
  margin: 18px 0 0;
  max-width: 44ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.hero-copy .rule {
  margin: 28px 0 30px;
}

/* ---------- hero aside (portrait + ledger) ---------- */

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0d0f12;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}

/* ---------- ledger panel ---------- */

.ledger {
  border: 1px solid var(--line-strong);
  border-top: 0;
  background: white;
}

.ledger-title {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ledger-row {
  display: grid;
  grid-template-columns: 56px 1fr 1.4fr;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.ledger-flagship {
  grid-template-columns: 1fr 2fr;
  padding: 22px;
  background: var(--soft);
}

.ledger-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.ledger-flagship .ledger-label {
  color: var(--muted);
}

.ledger-flagship-body {
  display: grid;
  gap: 8px;
}

.ledger-flagship-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.ledger-flagship-desc {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.ledger-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--accent);
}

.ledger-icon svg {
  width: 22px;
  height: 22px;
}

.ledger-desc {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

.ledger-footer {
  padding: 14px 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- section grid (holdings, thesis) ---------- */

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.6fr);
  gap: 80px;
  align-items: start;
}

.section-intro h2,
.founder-body h2,
.links-block h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  letter-spacing: -0.01em;
}

.section-intro p,
.founder-body p,
.links-block p {
  margin: 0 0 12px;
  max-width: 36ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.section-intro .lead {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 700;
}

/* ---------- holdings table ---------- */

.ledger-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.ledger-table th {
  padding: 0 0 18px;
  text-align: left;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
}

.ledger-table td {
  padding: 22px 16px 22px 0;
  vertical-align: middle;
  border-bottom: 1px solid var(--line);
}

.ledger-table tr:last-child td {
  border-bottom: 0;
}

.ledger-table td:first-child {
  font-weight: 600;
  width: 28%;
}

.ledger-table-flagship {
  font-family: var(--serif) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
}

.ledger-table td:nth-child(2) {
  color: var(--muted);
}

.status-flagship {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- founder section ---------- */

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.4fr);
  gap: 64px;
  align-items: start;
}

.founder-portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0d0f12;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

.founder-name {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
}

.founder-title {
  margin-top: 2px;
  margin-bottom: 18px;
  color: var(--muted);
  font-style: italic;
  font-size: 15px;
}

.founder-body p {
  max-width: 60ch;
  margin: 14px 0;
}

/* ---------- thesis list ---------- */

.thesis-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.thesis-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}

.thesis-list li:last-child {
  border-bottom: 0;
}

.thesis-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--accent);
}

.thesis-icon svg {
  width: 22px;
  height: 22px;
}

/* ---------- public links ---------- */

.links-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 8px;
  background: var(--line);
  border: 1px solid var(--line);
}

.link-card {
  display: grid;
  grid-template-columns: 28px 1fr 24px;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  background: white;
  transition: background 180ms ease;
}

.link-card:hover {
  background: var(--soft);
}

.link-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  color: var(--ink);
}

.link-label {
  font-size: 15px;
  font-weight: 600;
}

.link-arrow {
  justify-self: end;
  color: var(--muted);
  font-size: 16px;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.link-card:hover .link-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* ---------- footer ---------- */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: inline-flex;
  gap: 32px;
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 12px 0 72px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-portrait {
    max-width: 360px;
  }

  .links-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 22px 0 16px;
  }

  .brand-name {
    font-size: 17px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 24px;
    left: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    background: white;
    border: 1px solid var(--line-strong);
    z-index: 20;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .ledger-row {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    gap: 6px 14px;
  }

  .ledger-row .ledger-icon {
    grid-row: 1 / span 2;
  }

  .ledger-row .ledger-desc {
    grid-column: 2;
  }

  .ledger-flagship {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .ledger-flagship .ledger-icon {
    display: none;
  }

  .links-row {
    grid-template-columns: 1fr;
  }
}
