/* Pragticality — Direction 2 (The Quiet Press)
 * Decision: pragticality-docs/strategic_package/21_decision_holding_company_brand.md
 * Brand spec: pragticality-docs/strategic_package/20_pragticality_brand_directions.md
 */

:root {
  --paper:        #FAF8F2;
  --paper-soft:   #FDFBF5;
  --paper-card:   #FFFFFF;
  --navy:         #1A2638;
  --navy-soft:    #3B4A60;
  --slate:        #535A66;
  --slate-soft:   #8C939E;
  --oxblood:      #7A2632;
  --brass:        #B58A3A;
  --brass-soft:   #DCC79A;
  --rule:         #DCD8CC;
  --rule-soft:    #ECE9DD;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--paper);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

/* === Header === */
.header { padding: 32px 0; display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--rule); }
.wordmark { font-family: 'Newsreader', serif; font-weight: 400; font-size: 22px; color: var(--navy); letter-spacing: -0.005em; display: inline-flex; align-items: baseline; gap: 8px; text-decoration: none; }
.wordmark .pilcrow { color: var(--brass); font-style: italic; font-weight: 300; }
.nav { display: flex; gap: 36px; align-items: baseline; }
.nav a { font-family: 'Inter', sans-serif; color: var(--slate); text-decoration: none; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; font-weight: 500; }
.nav a:hover, .nav a.active { color: var(--navy); }

/* === Hero === */
.hero { padding: 110px 0 90px; max-width: 920px; }
.hero.compact { padding: 80px 0 60px; }
.hero-eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--brass); margin-bottom: 32px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; }
.hero h1 { font-family: 'Newsreader', serif; font-weight: 300; font-size: clamp(40px, 5.6vw, 72px); line-height: 1.06; letter-spacing: -0.018em; color: var(--navy); margin-bottom: 36px; }
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-sub { font-family: 'Source Serif 4', serif; font-size: 21px; line-height: 1.5; color: var(--slate); max-width: 620px; margin-bottom: 48px; font-weight: 300; }
.hero-actions { display: flex; gap: 28px; align-items: center; }
.btn-primary { font-family: 'Inter', sans-serif; font-weight: 500; background: var(--navy); color: var(--paper); border: none; padding: 14px 30px; font-size: 13px; cursor: pointer; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; display: inline-block; }
.btn-text { font-family: 'Source Serif 4', serif; font-style: italic; color: var(--slate); text-decoration: none; font-size: 16px; border-bottom: 1px solid var(--brass); padding-bottom: 4px; }
.btn-text:hover { color: var(--oxblood); }

/* === Section helpers === */
.section { padding: 96px 0; }
.section.dense { padding: 64px 0; }
.section-eyebrow { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--brass); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; font-weight: 500; }
.section-title { font-family: 'Newsreader', serif; font-weight: 300; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; color: var(--navy); margin-bottom: 64px; max-width: 720px; letter-spacing: -0.013em; }
.section-title em { font-style: italic; }
.section-lede { font-family: 'Source Serif 4', serif; font-size: 19px; line-height: 1.55; color: var(--slate); max-width: 720px; margin-bottom: 64px; margin-top: -32px; font-weight: 300; }

/* === Long-form prose (about, ventures detail) === */
.prose { max-width: 720px; }
.prose p { font-family: 'Source Serif 4', serif; font-size: 18px; line-height: 1.65; color: var(--navy); margin-bottom: 24px; font-weight: 300; }
.prose p strong { font-weight: 500; color: var(--navy); }
.prose p em { font-style: italic; color: var(--slate); }
.prose h3 { font-family: 'Newsreader', serif; font-weight: 400; font-size: 28px; line-height: 1.2; color: var(--navy); margin: 56px 0 18px; letter-spacing: -0.005em; }
.prose h3 em { font-style: italic; color: var(--brass); }
.prose ul { padding-left: 24px; margin-bottom: 24px; }
.prose ul li { font-family: 'Source Serif 4', serif; font-size: 18px; line-height: 1.65; color: var(--navy); margin-bottom: 8px; font-weight: 300; }
.prose blockquote { font-family: 'Newsreader', serif; font-style: italic; font-weight: 300; font-size: 22px; line-height: 1.4; color: var(--navy); padding-left: 28px; border-left: 2px solid var(--brass); margin: 32px 0; max-width: 640px; }

