/* =========================================================
   Deocracy — Component styles
   Header, footer, hero, cards, buttons, sections.
   Each block here should map to a Gutenberg pattern later.
   ========================================================= */

/* ============== MASTHEAD / NAV ============== */
header.site {
  background: var(--paper);
  border-bottom: 3px double var(--ink);
}
.nav {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  padding: 18px 32px;
}
.brand { display: flex; align-items: center; }
.brand img.logo {
  height: 56px; width: auto; display: block;
  image-rendering: -webkit-optimize-contrast;
}
.primary-nav {
  display: flex; gap: 36px; justify-content: center;
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: .26em; color: var(--ink-2);
  text-transform: uppercase;
}
.primary-nav a {
  position: relative;
  padding-bottom: 4px;
  transition: color .2s;
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav a[aria-current="page"] {
  color: var(--accent);
}
.primary-nav a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
}
.util-nav {
  display: flex; gap: 18px; align-items: center;
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .24em;
}
.lang {
  position: relative;
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .22em; color: var(--ink-2);
  text-transform: uppercase;
  border: 1px solid var(--ink-3);
  padding: 6px 10px 6px 12px;
  cursor: pointer; background: transparent;
  display: inline-flex; align-items: center; gap: 8px;
}
.lang::after {
  content: ''; width: 6px; height: 6px;
  border-right: 1px solid var(--ink-2);
  border-bottom: 1px solid var(--ink-2);
  transform: rotate(45deg) translateY(-2px);
}
.lang:hover { border-color: var(--ink); color: var(--ink); }
.lang select {
  position: absolute; inset: 0; opacity: 0;
  width: 100%; height: 100%; cursor: pointer;
  border: 0; background: transparent;
}
.util-nav .quiet { color: var(--ink-3); }
.util-nav .pill {
  border: 1px solid var(--ink);
  padding: 7px 16px;
  transition: all .2s;
}
.util-nav .pill:hover { background: var(--ink); color: var(--paper); }

/* ============== HERO ============== */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 32px 96px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(122, 29, 29, 0.07), transparent 55%),
    var(--paper);
}
.hero::before, .hero::after {
  content: ''; position: absolute;
  left: 50%; transform: translateX(-50%);
  width: min(880px, 90%); height: 1px;
  background: var(--ink-3);
}
.hero::before { top: 24px; }
.hero::after  { bottom: 24px; }

.hero-inner { max-width: 940px; margin: 0 auto; position: relative; }

.hero .est {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .4em; color: var(--ink-3);
  margin-bottom: 36px;
  display: flex; justify-content: center; gap: 24px; align-items: center;
  flex-wrap: wrap;
}
.hero .est .dot { width: 4px; height: 4px; background: var(--ink-3); border-radius: 50%; }

.hero .mark-large {
  display: block;
  width: 110px; height: auto;
  margin: 0 auto 28px;
}

.hero .eyebrow-thesis {
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4.5vw, 60px);
  letter-spacing: .02em; line-height: 1.1;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero h1 .em {
  font-family: var(--font-body);
  font-style: italic; font-weight: 400;
  color: var(--accent);
  letter-spacing: 0;
}
.hero h1 .small {
  display: block; font-size: .56em;
  letter-spacing: .04em; color: var(--ink-2);
  margin-top: 14px; font-weight: 400;
}
.hero p.lede {
  max-width: 660px; margin: 0 auto;
  font-size: 18px; line-height: 1.6; color: var(--ink-2);
  text-wrap: pretty;
}

.hero-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin: 56px auto 8px;
  color: var(--ink-3);
}
.hero-ornament.top { margin: 8px auto 40px; }
.hero-ornament .rule { width: 96px; height: 1px; background: currentColor; }
.hero-ornament .dots { display: inline-flex; gap: 10px; align-items: center; }
.hero-ornament .dots i {
  width: 4px; height: 4px; background: var(--ink-3);
  border-radius: 50%; display: block;
}
.hero-ornament .dots i.center {
  width: 6px; height: 6px; background: var(--accent);
  transform: rotate(45deg); border-radius: 0;
}

.hero-ctas {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap;
}

