:root {
  --bg: #F7F5EF;
  --fg: #1a1a2e;
  --accent: #C9A84C;
  --muted: #6B6B7A;
  --card: #FFFFFF;
  --border: #E0DBD0;
  --navy: #0D1B2A;
  --bar-realestate: #4A7C6B;
  --bar-equities: #2E5E8A;
  --bar-fixed: #8A6A2E;
  --bar-cash: #5A5A8A;
  --bar-alt: #8A3A5A;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

/* ── Header ── */
.site-header {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg);
}
.header-nav .nav-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* ── Hero ── */
.hero {
  padding: 80px 48px 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-ledge {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  max-width: 420px;
}

/* ── Portfolio panel ── */
.portfolio-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 24px rgba(26, 26, 46, 0.06);
}
.panel-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.panel-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.panel-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--fg);
}
.asset-breakdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.asset-row {
  display: grid;
  grid-template-columns: 130px 1fr 90px;
  align-items: center;
  gap: 16px;
}
.asset-name {
  font-size: 13px;
  color: var(--muted);
}
.asset-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 3px;
}
.bar-realestate { width: 80%; background: var(--bar-realestate); }
.bar-equities { width: 50%; background: var(--bar-equities); }
.bar-fixed { width: 35%; background: var(--bar-fixed); }
.bar-cash { width: 20%; background: var(--bar-cash); }
.bar-alt { width: 8%; background: var(--bar-alt); }
.asset-amt {
  font-size: 13px;
  color: var(--fg);
  text-align: right;
  font-weight: 400;
}

/* ── Provenance ── */
.provenance {
  padding: 60px 48px;
  background: var(--navy);
  color: #fff;
}
.provenance-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}
.provenance-icon { padding-top: 4px; }
.provenance-icon svg circle, .provenance-icon svg path { stroke: rgba(255,255,255,0.6); }
.provenance-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.provenance-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* ── Features ── */
.features {
  padding: 80px 48px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.feature-card {
  background: var(--card);
  padding: 40px;
}
.feature-icon { margin-bottom: 20px; }
.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Differentiator ── */
.differentiator {
  padding: 80px 48px;
  background: var(--navy);
  color: #fff;
}
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diff-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.diff-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}
.diff-body {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 12px;
}
.diff-body-diff {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
  margin-top: 20px;
}
.comparison-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.comp-col {
  padding: 28px;
  border-radius: 4px;
}
.comp-wrong { background: rgba(255,255,255,0.05); }
.comp-right { background: rgba(201, 168, 76, 0.12); border: 1px solid rgba(201,168,76,0.2); }
.comp-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.comp-label-wrong { color: rgba(255,255,255,0.4); }
.comp-label-right { color: var(--accent); }
.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comp-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
}
.comp-wrong .comp-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.25);
}
.comp-right .comp-list li {
  color: rgba(255,255,255,0.85);
}
.comp-right .comp-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── Closing ── */
.closing {
  padding: 100px 48px;
  background: var(--bg);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── Footer ── */
.site-footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand .wordmark {
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
}
.footer-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-header { padding: 20px 24px; }
  .hero { padding: 60px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 36px; }
  .portfolio-panel { padding: 24px; }
  .asset-row { grid-template-columns: 110px 1fr 80px; gap: 12px; }
  .provenance { padding: 48px 24px; }
  .provenance-inner { grid-template-columns: 1fr; gap: 24px; }
  .features { padding: 60px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .differentiator { padding: 60px 24px; }
  .diff-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing { padding: 80px 24px; }
  .closing-headline { font-size: 28px; }
  .site-footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .header-nav { display: none; }
}