/* =============================================================
   ACCRETY.AI — MVP STYLES (Addendum 3 build)
   Direction 2 — Boutique B&W + Muted Gold
   Typography: Archivo Black display, Archivo body, JetBrains Mono
   ============================================================= */

:root {
  --jet:        #0D0D0D;
  --near-black: #151515;
  --white:      #FFFFFF;
  --offwhite:   #F7F5F0;
  --ash:        #E4E2DC;
  --mid:        #9A9792;
  --charcoal:   #4A4A4A;

  --gold:        #B08D3A;
  --gold-hover:  #C4A04D;
  --gold-muted:  #E7D9B0;

  --display: "Archivo Black", "Archivo", system-ui, sans-serif;
  --body:    "Archivo", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--white);
  color: var(--jet);
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "tnum" 0, "ss01" 1;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Layout */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.bg-white { background: var(--white); color: var(--jet); }
.bg-offwhite { background: var(--offwhite); color: var(--jet); }
.bg-jet { background: var(--jet); color: var(--offwhite); }
.bg-jet .muted { color: #8A8780; }

section { position: relative; }

/* Type system */
.display {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.94;
}
.h1 { font-family: var(--display); font-weight: 900; letter-spacing: -0.035em; line-height: 0.92; font-size: 104px; text-transform: uppercase; }
.h2 { font-family: var(--display); font-weight: 900; letter-spacing: -0.03em; line-height: 0.95; font-size: 64px; text-transform: uppercase; }
.h3 { font-family: var(--display); font-weight: 900; letter-spacing: -0.02em; line-height: 1.02; font-size: 36px; text-transform: uppercase; }
.h4 { font-family: var(--display); font-weight: 900; letter-spacing: -0.015em; line-height: 1.08; font-size: 22px; text-transform: uppercase; }
.eyebrow {
  font-family: var(--mono); font-weight: 500; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--charcoal);
}
.eyebrow.on-dark { color: #9A9792; }
.eyebrow.gold { color: var(--gold); }
.mono { font-family: var(--mono); font-feature-settings: "tnum" 1; }
.num  { font-family: var(--display); font-feature-settings: "tnum" 1; letter-spacing: -0.02em; }
.gold { color: var(--gold); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--ash);
}
.nav-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 40px; height: 76px;
}
.logo {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-family: var(--display); font-weight: 900; font-size: 22px;
  letter-spacing: -0.02em; text-transform: none; color: var(--jet);
}
.logo .tld {
  font-family: var(--display); font-weight: 900; font-size: 14px;
  color: var(--gold); letter-spacing: -0.01em; opacity: 0.85; margin-left: 2px;
  align-self: baseline;
}
.bg-jet .logo, .on-dark .logo { color: var(--offwhite); }

