/* ============================================================
   Hedonic Intelligence — site.css  (ground-up rebuild 2026-05-29)
   Depends on tokens.css. Mobile-first, editorial cream/gold.
   ============================================================ */

/* ---------- shared section scaffolding ---------- */
.section { padding-block: clamp(64px, 9vw, 132px); position: relative; }
.section--alt { background: var(--paper-2); }
.section--ink {
  background: var(--ink); color: var(--ink-paper);
  --rule-2: var(--ink-rule); --rule-3: #F5F2EC33; --ink-3: var(--ink-paper-2);
  --ink-4: var(--ink-paper-3); --accent-ink: var(--accent-on-ink);
}
.section + .section { border-top: 1px solid var(--rule); }
.section--ink + .section, .section + .section--ink { border-top: none; }

.section-head { max-width: 980px; margin-bottom: clamp(40px, 5vw, 72px); }
.section-head .eyebrow { display: block; margin-bottom: 22px; }
.h-section { font-family: var(--serif); font-size: var(--fs-h1); color: inherit; }
.h-section em { color: var(--accent-ink); font-weight: 500; }
.lede {
  font-family: var(--serif); font-style: italic; font-size: var(--fs-lede);
  line-height: 1.5; color: var(--ink-3); margin-top: 20px; max-width: 60ch;
}
.lede em { font-style: normal; color: var(--ink-2); }
.section--ink .lede { color: var(--ink-paper-2); }
.section--ink .section-head .h-section { color: var(--ink-paper); }

/* ---------- buttons ---------- */
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
  background: var(--ink); color: var(--paper);
  padding: 14px 22px; border-radius: var(--r); transition: var(--t);
  white-space: nowrap;
}
.cta:hover { background: var(--accent-ink); }
.cta__arrow { transition: transform var(--t); }
.cta:hover .cta__arrow { transform: translateX(4px); }
.cta--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--rule-3); }
.cta--ghost:hover { background: var(--ink); color: var(--paper); box-shadow: none; }
.section--ink .cta { background: var(--accent); color: var(--ink); }
.section--ink .cta:hover { background: var(--accent-on-ink); }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  -webkit-backdrop-filter: saturate(140%) blur(12px); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule-2);
}
.nav__inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.nav__brand { display: flex; align-items: center; gap: 11px; font-weight: 600; letter-spacing: 0.02em; font-size: 16px; }
.nav__brand .mark { width: 28px; height: 28px; color: var(--ink); flex: none; }
.nav__brand .soft { color: var(--ink-3); font-weight: 500; }
.nav__links { display: none; margin-left: auto; gap: 26px; align-items: center; }
.nav__links a { font-size: 14.5px; color: var(--ink-3); transition: color var(--t); position: relative; }
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-flag { color: var(--accent-ink); font-weight: 600; }
.nav__right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.nav__links + .nav__right { margin-left: 0; }
.nav .cta { padding: 10px 16px; font-size: 14px; }

.lang-wrap { position: relative; }
.lang { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--ink-3); padding: 7px 9px; border-radius: var(--r); transition: var(--t); }
.lang:hover { color: var(--ink); background: var(--paper-3); }
.lang__caret { font-size: 9px; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px); min-width: 130px;
  background: var(--paper); border: 1px solid var(--rule-2); border-radius: var(--r);
  box-shadow: 0 18px 50px -20px #17161433; padding: 6px; display: none; flex-direction: column;
}
.lang-menu.open { display: flex; }
.lang-menu button { text-align: left; padding: 9px 12px; border-radius: 4px; font-size: 14px; color: var(--ink-2); transition: var(--t); display: flex; justify-content: space-between; gap: 16px; }
.lang-menu button:hover { background: var(--paper-2); }
.lang-menu button.is-active { color: var(--accent-ink); font-weight: 600; }
.lang-menu button .code { font-family: var(--mono); font-size: 11px; color: var(--ink-4); }

