/* =========================================================
   White Brook Capital — Site-wide stylesheet
   ========================================================= */

:root {
  --ink:        #0e1a24;
  --ink-soft:   #1b2a36;
  --paper:      #f6f1e8;
  --paper-2:    #ecdfc8;
  --paper-3:    #efe6d3;
  --rule:       #c9bda6;
  --brand:      #1f4e79;
  --brand-deep: #173a5b;
  --accent:     #8a6a3b;
  --accent-lt:  #d9b881;
  --sage:       #4a6b4e;
  --sage-deep:  #385238;
  --muted:      #5b6672;
  --text:       #14212d;
  --max:        1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.4rem; font-weight: 600; }
p  { margin: 0 0 1.1em; }

a {
  color: var(--brand-deep);
  text-decoration: none;
  border-bottom: 1px solid rgba(31,78,121,0.3);
  transition: border-color .2s ease;
}
a:hover { border-color: var(--brand-deep); }

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

/* ---------- Top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(246,241,232,0.88);
  border-bottom: 1px solid rgba(201,189,166,0.55);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  border: none;
}
.logo img { height: 38px; width: auto; }
nav.primary ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 30px;
}
nav.primary a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}
nav.primary a:hover,
nav.primary a.active { border-bottom-color: var(--sage); }
.cta-inline {
  display: inline-block;
  padding: 10px 18px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta-inline:hover { background: var(--brand-deep); border: none; color: #fff; }

.mobile-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--ink); cursor: pointer; }

@media (max-width: 860px) {
  nav.primary { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--rule); padding: 14px 28px 20px; }
  nav.primary.open { display: block; }
  nav.primary ul { flex-direction: column; gap: 14px; }
  .mobile-toggle { display: block; }
  .cta-inline { padding: 8px 14px; font-size: 0.78rem; }
}

/* ---------- Shared layout ---------- */
section { padding: 100px 28px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.section-head .label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  padding-top: 10px;
  border-top: 2px solid var(--sage);
  display: inline-block;
  align-self: start;
}
.section-head h2 { margin: 0; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  section { padding: 70px 22px; }
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-primary:hover { background: var(--brand-deep); border: none; color: var(--paper); }
.btn-secondary {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 2px;
}
.btn-ghost {
  display: inline-block;
  padding: 12px 22px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(31,78,121,0.08), transparent 60%),
    radial-gradient(ellipse at 90% 100%, rgba(138,106,59,0.08), transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 110px 28px 120px;
}
.hero-inner { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.hero h1 { max-width: 18ch; margin-bottom: 28px; }
.hero h1 em { font-style: italic; color: var(--brand-deep); }
.hero-lede {
  font-size: 1.25rem;
  line-height: 1.55;
  max-width: 54ch;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px 44px;
  padding-top: 34px;
  border-top: 1px solid var(--rule);
  margin-top: 20px;
}
.hero-meta div { min-width: 140px; }
.hero-meta .k {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-deep);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.hero-meta .v {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cta-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--paper);
  padding: 100px 28px 70px;
  border-bottom: 1px solid var(--rule);
}
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { max-width: 22ch; margin-bottom: 18px; font-size: clamp(2.1rem, 4vw, 3.4rem); line-height: 1.2; }
.page-hero p { font-size: 1.15rem; max-width: 60ch; color: var(--ink-soft); margin: 0; }

/* ---------- Exclusions (dark band) ---------- */
.exclusions-section { background: var(--ink); color: var(--paper); }
.exclusions-section h2,
.exclusions-section h3 { color: var(--paper); }
.exclusions-section .label { color: var(--accent-lt); border-top-color: var(--accent); }
.exclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(201,189,166,0.18);
  border: 1px solid rgba(201,189,166,0.18);
  margin-bottom: 60px;
}
.exclusion { background: var(--ink); padding: 32px 28px; }
.exclusion .no {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--accent-lt);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 8px;
}
.exclusion h3 { font-size: 1.2rem; margin-bottom: 10px; }
.exclusion p { font-size: 0.95rem; line-height: 1.55; color: #c9d1d9; margin: 0; }
.why-it-works {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,189,166,0.25);
}
.why-it-works p { color: #c9d1d9; font-size: 1.05rem; }
@media (max-width: 760px) { .why-it-works { grid-template-columns: 1fr; } }

/* ---------- Approach (numbered) ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.approach-item { border-top: 1px solid var(--rule); padding-top: 24px; }
.approach-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  color: var(--sage);
  display: block;
  margin-bottom: 10px;
}
.approach-item h3 { margin-bottom: 12px; }
.approach-item p { color: var(--muted); font-size: 0.98rem; }
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Strategies ---------- */
.strategies-section { background: var(--paper-3); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.strategy {
  background: var(--paper);
  padding: 40px 34px;
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
}
.strategy .tag {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: block;
}
.strategy h3 { font-size: 1.6rem; margin-bottom: 14px; line-height: 1.2; }
.strategy p { color: var(--ink-soft); font-size: 0.98rem; }
.strategy ul.meta {
  list-style: none; padding: 0; margin: 22px 0;
  border-top: 1px solid var(--rule);
  padding-top: 18px;
}
.strategy ul.meta li {
  display: flex; justify-content: space-between;
  padding: 7px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(201,189,166,0.7);
}
.strategy ul.meta li:last-child { border-bottom: none; }
.strategy ul.meta li span:first-child { color: var(--muted); }
.strategy ul.meta li span:last-child { font-weight: 500; color: var(--ink); text-align: right; }
.strategy .strategy-actions {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 16px;
}
.strategy .strategy-actions a {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-deep);
  border: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.strategy .strategy-actions a:hover { color: var(--ink); border-bottom-color: var(--ink); }
@media (max-width: 960px) { .strategy-grid { grid-template-columns: 1fr; } }

/* ---------- Founder ---------- */
.founder-section { background: var(--paper); }
.founder {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 70px;
  align-items: center;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: #ddd;
  background-size: cover;
  background-position: center 20%;
  border: 1px solid var(--rule);
  box-shadow: 0 30px 80px -30px rgba(14,26,36,0.35);
}
.founder blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  line-height: 1.35;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 36px;
  padding-left: 0;
  border-left: none;
  position: relative;
}
.founder blockquote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent);
  position: absolute;
  left: -0.1em;
  top: -0.4em;
  line-height: 1;
}
.founder .attribution {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.founder-bio p { font-size: 1.02rem; color: var(--ink-soft); }
.credentials {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
  font-size: 0.92rem;
  color: var(--muted);
}
.credentials li::before { content: '\2014 '; color: var(--accent); margin-right: 4px; }
@media (max-width: 900px) {
  .founder { grid-template-columns: 1fr; gap: 40px; }
  .founder-photo { max-width: 380px; }
}

/* ---------- Contrast with ESG ---------- */
.contrast-section { background: var(--paper-3); border-top: 1px solid var(--rule); }
.contrast-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.contrast-col { padding: 40px 36px; }
.contrast-col + .contrast-col { border-left: 1px solid var(--rule); }
.contrast-col h3 {
  font-size: 1.25rem;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.contrast-col.them h3 { color: var(--muted); }
.contrast-col ul { list-style: none; padding: 0; margin: 0; }
.contrast-col li {
  padding: 12px 0;
  font-size: 0.98rem;
  color: var(--ink-soft);
  border-bottom: 1px dashed rgba(201,189,166,0.7);
}
.contrast-col li:last-child { border-bottom: none; }
.contrast-col.them li { color: var(--muted); }
@media (max-width: 760px) {
  .contrast-table { grid-template-columns: 1fr; }
  .contrast-col + .contrast-col { border-left: none; border-top: 1px solid var(--rule); }
}

/* ---------- Insights / Commentary cards ---------- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.insight { border-top: 1px solid var(--rule); padding-top: 22px; }
.insight .date {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
}
.insight h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.25; }
.insight blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 2px solid var(--accent);
}
.insight p { font-size: 0.95rem; color: var(--muted); margin-bottom: 16px; }
.insight a.read-link {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
  border: none;
  border-bottom: 1px solid var(--brand-deep);
  padding-bottom: 2px;
}
@media (max-width: 820px) { .insights-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 28px;
  text-align: center;
}
.cta-band h2 { color: var(--paper); max-width: 20ch; margin: 0 auto 20px; }
.cta-band p { color: #c9d1d9; max-width: 52ch; margin: 0 auto 36px; font-size: 1.08rem; }
.cta-band .btn-primary { background: var(--paper); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--paper-2); color: var(--ink); }

/* ---------- Footer ---------- */
footer {
  background: #0a1218;
  color: #9aa4ad;
  padding: 60px 28px 30px;
  font-size: 0.88rem;
}
footer a { color: #c9d1d9; border: none; }
footer a:hover { color: var(--paper); }
.foot-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,189,166,0.15);
}
.foot-grid h4 {
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { padding: 5px 0; }
.foot-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.8rem;
  color: #6c7681;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Prose pages (Disclosures, About body, etc) ---------- */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 70px 28px 100px;
}
.prose h2 { margin-top: 48px; font-size: 1.8rem; }
.prose h3 { margin-top: 36px; font-size: 1.25rem; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }
.prose p, .prose li { font-size: 1.02rem; }
.prose ul { padding-left: 22px; }
.prose ul li { margin-bottom: 8px; }
.prose .meta {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

/* ---------- Commentary list ---------- */
.commentary-year {
  border-top: 1px solid var(--rule);
  padding-top: 36px;
  margin-top: 60px;
}
.commentary-year:first-of-type { margin-top: 0; border-top: none; padding-top: 0; }
.commentary-year h2 {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.commentary-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.commentary-card {
  display: block;
  padding: 26px 28px;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color: inherit;
}
.commentary-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -20px rgba(14,26,36,0.35);
  color: inherit;
}
.commentary-card .q-label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}
.commentary-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
}
.commentary-card p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 560px;
  margin: 40px auto 0;
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 2px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { outline: none; border-color: var(--ink); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .submit-row { display: flex; justify-content: flex-end; margin-top: 8px; }
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 2px;
}
.contact-form .field { display: block; }
.contact-form .hp { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.contact-form .form-fine-print {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.5;
}
.contact-form button[type="submit"] {
  justify-self: flex-start;
  margin-top: 12px;
}

/* ---------- About / Founder layout ---------- */
.founder-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}
.founder-portrait {
  aspect-ratio: 1/1;
  overflow: visible;
  background: transparent;
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}
.founder-body h2 {
  font-size: 2.4rem;
  margin: 0 0 6px;
}
@media (max-width: 820px) {
  .founder-layout { grid-template-columns: 1fr; gap: 32px; }
  .founder-portrait { max-width: 320px; }
}