/* ============== BUTTONS ============== */
.btn {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .28em; padding: 14px 24px;
  border: 1.5px solid var(--ink);
  background: transparent; color: var(--ink);
  cursor: pointer; transition: all .2s;
  display: inline-block;
  text-transform: uppercase;
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn.solid { background: var(--ink); color: var(--paper); }
.btn.solid:hover { background: var(--accent); border-color: var(--accent); }
.btn.accent { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.btn.accent:hover { background: transparent; color: var(--accent); }
.btn.ghost { border: 0; padding: 14px 8px; }
.btn.ghost::after { content: ' →'; }

/* ============== TRIPTYCH (D · O · S) ============== */
.triptych {
  background: var(--paper-2);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.triptych-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.pillar {
  padding: 56px 40px;
  border-right: 1px solid var(--ink-4);
  position: relative;
}
.pillar:last-child { border-right: 0; }
.pillar .roman {
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: .35em; color: var(--accent);
  margin-bottom: 14px;
}
.pillar h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 26px; letter-spacing: .08em;
  margin: 0 0 16px;
}
.pillar h3 .ampersand {
  font-family: var(--font-body); font-style: italic;
  color: var(--accent); font-size: .9em; padding: 0 4px;
}
.pillar p {
  margin: 0 0 14px; line-height: 1.65;
  color: var(--ink-2); font-size: 15.5px;
}
.pillar .read-more {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .25em; color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

/* ============== SECTION SHELL ============== */
section.band { padding: 88px 32px; position: relative; }
.band-inner { max-width: 1280px; margin: 0 auto; }
.band-head {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 24px; align-items: baseline;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 40px;
}
.band-head .num {
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: .35em; color: var(--ink-3);
}
.band-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; letter-spacing: .14em; margin: 0;
}
.band-head .more {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .25em; color: var(--accent);
}
.band-head .more::after { content: ' →'; }

/* ============== SMOKESCREEN ============== */
.smokescreen {
  background: var(--ink); color: var(--paper);
  overflow: hidden; position: relative;
}
.smokescreen::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(168,64,30,0.18), transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(176,136,56,0.10), transparent 50%);
  pointer-events: none;
}
.smokescreen .band-head { border-bottom-color: rgba(244,241,234,0.3); }
.smokescreen .band-head .num,
.smokescreen .band-head h2 { color: var(--paper); }

.ledger {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 56px; align-items: start; position: relative;
}
.ledger .left .week-tag {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .3em; color: var(--accent-2);
  margin-bottom: 14px;
}
.ledger .left h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: .04em; line-height: 1.2;
  margin: 0 0 22px;
}
.ledger .left h3 em {
  font-family: var(--font-body); font-style: italic;
  color: var(--accent-2);
}
.ledger .left p {
  color: rgba(244,241,234,0.78);
  font-size: 16px; line-height: 1.65;
  margin: 0 0 22px;
}
.ledger .left .cta {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .28em; color: var(--paper);
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 4px;
}

.ledger .right .columns {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(244,241,234,0.2);
}
.ledger .right .col { padding: 22px 22px 24px; }
.ledger .right .col + .col { border-left: 1px solid rgba(244,241,234,0.2); }
.ledger .right .col-head {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .3em; padding-bottom: 12px;
  border-bottom: 1px solid rgba(244,241,234,0.2);
  margin-bottom: 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.ledger .right .col.headline .col-head { color: var(--accent-2); }
.ledger .right .col.ledger-col .col-head { color: var(--gold); }
.ledger .right ul { padding: 0; margin: 0; list-style: none; }
.ledger .right li {
  font-size: 14px; line-height: 1.45;
  color: rgba(244,241,234,0.85);
  padding: 10px 0; border-top: 1px dotted rgba(244,241,234,0.18);
}
.ledger .right li:first-child { border-top: 0; padding-top: 0; }
.ledger .right li .src {
  display: block; font-family: var(--font-display);
  font-size: 9px; letter-spacing: .2em;
  color: rgba(244,241,234,0.45);
  margin-top: 4px;
}

/* ============== FOUR LIMBS ============== */
.limbs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
}
.limb {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--ink-4);
  background: var(--paper);
  display: flex; flex-direction: column;
  transition: background .2s;
}
.limb:hover { background: var(--paper-2); }
.limb:last-child { border-right: 0; }
.limb .num {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .35em; color: var(--accent);
  margin-bottom: 18px;
}
.limb .glyph { width: 48px; height: 48px; margin-bottom: 22px; color: var(--ink); }
.limb h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 19px; letter-spacing: .12em;
  margin: 0 0 10px;
}
.limb p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-2); margin: 0 0 20px; flex: 1;
}
.limb .more {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .28em; color: var(--accent);
}
.limb .more::after { content: ' →'; }
.limb .status {
  align-self: flex-start;
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .25em;
  border: 1px solid var(--ink-3); color: var(--ink-3);
  padding: 4px 10px;
}