.nav__toggle { display: inline-flex; flex-direction: column; gap: 4px; padding: 8px; margin-left: 4px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); transition: var(--t); }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 940px) {
  .nav__links { display: flex; }
  .nav__toggle { display: none; }
}
/* mobile drawer */
@media (max-width: 939px) {
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; left: 0; right: 0; top: 64px; margin: 0; padding: 14px var(--gut) 22px;
    background: var(--paper); border-bottom: 1px solid var(--rule-2);
  }
  .nav.is-open .nav__links a { padding: 10px 0; font-size: 17px; width: 100%; }
}

/* ===================== HERO ===================== */
.hero { padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(56px, 8vw, 104px); }
.hero__rule {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-4);
  padding-bottom: 26px; border-bottom: 1px solid var(--rule-2); margin-bottom: clamp(40px, 6vw, 72px);
}
.hero__grid { display: grid; grid-template-columns: 1fr; gap: clamp(44px, 6vw, 88px); align-items: end; }
.hero__display {
  font-family: var(--serif); font-weight: 500; font-size: var(--fs-display);
  line-height: 0.97; letter-spacing: -0.03em; color: var(--ink);
}
.hero__display em { font-weight: 400; color: var(--ink); }
.hero__display .accent { color: var(--accent-ink); font-style: italic; font-weight: 400; }
.hero__sub { font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2vw, 27px); line-height: 1.46; color: var(--ink-3); margin-top: 30px; max-width: 30ch; }
.hero__sub em { font-style: normal; color: var(--ink-2); }
.hero__cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 22px; margin-top: 40px; }
.hero__meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.03em; color: var(--ink-4); max-width: 34ch; line-height: 1.6; }

.hero__proof { display: flex; flex-direction: column; gap: 26px; }
.proof-stat { border-top: 1px solid var(--rule-3); padding-top: 18px; }
.proof-stat__num { font-family: var(--serif); font-size: clamp(40px, 5vw, 64px); line-height: 1; letter-spacing: -0.03em; color: var(--ink); display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.proof-stat__num .unit { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-ink); }
.proof-stat__label { font-size: 14.5px; line-height: 1.5; color: var(--ink-4); margin-top: 12px; max-width: 42ch; }

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.55fr 1fr; }
}

/* ===================== LENS (three distinctions) ===================== */
.lens { display: grid; grid-template-columns: 1fr; }
.dist { display: grid; grid-template-columns: 44px 1fr; gap: 22px; align-items: start; padding: clamp(22px, 3vw, 34px) 0; border-top: 1px solid var(--rule-2); }
.dist:last-child { border-bottom: 1px solid var(--rule-2); }
.dist__n { font-family: var(--mono); font-size: 14px; color: var(--accent); padding-top: 8px; }
.dist__t { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 38px); line-height: 1.28; color: var(--ink); }
.dist__t b { color: var(--accent-ink); font-weight: 600; font-style: italic; }
.lens__forward { margin-top: 38px; font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.7vw, 23px); line-height: 1.5; color: var(--ink-3); max-width: 70ch; }
.lens__forward b { font-style: normal; font-weight: 600; color: var(--ink-2); }

