/* DARKROCK. Black, bone, one rule weight. Nothing moves, nothing glows. */
:root { --bg: #08090a; --text: #e9e7e1; --sub: #8d8b85; --faint: #55544f; --line: #1f2022; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--text); font: 17px/1.7 "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }
.top, main > section, footer { width: min(1180px, 100% - 56px); margin-inline: auto; }

.top { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 34px 0; border-bottom: 1px solid var(--line); }
.wordmark { font-size: 19px; font-weight: 500; letter-spacing: 0.42em; margin-right: -0.42em; }
.top nav { display: flex; gap: 34px; flex-wrap: wrap; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sub); }
.top nav a:hover, .holdings a:hover, footer a:hover { color: var(--text); }

.hero { padding: clamp(90px, 17vw, 230px) 0 clamp(80px, 13vw, 180px); }
h1 { font: 400 clamp(40px, 6.6vw, 92px)/1.04 "Times New Roman", Times, "Iowan Old Style", Georgia, serif; letter-spacing: -0.02em; }
.lede { margin-top: 44px; max-width: 60ch; color: var(--sub); font-size: clamp(17px, 1.5vw, 20px); }

main > section:not(.hero) { padding: clamp(64px, 8vw, 110px) 0; border-top: 1px solid var(--line); }
h2 { font-size: 13px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sub); }
.split { display: grid; grid-template-columns: minmax(180px, 1fr) 3fr; gap: 40px; }
.prose { display: grid; gap: 22px; max-width: 64ch; font-size: clamp(18px, 1.6vw, 21px); line-height: 1.6; }
.prose p:last-child { color: var(--sub); }
.mono { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.9em; }

.section-head { display: grid; grid-template-columns: minmax(180px, 1fr) 3fr; gap: 40px; margin-bottom: 56px; }
.section-head p { color: var(--sub); }
.ledger { border-top: 1px solid var(--line); }
.ledger-row { display: grid; grid-template-columns: minmax(180px, 1fr) 3fr; gap: 40px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.ledger-row h3 { font: 400 clamp(22px, 2.2vw, 30px)/1.2 "Times New Roman", Times, Georgia, serif; }
.ledger-row > p { color: var(--sub); max-width: 58ch; }
.holdings { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px 56px; }
.holdings article { display: grid; gap: 8px; align-content: start; }
.holdings h4 { font-size: 20px; font-weight: 500; }
.holdings p { color: var(--sub); font-size: 16px; }
.holdings a { font-size: 13px; letter-spacing: 0.08em; color: var(--faint); border-bottom: 1px solid var(--line); justify-self: start; padding-bottom: 2px; }
.undisclosed { grid-column: 1 / -1; color: var(--faint) !important; font-size: 15px !important; }

.tenets { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 44px 56px; }
.tenets dt { font-size: 18px; font-weight: 500; margin-bottom: 10px; }
.tenets dd { color: var(--sub); font-size: 16px; }

footer { border-top: 1px solid var(--line); padding: 44px 0 60px; display: grid; gap: 12px; color: var(--faint); font-size: 12.5px; line-height: 1.6; }
.legal { color: var(--sub); letter-spacing: 0.16em; font-size: 12px; }

@media (max-width: 720px) {
  .split, .section-head, .ledger-row { grid-template-columns: 1fr; gap: 18px; }
  .top nav { gap: 20px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
