/* ════════════════════════════════════════════════════════════════════
   FIDUCI · for good.  —  shared stylesheet
   Editorial system. Forest on bone, sage italic accent, paper grain.
   No boxes, no shadows, no rounded soft-UI. Hairlines, type, whitespace.
   ════════════════════════════════════════════════════════════════════ */

:root {
  /* core 5 */
  --forest:   #163722;
  --sage:     #6c7d70;
  --sand:     #E8E8C8;
  --clay:     #D4B4AE;
  --lavender: #B8A9C9;

  /* working tones */
  --plum:     #665369;
  --warmsand: #C8B89A;
  --clay-deep:#b8908a;
  --press:    #8d7aa3;
  --forest-deep: #0d2516;

  /* system */
  --bone:   #F2F1EA;
  --paper:  #FAFAF7;
  --cream:  #FAFAF5;
  --ink:    #1A1A1A;
  --rule:        rgba(108,125,112,0.28);
  --rule-strong: rgba(22,55,34,0.42);
  --rule-rev:    rgba(255,255,255,0.10);

  /* per-silo accent — overridden by .silo-* on a scope */
  --tone: var(--forest);

  --font-display:'Cormorant Garamond','EB Garamond',Georgia,serif;
  --font-body:   'DM Sans',system-ui,-apple-system,sans-serif;
  --font-mono:   'DM Mono',ui-monospace,'SF Mono',Menlo,monospace;

  --ease: cubic-bezier(0.2,0.7,0.2,1);
  --dur-fast: 0.3s; --dur: 0.6s; --dur-slow: 1.4s;
  --page: 8vw;
}

/* per-silo tone scopes */
.silo-public        { --tone: var(--sage); }
.silo-purpose       { --tone: var(--forest); }
.silo-professionals { --tone: var(--clay-deep); }
.silo-personal      { --tone: var(--press); }

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

html { scroll-behavior: smooth; }
html, body {
  background: var(--bone); color: var(--ink);
  font-family: var(--font-body); font-weight: 400;
  font-size: 15px; line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.086 0 0 0 0 0.215 0 0 0 0 0.133 0 0 0 0.045 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.55; mix-blend-mode: multiply;
}
main { position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--forest); color: var(--bone); }

/* ── reveal on scroll ───────────────────────────────────────────────── */
.js .reveal { opacity: 0; transform: translateY(18px); }
.reveal { transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: translateY(0); }
/* bulletproof: higher specificity so the visible state always wins the tie,
   regardless of later equal-specificity rules from other sheets. Transition
   still runs because .reveal carries it. */
html.js .reveal.in { opacity: 1; transform: translateY(0); }
/* failsafe: once an element has been revealed, lock it visible without a
   transition — so content can never stay stuck at opacity 0 if a browser
   throttles/pauses transitions (e.g. an offscreen or backgrounded frame). */
.reveal.seen { opacity: 1 !important; transform: none !important; transition: none !important; }
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.28s; }
.reveal.d4 { transition-delay: 0.40s; }
.reveal.d5 { transition-delay: 0.52s; }

/* ── type helpers ───────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage);
}
.roman {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 14px; letter-spacing: 0.3em; color: var(--sage);
  text-transform: uppercase;
}
.mono {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--sage);
}
em.accent, .accent-italic { font-style: italic; font-weight: 300; color: var(--sage); }

/* ── site nav ───────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242,241,234,0.90);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.site-nav-inner {
  padding: 16px var(--page);
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.brand {
  display: inline-flex; flex-direction: row; align-items: center; gap: 13px;
}
.brand-logo { width: 44px; height: auto; display: block; flex-shrink: 0; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 0.84; }
.brand .word {
  font-family: var(--font-display); font-weight: 500; font-size: 25px;
  color: var(--forest); letter-spacing: -0.015em;
}
.brand .mark {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 13px; color: var(--sage); letter-spacing: 0.01em; margin-top: 1px;
  white-space: nowrap;
}
.site-nav-links { display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.site-nav-links a {
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}
.site-nav-links a:hover { color: var(--forest); }
.site-nav-links a.current { color: var(--forest); }
.site-nav-links a.begin {
  color: var(--forest); border: 1px solid var(--rule);
  padding: 8px 18px; transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.site-nav-links a.begin:hover { background: var(--forest); color: var(--bone); border-color: var(--forest); }
.site-nav-links a.cta {
  color: var(--bone); background: var(--forest); border: 1px solid var(--forest);
  padding: 8px 18px; transition: background var(--dur-fast) var(--ease); white-space: nowrap;
}
.site-nav-links a.cta:hover { background: var(--forest-deep); color: var(--bone); }
.site-nav-links a.cta.current { background: var(--forest-deep); }
.nav-toggle { display: none; }

@media (max-width: 1040px) {
  .site-nav-inner { flex-wrap: wrap; gap: 12px; padding: 14px var(--page); }
  .site-nav-links { gap: 16px; width: 100%; }
  .site-nav-links a { font-size: 10px; letter-spacing: 0.14em; }
}

/* ── generic section frame ──────────────────────────────────────────── */
.bound { border-bottom: 1px solid var(--rule); }
.section { padding: 140px var(--page); }
.section-sm { padding: 100px var(--page); }