/* ===================== VISUALIZER ===================== */
.viz { border: 1px solid var(--ink-rule); border-radius: var(--r-lg); overflow: hidden; background: #1E1C19; }
.viz__chrome { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--ink-rule); flex-wrap: wrap; }
.viz__chrome-l { display: flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; color: var(--ink-paper-3); }
.live { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 #A8842B66; } 70% { box-shadow: 0 0 0 7px #A8842B00; } 100% { box-shadow: 0 0 0 0 #A8842B00; } }
@media (prefers-reduced-motion: reduce) { .live { animation: none; } }
.viz__langs { margin-left: auto; display: flex; gap: 4px; }
.viz__langs button { font-family: var(--mono); font-size: 12px; color: var(--ink-paper-3); padding: 5px 11px; border-radius: 4px; transition: var(--t); }
.viz__langs button:hover { color: var(--ink-paper); background: #FFFFFF12; }
.viz__langs button.is-active { color: var(--ink); background: var(--accent); }

.viz__body { display: grid; grid-template-columns: 1fr; gap: 0; }
.viz__source { padding: clamp(24px, 3vw, 38px); border-bottom: 1px solid var(--ink-rule); }
.viz__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-paper-3); margin-bottom: 18px; display: flex; gap: 14px; flex-wrap: wrap; }
.viz__meta .stars { color: var(--accent-on-ink); letter-spacing: 0.1em; }
.viz__text { font-family: var(--serif); font-size: clamp(18px, 1.9vw, 24px); line-height: 1.62; color: var(--ink-paper-2); }
.tok { transition: background 160ms var(--ease), color 160ms var(--ease); border-radius: 3px; }
.tok--field { color: var(--ink-paper); background: #A8842B1F; box-shadow: inset 0 -1px 0 #A8842B66; cursor: default; padding: 1px 2px; }
.tok--field.lit { background: var(--accent); color: var(--ink); box-shadow: none; }
.tok--field.dim { opacity: 0.4; }

.viz__fields { padding: clamp(20px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 0; background: #191714; }
.viz__fields-head { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-paper-3); margin-bottom: 16px; display: flex; justify-content: space-between; }
.field-card { padding: 13px 0; border-top: 1px solid var(--ink-rule); cursor: default; transition: var(--t); }
.field-card:first-of-type { border-top: none; }
.field-card.lit { background: #A8842B14; box-shadow: inset 3px 0 0 var(--accent); padding-left: 14px; margin-left: -14px; border-radius: 0 4px 4px 0; }
.field-card__key { font-family: var(--mono); font-size: 11.5px; color: var(--accent-on-ink); margin-bottom: 5px; word-break: break-word; }
.field-card__val { font-size: 15px; color: var(--ink-paper); font-weight: 500; }
.field-card__detail { font-size: 12.5px; color: var(--ink-paper-3); line-height: 1.5; margin-top: 5px; }
.field-card__detail code { color: var(--ink-paper-2); }

.viz__split { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--ink-rule); }
.viz__verdict { padding: clamp(20px, 2.4vw, 30px); }
.viz__verdict h4 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.viz__verdict.tool h4 { color: var(--ink-paper-3); }
.viz__verdict.read { background: #211E18; }
.viz__verdict.read h4 { color: var(--accent-on-ink); }
.viz__verdict.read { border-top: 1px solid var(--ink-rule); }
.viz__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.viz__tag { font-family: var(--mono); font-size: 12px; color: var(--ink-paper-2); background: #FFFFFF0E; padding: 5px 10px; border-radius: 3px; }
.viz__verdict p { font-size: 13.5px; color: var(--ink-paper-3); line-height: 1.5; font-style: italic; }
.viz__readgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.viz__rd .k { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-on-ink); margin-bottom: 3px; }
.viz__rd .v { font-size: 14px; color: var(--ink-paper); line-height: 1.35; }
.viz__rd .v b { color: #D98A8A; font-weight: 600; }
.viz__caption { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 14px 20px; border-top: 1px solid var(--ink-rule); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.03em; color: var(--ink-paper-3); }
.viz__caption .accent { color: var(--accent-on-ink); }

@media (min-width: 900px) {
  .viz__body { grid-template-columns: 1.25fr 1fr; }
  .viz__source { border-bottom: none; border-right: 1px solid var(--ink-rule); }
  .viz__split { grid-template-columns: 1fr 1.1fr; }
  .viz__verdict.read { border-top: none; border-left: 1px solid var(--ink-rule); }
}

/* ===================== COHORT TABLE ===================== */
.cohort-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cohort { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; min-width: 620px; }
.cohort thead th { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-4); text-align: center; padding: 0 10px 14px; border-bottom: 1.5px solid var(--ink-3); }
.cohort thead th.l { text-align: left; padding-left: 0; }
.cohort thead th.r { text-align: right; }
.cohort tbody td { font-size: 18px; color: var(--ink-2); text-align: center; padding: 0 10px; height: 54px; border-bottom: 1px solid var(--rule); }
.cohort tbody td.l { text-align: left; padding-left: 0; font-weight: 500; color: var(--ink); }
.cohort tbody td.r { text-align: right; color: var(--ink); }
.cohort tbody tr:last-child td { border-bottom: 1.5px solid var(--ink-3); }
.cohort tbody tr.flag td { background: var(--accent-soft); }
.cohort tbody tr.flag td.l { color: var(--accent-ink); font-weight: 700; }
.gA { color: var(--up); font-weight: 700; }
.gF { color: var(--down); font-weight: 700; }
.cohort tbody tr.flag .gF { color: var(--accent-ink); }
.cohort-foot { font-size: 13.5px; color: var(--ink-4); line-height: 1.55; margin-top: 22px; max-width: 92ch; }
.cohort-foot strong { color: var(--ink-3); }

/* ===================== FINDINGS ===================== */
.findings { display: grid; grid-template-columns: 1fr; gap: 22px; }
.finding {
  border: 1px solid var(--rule-2); border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px); background: var(--paper);
  display: grid; grid-template-columns: 1fr; gap: 30px;
}
.finding__eyebrow { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 16px; }
.finding__hero-num { font-family: var(--serif); font-size: clamp(72px, 11vw, 150px); line-height: 0.82; letter-spacing: -0.04em; color: var(--accent); }
.finding__hero-num .sm { font-size: 0.42em; color: var(--ink-3); }
.finding__cap { font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.4; color: var(--ink-3); margin-top: 18px; max-width: 30ch; }
.finding__mech { font-size: 16.5px; line-height: 1.6; color: var(--ink-2); margin-top: 18px; }
.finding__mech b { color: var(--ink); font-weight: 600; }
.finding__ev-label { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 18px; }
.quote { border-left: 3px solid var(--accent); padding-left: 20px; margin-bottom: 20px; }
.quote .src { display: block; font-size: 12px; color: var(--ink-4); margin-bottom: 7px; }
.quote .said { font-family: var(--serif); font-style: italic; font-size: clamp(17px, 1.7vw, 21px); line-height: 1.4; color: var(--ink); }
.quote .gloss { display: block; font-size: 13px; color: var(--ink-4); margin-top: 6px; }
.finding__verify { font-size: 13px; color: var(--ink-4); line-height: 1.5; }
.finding__decision { grid-column: 1 / -1; border-top: 1px solid var(--rule-3); padding-top: 22px; font-size: 16.5px; line-height: 1.5; color: var(--ink); }
.finding__decision b { color: var(--accent-ink); font-weight: 600; }
.moneytag { display: inline-block; font-family: var(--mono); font-size: 13px; color: var(--accent-ink); background: var(--accent-soft); padding: 3px 9px; border-radius: 4px; margin-right: 6px; }
@media (min-width: 820px) { .finding { grid-template-columns: 1fr 1.05fr; } }

/* ===================== MONEY BRIDGE ===================== */
.ratestrip { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 30px; padding: 20px clamp(20px,3vw,30px); background: var(--ink); color: var(--ink-paper); border-radius: var(--r); margin-bottom: 34px; }
.ratestrip .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--accent-on-ink); }
.ratestrip .v { font-family: var(--serif); font-size: clamp(20px,2vw,26px); }
.ratestrip .note { margin-left: auto; font-style: italic; font-size: 14px; color: var(--ink-paper-3); max-width: 40ch; }
.bridges { display: grid; grid-template-columns: 1fr; gap: 16px; }
.bridge { border: 1px solid var(--rule-2); border-radius: var(--r); padding: clamp(20px,2.4vw,28px); display: grid; grid-template-columns: 34px 1fr; gap: 18px; }
.bridge.worked { border-color: var(--accent-line); background: var(--accent-soft); }
.bridge__n { font-family: var(--serif); font-size: 30px; color: var(--accent); line-height: 1; }
.bridge__t { font-family: var(--serif); font-size: clamp(19px,2vw,24px); line-height: 1.22; margin-bottom: 12px; }
.bridge__t b { color: var(--accent-ink); }
.brow { font-size: 15px; line-height: 1.5; color: var(--ink-2); margin-bottom: 6px; }
.brow .bk { font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-4); margin-right: 8px; }
.brow b { color: var(--ink); font-weight: 600; }
.envelope { display: inline-block; font-family: var(--mono); font-size: 15px; color: var(--accent-ink); background: var(--paper); padding: 6px 12px; border-radius: 4px; margin-top: 5px; }
.gate { border-left: 4px solid var(--accent); background: var(--paper-3); padding: 22px 26px; border-radius: 0 var(--r) var(--r) 0; margin-top: 24px; }
.gate .gk { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-ink); margin-bottom: 10px; }
.gate .gt { font-family: var(--serif); font-size: clamp(18px,1.8vw,22px); line-height: 1.42; color: var(--ink-2); }
.gate .gt b { color: var(--ink); font-weight: 600; }