.nav-links {
  display: flex; gap: 28px; justify-content: center;
  font-family: var(--body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.02em; color: var(--charcoal);
}
.nav-links a { padding: 6px 0; position: relative; transition: color .2s; }
.nav-links a:hover { color: var(--jet); }
.nav-links a.active { color: var(--jet); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
}
.nav-cta {
  font-family: var(--body); font-size: 13px; font-weight: 600;
  padding: 11px 20px; background: var(--jet); color: var(--offwhite);
  border: 1px solid var(--jet); transition: all .2s; letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--gold); color: var(--jet); border-color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 14px;
  padding: 14px 22px; border: 1px solid transparent; cursor: pointer;
  transition: all .2s; letter-spacing: 0.01em;
}
.btn-primary { background: var(--gold); color: var(--jet); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.btn-secondary { background: var(--jet); color: var(--offwhite); border-color: var(--jet); }
.btn-secondary:hover { background: var(--gold); color: var(--jet); border-color: var(--gold); }
.btn-ghost { background: transparent; color: var(--jet); border-color: var(--jet); }
.btn-ghost:hover { background: var(--jet); color: var(--offwhite); }
.bg-jet .btn-ghost { color: var(--offwhite); border-color: var(--offwhite); }
.bg-jet .btn-ghost:hover { background: var(--offwhite); color: var(--jet); }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* Generic section head */
section.pad { padding: 128px 0; }
section.pad-sm { padding: 96px 0; }
.section-head { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: end; margin-bottom: 72px; }
.section-head .eyebrow { margin-bottom: 20px; display: block; }
.section-head h2 { margin: 0; max-width: 16ch; }
.section-head .desc { font-size: 18px; color: var(--charcoal); max-width: 56ch; margin: 0; line-height: 1.6; }
.bg-jet .section-head .desc { color: #A8A59F; }

/* Rule */
hr.rule { border: 0; height: 2px; background: var(--gold); margin: 0; }
hr.rule.thin { height: 1px; background: var(--ash); }

/* Small utility */
.tnum { font-variant-numeric: tabular-nums; }
.pill-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.pill-eyebrow::before { content:""; width: 24px; height: 1px; background: var(--gold); }

/* Footer */
footer.site-foot { background: var(--jet); color: var(--offwhite); border-top: 4px solid var(--gold); }
.foot-cta { padding: 144px 0 96px; border-bottom: 1px solid #2a2a2a; }
.foot-cta .row { display: grid; grid-template-columns: 7fr 5fr; gap: 80px; align-items: end; }
.foot-cta h2 { color: var(--white); max-width: 18ch; }
.foot-cta h2 .accent { color: var(--gold); }
.foot-cta p { color: #A8A59F; max-width: 48ch; margin: 0 0 32px; font-size: 17px; line-height: 1.55; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding: 80px 0 0; }
.foot-grid h5 { font-family: var(--mono); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; }
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 14px; color: var(--offwhite); }
.foot-grid ul a:hover { color: var(--gold); }
.foot-grid .brand .tagline { margin-top: 18px; color: #A8A59F; font-size: 14px; max-width: 32ch; line-height: 1.6; }
.foot-featured { margin-top: 72px; padding-top: 40px; border-top: 1px solid #2a2a2a; }
.foot-featured .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.foot-featured .row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.feat-slot { height: 40px; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 11px; color: #5a5a5a; letter-spacing: 0.1em; }
.sub-foot { padding: 32px 0 40px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 12px; color: #6a6a6a; letter-spacing: 0.02em; }

/* ===================== HERO ===================== */
.hero {
  padding: 96px 0 72px;
  border-bottom: 2px solid var(--jet);
}
.hero .eyebrow-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 56px; padding-bottom: 20px; border-bottom: 1px solid var(--ash);
}
.hero .eyebrow-row .stamp {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--charcoal); text-transform: uppercase;
}
.hero h1 { margin: 0; max-width: 15ch; }
.hero h1 .accent { color: var(--gold); }

.hero-sub-row {
  margin-top: 64px; padding-top: 40px; border-top: 2px solid var(--gold);
  display: grid; grid-template-columns: 7fr 5fr; gap: 80px; align-items: start;
}
.hero .lede { font-size: 20px; line-height: 1.55; color: var(--charcoal); max-width: 58ch; margin: 0; }
.hero .lede b { color: var(--jet); font-weight: 700; }
.hero .cta-row { justify-content: flex-end; }

/* Stat strip */
.stats {
  margin-top: 80px; border-top: 1px solid var(--jet); border-bottom: 1px solid var(--jet);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.stats .stat { padding: 32px 32px 32px 0; border-right: 1px solid var(--ash); }
.stats .stat:last-child { border-right: none; padding-right: 0; }
.stats .stat .n { font-family: var(--display); font-weight: 900; font-size: 72px; letter-spacing: -0.04em; line-height: 0.9; color: var(--jet); }
.stats .stat .n .u { font-size: 26px; color: var(--charcoal); margin-left: 4px; }
.stats .stat .l { margin-top: 16px; font-family: var(--body); font-size: 14px; color: var(--charcoal); line-height: 1.5; max-width: 24ch; }
.stats .stat.pill .n { font-family: var(--display); font-size: 22px; line-height: 1.2; }
.stats .stat.pill .n span { display: block; }
.stats .stat.pill .n .gold { color: var(--gold); }

/* ===================== CASH FLOW SECTION ===================== */
.cashflow { display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 0; border: 1px solid var(--jet); }
.cashflow .col { padding: 48px 40px; border-right: 1px solid var(--ash); background: var(--white); }
.cashflow .col:last-child { border-right: none; }
.cashflow .col.savings { background: var(--jet); color: var(--offwhite); position: relative; }
.cashflow .col.savings::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--gold); }
.cashflow .col .tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--charcoal); }
.cashflow .col.savings .tag { color: var(--gold); }
.cashflow .col .big { font-family: var(--display); font-weight: 900; font-size: 104px; line-height: 0.9; letter-spacing: -0.04em; margin-top: 32px; color: var(--jet); }
.cashflow .col.savings .big { color: var(--gold); font-size: 120px; }
.cashflow .col .per { font-family: var(--mono); font-size: 13px; color: var(--charcoal); margin-top: 10px; font-weight: 500; }
.cashflow .col.savings .per { color: #A8A59F; }
.cashflow .col .break { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--ash); font-size: 15px; color: var(--charcoal); line-height: 1.55; }
.cashflow .col.savings .break { border-top-color: #2a2a2a; color: #A8A59F; }
.cashflow .col .break b { color: var(--jet); font-weight: 600; }
.cashflow .col.savings .break b { color: var(--white); }

/* ===================== SERVICE MENU ===================== */
.services { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.svc {
  grid-column: span 6;
  background: var(--white); padding: 44px 36px;
  border: 1px solid var(--ash); display: flex; flex-direction: column; gap: 18px;
  position: relative; transition: all .2s; min-height: 320px;
}
.svc:hover { border-color: var(--jet); }
.svc .idx { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--charcoal); text-transform: uppercase; font-weight: 600; }
.svc h3 { font-family: var(--display); font-weight: 900; font-size: 28px; letter-spacing: -0.02em; line-height: 1.05; margin: 0; text-transform: uppercase; color: var(--jet); }
.svc p { margin: 0; font-size: 15px; color: var(--charcoal); line-height: 1.55; }
.svc .meta {
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--ash);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; text-transform: uppercase;
}

.svc.wedge { grid-column: span 12; background: var(--jet); color: var(--offwhite); border-color: var(--jet); }
.svc.wedge::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--gold); }
.svc.wedge h3 { color: var(--white); font-size: 44px; }
.svc.wedge p { color: #A8A59F; font-size: 16px; max-width: 72ch; }
.svc.wedge .idx { color: var(--gold); }
.svc.wedge .meta { border-top-color: #2a2a2a; }

/* Entry tile */
.svc.entry {
  grid-column: span 12;
  background: var(--offwhite);
  border: 2px solid var(--gold);
  display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: start;
  padding: 48px 44px; min-height: 0;
}
.svc.entry::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--gold); }
.svc.entry .start-here {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--jet); padding: 8px 14px;
  background: var(--gold); align-self: flex-start;
}
.svc.entry h3 { font-size: 48px; margin-top: 20px; max-width: 20ch; }
.svc.entry p { color: var(--charcoal); font-size: 16px; max-width: 62ch; margin-top: 14px; }
.svc.entry .entry-cta { margin-top: 28px; }
.svc.entry .price-block { text-align: right; }
.svc.entry .price { font-family: var(--display); font-weight: 900; font-size: 88px; line-height: 0.9; letter-spacing: -0.045em; color: var(--jet); }
.svc.entry .price .cur { font-size: 40px; color: var(--gold); vertical-align: 26px; margin-right: 2px; }
.svc.entry .dur { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); margin-top: 10px; font-weight: 600; }