/* ── cover / hero ───────────────────────────────────────────────────── */
.cover {
  min-height: calc(100vh - 64px); padding: 64px var(--page) 0;
  display: grid; grid-template-rows: 1fr auto;
  position: relative; overflow: hidden;
}
.cover-pattern { position: absolute; inset: 0; z-index: 0; opacity: 0.30; pointer-events: none; }
.cover-pattern canvas, .cover-pattern svg { width: 100%; height: 100%; display: block; }
.cover-fade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(242,241,234,0) 0%, rgba(242,241,234,0.45) 60%, rgba(242,241,234,0.88) 100%);
}
.cover-centre, .cover-foot { position: relative; z-index: 2; }
.cover-centre { align-self: center; padding: 48px 0; max-width: 1180px; }
.cover-roman { margin-bottom: 30px; display: block; }
.cover-headline {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(58px, 9.5vw, 158px); line-height: 0.92;
  letter-spacing: -0.035em; color: var(--forest); margin-bottom: 34px;
  text-wrap: balance;
}
.cover-headline em { font-style: italic; font-weight: 300; color: var(--sage); }
.cover-sub {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.3vw, 30px); color: var(--ink);
  max-width: 30ch; line-height: 1.4; letter-spacing: -0.005em;
}

/* ── silo row (home hero footer) ────────────────────────────────────── */
.silo-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.silo-cell {
  padding: 34px 30px 40px; border-right: 1px solid var(--rule);
  position: relative; overflow: hidden; display: block;
  transition: background var(--dur) var(--ease);
}
.silo-cell:last-child { border-right: none; }
.silo-cell::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--tone); transition: width var(--dur) var(--ease);
}
.silo-cell:hover { background: color-mix(in oklch, var(--tone) 8%, transparent); }
.silo-cell:hover::after { width: 100%; }
.silo-glyph {
  font-family: var(--font-display); font-weight: 300; font-size: 32px;
  color: var(--tone); line-height: 1; margin-bottom: 22px; display: block;
}
.silo-name {
  font-family: var(--font-display); font-weight: 400; font-size: 32px;
  letter-spacing: -0.02em; color: var(--forest); line-height: 1; margin-bottom: 12px;
}
.silo-name em { font-style: italic; color: var(--sage); font-weight: 300; }
.silo-desc {
  font-size: 13px; line-height: 1.6; color: var(--sage); max-width: 28ch;
}
.silo-idx {
  position: absolute; top: 30px; right: 28px;
  font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--sage);
}

/* ── manifesto / lede band (forest reverse) ─────────────────────────── */
.reverse { background: var(--forest); color: var(--bone); }
.reverse .eyebrow { color: var(--clay); }
.reverse em { color: var(--clay); font-style: italic; }
.manifesto { padding: 140px var(--page); }
.manifesto-head {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 6vw, 84px); line-height: 1.04; letter-spacing: -0.028em;
  color: var(--bone); max-width: 32ch; margin: 30px 0 72px; text-wrap: balance;
}
.manifesto-head em { font-style: italic; font-weight: 300; color: var(--clay); }
.manifesto-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 56px 96px; max-width: 1180px;
}
.manifesto-grid p {
  font-size: 16px; line-height: 1.78; color: rgba(242,241,234,0.84); font-weight: 300;
}
.manifesto-grid p:first-child::first-letter {
  font-family: var(--font-display); font-size: 66px; float: left; line-height: 0.82;
  margin: 7px 14px 0 0; color: var(--clay); font-weight: 400;
}