/* === Ventures grid === */
.ventures-section { background: var(--paper-soft); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.ventures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.venture { background: var(--paper-card); padding: 40px 32px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); display: flex; flex-direction: column; transition: background 0.2s; text-decoration: none; }
.venture:hover { background: var(--paper-soft); }
.venture-num { font-family: 'Newsreader', serif; font-style: italic; font-weight: 300; font-size: 36px; color: var(--brass); margin-bottom: 12px; line-height: 1; }
.venture-tag { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--slate); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.venture h3 { font-family: 'Newsreader', serif; font-weight: 400; font-size: 26px; line-height: 1.15; margin-bottom: 14px; color: var(--navy); }
.venture h3 em { font-style: italic; color: var(--slate); font-weight: 300; }
.venture p { font-family: 'Source Serif 4', serif; font-size: 16px; line-height: 1.55; color: var(--slate); margin-bottom: 22px; flex-grow: 1; font-weight: 300; }
.venture-meta { font-family: 'Source Serif 4', serif; font-style: italic; font-size: 13px; color: var(--slate-soft); margin-bottom: 14px; font-weight: 300; letter-spacing: 0.01em; }
.venture-link { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--oxblood); letter-spacing: 0.06em; font-weight: 500; }
.venture-link::after { content: ' →'; }
.venture-link.dim { color: var(--slate-soft); }

/* === Principles === */
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 64px 80px; }
.principle { display: grid; grid-template-columns: 80px 1fr; gap: 24px; }
.principle-num { font-family: 'Newsreader', serif; font-style: italic; font-weight: 300; font-size: 64px; color: var(--brass); line-height: 0.9; }
.principle h3 { font-family: 'Newsreader', serif; font-weight: 400; font-size: 30px; line-height: 1.1; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.005em; }
.principle h3 em { font-style: italic; }
.principle p { font-family: 'Source Serif 4', serif; font-size: 17px; line-height: 1.6; color: var(--slate); font-weight: 300; }

/* === About snippet on home === */
.about-section { background: var(--navy); color: var(--paper); }
.about-section .section-eyebrow { color: var(--brass-soft); }
.about-section .section-title { color: var(--paper); }
.about-section .section-title em { font-style: italic; }
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: start; }
.about-text p { font-family: 'Newsreader', serif; font-size: 19px; line-height: 1.55; color: rgba(250,248,242,0.85); margin-bottom: 22px; font-weight: 300; }
.about-text p strong { color: var(--paper); font-weight: 500; }
.about-text em { font-style: italic; color: var(--brass-soft); }
.about-text a { color: var(--brass-soft); text-decoration: none; font-style: italic; border-bottom: 1px solid rgba(220,199,154,0.4); }
.about-card { background: rgba(250,248,242,0.04); border: 1px solid rgba(250,248,242,0.16); padding: 32px; }
.about-card-row { padding: 14px 0; border-bottom: 1px solid rgba(250,248,242,0.12); }
.about-card-row:last-child { border-bottom: none; }
.about-card-label { font-family: 'Inter', sans-serif; font-size: 10px; color: var(--brass-soft); letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 4px; font-weight: 500; }
.about-card-value { font-family: 'Newsreader', serif; font-size: 16px; color: var(--paper); }
.about-card-value em { font-style: italic; color: var(--brass-soft); }

/* === Footer === */
.footer { padding: 64px 0 48px; border-top: 1px solid var(--rule); }
.footer-grid { display: grid; grid-template-columns: 2.4fr 1fr 1fr; gap: 56px; margin-bottom: 40px; }
.footer h4 { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; font-weight: 500; }
.footer-pilcrow { font-family: 'Newsreader', serif; font-style: italic; font-size: 18px; color: var(--brass); margin-bottom: 12px; }
.footer p { font-family: 'Source Serif 4', serif; font-size: 15px; color: var(--slate); line-height: 1.55; max-width: 420px; font-weight: 300; }
.footer a { font-family: 'Source Serif 4', serif; color: var(--slate); text-decoration: none; display: block; margin-bottom: 8px; font-size: 15px; transition: color 0.2s; font-weight: 300; }
.footer a:hover { color: var(--oxblood); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--rule-soft); font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.06em; color: var(--slate-soft); text-transform: uppercase; }
.footer-bottom em { font-style: italic; font-family: 'Newsreader', serif; font-size: 13px; text-transform: none; letter-spacing: 0.02em; }

/* === Mobile === */
@media (max-width: 800px) {
  .container { padding: 0 24px; }
  .section, .hero { padding: 56px 0; }
  .hero { padding-top: 64px; }
  .ventures, .principles, .about-grid, .footer-grid { grid-template-columns: 1fr; }
  .principle { grid-template-columns: 1fr; gap: 8px; }
  .venture { border-right: none; }
  .nav { gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
}