/* ============== WRITINGS (homepage journal preview) ============== */
.writings {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.writings .featured .figure {
  aspect-ratio: 16/9;
  background: var(--ink);
  margin-bottom: 22px;
  position: relative; overflow: hidden;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 2px, rgba(244,241,234,0.05) 2px 4px),
    linear-gradient(135deg, #2a2520, #1a1915);
  display: flex; align-items: center; justify-content: center;
}
.writings .featured .figure .stamp {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .3em; color: rgba(244,241,234,0.4);
}
.writings .featured .figure svg { width: 96px; opacity: 0.55; }
.writings .featured .meta,
.writings .secondary .meta,
.writings .tertiary .meta {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .3em; color: var(--ink-3);
  margin-bottom: 8px;
}
.writings .featured .meta .type { color: var(--accent); }
.writings .featured h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 28px; letter-spacing: .03em;
  line-height: 1.2; margin: 0 0 12px;
  text-wrap: balance;
}
.writings .featured p {
  font-size: 15.5px; line-height: 1.6;
  color: var(--ink-2); margin: 0 0 16px;
}
.writings .featured a.cont {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .25em; color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.writings .secondary .item,
.writings .tertiary .item {
  border-top: 1px solid var(--ink);
  padding: 18px 0;
}
.writings .secondary .item:last-child,
.writings .tertiary .item:last-child {
  border-bottom: 1px solid var(--ink);
}
.writings .secondary h4,
.writings .tertiary h4 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 16px; letter-spacing: .04em;
  line-height: 1.3; margin: 4px 0 0;
  text-wrap: balance;
}
.writings .secondary .item:hover h4,
.writings .tertiary .item:hover h4 { color: var(--accent); }

/* ============== FOUNDERS ============== */
.founders {
  background: var(--paper-2);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.founders-grid {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 64px; align-items: start;
}
.founders .portraits {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.founders .portrait {
  aspect-ratio: 3/4; background: var(--paper);
  border: 1px solid var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.founders .portrait::before {
  content: ''; position: absolute; inset: 12px 12px 50px;
  background: repeating-linear-gradient(45deg, transparent 0 6px, rgba(26,25,21,0.08) 6px 7px);
  border: 1px solid var(--ink-4);
}
.founders .portrait .name {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .25em; color: var(--ink-2);
  text-align: center; line-height: 1.4;
}
.founders .portrait .role {
  font-family: var(--font-body); font-style: italic;
  font-size: 11px; color: var(--ink-3); margin-top: 2px;
}
.founders .letter { padding-top: 8px; }
.founders .letter h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; letter-spacing: .12em;
  margin: 8px 0 22px;
}
.founders .letter p {
  font-size: 16px; line-height: 1.7;
  color: var(--ink); margin: 0 0 16px;
  max-width: 640px;
}
.founders .letter p:first-of-type::first-letter {
  font-family: var(--font-display); font-size: 56px;
  float: left; line-height: .85; padding: 6px 12px 0 0;
  font-weight: 700; color: var(--accent);
}
.founders .signature {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--ink-3);
  display: flex; justify-content: space-between; align-items: baseline;
  max-width: 640px;
}
.founders .signature .names {
  font-family: var(--font-body); font-style: italic;
  font-size: 16px;
}
.founders .signature .role {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .3em; color: var(--ink-3);
}

/* ============== FALLACY (about page §3) ============== */
.fallacy-hero {
  text-align: center;
  position: relative;
  padding: 24px 32px 48px;
  margin: -32px 0 56px;
  border-bottom: 3px double var(--ink);
}
.fallacy-hero::before,
.fallacy-hero::after {
  content: '';
  position: absolute; left: 50%; transform: translateX(-50%);
  width: min(680px, 86%); height: 1px;
  background: var(--ink-3);
}
.fallacy-hero::before { top: 0; }
.fallacy-hero::after  { bottom: 18px; }
.fallacy-hero .est {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: .4em;
  color: var(--ink-3);
  margin-bottom: 22px;
  display: flex; justify-content: center; gap: 20px; align-items: center;
  flex-wrap: wrap;
  text-transform: uppercase;
}
.fallacy-hero .est .dot {
  width: 4px; height: 4px; background: var(--ink-3); border-radius: 50%;
}
.fallacy-hero h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: .04em; line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
}
.fallacy-hero h2 .em {
  font-family: var(--font-body); font-style: italic;
  color: var(--accent);
  letter-spacing: 0;
  font-size: .82em;
}
.fallacy-hero .lede {
  max-width: 540px; margin: 0 auto;
  font-family: var(--font-body); font-style: italic;
  font-size: 17px; line-height: 1.55; color: var(--ink-2);
}