/* ── practice / founder note (1fr 2fr) ──────────────────────────────── */
.practice {
  padding: 140px var(--page); display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
}
.practice-label { padding-top: 12px; }
.practice-body p {
  font-family: var(--font-display); font-size: 26px; line-height: 1.5;
  color: var(--ink); letter-spacing: -0.005em; margin-bottom: 24px;
}
.practice-body p em { font-style: italic; color: var(--forest); }
.practice-sig {
  margin-top: 40px; font-family: var(--font-display); font-style: italic;
  font-size: 18px; color: var(--sage);
}
.practice-sig::before {
  content: ''; display: block; width: 48px; height: 1px; background: var(--sage); margin-bottom: 18px;
}

/* ── index list ─────────────────────────────────────────────────────── */
.index { padding: 140px var(--page); }
.index-eyebrow { margin-bottom: 56px; }
.index-list { list-style: none; }
.index-list li { border-top: 1px solid var(--rule); }
.index-list li:last-child { border-bottom: 1px solid var(--rule); }
.index-list a {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 48px; align-items: baseline;
  padding: 38px 0; color: inherit;
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease);
}
.index-list a:hover { padding-left: 14px; background: rgba(108,125,112,0.05); }
.i-num {
  font-family: var(--font-display); font-style: italic; font-size: 46px; color: var(--sage);
  letter-spacing: -0.02em; line-height: 0.9;
}
.i-glyph { color: var(--tone, var(--sage)); font-weight: 300; }
.i-body h3 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.025em; color: var(--forest); margin-bottom: 8px; line-height: 1.05;
}
.i-body h3 em { font-style: italic; color: var(--sage); font-weight: 300; }
.i-lead {
  font-family: var(--font-display); font-style: italic; font-size: 18px; line-height: 1.5;
  color: var(--ink); max-width: 58ch;
}
.i-meta {
  font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--sage); white-space: nowrap; align-self: center;
}
.i-arrow { font-family: var(--font-display); font-size: 26px; color: var(--sage); align-self: center; transition: transform var(--dur) var(--ease); }
.index-list a:hover .i-arrow { transform: translateX(8px); color: var(--forest); }

/* ── method (3 cells, hairline) ─────────────────────────────────────── */
.method { padding: 140px var(--page); }
.method-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 92px; align-items: end; }
.method-top h2 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 6vw, 72px);
  line-height: 1; letter-spacing: -0.03em; color: var(--forest);
}
.method-top h2 em { font-style: italic; color: var(--sage); font-weight: 300; }
.method-top .lead { font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ink); }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--rule); }
.method-cell { padding: 38px 34px 38px 0; border-right: 1px solid var(--rule); }
.method-cell:last-child { border-right: none; }
.method-cell:not(:first-child) { padding-left: 34px; }
.method-cell .num { display: block; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.25em; color: var(--sage); margin-bottom: 18px; font-weight: 500; }
.method-cell h6 { font-family: var(--font-display); font-style: italic; font-size: 27px; color: var(--forest); font-weight: 400; margin-bottom: 14px; letter-spacing: -0.01em; }
.method-cell p { font-size: 14px; line-height: 1.7; color: var(--ink); }

/* ── detail spread (silo pages) ─────────────────────────────────────── */
.detail { padding: 140px var(--page); display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.detail-label { padding-top: 8px; }
.detail-headline {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5.5vw, 68px);
  line-height: 0.98; letter-spacing: -0.025em; color: var(--forest); margin-bottom: 32px;
}
.detail-headline em { font-style: italic; font-weight: 300; color: var(--sage); display: block; font-size: 0.55em; margin-top: 12px; }
.detail-lead { font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.45; color: var(--ink); margin-bottom: 36px; max-width: 40ch; }
.detail-body p { font-size: 14.5px; line-height: 1.78; color: var(--ink); margin-bottom: 16px; max-width: 58ch; }
.detail-body p em { color: var(--forest); font-style: italic; }

/* ── figure panel (animated build-up beside silo text) ──────────────── */
.detail-figure, .practice-figure { margin-top: 34px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); position: relative; overflow: hidden; aspect-ratio: 4 / 5; }
.detail-figure canvas, .practice-figure canvas { width: 100%; height: 100%; display: block; }
.fig-cap { position: absolute; left: 0; bottom: 9px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sage); }
@media (max-width: 980px) { .detail-figure, .practice-figure { aspect-ratio: 16 / 9; margin-top: 8px; margin-bottom: 8px; } }