/* ---------- Credentials grid ---------- */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 36px;
  margin-top: 28px;
}
.credential {
  padding: 18px 0;
  border-top: 1px solid var(--rule);
}
.credential-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.credential-org {
  font-size: 0.92rem;
  color: var(--muted);
}
@media (max-width: 700px) {
  .credentials-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Contact page layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form-wrap .contact-form { margin-top: 0; }
.contact-aside h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 28px 0 8px;
}
.contact-aside p { color: var(--ink-soft); margin: 0 0 8px; }
@media (max-width: 820px) {
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Commentary card (expanded markup) ---------- */
.commentary-card .commentary-meta {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}
.commentary-card .commentary-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
}
.commentary-card .commentary-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.commentary-card:hover .commentary-cta { color: var(--ink); }

/* ---------- Prose page wrapper (when inside <section class="prose">) ---------- */
section.prose { padding: 0; } /* avoid double padding when prose is a section */
section.prose .section-inner { padding-top: 40px; padding-bottom: 80px; }
section.prose h2 { margin-top: 48px; font-size: 1.8rem; }
section.prose h3 { margin-top: 32px; font-size: 1.15rem; font-weight: 600; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }
section.prose p, section.prose li { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.7; }
section.prose ul, section.prose ol { padding-left: 22px; }
section.prose ul li, section.prose ol li { margin-bottom: 8px; }
section.prose hr { border: 0; border-top: 1px solid var(--rule); margin: 56px 0 24px; }