/* ===================== DIFFERENTIATION ===================== */
.diff { display: grid; grid-template-columns: 1fr; gap: 18px; }
.diff__col { border: 1px solid var(--rule-2); border-radius: var(--r-lg); padding: clamp(24px,3vw,36px); }
.diff__col--ours { border-color: var(--accent-line); background: var(--accent-soft); }
.diff__label { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 14px; }
.diff__title { font-family: var(--serif); font-size: clamp(22px,2.4vw,30px); margin-bottom: 12px; }
.diff__buyer { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; margin-bottom: 22px; }
.diff__list { display: flex; flex-direction: column; gap: 13px; }
.diff__list li { display: grid; grid-template-columns: 64px 1fr; gap: 14px; font-size: 15px; line-height: 1.45; color: var(--ink-2); }
.diff__list .marker { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; color: var(--accent-ink); padding-top: 3px; }
@media (min-width: 820px) { .diff { grid-template-columns: 1fr 1fr; } }

/* ===================== PERIMETER + FAQ ===================== */
.perimeter { display: grid; grid-template-columns: 1fr; gap: 30px 60px; margin-bottom: 16px; }
.perimeter h4 { font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-4); padding-bottom: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--rule-2); }
.perimeter p { font-size: 16px; line-height: 1.55; color: var(--ink-2); margin-bottom: 16px; }
.perimeter p b { color: var(--ink); font-weight: 600; }
@media (min-width: 820px) { .perimeter { grid-template-columns: 1fr 1fr; } }