/* ── two paths (leave / stay) ───────────────────────────────────────── */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--rule); }
.paths > div { position: relative; }
.paths > div:first-child { padding-right: 52px; border-right: 1px solid var(--rule); }
.path-k { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.025em; color: var(--forest); line-height: 1; margin-bottom: 16px; }
.path-k em { font-style: italic; font-weight: 300; color: var(--tone); }
.paths p { font-size: 14.5px; line-height: 1.74; color: var(--ink); max-width: 44ch; }
@media (max-width: 980px) {
  .paths { grid-template-columns: 1fr; gap: 32px; }
  .paths > div:first-child { padding-right: 0; border-right: none; padding-bottom: 32px; border-bottom: 1px solid var(--rule); }
}

/* ── offer list (silo products / services) ──────────────────────────── */
.offer { margin-top: 40px; border-top: 1px solid var(--rule); }
.offer-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid var(--rule);
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease);
}
.offer-row:hover { padding-left: 10px; background: rgba(108,125,112,0.05); }
.offer-name { font-family: var(--font-display); font-size: 24px; color: var(--forest); letter-spacing: -0.015em; }
.offer-name em { font-style: italic; color: var(--tone); font-weight: 400; }
.offer-desc { font-size: 13.5px; line-height: 1.6; color: var(--sage); max-width: 52ch; }
.offer-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--tone); white-space: nowrap; text-transform: uppercase; }

/* ── community wall (public) — hairline list, no boxes ──────────────── */
.wall { padding: 130px var(--page); }
.wall-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; border-top: 1px solid var(--rule); }
.wall-item { padding: 30px 0 28px; border-bottom: 1px solid var(--rule); }
.wall-who { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--forest); margin-bottom: 4px; }
.wall-role { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tone); margin-bottom: 14px; }
.wall-what { font-size: 14px; line-height: 1.62; color: var(--ink); max-width: 46ch; }

/* ── press list ─────────────────────────────────────────────────────── */
.press-list { list-style: none; }
.press-list li { border-top: 1px solid var(--rule); }
.press-list li:last-child { border-bottom: 1px solid var(--rule); }
.press-list a { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: baseline; padding: 40px 0; transition: padding var(--dur) var(--ease), background var(--dur) var(--ease); }
.press-list a:hover { padding-left: 14px; background: rgba(108,125,112,0.05); }
.press-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -0.025em; color: var(--forest); line-height: 1.08; margin-bottom: 10px; }
.press-title em { font-style: italic; color: var(--sage); font-weight: 300; }
.press-dek { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--ink); max-width: 56ch; line-height: 1.45; }
.press-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--sage); text-align: right; line-height: 1.9; white-space: nowrap; }

/* ── essay (reading column) ─────────────────────────────────────────── */
.essay { padding: 120px var(--page) 40px; }
.essay-wrap { max-width: 680px; margin: 0 auto; }
.essay-kicker { margin-bottom: 28px; }
.essay-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.03em; color: var(--forest); margin-bottom: 24px; text-wrap: balance; }
.essay-title em { font-style: italic; font-weight: 300; color: var(--sage); }
.essay-dek { font-family: var(--font-display); font-style: italic; font-size: 24px; line-height: 1.45; color: var(--ink); margin-bottom: 40px; }
.essay-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--sage); padding-bottom: 40px; border-bottom: 1px solid var(--rule); margin-bottom: 48px; }
.essay-body { font-size: 16.5px; line-height: 1.78; color: var(--ink); }
.essay-body p { margin-bottom: 24px; max-width: 680px; }
.essay-body p:first-of-type::first-letter { font-family: var(--font-display); font-size: 76px; float: left; line-height: 0.74; margin: 8px 14px 0 0; color: var(--forest); font-weight: 400; }
.essay-body h3 { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 30px; color: var(--forest); margin: 44px 0 16px; letter-spacing: -0.01em; }
.essay-body em { font-style: italic; color: var(--forest); }
.essay-body blockquote { margin: 36px 0; padding-left: 28px; border-left: 1px solid var(--sage); font-family: var(--font-display); font-style: italic; font-size: 24px; line-height: 1.4; color: var(--sage); }