@media (max-width: 720px) {
  .fallacy-hero { padding: 20px 16px 40px; }
  .fallacy-hero h2 { font-size: clamp(28px, 8vw, 40px); }
  .fallacy-hero .lede { font-size: 15.5px; }
  .fallacy-hero .est { gap: 14px; font-size: 9.5px; }
}

.fallacy-prose {
  max-width: 64ch;
  margin: 0 auto 40px;
  font-family: var(--font-body);
  color: var(--ink);
}
.fallacy-prose p {
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
}
.fallacy-prose p.lead {
  font-size: 22px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 32px;
}
.fallacy-prose p.lead::first-letter {
  font-family: var(--font-display);
  font-size: 64px;
  float: left;
  line-height: .85;
  padding: 6px 12px 0 0;
  font-weight: 700;
  font-style: normal;
  color: var(--accent);
}

.fallacy-divider {
  margin: 56px 0 32px;
  text-align: center;
  position: relative;
  display: flex; align-items: center; gap: 24px;
}
.fallacy-divider::before,
.fallacy-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid var(--ink-4);
}
.fallacy-divider span {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .35em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.fallacy-families {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.fallacy-family {
  display: grid;
  grid-template-columns: 88px 130px 1fr;
  gap: 32px;
  padding: 44px 8px;
  border-bottom: 1px solid var(--ink-4);
  align-items: start;
}
.fallacy-family:last-child {
  border-bottom: 0;
}
.fallacy-family .num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--accent);
  line-height: 1;
}
.fallacy-family .label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .38em;
  color: var(--ink-3);
  padding-top: 14px;
}
.fallacy-family .content { max-width: 64ch; }
.fallacy-family h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: .02em;
  color: var(--ink);
  margin: 0 0 14px;
}
.fallacy-family p {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 16px;
  max-width: 64ch;
}
.fallacy-family .examples {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-3);
  font-style: italic;
}
.fallacy-family .examples em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: .3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-right: 14px;
}

.fallacy-close {
  max-width: 64ch;
  margin: 56px auto 0;
}
.fallacy-close p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 18px;
}
.fallacy-close p.thesis {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .04em;
  color: var(--ink);
  text-align: center;
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--ink-3);
}
.fallacy-close p.thesis em {
  font-style: italic;
  color: var(--accent);
}

@media (max-width: 720px) {
  .fallacy-family {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 36px 0;
  }
  .fallacy-family .num { font-size: 38px; }
  .fallacy-family .label { padding-top: 0; }
  .fallacy-prose p.lead { font-size: 19px; }
  .fallacy-prose p.lead::first-letter { font-size: 48px; }
}

/* ============== SUBSCRIBE BAND ============== */
.subscribe {
  text-align: center; padding: 80px 32px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(122,29,29,0.05), transparent 55%),
    var(--paper);
}
.subscribe .eyebrow { margin-bottom: 16px; color: var(--accent); }
.subscribe h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 32px; letter-spacing: .06em;
  margin: 0 0 14px;
}
.subscribe p {
  max-width: 540px; margin: 0 auto 26px;
  color: var(--ink-2); font-size: 16px;
}
.subscribe form {
  display: flex; max-width: 460px; margin: 0 auto;
  border: 1.5px solid var(--ink);
  background: var(--paper);
}
.subscribe input {
  flex: 1; border: 0; padding: 14px 16px;
  font-family: var(--font-body); font-size: 15px;
  background: transparent; color: var(--ink); outline: none;
}
.subscribe input::placeholder { color: var(--ink-3); font-style: italic; }
.subscribe button {
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: .28em; padding: 0 22px;
  background: var(--ink); color: var(--paper);
  border: 0; cursor: pointer;
  transition: background .2s;
}
.subscribe button:hover { background: var(--accent); }
.subscribe .fineprint {
  margin-top: 14px;
  font-family: var(--font-body); font-style: italic;
  color: var(--ink-3); font-size: 13px;
}