/* ---------- Topbar active CTA ---------- */
.cta-inline.active { background: var(--ink); color: var(--paper); }

/* ---------- Narrow content columns ---------- */
.section-inner.section-narrow { max-width: 900px; }

/* ---------- Accredited-investor notice ---------- */
.accredited-notice {
  background: var(--paper-3);
  border: 1px solid var(--rule);
  padding: 24px 28px;
  margin-bottom: 60px;
}
.accredited-notice h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 12px;
}
.accredited-notice p {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

/* ---------- Theses cards ---------- */
.thesis-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.thesis-card {
  display: block;
  padding: 32px 34px;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color: inherit;
}
.thesis-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -20px rgba(14,26,36,0.35);
  color: inherit;
}
.thesis-card .thesis-meta {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
  display: block;
  font-weight: 500;
}
.thesis-card .thesis-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.2;
}
.thesis-card .thesis-teaser {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 18px;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
}
.thesis-card .thesis-cta,
.thesis-card .thesis-sublink {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--brand-deep);
  font-weight: 500;
}
.thesis-card:hover .thesis-cta { color: var(--ink); }
.thesis-card .thesis-cta-row {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.thesis-card .thesis-sublink {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  color: var(--accent);
}
.thesis-card .thesis-sublink:hover { color: var(--ink); border-bottom-color: var(--ink); }

.theses-footnote {
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--rule);
}
.theses-footnote h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.theses-footnote p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Footer tagline/fine print classes ---------- */
.foot-tagline {
  margin: 0 0 6px;
  color: #c9d1d9;
  font-weight: 400;
}
.foot-fine {
  color: #9aa4ad;
  font-size: 0.85rem;
  font-weight: 400;
}