/* ── begin / contact ────────────────────────────────────────────────── */
.begin-grid { padding: 0 var(--page); display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 64px); }
.begin-left { padding: 120px 80px 120px 0; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--rule); }
.begin-right { padding: 120px 0 120px 80px; display: flex; flex-direction: column; justify-content: center; }
.begin-head { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px, 6vw, 86px); line-height: 1; letter-spacing: -0.03em; color: var(--forest); margin: 26px 0 28px; }
.begin-head em { font-style: italic; font-weight: 300; color: var(--sage); }
.begin-lead { font-family: var(--font-display); font-style: italic; font-size: 23px; line-height: 1.45; color: var(--ink); max-width: 36ch; margin-bottom: 40px; }
.begin-channels { list-style: none; }
.begin-channels li { display: grid; grid-template-columns: 1fr auto; gap: 24px; padding: 18px 0; border-top: 1px solid var(--rule); align-items: baseline; }
.begin-channels li:last-child { border-bottom: 1px solid var(--rule); }
.begin-channels .who { font-family: var(--font-display); font-size: 19px; color: var(--forest); }
.begin-channels .addr { font-family: var(--font-mono); font-size: 12px; color: var(--sage); transition: color var(--dur-fast) var(--ease); }
.begin-channels a:hover .addr { color: var(--forest); }

/* form */
.field { margin-bottom: 26px; }
.field label { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--rule);
  padding: 10px 0; font-family: var(--font-display); font-size: 21px; color: var(--forest);
  letter-spacing: -0.01em; transition: border-color var(--dur-fast) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(108,125,112,0.5); font-style: italic; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--forest); }
.field textarea { resize: vertical; min-height: 96px; line-height: 1.4; }
.field select { appearance: none; cursor: pointer; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; border: 1px solid transparent; padding: 15px 30px; transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease); background: none; }
.btn-primary { background: var(--forest); color: var(--bone); }
.btn-primary:hover { background: var(--forest-deep); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { border-color: var(--rule); color: var(--forest); }
.btn-ghost:hover { border-color: var(--sage); background: rgba(108,125,112,0.06); }
.btn .ar { font-family: var(--font-display); font-size: 18px; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* ── colophon / footer ──────────────────────────────────────────────── */
.colophon { padding: 110px var(--page) 56px; background: var(--forest); color: var(--bone); }
.colophon-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 56px; border-bottom: 1px solid var(--rule-rev); }
.colophon-mark { font-family: var(--font-display); font-weight: 400; font-size: 46px; line-height: 0.96; color: var(--bone); letter-spacing: -0.025em; }
.colophon-mark .word { display: block; font-size: 56px; }
.colophon-mark em { font-style: italic; font-weight: 300; color: var(--clay); }
.colophon-cell h6 { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--clay); margin-bottom: 18px; font-weight: 500; }
.colophon-cell p, .colophon-cell a { font-family: var(--font-display); font-size: 16px; color: rgba(242,241,234,0.82); line-height: 1.62; display: block; }
.colophon-cell a:hover { color: var(--bone); }
.colophon-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 36px; gap: 24px; flex-wrap: wrap; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(242,241,234,0.5); }
.colophon-bottom em { font-family: var(--font-display); font-style: italic; font-size: 14px; letter-spacing: 0; text-transform: none; color: var(--clay); }
.silos-strip { display: flex; gap: 18px; font-family: var(--font-display); font-size: 19px; color: var(--clay); }

/* ── silo page hero ─────────────────────────────────────────────────── */
.silo-hero { min-height: calc(82vh - 64px); padding: 76px var(--page) 0; display: grid; grid-template-rows: 1fr auto; position: relative; overflow: hidden; }
.silo-hero-centre { align-self: center; position: relative; z-index: 2; max-width: 1100px; padding: 40px 0; }
.silo-hero-roman { margin-bottom: 30px; display: block; }
.silo-hero-glyph { font-family: var(--font-display); font-weight: 300; font-size: clamp(48px, 7vw, 104px); color: var(--tone); line-height: 1; display: block; margin-bottom: 8px; }
.silo-hero-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(56px, 10vw, 150px); letter-spacing: -0.04em; color: var(--forest); line-height: 0.88; margin-bottom: 30px; }
.silo-hero-name em { font-style: italic; font-weight: 300; color: var(--tone); }
.silo-hero-lead { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(21px, 2.4vw, 31px); color: var(--ink); max-width: 32ch; line-height: 1.38; letter-spacing: -0.005em; }
.silo-hero-foot { position: relative; z-index: 2; border-top: 1px solid var(--rule); display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; padding: 34px 0 42px; }
.silo-hero-foot h6 { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); margin-bottom: 10px; font-weight: 500; }
.silo-hero-foot p { font-family: var(--font-display); font-size: 18px; color: var(--forest); line-height: 1.4; }