/* Staff-aug split tile */
.svc.staffaug { grid-column: span 12; }
.svc.staffaug .head { border-bottom: 1px solid var(--ash); padding-bottom: 22px; margin-bottom: 26px; }
.svc.staffaug .head h3 { font-size: 32px; }
.svc.staffaug .head .lede { font-size: 15px; color: var(--charcoal); margin-top: 10px; max-width: 72ch; }
.submodels { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.submodel { padding: 28px 0 0; border-top: 3px solid var(--jet); }
.submodel .tag {
  display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; color: var(--jet);
  padding: 6px 10px; background: var(--gold-muted); margin-bottom: 14px;
}
.submodel h4 { font-family: var(--display); font-weight: 900; font-size: 20px; letter-spacing: -0.01em; line-height: 1.12; text-transform: uppercase; color: var(--jet); margin: 0 0 10px; }
.submodel .claim { font-family: var(--body); font-weight: 500; font-size: 15px; color: var(--jet); margin: 0 0 14px; line-height: 1.5; }
.submodel .claim b { color: var(--gold); font-weight: 700; }
.submodel p { font-size: 14px; color: var(--charcoal); line-height: 1.55; margin: 0 0 10px; }
.submodel .examples { font-family: var(--mono); font-size: 12px; color: var(--charcoal); margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--ash); letter-spacing: 0.02em; }
.submodel .examples b { color: var(--jet); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* ===================== FOUNDER STRIP ===================== */
.founder-strip {
  display: grid; grid-template-columns: 2fr 5fr 3fr; gap: 56px; align-items: center;
  padding: 64px 0; border-top: 1px solid var(--ash); border-bottom: 1px solid var(--ash);
}
.founder-strip .portrait {
  aspect-ratio: 4/5; max-width: 220px;
  background: linear-gradient(180deg, #2a2a2a 0%, var(--jet) 100%);
  position: relative; overflow: hidden;
}
.founder-strip .portrait .sil {
  position: absolute; left: 50%; bottom: 0; width: 78%; height: 84%; transform: translateX(-50%);
  background:
    radial-gradient(ellipse 32% 22% at 50% 20%, rgba(255,240,200,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 48% at 50% 90%, rgba(255,240,200,0.18) 0%, transparent 70%);
}
.founder-strip .portrait .plate {
  position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--jet);
  font-family: var(--mono); font-weight: 600; font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 5px 9px;
}
.founder-strip .bio .eyebrow { display: block; margin-bottom: 10px; }
.founder-strip .bio h3 { margin: 0 0 16px; font-size: 26px; }
.founder-strip .bio ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; color: var(--charcoal); }
.founder-strip .bio ul li { position: relative; padding-left: 18px; line-height: 1.55; }
.founder-strip .bio ul li::before { content: "—"; color: var(--gold); font-weight: 700; position: absolute; left: 0; top: 0; }
.founder-strip .bio ul li b { color: var(--jet); font-weight: 600; }
.founder-strip .aside { padding: 24px; background: var(--offwhite); border-left: 3px solid var(--gold); font-size: 14px; color: var(--charcoal); line-height: 1.6; }
.founder-strip .aside b { color: var(--jet); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 8px; font-weight: 600; }

/* ===================== EDITORIAL PROSE (Why Accrety Exists) ===================== */
.editorial {
  display: grid; grid-template-columns: 4fr 8fr; gap: 96px; align-items: start;
}
.editorial .eyebrow-block .eyebrow { display: block; margin-bottom: 18px; }
.editorial h2 { margin: 0; font-size: 56px; max-width: 12ch; }
.editorial h2 .accent { color: var(--gold); }
.editorial .sideline { margin-top: 24px; font-size: 14px; color: var(--charcoal); max-width: 32ch; line-height: 1.6; }
.editorial .prose { font-family: var(--body); font-weight: 400; font-size: 20px; line-height: 1.65; color: var(--jet); text-wrap: pretty; max-width: 62ch; letter-spacing: -0.005em; }
.editorial .prose p { margin: 0 0 1.2em; }
.editorial .prose p:last-child { margin-bottom: 0; }
.editorial .prose p.drop::first-letter {
  font-family: var(--display); font-weight: 900; font-size: 4.2em; line-height: 0.88;
  float: left; margin: 6px 12px -4px 0; color: var(--gold); text-transform: uppercase;
}
.editorial .prose em { color: var(--gold); font-style: normal; font-weight: 700; }

/* ===================== OPERATIONAL SCAFFOLDING ===================== */
.scaffolding {
  display: grid; grid-template-columns: 4fr 8fr; gap: 96px; align-items: start;
}
.scaffolding .prose { font-family: var(--body); font-size: 18px; line-height: 1.65; color: var(--jet); max-width: 62ch; }
.scaffolding .prose p { margin: 0 0 1.1em; }
.scaffolding .prose p:last-child { margin-bottom: 0; }
.scaffolding .prose b { color: var(--jet); font-weight: 700; }

/* ===================== PORTFOLIO MATH ===================== */
.pmath-intro {
  padding: 20px 28px; background: var(--offwhite); border-left: 6px solid var(--gold);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--charcoal);
  line-height: 1.65; margin-bottom: 48px; text-transform: uppercase;
}
.pmath-intro b { color: var(--jet); font-weight: 600; }
.pmath { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--jet); }
.pmath .tier {
  background: var(--offwhite); padding: 48px 36px; display: flex; flex-direction: column; gap: 14px;
  border-right: 1px solid var(--ash); position: relative;
}
.pmath .tier:last-child { border-right: none; }
.pmath .tier.fund { background: var(--jet); color: var(--offwhite); }
.pmath .tier.fund::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--gold); }
.pmath .tier .label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--charcoal); font-weight: 600;
}
.pmath .tier.fund .label { color: var(--gold); }
.pmath .tier .headline { font-family: var(--display); font-weight: 900; font-size: 88px; line-height: 0.92; letter-spacing: -0.04em; color: var(--jet); }
.pmath .tier.fund .headline { color: var(--gold); font-size: 104px; }
.pmath .tier .unit { font-family: var(--mono); font-size: 13px; color: var(--charcoal); letter-spacing: 0.02em; font-weight: 500; }
.pmath .tier.fund .unit { color: #A8A59F; }
.pmath .tier ul {
  list-style: none; margin: 20px 0 0; padding: 20px 0 0;
  border-top: 1px solid var(--ash); display: grid; gap: 12px; font-size: 13px; line-height: 1.45;
}
.pmath .tier.fund ul { border-top-color: #2a2a2a; }
.pmath .tier ul li { display: grid; grid-template-columns: 1fr auto; gap: 12px; color: var(--charcoal); }
.pmath .tier.fund ul li { color: #A8A59F; }
.pmath .tier ul li b { color: var(--jet); font-weight: 700; font-family: var(--mono); }
.pmath .tier.fund ul li b { color: var(--white); }

/* ===================== CASE STUDIES TRANSPARENCY ===================== */
.case-transparency {
  padding: 96px 0; background: var(--offwhite);
  border-top: 2px solid var(--jet); border-bottom: 2px solid var(--jet);
}
.case-transparency .heading { margin-bottom: 32px; }
.case-transparency .heading .eyebrow { display: block; margin-bottom: 18px; }
.case-transparency h2 { margin: 0; font-size: 56px; max-width: 22ch; }
.case-transparency .body { font-size: 19px; line-height: 1.65; color: var(--jet); max-width: 64ch; }
.case-transparency .body p { margin: 0 0 20px; }
.case-transparency .body p:last-of-type { margin-bottom: 24px; }

/* ===================== INGREDIENTS ===================== */
.ingredients { padding: 128px 0; background: var(--jet); color: var(--offwhite); border-top: 4px solid var(--gold); }
.ingredients .wrap > .head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 48px; }
.ingredients .wrap > .head h3 { margin: 12px 0 0; color: var(--white); font-size: 44px; }
.ingredients .wrap > .head .eyebrow { color: var(--gold); }
.ing-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1px;
  background: var(--gold); border: 1px solid var(--gold);
}
.ing-cell { background: var(--jet); padding: 28px; grid-column: span 6; }
.ing-cell.span-4 { grid-column: span 4; }
.ing-cell.span-12 { grid-column: span 12; }
.ing-cell h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin: 0 0 20px; font-weight: 600; }
.swatch-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: #2a2a2a; }
.sw { aspect-ratio: 1/1; position: relative; }
.sw .info { position: absolute; inset: auto 0 0 0; padding: 8px 10px; background: rgba(13,13,13,0.9); font-family: var(--mono); font-size: 10px; line-height: 1.3; }
.sw .info .n { color: var(--offwhite); font-weight: 600; }
.sw .info .h { color: var(--gold); }
.type-specimen .spec-h1 { font-family: var(--display); font-weight: 900; font-size: 68px; letter-spacing: -0.035em; line-height: 0.95; text-transform: uppercase; color: var(--white); }
.type-specimen .spec-h2 { font-family: var(--display); font-weight: 900; font-size: 44px; line-height: 1; margin-top: 24px; letter-spacing: -0.03em; text-transform: uppercase; color: var(--white); }
.type-specimen .spec-body { font-family: var(--body); font-size: 17px; line-height: 1.55; color: #A8A59F; margin-top: 20px; max-width: 52ch; }
.type-specimen .spec-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 20px; }
.type-specimen .spec-num { font-family: var(--display); font-weight: 900; font-size: 88px; color: var(--gold); margin-top: 24px; line-height: 1; letter-spacing: -0.04em; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.ing-cell .input { background: transparent; border: 0; border-bottom: 1px solid #2a2a2a; padding: 10px 4px; font-family: var(--body); font-size: 16px; width: 100%; color: var(--offwhite); }
.ing-cell .input:focus { outline: none; border-bottom-color: var(--gold); }
.ing-cell .input::placeholder { color: #6a6a6a; }
.grid-demo {
  height: 120px; background-image: linear-gradient(to right, rgba(176,141,58,0.22) 1px, transparent 1px);
  background-size: calc(100%/12) 100%; border: 1px solid #2a2a2a; position: relative;
}
.grid-demo::after { content: "12-col · 1280 max · 56px gutters"; position: absolute; left: 12px; bottom: 10px; font-family: var(--mono); font-size: 11px; color: var(--gold); letter-spacing: 0.06em; }

/* ===================== PAGE HEADER (subpages) ===================== */
.page-hero {
  padding: 96px 0 72px; border-bottom: 2px solid var(--jet); background: var(--white);
}
.page-hero .eyebrow-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 56px; padding-bottom: 20px; border-bottom: 1px solid var(--ash);
}
.page-hero .eyebrow-row .stamp { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--charcoal); text-transform: uppercase; }
.page-hero h1 { margin: 0; max-width: 16ch; font-size: 84px; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero .lede {
  margin-top: 40px; padding-top: 32px; border-top: 2px solid var(--gold);
  font-size: 20px; color: var(--charcoal); max-width: 68ch; line-height: 1.55;
}
.page-hero .lede b { color: var(--jet); font-weight: 700; }

/* ===================== METHODOLOGY STEPS (How We Work) ===================== */
.method-steps { display: grid; gap: 0; border-top: 2px solid var(--jet); border-bottom: 2px solid var(--jet); }
.method-step {
  display: grid; grid-template-columns: 160px 1fr 1fr; gap: 56px;
  padding: 56px 0; border-bottom: 1px solid var(--ash); align-items: start;
}
.method-step:last-child { border-bottom: none; }
.method-step .n { font-family: var(--display); font-weight: 900; font-size: 72px; letter-spacing: -0.04em; line-height: 0.9; color: var(--gold); }
.method-step h3 { margin: 0 0 16px; font-size: 32px; }
.method-step .body p { margin: 0 0 14px; font-size: 16px; color: var(--charcoal); line-height: 1.55; max-width: 52ch; }
.method-step .body p:last-child { margin-bottom: 0; }
.method-step .aside {
  padding: 24px; background: var(--offwhite); border-left: 3px solid var(--gold);
  font-family: var(--mono); font-size: 12px; color: var(--charcoal); line-height: 1.65; letter-spacing: 0.02em;
}
.method-step .aside b { color: var(--jet); font-family: var(--mono); font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 10px; }
.method-step .aside ul { list-style: none; padding: 0; margin: 10px 0 0; display: grid; gap: 8px; }
.method-step .aside ul li { display: grid; grid-template-columns: 1fr auto; gap: 12px; color: var(--charcoal); }
.method-step .aside ul li b { color: var(--jet); font-weight: 700; text-transform: none; letter-spacing: 0; display: inline; margin: 0; font-size: 12px; }

/* ===================== OP PAGE ===================== */
.op-manifesto { padding: 128px 0; background: var(--offwhite); border-top: 2px solid var(--jet); border-bottom: 2px solid var(--jet); }
.op-manifesto .row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.op-manifesto .col { font-size: 17px; line-height: 1.65; color: var(--jet); }
.op-manifesto .col p { margin: 0 0 1em; }
.op-manifesto .col p b { color: var(--jet); font-weight: 700; }
.op-manifesto .col p.lead { font-size: 19px; }
.op-manifesto .col em { font-style: normal; color: var(--gold); font-weight: 700; }

.fund-deploy {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px;
}
.fund-card { padding: 36px 32px; background: var(--white); border: 1px solid var(--ash); border-top: 3px solid var(--jet); }
.fund-card .n { font-family: var(--display); font-weight: 900; font-size: 40px; color: var(--gold); letter-spacing: -0.03em; line-height: 0.9; }
.fund-card h4 { margin: 16px 0 12px; font-size: 20px; }
.fund-card p { margin: 0; font-size: 14px; color: var(--charcoal); line-height: 1.55; }

/* ===================== CONTACT PAGE ===================== */
.contact-shell {
  display: grid; grid-template-columns: 5fr 7fr; gap: 80px;
  padding: 96px 0; align-items: start;
}
.contact-left .eyebrow { display: block; margin-bottom: 18px; }
.contact-left h2 { font-size: 56px; margin: 0 0 28px; max-width: 14ch; }
.contact-left h2 .accent { color: var(--gold); }
.contact-left .lede { font-size: 17px; color: var(--charcoal); line-height: 1.6; max-width: 42ch; margin-bottom: 40px; }
.contact-info { display: grid; gap: 24px; padding-top: 24px; border-top: 1px solid var(--ash); }
.contact-info .row { display: grid; grid-template-columns: 140px 1fr; gap: 16px; align-items: baseline; }
.contact-info .row .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.contact-info .row .v { font-size: 15px; color: var(--jet); }

.contact-form { background: var(--offwhite); padding: 56px 48px; border: 1px solid var(--jet); border-top: 4px solid var(--gold); }
.contact-form h3 { margin: 0 0 6px; font-size: 22px; }
.contact-form .sub { margin: 0 0 36px; font-family: var(--mono); font-size: 12px; color: var(--charcoal); letter-spacing: 0.08em; text-transform: uppercase; }
.field { margin-bottom: 28px; }
.field label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.field input[type="text"], .field input[type="email"], .field textarea, .field select {
  width: 100%; font-family: var(--body); font-size: 16px; color: var(--jet);
  background: transparent; border: 0; border-bottom: 1px solid var(--ash);
  padding: 10px 4px; outline: none; transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 96px; font-family: var(--body); }
.field input:focus, .field textarea:focus, .field select:focus { border-bottom-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.submit-row { margin-top: 8px; display: flex; justify-content: space-between; align-items: center; }
.submit-row .fine { font-family: var(--mono); font-size: 11px; color: var(--charcoal); letter-spacing: 0.02em; max-width: 30ch; line-height: 1.5; }

/* ===================== REVEAL ===================== */
.reveal { opacity: 1; transition: opacity .5s ease, transform .5s ease; }

@media (max-width: 1100px) {
  .wrap { padding: 0 32px; }
  .h1 { font-size: 72px; } .h2 { font-size: 44px; } .h3 { font-size: 28px; }
  .section-head, .hero-sub-row, .editorial, .scaffolding, .foot-cta .row, .op-manifesto .row, .contact-shell { grid-template-columns: 1fr; gap: 32px; }
  .stats, .cashflow, .pmath, .submodels, .fund-deploy { grid-template-columns: 1fr 1fr; }
  .services .svc, .services .svc.wedge, .services .svc.entry, .services .svc.staffaug { grid-column: span 12; }
  .svc.entry { grid-template-columns: 1fr; }
  .method-step { grid-template-columns: 80px 1fr; }
  .method-step .aside { grid-column: 2 / -1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .founder-strip { grid-template-columns: 1fr; }
}