/* ---------- Archive / contact inline callouts ---------- */
.archive-callout {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* ---------- About hero visual ---------- */
.about-hero-media {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ---------- Strategies page inline-replacement classes ---------- */
.strategy-note {
  margin-top: 60px;
  padding: 28px 32px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
}
.strategy-note h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 10px;
}
.strategy-note p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Founder / About layout wrappers ---------- */
.founder-section-wrap {
  background: var(--paper);
}

/* ---------- Mobile: theses cards ---------- */
@media (max-width: 760px) {
  .thesis-card { padding: 26px 22px; }
  .thesis-card .thesis-title { font-size: 1.5rem; }
}

/* ---------- Founder portrait backgrounds ---------- */
.founder-photo--basil { background-image: url('/assets/basil-portrait.jpg'); }

/* ---------- Misc inline-to-class promotions ---------- */
.why-it-works-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
}
.more-link { margin-top: 28px; }
.insights-footer {
  margin-top: 60px;
  text-align: center;
}

/* ---------- Strategies detail page ---------- */
.strategies-detail {
  max-width: 860px;
  margin: 0 auto;
}
.strategy-article {
  margin-bottom: 100px;
}
.strategy-article + .strategy-article {
  border-top: 1px solid var(--rule);
  padding-top: 60px;
}
.strategy-article:last-of-type { margin-bottom: 40px; }
.strategy-article .strategy-eyebrow {
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}
.strategy-article h2 { margin-top: 6px; }
.strategy-article .strategy-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.strategy-article .strategy-body {
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.strategy-article .strategy-actions-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ---------- About page founder wrapper ---------- */
.founder-section-wrap .section-inner { padding-top: 0; }
.founder-section-wrap {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* ---------- About page section shells ---------- */
.about-credentials-wrap .section-inner { max-width: 820px; }
.about-why-wrap {
  background: var(--paper-3);
  border-top: 1px solid var(--rule);
}
.about-why-wrap .section-inner { max-width: 820px; }

.founder-eyebrow { color: var(--sage); }
.founder-body h2 { margin-top: 6px; }
.founder-body .founder-lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
}
.founder-body p { color: var(--ink-soft); }

.about-why-wrap p { color: var(--ink-soft); }
.about-why-wrap .why-lede { font-size: 1.08rem; }

/* ---------- Contact aside: security notice ---------- */
.contact-aside .contact-notice {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ---------- Prose narrow column ---------- */
.prose-narrow { max-width: 780px; margin: 0 auto; }



/* ---------- WhatsApp policy: fraud warning callout ---------- */
.fraud-eyebrow { color: #b3261e; }
.fraud-warning {
  background: #fdf2f1;
  border: 1px solid #e7b6b1;
  border-left: 4px solid #b3261e;
  padding: 24px 28px;
  margin-bottom: 40px;
  border-radius: 2px;
}
.fraud-warning h3 {
  margin: 0 0 10px;
  color: #7a1a13;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fraud-warning p {
  margin: 0;
  color: #4a2220;
}

/* ---------- Thank-you page ---------- */
.thank-you-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px 120px;
  text-align: center;
}
.thank-you-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  margin: 0 0 24px;
}
.thank-you-wrap p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 54ch;
  margin: 0 auto 20px;
}
.thank-you-actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- 404 page ---------- */
.notfound-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px 24px 140px;
  text-align: center;
}
.notfound-wrap .notfound-code {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--accent);
  margin: 0 0 8px;
  line-height: 1;
}
.notfound-wrap h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  margin: 0 0 20px;
}
.notfound-wrap p {
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 auto 16px;
}
.notfound-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Wordmark (header, replacing logo image) ---------- */
.logo.wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  padding: 4px 0;
}
.logo.wordmark:hover {
  color: var(--brand-deep);
}
@media (max-width: 760px) {
  .logo.wordmark { font-size: 1.25rem; }
}

/* ---------- Quiet inline CTA strip (used where cta-band is too heavy) ---------- */
.cta-quiet {
  background: var(--paper-3);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 28px;
  text-align: center;
}
.cta-quiet p {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink-soft);
  font-style: italic;
}
.cta-quiet a {
  color: var(--brand-deep);
  border-bottom: 1px solid var(--brand-deep);
  padding-bottom: 2px;
  margin-left: 6px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.cta-quiet a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ---------- Homepage Insights section: tighter rhythm ---------- */
#insights { padding-top: 72px; padding-bottom: 72px; }
#insights .section-head { margin-bottom: 40px; }
@media (max-width: 760px) {
  #insights { padding-top: 52px; padding-bottom: 52px; }
}