/* ── "the other silos" strip ────────────────────────────────────────── */
.silo-row.three { grid-template-columns: repeat(3, 1fr); }
.more-head { padding: 90px var(--page) 0; }
.more-head .eyebrow { display: block; }

@media (max-width: 980px) {
  .silo-hero { padding: 64px var(--page) 0; }
  .silo-hero-foot { grid-template-columns: 1fr; gap: 20px; }
  .silo-row.three { grid-template-columns: 1fr; }
  .silo-row.three .silo-cell { border-right: none; border-bottom: 1px solid var(--rule); }
}

/* ── plate (animated SVG figure) ────────────────────────────────────── */
.plate { padding: 120px var(--page) 110px; }
.plate-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 72px; align-items: end; }
.plate-header h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 6vw, 72px); line-height: 1; letter-spacing: -0.03em; color: var(--forest); }
.plate-header h2 em { font-style: italic; color: var(--sage); font-weight: 300; }
.plate-header .lead { font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--ink); }
.plate-figure { aspect-ratio: 16 / 10; background: var(--bone); border: 1px solid var(--forest); position: relative; overflow: hidden; }
.plate-figure svg { width: 100%; height: 100%; display: block; }
.plate-caption { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; gap: 24px; flex-wrap: wrap; }
.plate-caption .left { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.plate-caption .right { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--forest); }
.web-node { transform-box: fill-box; transform-origin: center; animation: webPulse 5s ease-in-out infinite; }
@keyframes webPulse { 0%,100% { transform: scale(0.85); opacity: 0.7; } 50% { transform: scale(1.4); opacity: 1; } }
.filament { stroke-dasharray: 4 30; animation: filamentFlow 6s linear infinite; }
@keyframes filamentFlow { to { stroke-dashoffset: -34; } }
@media (max-width: 980px) { .plate { padding: 84px var(--page); } .plate-header { grid-template-columns: 1fr; gap: 28px; } }

/* ── personal · gallery (editorial, asymmetric) ─────────────────────── */
.gallery { padding: 120px var(--page); display: grid; grid-template-columns: repeat(12, 1fr); gap: 56px 48px; align-items: end; }
.piece { display: flex; flex-direction: column; gap: 16px; }
.piece image-slot { width: 100%; background: var(--paper); border: 1px solid var(--rule); }
.piece-cap { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; border-top: 1px solid var(--rule); padding-top: 12px; }
.piece-title { font-family: var(--font-display); font-style: italic; font-size: 21px; color: var(--forest); line-height: 1.1; }
.piece-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--sage); white-space: nowrap; }
.piece-note { font-size: 13px; line-height: 1.6; color: var(--sage); }
.p-wide { grid-column: span 7; }
.p-narrow { grid-column: span 5; }
.p-half { grid-column: span 6; }
.p-third { grid-column: span 4; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: 1fr; gap: 44px; }
  .p-wide, .p-narrow, .p-half, .p-third { grid-column: span 1; }
}
/* ── fluency (vendor-agnostic tool roster) ──────────────────────────── */
.fl-philosophy { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 64px; }
.fl-philosophy > div { padding: 30px 34px 32px 0; border-right: 1px solid var(--rule); }
.fl-philosophy > div:last-child { border-right: none; }
.fl-philosophy .k { font-family: var(--font-display); font-style: italic; font-size: 30px; color: var(--forest); letter-spacing: -0.015em; margin-bottom: 8px; }
.fl-philosophy .k em { color: var(--tone, var(--sage)); font-style: italic; }
.fl-philosophy .v { font-size: 13.5px; line-height: 1.6; color: var(--sage); }
.fluency-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); }
.fl-group { padding: 30px 30px 34px 0; border-right: 1px solid var(--rule); }
.fl-group:last-child { border-right: none; }
.fl-group h6 { font-family: var(--font-body); font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 18px; }
.fl-group ul { list-style: none; }
.fl-group li { font-family: var(--font-display); font-size: 19px; color: var(--forest); letter-spacing: -0.01em; padding: 9px 0; border-bottom: 1px solid var(--rule); line-height: 1.2; }
.fl-group li:last-child { border-bottom: none; }
.fl-group li span { display: block; font-family: var(--font-body); font-size: 11px; letter-spacing: 0; color: var(--sage); margin-top: 2px; }
.fl-whitebox { margin-top: 72px; padding-top: 44px; border-top: 1px solid var(--rule-strong); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.fl-whitebox h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(30px, 3.6vw, 50px); line-height: 1.04; letter-spacing: -0.025em; color: var(--forest); }
.fl-whitebox h3 em { font-style: italic; font-weight: 300; color: var(--sage); }
.fl-whitebox p { font-size: 15px; line-height: 1.78; color: var(--ink); margin-bottom: 16px; max-width: 52ch; }
.fl-whitebox p em { color: var(--forest); font-style: italic; }
.fl-whitebox .tag { display: inline-block; margin-top: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay-deep); }
@media (max-width: 980px) {
  .fl-philosophy { grid-template-columns: 1fr; }
  .fl-philosophy > div { border-right: none; border-bottom: 1px solid var(--rule); padding: 24px 0; }
  .fl-philosophy > div:last-child { border-bottom: none; }
  .fluency-grid { grid-template-columns: 1fr 1fr; }
  .fl-group:nth-child(odd) { border-right: 1px solid var(--rule); }
  .fl-group { border-bottom: 1px solid var(--rule); padding: 26px 20px 28px 0; }
  .fl-whitebox { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 560px) { .fluency-grid { grid-template-columns: 1fr; } .fl-group { border-right: none !important; } }

/* ── recruit note (small footer on purpose / professionals) ─────────── */
.recruit-note { padding: 38px var(--page); border-bottom: 1px solid var(--rule); display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.recruit-note .rn-l { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--sage); }
.recruit-note .rn-l em { color: var(--forest); font-style: italic; }
.recruit-note a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--forest); display: inline-flex; align-items: center; gap: 8px; transition: color var(--dur-fast) var(--ease); }
.recruit-note a:hover { color: var(--sage); }