.qa { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 1000px; }
.qa__item { border-top: 1px solid var(--rule-2); }
.qa__item:last-child { border-bottom: 1px solid var(--rule-2); }
.qa__q { display: flex; gap: 16px; align-items: center; width: 100%; text-align: left; padding: 24px 0; font-family: var(--serif); font-size: clamp(18px,1.9vw,23px); color: var(--ink); }
.qa__q .qn { font-family: var(--mono); font-size: 13px; color: var(--accent); flex: none; }
.qa__q .qmark { margin-left: auto; font-size: 22px; color: var(--ink-4); transition: transform var(--t); flex: none; }
.qa__item.open .qa__q .qmark { transform: rotate(45deg); }
.qa__a { max-height: 0; overflow: hidden; transition: max-height 360ms var(--ease); }
.qa__a-inner { padding: 0 0 26px 38px; font-size: 16px; line-height: 1.6; color: var(--ink-2); max-width: 80ch; }
.qa__a-inner b { color: var(--ink); font-weight: 600; }
.qa__a-inner .pull { color: var(--accent-ink); font-weight: 600; }

/* ===================== HOW IT WORKS ===================== */
.how { display: grid; grid-template-columns: 1fr; gap: 18px; counter-reset: step; }
.how__step { border-top: 2px solid var(--ink); padding-top: 20px; }
.how__step-num { display: flex; align-items: baseline; gap: 12px; margin-bottom: 14px; }
.how__step-num .numeral { font-family: var(--serif); font-size: 30px; color: var(--accent); }
.how__step-num .name { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-4); }
.how__step-h { font-family: var(--serif); font-size: clamp(18px,1.8vw,22px); line-height: 1.2; margin-bottom: 10px; }
.how__step-text { font-size: 14.5px; line-height: 1.55; color: var(--ink-3); margin-bottom: 14px; }
.how__step-time { font-family: var(--mono); font-size: 11.5px; color: var(--ink-4); letter-spacing: 0.03em; }
.how__step-time b { color: var(--accent-ink); font-weight: 500; }
@media (min-width: 720px) { .how { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .how { grid-template-columns: repeat(4, 1fr); } }

/* ===================== FOUNDERS ===================== */
.founders { display: grid; grid-template-columns: 1fr; gap: 20px; }
.founder { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; border: 1px solid var(--rule-2); border-radius: var(--r-lg); padding: clamp(22px,2.6vw,30px); }
.founder__avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); color: var(--paper); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 20px; }
.founder__name { font-family: var(--serif); font-size: 22px; }
.founder__role { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); margin: 4px 0 12px; }
.founder__bio { font-size: 14.5px; line-height: 1.55; color: var(--ink-3); }
@media (min-width: 720px) { .founders { grid-template-columns: 1fr 1fr; } }