/* ============== FOOTER ============== */
footer.site {
  background: var(--ink); color: var(--paper);
  padding: 64px 32px 32px;
}
footer.site .grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 0.9fr 1.1fr 1.4fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(244,241,234,0.18);
}
footer .cc-row {
  display: grid; grid-template-columns: auto auto 1fr;
  align-items: start; gap: 12px;
  margin: 18px 0 4px;
  color: rgba(244,241,234,0.78);
}
footer .cc-badge {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--paper); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
footer .cc-note {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.5;
  margin: 4px 0 0; color: rgba(244,241,234,0.78);
  max-width: 360px;
}
footer .socials { display: flex; gap: 10px; margin-bottom: 14px; }
footer .social {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--paper);
  transition: transform .15s, opacity .15s;
}
footer .social:hover { transform: translateY(-1px); opacity: .9; }
footer .social.fb { background: #1877f2; }
footer .social.tw { background: #0f0f0f; border: 1px solid rgba(244,241,234,0.3); }
footer .social.yt { background: #c4302b; }
footer .social.rss {
  background: transparent;
  border: 1px solid rgba(244,241,234,0.4);
  color: rgba(244,241,234,0.8);
}
footer .connect-note,
footer .sub-note {
  font-family: var(--font-body); font-style: italic;
  font-size: 13px; line-height: 1.5;
  color: rgba(244,241,234,0.55);
  margin: 0;
}
footer .sub-form {
  margin-top: 14px;
  display: flex; align-items: stretch;
  border: 1px solid rgba(244,241,234,0.4);
  background: rgba(244,241,234,0.04);
  flex-wrap: wrap;
}
footer .sub-form input {
  flex: 1 1 140px; min-width: 0;
  border: 0; background: transparent;
  padding: 11px 12px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--paper); outline: none;
}
footer .sub-form input::placeholder {
  color: rgba(244,241,234,0.45); font-style: italic;
}
footer .sub-form button {
  flex-shrink: 0;
  background: var(--accent); color: var(--paper);
  border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .26em; padding: 0 16px;
  transition: background .15s;
}
footer .sub-form button:hover { background: var(--accent-2); }
footer .sub-form .thanks {
  flex-basis: 100%;
  text-align: center;
  font-family: var(--font-body); font-style: italic;
  font-size: 13px; padding: 8px 0;
  color: rgba(244,241,234,0.7);
  border-top: 1px solid rgba(244,241,234,0.2);
}
footer .colophon .brand-f { margin-bottom: 22px; }
footer .colophon .brand-f .logo {
  display: block;
  width: 280px; height: auto; max-width: 100%;
  filter: invert(1);
}
footer .colophon p {
  font-size: 14px; line-height: 1.65;
  color: rgba(244,241,234,0.78); margin: 0 0 12px;
  max-width: 460px;
}
footer .colophon .ein {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .25em; color: rgba(244,241,234,0.5);
  margin-top: 16px;
}
footer h5 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 10px; letter-spacing: .3em;
  color: rgba(244,241,234,0.5);
  margin: 0 0 14px;
}
footer ul { padding: 0; margin: 0; list-style: none; }
footer li {
  font-size: 14px; padding: 5px 0;
  color: rgba(244,241,234,0.85);
}
footer li a:hover { color: var(--accent-2); }
footer .legal {
  max-width: 1280px; margin: 24px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-family: var(--font-display); font-size: 9px;
  letter-spacing: .3em; color: rgba(244,241,234,0.4);
}
footer .legal a:hover { color: rgba(244,241,234,0.85); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .ledger { grid-template-columns: 1fr; gap: 40px; }
  .writings { grid-template-columns: 1fr; }
  .limbs-grid { grid-template-columns: 1fr 1fr; }
  .limb:nth-child(2) { border-right: 0; }
  .limb:nth-child(1), .limb:nth-child(2) { border-bottom: 1px solid var(--ink-4); }
  .triptych-inner { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--ink-4); }
  .pillar:last-child { border-bottom: 0; }
  .founders-grid { grid-template-columns: 1fr; gap: 32px; }
  footer.site .grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer.site .colophon { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav { grid-template-columns: 1fr auto; }
  .primary-nav { display: none; }
  .limbs-grid { grid-template-columns: 1fr; }
  .limb { border-right: 0 !important; border-bottom: 1px solid var(--ink-4); }
  .limb:last-child { border-bottom: 0; }
  .ledger .right .columns { grid-template-columns: 1fr; }
  .ledger .right .col + .col { border-left: 0; border-top: 1px solid rgba(244,241,234,0.2); }
  footer.site .grid { grid-template-columns: 1fr; }
}