/* ── fiduci.works inline line (next to AI sections) ─────────────────── */
.works-line { margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--rule); display: flex; align-items: baseline; gap: 16px 26px; flex-wrap: wrap; }
.works-line .wl-t { font-family: var(--font-display); font-style: italic; font-size: clamp(19px, 2vw, 25px); color: var(--forest); letter-spacing: -0.01em; }
.works-line .wl-t em { color: var(--sage); }
.works-line a { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); display: inline-flex; align-items: center; gap: 8px; transition: color var(--dur-fast) var(--ease); white-space: nowrap; }
.works-line a:hover { color: var(--forest); }
.works-line a .ar { font-family: var(--font-display); font-size: 16px; }
.works-line .wl-price { font-family: var(--font-mono); font-size: 11px; color: var(--clay-deep); letter-spacing: 0.04em; white-space: nowrap; }

@media (max-width: 980px) {
  :root { --page: 6vw; }
  .section, .manifesto, .practice, .index, .method, .detail, .wall { padding: 84px var(--page); }
  .practice, .detail, .method-top { grid-template-columns: 1fr; gap: 36px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 28px; }
  .method-grid, .wall-grid { grid-template-columns: 1fr; }
  .method-cell { border-right: none; border-bottom: 1px solid var(--rule); padding: 30px 0; }
  .method-cell:not(:first-child) { padding-left: 0; }
  .method-cell:last-child { border-bottom: none; }
  .silo-row { grid-template-columns: 1fr 1fr; }
  .silo-cell:nth-child(odd) { border-right: 1px solid var(--rule); }
  .silo-cell:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .begin-grid { grid-template-columns: 1fr; min-height: 0; }
  .begin-left { border-right: none; border-bottom: 1px solid var(--rule); padding: 70px 0; }
  .begin-right { padding: 70px 0; }
  .colophon-top { grid-template-columns: 1fr; gap: 32px; }
  .colophon-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .index-list a { grid-template-columns: 56px 1fr; gap: 24px; }
  .index-list a .i-meta, .index-list a .i-arrow { display: none; }
}
@media (max-width: 600px) {
  .silo-row { grid-template-columns: 1fr; }
  .silo-cell { border-right: none; border-bottom: 1px solid var(--rule); }
  .wall-grid { grid-template-columns: 1fr; gap: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