/* ===================== CONTACT ===================== */
.contact { display: grid; grid-template-columns: 1fr; gap: 40px; }
.contact__intro { font-family: var(--serif); font-size: clamp(19px,1.9vw,24px); font-style: italic; line-height: 1.45; color: var(--ink-paper); }
.contact__intro em { font-style: normal; color: var(--accent-on-ink); }
.contact__note { font-size: 15px; line-height: 1.55; color: var(--ink-paper-2); margin-top: 18px; }
.contact__policy { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-paper-3); margin-top: 28px; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: flex; flex-direction: column; gap: 7px; }
.form label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-paper-2); }
.form input, .form textarea {
  font: inherit; font-size: 15px; color: var(--ink-paper); background: #FFFFFF0A;
  border: 1px solid var(--ink-rule); border-radius: var(--r); padding: 12px 14px; transition: var(--t);
}
.form input::placeholder, .form textarea::placeholder { color: var(--ink-paper-3); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); background: #FFFFFF12; }
.form textarea { min-height: 110px; resize: vertical; }
.form__submit { align-self: flex-start; margin-top: 6px; }
.form__sent, .form__error { font-size: 14px; margin-top: 8px; display: none; }
.form.is-sent .form__sent { display: block; color: var(--accent-on-ink); }
@media (min-width: 860px) { .contact { grid-template-columns: 0.9fr 1.1fr; gap: 64px; } }

/* ===================== FOOTER ===================== */
.footer { background: var(--ink); color: var(--ink-paper-2); padding-block: clamp(48px,6vw,80px) 36px; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer__brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 19px; color: var(--ink-paper); margin-bottom: 16px; }
.footer__brand .mark { width: 26px; height: 26px; color: var(--ink-paper); }
.footer__claim { font-size: 14px; line-height: 1.55; color: var(--ink-paper-3); max-width: 46ch; }
.footer__col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-paper-3); margin-bottom: 16px; }
.footer__col li { margin-bottom: 11px; font-size: 14px; }
.footer__col a { color: var(--ink-paper-2); transition: color var(--t); }
.footer__col a:hover { color: var(--accent-on-ink); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; margin-top: clamp(40px,5vw,64px); padding-top: 24px; border-top: 1px solid var(--ink-rule); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.03em; color: var(--ink-paper-3); }
@media (min-width: 820px) { .footer__top { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }

/* ===================== COOKIE ===================== */
.cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 300; background: #171614F2; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-top: 1px solid var(--accent-line); padding: 16px var(--gut); }
.cookie__inner { max-width: var(--wrap); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie p { font-size: 13px; color: var(--ink-paper-3); flex: 1; min-width: 240px; line-height: 1.5; }
.cookie a { color: var(--accent-on-ink); border-bottom: 1px solid var(--accent-line); }
.cookie__btns { display: flex; gap: 8px; }
.cookie button { padding: 9px 17px; border-radius: 3px; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; transition: var(--t); }
.cookie__decline { border: 1px solid var(--ink-paper-3); color: var(--ink-paper-2); }
.cookie__decline:hover { border-color: var(--ink-paper); color: var(--ink-paper); }
.cookie__accept { background: var(--accent); color: var(--ink); font-weight: 600; }
.cookie__accept:hover { background: var(--accent-on-ink); }
