/* Mowa, mowa-copyediting.com. Version 2 on the scroll-craft engine: copper.
   scrollcraft.css (loaded first) is the mechanism and is never edited.
   To change a colour, edit the tokens in :root. Nothing else needs touching. */

@font-face { font-family: "Bona Nova"; src: url("../fonts/bona-nova-regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Bona Nova"; src: url("../fonts/bona-nova-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Bona Nova"; src: url("../fonts/bona-nova-bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Lato"; src: url("../fonts/lato-regular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Lato"; src: url("../fonts/lato-bold.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  /* engine tokens: the whole rebrand. --sc-canvas is what drift interpolates. */
  --sc-canvas: #2C120D;
  --sc-surface: #4A1F18;
  --sc-ink: #F1EADF;
  --sc-ink-soft: #DCCABD;
  --sc-accent: #F2C2B1;
  --sc-accent-ink: #2C120D;
  --sc-font-display: "Bona Nova", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sc-font-text: "Bona Nova", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sc-shadow-color: 12 60% 4%;

  /* brand */
  --blue: #1F19BE;
  --blue-deep: #16118C;
  --copper: #85382B;
  --copper-deep: #5A241B;
  --copper-tint: #F2C2B1;       /* copper, lightened for dark and blue grounds */
  --beige: #E7E3D9;

  /* roles */
  --canvas: var(--beige);
  --surface: #DCD6C9;
  --surface-2: #EFECE4;
  --sheet: #FBF9F4;
  --ink: #1B1922;
  --ink-soft: #4F4A44;
  --rule: rgba(27, 25, 34, 0.16);

  --font-display: "Bona Nova", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --font-ui: "Lato", "Helvetica Neue", Arial, sans-serif;

  /* 4px scale */
  --s1: 0.25rem; --s2: 0.5rem; --s3: 0.75rem; --s4: 1rem; --s5: 1.5rem;
  --s6: 2rem; --s7: 3rem; --s8: 4rem; --s9: 6rem; --s10: 8rem;
  --gutter: clamp(1rem, 4vw, 3rem);
  --section: clamp(4rem, 9vw, 8rem);
  --measure: 62ch;

  --t-sm: 0.875rem;
  --t-base: 1.0625rem;
  --t-md: 1.25rem;
  --t-lg: clamp(1.4rem, 1.1rem + 1vw, 1.75rem);
  --t-xl: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  --t-2xl: clamp(2.5rem, 1.6rem + 3.6vw, 4.5rem);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-1: 0 1px 2px rgba(60, 40, 20, 0.08), 0 2px 8px rgba(60, 40, 20, 0.06);
  --shadow-2: 0 2px 4px rgba(60, 40, 20, 0.08), 0 14px 32px rgba(60, 40, 20, 0.14);
  --shadow-3: 0 4px 8px rgba(40, 20, 10, 0.12), 0 28px 60px rgba(40, 20, 10, 0.22);
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 4.5rem; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: var(--t-base);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "onum";
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; margin: 0; text-wrap: balance; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }
ul, ol, dl, dd, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
::selection { background: var(--blue); color: var(--sheet); }
:focus-visible { outline: 3px solid var(--copper); outline-offset: 3px; border-radius: 2px; }
.ground-blue :focus-visible, .footer :focus-visible, .journals__panel :focus-visible { outline-color: var(--copper-tint); }
html { scrollbar-color: var(--copper) var(--surface); }

.wrap { width: 100%; max-width: 78rem; margin-inline: auto; padding-inline: var(--gutter); }

.skip {
  position: absolute; left: var(--s4); top: -4rem; z-index: 100;
  background: var(--blue); color: var(--sheet); padding: var(--s3) var(--s4);
  font-family: var(--font-ui); font-weight: 700; text-decoration: none;
}
.skip:focus { top: var(--s4); }

/* placeholders the CEO has to fill in: copper, always visible */
.todo {
  display: inline-block;
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 700; line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--copper);
  background: rgba(133, 56, 43, 0.08);
  border: 1px dashed rgba(133, 56, 43, 0.55);
  padding: 0.15em 0.5em;
  border-radius: 2px;
  max-width: 100%;
}
.todo--block { display: block; font-size: 0.95rem; padding: var(--s5); }
.ground-blue .todo, .todo--light, .record .todo {
  color: var(--copper-tint); background: rgba(242, 194, 177, 0.1); border-color: rgba(242, 194, 177, 0.6);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  font-family: var(--font-ui); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em; line-height: 1.2;
  padding: 0.95rem 1.4rem; min-height: 2.9rem;
  border-radius: var(--radius); border: 1.5px solid transparent;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 120ms var(--ease-out);
}
.btn:active { transform: translateY(1px); }
.btn--sm { padding: 0.6rem 1rem; min-height: 2.5rem; font-size: 0.875rem; }
.btn--lg { padding: 1.1rem 1.8rem; font-size: 1.05rem; }
.btn--blue { background: var(--blue); color: var(--sheet); }
.btn--blue:hover { background: var(--blue-deep); }
.btn--line { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn--line:hover { background: rgba(31, 25, 190, 0.07); }
.btn--light { background: var(--sheet); color: var(--blue); }
.btn--light:hover { background: var(--beige); }

/* ---------- masthead ---------- */
.masthead { background: var(--canvas); position: relative; z-index: 20; }
.masthead__inner { display: flex; align-items: center; gap: var(--s6); min-height: 4.75rem; }
.brand img { width: 7.25rem; height: auto; }
.nav { margin-left: auto; }
.nav ul { display: flex; gap: var(--s5); }
.nav a { font-family: var(--font-ui); font-size: 0.9rem; text-decoration: none; color: var(--ink); padding-block: var(--s2); background: linear-gradient(var(--copper), var(--copper)) 0 100% / 0 1.5px no-repeat; transition: background-size 180ms var(--ease-out); }
.nav a:hover { background-size: 100% 1.5px; }
.menu-toggle {
  display: none; margin-left: auto;
  font-family: var(--font-ui); font-weight: 700; font-size: 0.9rem;
  background: transparent; color: var(--blue); border: 1.5px solid var(--blue); border-radius: var(--radius);
  padding: 0.55rem 0.9rem; min-height: 2.75rem; cursor: pointer;
}

.menu {
  position: fixed; inset: 0; z-index: 40; background: var(--canvas);
  padding: 5rem var(--gutter) var(--s7);
  overflow-y: auto;
}
.menu ul { display: grid; gap: var(--s2); margin-bottom: var(--s6); }
.menu a:not(.btn) { font-size: 1.75rem; text-decoration: none; display: block; padding-block: var(--s2); border-bottom: 1px solid var(--rule); }
.menu__close { position: absolute; top: var(--s4); right: var(--gutter); }

@media (max-width: 1080px) {
  .nav, .masthead__cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; }
}

/* ---------- 1. hero ---------- */
.hero { position: relative; overflow-x: clip; }
.hero__stage { padding-block: var(--s6) var(--s9); }
.hero:not(.is-flow) .hero__stage { display: flex; align-items: center; padding-block: 4.5rem var(--s5); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { font-size: var(--t-2xl); line-height: 1.02; letter-spacing: -0.02em; color: var(--ink); }
.hero__lead { font-size: var(--t-md); line-height: 1.5; margin-top: var(--s5); max-width: 34rem; color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }
.hero__guarantee {
  margin-top: var(--s6); max-width: 30rem;
  font-family: var(--font-ui); font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft);
  padding-top: var(--s4); border-top: 2px solid var(--copper);
}

/* the manuscript and its planes */
.ms { position: relative; margin: 0; padding: var(--s6) 0 0; isolation: isolate; }
.ms__plane { position: absolute; inset: 0; pointer-events: none; }
.ms__plane--far { z-index: -2; }
.ms__plane--mid { z-index: -1; }
.ms__plane--subject { position: relative; inset: auto; z-index: 1; pointer-events: auto; }
.ms__plane--near { z-index: 2; }
.ms__plane--near .ms__comment { pointer-events: auto; }
.ms__brace {
  position: absolute;
  width: 38%; height: auto; left: -16%; top: -6%;
  color: var(--copper); opacity: 0.2;
}
.ms__under {
  position: absolute;
  inset: 3.25rem 24% 4.5rem -1.25rem;
  background: var(--surface-2);
  box-shadow: var(--shadow-1);
  transform: rotate(-2.4deg);
  border-radius: 2px;
}
.ms__sheet {
  position: relative; z-index: 1;
  background: var(--sheet);
  box-shadow: var(--shadow-2);
  border-radius: 2px;
  padding: var(--s5) clamp(1.25rem, 3vw, 2.75rem) var(--s6);
  margin-right: 31%;
}
.ms__bar {
  display: flex; justify-content: space-between; gap: var(--s4); flex-wrap: wrap;
  font-family: var(--font-ui); font-size: 0.75rem; color: var(--ink-soft);
  border-bottom: 1px solid var(--rule); padding-bottom: var(--s3); margin-bottom: var(--s5);
}
.ms__count { font-variant-numeric: tabular-nums; color: var(--blue); font-weight: 700; }
.ms__text {
  font-size: clamp(1rem, 0.9rem + 0.35vw, 1.1875rem); line-height: 1.75;
  hyphens: manual;
  padding-left: var(--s4);
  border-left: 2px solid var(--blue);
  transition: border-color 400ms var(--ease-out);
}
.ms.is-clean .ms__text { border-left-color: transparent; }
.ms__text ins {
  color: var(--blue); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 0.2em;
  transition: color 360ms var(--ease-out), text-decoration-color 360ms var(--ease-out), background-color 360ms var(--ease-out);
}
.ms__text del { color: var(--copper); text-decoration: line-through; text-decoration-thickness: 1.5px; }
.ms__text ins.is-accepted { color: var(--ink); text-decoration-color: transparent; }
.ms__text del.is-accepted { display: none; }
.ms__text .is-anchored { background: rgba(31, 25, 190, 0.09); box-shadow: 0 0 0 1.5px rgba(31, 25, 190, 0.55); border-radius: 2px; padding-inline: 0.1em; }
.ms.is-resolved .ms__text .is-anchored { background: transparent; box-shadow: none; padding-inline: 0; }
.ms__legend { display: flex; gap: var(--s4); margin-top: var(--s5); font-family: var(--font-ui); font-size: 0.72rem; color: var(--ink-soft); transition: opacity 300ms; }
.k-del::before, .k-ins::before { content: ""; display: inline-block; width: 0.7rem; height: 0.7rem; margin-right: 0.35rem; vertical-align: -0.05rem; }
.k-del::before { background: var(--copper); }
.k-ins::before { background: var(--blue); }
.ms.is-clean .ms__legend { opacity: 0; }

.ms__comment {
  position: absolute; right: 0; top: 5.5rem; width: 34%;
  background: var(--ink); color: #ECE7DD;
  font-family: var(--font-ui); font-size: 0.82rem; line-height: 1.55;
  padding: var(--s4) var(--s4) var(--s5);
  border-radius: 2px;
  box-shadow: var(--shadow-3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: opacity 420ms var(--ease-out);
}
.ms__comment p + p { margin-top: var(--s2); }
.ms__who { font-weight: 700; color: var(--copper-tint); display: flex; justify-content: space-between; align-items: center; }
.ms__resolved { font-size: 0.7rem; color: var(--ink); background: var(--copper-tint); padding: 0.1rem 0.45rem; border-radius: 2px; opacity: 0; transition: opacity 300ms; }
.ms.is-resolved .ms__resolved { opacity: 1; }
.ms.is-resolved .ms__comment { opacity: 0.78; }

.ms__caption {
  margin-top: var(--s5); margin-right: 31%;
  font-family: var(--font-ui); font-size: 0.82rem; color: var(--ink-soft);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2) var(--s4);
}
.ms__toggle {
  font: inherit; font-weight: 700; color: var(--blue); background: none; border: 0; padding: var(--s2) 0;
  text-decoration: underline; text-decoration-color: var(--copper); text-decoration-thickness: 1.5px; text-underline-offset: 0.25em;
  cursor: pointer; min-height: 2.75rem;
}

@media (min-width: 1000px) and (max-height: 760px) {
  .hero h1 { font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem); }
  .ms__text { font-size: 1rem; line-height: 1.65; }
}

@media (max-width: 999px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__stage { padding-block: var(--s5) var(--s8); }
  .ms { padding-top: var(--s5); }
  .ms__sheet, .ms__caption { margin-right: 0; }
  .ms__under { inset: 2.25rem -0.5rem 9rem 0.75rem; transform: rotate(1.6deg); }
  .ms__brace { display: none; }
  .ms__plane--near { position: relative; inset: auto; }
  .ms__comment { position: relative; top: auto; right: auto; width: auto; margin: calc(-1 * var(--s5)) var(--s4) 0 var(--s7); }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 2.35rem; }
  .hero__lead { font-size: 1.08rem; }
  .ms__comment { margin-left: var(--s4); margin-right: 0; }
  .hero__actions .btn { flex: 1 1 auto; }
}

/* ---------- 2. references ---------- */
.refs { background: var(--surface); border-block: 1px solid var(--rule); padding-block: var(--s6); }
.refs__grid { display: grid; grid-template-columns: 14rem minmax(0, 1fr) auto; gap: var(--s3) var(--s6); align-items: baseline; }
.refs__label { font-family: var(--font-ui); font-size: 0.82rem; color: var(--ink-soft); }
.refs__names { font-size: var(--t-md); letter-spacing: 0.01em; display: flex; flex-wrap: wrap; min-width: 0; }
.refs__names .nm { white-space: nowrap; }
.refs__names .nm:not(:last-child)::after { content: "·"; color: var(--copper); padding-inline: 0.45em; }
.refs__todo { justify-self: end; }
@media (max-width: 900px) {
  .refs__grid { grid-template-columns: minmax(0, 1fr); gap: var(--s1); }
  .refs__todo { justify-self: start; margin-bottom: var(--s4); }
}

/* ---------- 3. levels (Klein Blue) ---------- */
.ground-blue { background: var(--blue); color: #F4F1EA; --rule: rgba(244, 241, 234, 0.22); }
.levels { padding-block: var(--section); }
.levels__head { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--s6); align-items: end; }
.levels h2 { font-size: var(--t-xl); }
.levels__intro { font-size: var(--t-md); line-height: 1.55; max-width: var(--measure); color: #E3E1F4; }

.picker { display: inline-flex; margin-top: var(--s8); border: 1.5px solid rgba(244, 241, 234, 0.55); border-radius: var(--radius); }
.picker__btn {
  font-family: var(--font-ui); font-weight: 700; font-size: 0.92rem;
  background: transparent; color: #F4F1EA; border: 0; padding: 0.7rem 1.25rem; min-height: 2.75rem; cursor: pointer;
  transition: background-color 160ms var(--ease-out), color 160ms var(--ease-out);
}
.picker__btn + .picker__btn { border-left: 1.5px solid rgba(244, 241, 234, 0.35); }
.picker__btn:hover { background: rgba(244, 241, 234, 0.1); }
.picker__btn[aria-pressed="true"] { background: #F4F1EA; color: var(--blue); }

.ladder { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s4); margin-top: var(--s5); align-items: end; }
.rung {
  border-top: 2px solid var(--copper-tint);
  padding: var(--s5) var(--s5) var(--s6);
  background: rgba(10, 6, 80, 0.22);
}
.rung[data-rung="standard"] { margin-bottom: 0; }
.rung[data-rung="extended"] { padding-bottom: calc(var(--s6) + 3rem); }
.rung[data-rung="premium"] { padding-bottom: calc(var(--s6) + 7rem); }
.rung h3 { font-size: var(--t-lg); font-style: italic; margin-bottom: var(--s4); }
.rung__plus { font-family: var(--font-ui); font-size: 0.8rem; color: var(--copper-tint); margin-bottom: var(--s4); }
.rung__item + .rung__item { margin-top: var(--s5); }
.rung h4 { font-family: var(--font-ui); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.005em; margin-bottom: var(--s1); line-height: 1.35; }
.rung p { font-size: 1rem; line-height: 1.55; color: #E3E1F4; }
.ladder[data-selected="standard"] .rung:is([data-rung="extended"], [data-rung="premium"]) > *,
.ladder[data-selected="extended"] .rung[data-rung="premium"] > * { opacity: 0.66; }
.ladder .rung[data-rung].is-chosen { background: rgba(244, 241, 234, 0.1); }

.levels__cta { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3) var(--s5); margin-top: var(--s6); }
.levels__cta-note { font-family: var(--font-ui); font-size: 0.85rem; color: #D9D6EF; }

.tenets { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: var(--s6); margin-top: var(--s9); padding-top: var(--s6); border-top: 1px solid var(--rule); }
.tenet dt { font-size: var(--t-lg); font-style: italic; margin-bottom: var(--s2); }
.tenet dd { font-size: 1rem; line-height: 1.55; color: #E3E1F4; max-width: 30ch; }

@media (max-width: 900px) {
  .levels__head { grid-template-columns: 1fr; }
  .ladder { grid-template-columns: 1fr; gap: var(--s3); }
  .rung[data-rung] { padding-bottom: var(--s5); }
  .tenets { grid-template-columns: 1fr; gap: var(--s5); margin-top: var(--s8); }
  .picker { display: flex; }
  .picker__btn { flex: 1; padding-inline: var(--s2); }
}

/* ---------- 4. examples ---------- */
.examples { padding-block: var(--section); }
.examples__head { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--s2) var(--s6); align-items: end; }
.examples__head h2 { font-size: var(--t-xl); grid-row: span 2; }
.examples__head p { font-size: var(--t-md); line-height: 1.5; max-width: 40rem; }
.plates { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s7) clamp(1.5rem, 4vw, 4rem); margin-top: var(--s8); }
.plate:nth-child(even) { margin-top: var(--s9); }
.plate__tilt { display: block; }
.plate a { display: block; background: var(--sheet); padding: var(--s3); box-shadow: var(--shadow-2); transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) {
  .plate a:hover { transform: translateY(-4px); box-shadow: var(--shadow-3); }
}
.plate__cap { display: flex; gap: var(--s3); margin-top: var(--s3); font-size: 1rem; font-style: italic; }
.plate__cap span { font-family: var(--font-ui); font-style: normal; font-size: 0.78rem; font-weight: 700; color: var(--copper); padding-top: 0.2rem; }
@media (max-width: 700px) {
  .examples__head { grid-template-columns: 1fr; }
  .plates { grid-template-columns: 1fr; gap: var(--s6); margin-top: var(--s6); }
  .plate:nth-child(even) { margin-top: 0; }
}

/* ---------- 5. process ---------- */
.process { background: var(--surface-2); padding-block: var(--section); }
.process h2 { font-size: var(--t-xl); }
.steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--s5); margin-top: 0; counter-reset: step; }
.steps__rule { height: 1px; background: var(--ink); margin-top: var(--s8); }
.step { counter-increment: step; padding-top: var(--s4); }
.step::before { content: counter(step); display: block; font-size: 3.25rem; line-height: 1; color: var(--copper); margin-bottom: var(--s4); font-feature-settings: "lnum"; }
.step h3 { font-size: 1.3rem; line-height: 1.2; margin-bottom: var(--s3); }
.step p { font-size: 0.98rem; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 1000px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s6) var(--s5); }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .step { display: grid; grid-template-columns: 3rem 1fr; column-gap: var(--s3); }
  .step::before { grid-row: span 2; font-size: 2.4rem; }
}

/* ---------- 6. record (copper) ---------- */
.record { position: relative; color: #F6EEE3; padding-block: var(--section); overflow: hidden; background: var(--copper-deep); }
.record__ground {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(90deg, rgba(48, 18, 12, 0.92) 0%, rgba(48, 18, 12, 0.84) 55%, rgba(48, 18, 12, 0.35) 100%),
    url("../img/copper.webp") center / cover no-repeat;
}
.record__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: var(--s8); align-items: end; }
.record__statement { font-size: var(--t-xl); line-height: 1.15; letter-spacing: -0.015em; max-width: 22ch; }
.figures { display: grid; gap: var(--s5); }
.figures div { border-top: 1px solid rgba(246, 238, 227, 0.4); padding-top: var(--s3); display: grid; grid-template-columns: 7.5rem 1fr; align-items: baseline; gap: var(--s4); }
.figures dt { font-size: 2.6rem; line-height: 1; font-feature-settings: "lnum", "tnum"; }
.figures dd { font-family: var(--font-ui); font-size: 0.9rem; line-height: 1.4; color: #EAD9CB; }
@media (max-width: 860px) {
  .record__grid { grid-template-columns: 1fr; gap: var(--s7); }
  .record__ground { background: linear-gradient(rgba(48, 18, 12, 0.86), rgba(48, 18, 12, 0.86)), url("../img/copper-sm.webp") center / cover no-repeat; }
}

/* ---------- 7. recommendations ---------- */
.voices { padding-block: var(--section); }
.voices h2 { font-size: var(--t-xl); }
.voices__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--s7) clamp(2rem, 5vw, 5rem); margin-top: var(--s8); }
.voice h3 { font-size: var(--t-lg); font-style: italic; color: var(--blue); margin-bottom: var(--s4); }
.voice blockquote p { font-size: 1.08rem; line-height: 1.65; }
.voice--lead blockquote p { font-size: var(--t-md); line-height: 1.6; }
.voice figcaption { display: flex; align-items: center; gap: var(--s3); margin-top: var(--s5); font-family: var(--font-ui); font-size: 0.88rem; line-height: 1.4; color: var(--ink-soft); }
.voice figcaption img { width: 3.25rem; height: 3.25rem; border-radius: 50%; object-fit: cover; filter: grayscale(0.15); }
.voice figcaption strong { display: block; color: var(--ink); }
.voice__todo { margin-top: var(--s4); }
.voice--empty { grid-column: 1 / -1; max-width: 46rem; }
@media (max-width: 860px) {
  .voices__grid { grid-template-columns: 1fr; }
}

/* ---------- 8. journals: team photo drifts underneath ---------- */
.journals { position: relative; overflow: hidden; background: var(--surface); min-height: max(39.5vw, 34rem); display: flex; flex-direction: column; justify-content: center; padding-block: var(--s7); }
.journals__photo { position: absolute; inset: 0 0 0 34%; z-index: 0; overflow: hidden; }
.journals__photo img { position: absolute; left: 0; top: -56px; width: 100%; height: calc(100% + 112px); max-width: none; object-fit: cover; object-position: 50% 40%; will-change: transform; }
.journals__wrap { position: relative; z-index: 1; }
.journals__panel {
  background: var(--blue); color: #F4F1EA;
  max-width: 28rem; padding: clamp(1.5rem, 3.4vw, 2.75rem);
  box-shadow: var(--shadow-3);
  border-radius: 2px;
}
.journals__panel h2 { font-size: var(--t-xl); margin-bottom: var(--s5); }
.journals__panel p { font-size: 1.06rem; line-height: 1.6; color: #E6E4F5; }
.journals__panel p + p { margin-top: var(--s3); }
.journals__panel .btn { margin-top: var(--s6); }
.journals__credit { position: absolute; z-index: 1; bottom: var(--s3); right: 0; text-align: right; font-family: var(--font-ui); font-size: 0.72rem; color: #fff; text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6); }
@media (max-width: 1200px) {
  .journals { min-height: 0; padding-block: 0 var(--s8); background: var(--canvas); }
  .journals__photo { position: relative; inset: auto; height: min(62vw, 44rem); overflow: hidden; }
  .journals__photo img { object-position: 62% 50%; }
  .journals__wrap { margin-top: calc(-1 * var(--s7)); }
  .journals__credit { display: none; }
}

/* ---------- 9. faq ---------- */
.faq { background: var(--surface-2); padding-block: var(--section); }
.faq__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: var(--s6); }
.faq h2 { font-size: var(--t-xl); }
.faq details { border-top: 1px solid var(--rule); }
.faq details:last-child { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  font-size: var(--t-md); line-height: 1.35; padding: var(--s4) 3rem var(--s4) 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0.25rem; top: 50%; transform: translateY(-50%);
  font-family: var(--font-ui); font-size: 1.5rem; color: var(--copper); line-height: 1;
  transition: transform 180ms var(--ease-out);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--blue); }
.faq details p { padding-bottom: var(--s5); max-width: var(--measure); color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 800px) {
  .faq__grid { grid-template-columns: 1fr; }
}

/* ---------- 10. close ---------- */
.close { padding-block: calc(var(--section) * 1.2); }
.close__grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: var(--s7); align-items: start; }
.close h2 { font-size: clamp(3rem, 1.8rem + 5vw, 6rem); line-height: 0.98; letter-spacing: -0.025em; }
.close__body > p { font-size: var(--t-md); line-height: 1.55; color: #E6E4F5; margin-bottom: var(--s6); max-width: 30rem; }
.close__contact { font-style: normal; margin-top: var(--s7); padding-top: var(--s5); border-top: 1px solid var(--rule); font-family: var(--font-ui); font-size: 0.95rem; line-height: 1.7; color: #E6E4F5; }
.close__contact strong { color: #fff; }
.close__contact a { color: #fff; text-decoration-color: var(--copper-tint); }
.close__contact p:last-child { margin-top: var(--s3); }
@media (max-width: 860px) {
  .close__grid { grid-template-columns: 1fr; gap: var(--s5); }
}

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #D8D2C6; padding-block: var(--s8) var(--s6); font-family: var(--font-ui); font-size: 0.88rem; }
.footer__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 5fr) minmax(0, 4fr); gap: var(--s6); }
.footer__brand img { width: 7rem; margin-bottom: var(--s3); }
.footer__brand p { color: #B9B2A6; max-width: 22ch; }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
.footer__nav li + li { margin-top: var(--s2); }
.footer a { color: #EFEAE0; text-decoration: none; }
.footer a:hover { text-decoration: underline; text-decoration-color: var(--copper-tint); }
.footer__legal p + p { margin-top: var(--s1); }
.footer__legal { color: #B9B2A6; }
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ---------- lightbox ---------- */
.lightbox { width: min(96vw, 64rem); max-height: 94vh; padding: 0; border: 0; background: var(--sheet); box-shadow: var(--shadow-3); border-radius: 2px; }
.lightbox::backdrop { background: rgba(27, 25, 34, 0.78); }
.lightbox__bar { display: flex; align-items: center; gap: var(--s2); padding: var(--s2) var(--s3); border-bottom: 1px solid var(--rule); font-family: var(--font-ui); position: sticky; top: 0; background: var(--sheet); }
.lightbox__cap { margin-right: auto; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }
.lightbox__nav, .lightbox__close { font-family: var(--font-ui); font-weight: 700; font-size: 0.85rem; background: transparent; border: 1.5px solid var(--blue); color: var(--blue); border-radius: var(--radius); padding: 0.45rem 0.8rem; min-height: 2.5rem; cursor: pointer; }
.lightbox__close { background: var(--blue); color: var(--sheet); }
.lightbox__frame { overflow: auto; max-height: calc(94vh - 3.5rem); }
.lightbox__frame img { width: 100%; }

/* ---------- reduced motion ---------- */
@media all {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 1ms !important; }
}

/* ---------- subpages ---------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.page-head { padding-block: var(--s8) var(--s7); display: grid; gap: var(--s4); }
.page-head h1 { font-size: var(--t-2xl); line-height: 1.02; letter-spacing: -0.02em; max-width: 18ch; }
.page-head__lead { font-size: var(--t-md); line-height: 1.5; max-width: 40rem; }
.page-head__actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s4); }
.page-head--404 { min-height: 60vh; align-content: center; }
.prose { max-width: var(--measure); }
.prose p + p { margin-top: var(--s4); }
.prose h2 { font-size: var(--t-lg); margin: var(--s7) 0 var(--s3); }
.prose h3 { font-size: 1.2rem; font-style: italic; margin: var(--s5) 0 var(--s2); }
.prose blockquote { margin: var(--s5) 0; padding-left: var(--s5); border-left: 1px solid var(--copper); font-style: italic; }
.prose ul { margin: var(--s3) 0; padding-left: var(--s5); list-style: disc; }
.prose li + li { margin-top: var(--s2); }
.prose li::marker { color: var(--copper); }
.legal { padding-bottom: var(--section); font-size: 1rem; }
.legal h2 { font-size: 1.35rem; }
.legal p + p { margin-top: var(--s3); }
.legal__sub { padding-left: var(--s5); }
.legal__entity { font-family: var(--font-ui); font-size: 0.85rem; color: var(--ink-soft); }
.about-photo { margin-bottom: var(--s8); }
.about-photo img { width: 100%; box-shadow: var(--shadow-2); }
.about-mission { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: var(--s6); padding-bottom: var(--s8); }
.about-mission h2 { font-size: var(--t-xl); }
.about-mission .prose p { font-size: var(--t-md); line-height: 1.55; }
.founders { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s7) clamp(2rem, 5vw, 5rem); padding-bottom: var(--section); }
.founder { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: var(--s5); align-items: start; }
.founder img { width: 100%; box-shadow: var(--shadow-1); }
.founder h3 { font-size: var(--t-lg); }
.founder__role { font-family: var(--font-ui); font-size: 0.85rem; color: var(--copper); font-weight: 700; margin: var(--s1) 0 var(--s3); }
.founder p:last-child { font-size: 1rem; line-height: 1.6; color: var(--ink-soft); }
.posts { padding-bottom: var(--section); }
.post-list:empty { display: none; }
.post-item a { display: block; padding-block: var(--s5); border-top: 1px solid var(--rule); text-decoration: none; }
.post-item h2 { font-size: var(--t-lg); margin: var(--s2) 0; }
.post-item__date { font-family: var(--font-ui); font-size: 0.82rem; color: var(--copper); }
.post { padding-block: var(--s8) var(--section); }
.post__head { max-width: 46rem; margin-bottom: var(--s7); }
.post__meta { font-family: var(--font-ui); font-size: 0.85rem; color: var(--ink-soft); margin-bottom: var(--s4); }
.post__head h1 { font-size: var(--t-xl); margin-bottom: var(--s4); }
.post__lead { font-size: var(--t-md); }
.post .prose p { font-size: 1.125rem; line-height: 1.7; }
.post__foot { margin-top: var(--s8); padding-top: var(--s5); border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; gap: var(--s4); align-items: center; justify-content: space-between; font-family: var(--font-ui); }
@media (max-width: 860px) {
  .about-mission, .founders { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .founder { grid-template-columns: 1fr; }
  .founder img { max-width: 14rem; }
}

/* =========================================================
   Version 2: copper grounds, more scroll-driven scenes
   ========================================================= */
:root {
  --night: #2C120D;
  --copper-dark: #4A1F18;
  --on-dark: #F1EADF;
  --on-dark-soft: #DCCABD;
}
body.v2 { background: var(--sc-canvas); color: var(--on-dark); }
.v2 :focus-visible { outline-color: var(--copper-tint); }
.v2 .ground-paper :focus-visible, .v2 .process :focus-visible, .v2 .faq :focus-visible, .v2 .ms__sheet :focus-visible { outline-color: var(--copper); }
.v2 .todo { color: var(--copper-tint); background: rgba(242, 194, 177, 0.1); border-color: rgba(242, 194, 177, 0.6); }
.v2 .ground-paper .todo, .v2 .ms__sheet .todo { color: var(--copper); background: rgba(133, 56, 43, 0.08); border-color: rgba(133, 56, 43, 0.55); }
html:has(body.v2) { scroll-padding-top: 5rem; scrollbar-color: var(--copper) var(--night); }

.btn--paper { background: var(--beige); color: var(--blue); }
.btn--paper:hover { background: #FFFDF8; }
.btn--line-light { border-color: rgba(241, 234, 223, 0.8); color: var(--on-dark); background: transparent; }
.btn--line-light:hover { background: rgba(241, 234, 223, 0.1); }

/* top bar: fixed; the engine's progress rule runs along its top edge */
.topbar { position: fixed; inset: 0 0 auto 0; z-index: 30; background: rgba(34, 13, 9, 0.9); }
.topbar__inner { display: flex; align-items: center; gap: var(--s6); min-height: 4rem; }
.topbar .brand img { width: 6.5rem; }
.topbar .nav a { color: var(--on-dark); background-image: linear-gradient(var(--copper-tint), var(--copper-tint)); }
.topbar .menu-toggle { color: var(--on-dark); border-color: rgba(241, 234, 223, 0.7); }
.v2 .menu { background: var(--night); }
.v2 .menu a:not(.btn) { color: var(--on-dark); border-color: rgba(241, 234, 223, 0.2); }
.v2 .menu .menu-toggle { color: var(--on-dark); border-color: rgba(241, 234, 223, 0.7); }
.v2 .menu .btn--blue { background: var(--beige); color: var(--blue); }

/* hero on copper */
.v2 .hero { background: transparent; }
.v2 .hero__stage { isolation: isolate; }
.v2 .hero.is-flow .hero__stage { position: relative; padding-top: 6rem; }
.hero__ground {
  position: absolute; inset: -90px 0; z-index: -1; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34, 13, 9, 0.95) 0%, rgba(34, 13, 9, 0.84) 42%, rgba(34, 13, 9, 0.4) 100%),
    url("../img/copper.webp") center / cover no-repeat;
  will-change: transform;
}
.v2 .hero h1, .v2 .hero__lead { color: var(--on-dark); }
.v2 .hero__guarantee { color: var(--on-dark-soft); border-top-color: var(--copper-tint); }
.v2 .ms__brace { color: var(--beige); opacity: 0.1; }
.v2 .ms__under { background: #CEC3B1; }
.v2 .ms__caption { color: var(--on-dark-soft); }
.v2 .ms__toggle { color: var(--on-dark); text-decoration-color: var(--copper-tint); }
.v2 .ms__comment { background: #140806; }
.v2 .ms__sheet { color: var(--ink); }
@media (max-width: 999px) {
  .hero__ground { background: linear-gradient(rgba(34, 13, 9, 0.88), rgba(34, 13, 9, 0.7)), url("../img/copper-sm.webp") center / cover no-repeat; }
}

/* references */
.v2 .refs { background: var(--copper-dark); border-color: rgba(241, 234, 223, 0.14); }
.v2 .refs__label { color: var(--on-dark-soft); }
.v2 .refs__names .nm:not(:last-child)::after { color: var(--copper-tint); }

/* levels on paper */
.ground-paper { background: var(--beige); color: var(--ink); --rule: rgba(27, 25, 34, 0.16); }
.ground-paper .levels__intro, .ground-paper .rung p, .ground-paper .tenet dd, .ground-paper .levels__cta-note { color: var(--ink-soft); }
.ground-paper .picker { border-color: var(--ink); }
.ground-paper .picker__btn { color: var(--ink); }
.ground-paper .picker__btn + .picker__btn { border-left-color: rgba(27, 25, 34, 0.3); }
.ground-paper .picker__btn:hover { background: rgba(133, 56, 43, 0.08); }
.ground-paper .picker__btn[aria-pressed="true"] { background: var(--copper); color: var(--beige); }
.ground-paper .rung { background: rgba(133, 56, 43, 0.06); border-top-color: var(--copper); }
.ground-paper .rung__plus { color: var(--copper); }
.ground-paper .ladder[data-selected="standard"] .rung:is([data-rung="extended"], [data-rung="premium"]) > *,
.ground-paper .ladder[data-selected="extended"] .rung[data-rung="premium"] > * { opacity: 0.72; }
.ground-paper .ladder[data-selected="standard"] .rung:is([data-rung="extended"], [data-rung="premium"]),
.ground-paper .ladder[data-selected="extended"] .rung[data-rung="premium"] { background: transparent; }
.ground-paper .ladder .rung.is-chosen { background: rgba(133, 56, 43, 0.14); }

/* examples: pan act. The engine translates the rail; the stage is .sc-stage. */
.v2 .examples { background: transparent; padding-block: 0; }
.examples__stage { display: flex; align-items: center; padding-top: 4rem; }
.rail { gap: clamp(1.5rem, 3vw, 3rem); align-items: center; padding-inline: var(--gutter); margin: 0; }
.rail > li { flex: 0 0 auto; }
.rail__head { width: min(26rem, 80vw); }
.rail__head h2 { font-size: var(--t-xl); margin-bottom: var(--s5); }
.rail__head p { font-size: var(--t-md); line-height: 1.5; color: var(--on-dark-soft); }
.rail__head p + p { margin-top: var(--s4); }
.rail .plate { width: min(30rem, 58svh, 78vw); }
.rail .plate:nth-child(even) { margin-top: 0; translate: 0 -2.5rem; }
.rail .plate:nth-child(odd) { translate: 0 2.5rem; }
.v2 .plate__cap { color: var(--on-dark); }
.v2 .plate__cap span { color: var(--copper-tint); }
.rail__end { width: min(22rem, 78vw); }
.rail__end p { font-size: var(--t-lg); line-height: 1.3; font-style: italic; margin-bottom: var(--s5); }
@media (max-width: 860px) {
  .rail__head { width: 70vw; }
  .rail .plate:nth-child(n) { translate: none; }
}
/* reduced motion: the act flows and the rail is an ordinary horizontal scroller */
.examples.is-flow .examples__stage { padding-block: var(--s8); }
.examples.is-flow .rail { overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: var(--s5); scroll-padding-inline: var(--gutter); }
.examples.is-flow .rail > li { scroll-snap-align: start; }

/* process: pin on paper, the steps arrive in order */
.v2 .process { background: var(--beige); color: var(--ink); padding-block: 0; }
.process__stage { display: flex; align-items: center; padding-top: 4rem; background: var(--beige); }
.process__stage > .wrap { width: 100%; }
.process.is-flow .process__stage { padding-block: var(--section); }

/* record: scrub act. The camera settles on a real comment while the figures land. */
.v2 .record { padding-block: 0; background: transparent; overflow: visible; color: var(--on-dark); }
/* a column of density under the copy; the camera keeps the left of the frame */
.record__scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(26, 9, 6, 0) 22%, rgba(26, 9, 6, 0.82) 48%, rgba(26, 9, 6, 0.95) 62%, rgba(26, 9, 6, 0.97) 100%); }
.record__copy { inset-inline: auto; right: max(var(--gutter), calc((100vw - 78rem) / 2 + var(--gutter))); left: auto; bottom: auto; top: 50%; translate: 0 -46%; width: min(36rem, 44vw); max-width: none; text-align: left; }
.record .record__statement { font-size: clamp(1.7rem, 1.1rem + 2vw, 2.9rem); line-height: 1.12; max-width: none; text-shadow: 0 1px 2px rgba(20, 6, 3, 0.5); }
.record .figures { margin-top: var(--s6); gap: var(--s3); }
.record .figures div { grid-template-columns: 6.5rem 1fr; }
.record .figures dt { font-size: 2.2rem; }
.record.is-flow .record__stage { position: relative; height: 100svh; min-height: 38rem; overflow: clip; }
.record.is-flow :is(.record__poster, video) { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) {
  .record__scrim { background: linear-gradient(to top, rgba(26, 9, 6, 0.97) 0%, rgba(26, 9, 6, 0.93) 52%, rgba(26, 9, 6, 0.4) 72%, rgba(26, 9, 6, 0) 86%); }
  .record__copy { inset-inline: var(--gutter); top: auto; bottom: clamp(1.5rem, 6vh, 3rem); translate: none; width: auto; }
  .record .record__statement { font-size: 1.6rem; }
  .record .figures dt { font-size: 1.8rem; }
  .record .figures div { grid-template-columns: 5rem 1fr; }
}

/* recommendations on copper */
.ground-copper { background: var(--copper); color: var(--on-dark); --rule: rgba(241, 234, 223, 0.25); }
.ground-copper .voice h3 { color: #FBE3D8; }
.ground-copper .voice figcaption { color: #EFDCD1; }
.ground-copper .voice figcaption strong { color: #fff; }
.voices > .wrap { position: relative; z-index: 3; }

/* journals */
.v2 .journals { background: var(--copper-dark); }
.journals__panel--copper { background: var(--night); }
.journals__panel--copper p { color: var(--on-dark-soft); }
@media (max-width: 1200px) {
  .v2 .journals { background: var(--night); }
}

/* faq on paper */
.v2 .faq { background: var(--beige); color: var(--ink); }

/* close on copper texture */
.ground-texture { position: relative; color: var(--on-dark); background:
    linear-gradient(rgba(34, 13, 9, 0.86), rgba(34, 13, 9, 0.9)),
    url("../img/copper.webp") center / cover no-repeat; --rule: rgba(241, 234, 223, 0.22); }
.ground-texture .close__body > p, .ground-texture .close__contact { color: var(--on-dark-soft); }
.ground-texture .close__contact a { text-decoration-color: var(--copper-tint); }

.v2 .footer { background: #1A0906; }

/* subpages: dark copper masthead, paper page */
body.subpage.v2 { background: var(--beige); color: var(--ink); }
.v2.subpage .masthead { background: var(--night); }
.v2.subpage .nav a { color: var(--on-dark); background-image: linear-gradient(var(--copper-tint), var(--copper-tint)); }
.v2.subpage .masthead .menu-toggle { color: var(--on-dark); border-color: rgba(241, 234, 223, 0.7); }
.v2.subpage .masthead .btn--blue { background: var(--beige); color: var(--blue); }
.v2.subpage .todo { color: var(--copper); background: rgba(133, 56, 43, 0.08); border-color: rgba(133, 56, 43, 0.55); }
.v2.subpage .page-head--404 { color: var(--ink); }

/* ---------- finale: pin, the last element on the page ---------- */
.finale__stage { display: flex; flex-direction: column; justify-content: center; padding-top: 4rem;
  background: linear-gradient(rgba(26, 9, 6, 0.84), rgba(26, 9, 6, 0.92)), url("../img/copper.webp") center / cover no-repeat; color: var(--on-dark); }
.finale__inner { position: relative; z-index: 3; }
.finale h2 { font-size: clamp(3rem, 1.6rem + 6vw, 7rem); line-height: 1.02; letter-spacing: -0.025em; max-width: 12ch; }
.finale__lead { font-size: var(--t-md); line-height: 1.55; color: var(--on-dark-soft); max-width: 34rem; margin-top: var(--s5); }
.finale__cta { margin-top: var(--s6); }
.finale__contact { font-style: normal; margin-top: var(--s6); font-family: var(--font-ui); font-size: 0.9rem; line-height: 1.7; color: var(--on-dark-soft); max-width: 46rem; }
.finale__contact strong { color: #fff; }
.finale__contact a { color: #fff; text-decoration-color: var(--copper-tint); }
.finale__contact p + p { margin-top: var(--s2); }
.finale__foot { position: relative; z-index: 3; margin-top: auto; padding-block: var(--s5) var(--s4); display: grid; grid-template-columns: auto minmax(0, 1fr); gap: var(--s2) var(--s6); font-family: var(--font-ui); font-size: 0.8rem; }
.finale__foot::before { content: ""; grid-column: 1 / -1; height: 1px; background: rgba(241, 234, 223, 0.2); margin-bottom: var(--s2); }
.finale__foot img { width: 6rem; }
.finale__foot ul { display: flex; flex-wrap: wrap; gap: 0.25rem 1.1rem; }
.finale__foot a { color: #F4EDE2; text-decoration: none; }
.finale__foot a:hover { text-decoration: underline; text-decoration-color: var(--copper-tint); }
.finale__legal { grid-column: 2; color: #CDB9AC; }
.finale:not(.is-flow) .finale__inner { margin-top: auto; }
.finale.is-flow .finale__stage { padding-block: 6rem 0; }
.finale.is-flow .finale__foot { margin-top: var(--s9); }
@media (max-width: 860px) {
  .finale__foot { grid-template-columns: 1fr; }
  .finale__legal { grid-column: 1; }
}
@media (min-width: 861px) and (max-height: 720px) {
  .finale h2 { font-size: clamp(2.6rem, 1.4rem + 4vw, 4.5rem); }
  .finale__contact { margin-top: var(--s4); }
}

/* 17.09.2026, CEO: journals bar back on dark copper, as in 2d */
.v2 .refs { background: var(--copper-dark); border-color: rgba(241, 234, 223, 0.14); color: var(--on-dark); }
/* 17.09.2026, CEO: caption clear of the sheet underneath */
.v2 .ms__caption { margin-top: calc(var(--s5) + 2.75rem); }
@media (min-width: 1000px) { .v2 .ms__under { bottom: 7rem; } }
@media (max-width: 999px) { .v2 .ms__caption { margin-top: calc(var(--s5) + 1.5rem); } }
/* static build: the hero ground is sized for a pinned stage; keep it inside the section */
.hero { overflow: clip; }

/* 17.09.2026, CEO: "What copyediting covers" on white */
.v2 .levels.ground-paper { background: #FFFFFF; color: var(--ink); }

/* 17.09.2026, CEO: one copper ground, fixed under the screen. Every copper section
   is transparent and shows it; paper sections and the journals bar cover it. */
.copper-fixed {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(34, 13, 9, 0.95) 0%, rgba(34, 13, 9, 0.84) 42%, rgba(34, 13, 9, 0.5) 100%),
    url("../img/copper.webp") center / cover no-repeat;
}
@media (max-width: 999px) {
  .copper-fixed { background: linear-gradient(rgba(34, 13, 9, 0.86), rgba(34, 13, 9, 0.74)), url("../img/copper-sm.webp") center / cover no-repeat; }
}
.v2 .copper-fixed ~ main .hero__ground { display: none; }
.v2 .voices.ground-copper { background: transparent; }
.v2 .finale__stage { background: transparent; }

/* 17.09.2026, CEO: premium on the same ground as the other levels, and the stairs rise to it */
.v2 .ground-paper .ladder[data-selected] .rung[data-rung] { background: rgba(133, 56, 43, 0.06); }
.v2 .ground-paper .ladder[data-selected] .rung[data-rung].is-chosen { background: rgba(133, 56, 43, 0.14); }
@media (min-width: 901px) {
  .v2 .ladder { align-items: stretch; }
  .v2 .rung[data-rung] { padding-bottom: var(--s6); }
  .v2 .rung[data-rung="standard"] { margin-top: 9rem; }
  .v2 .rung[data-rung="extended"] { margin-top: 4.5rem; }
  .v2 .rung[data-rung="premium"] { margin-top: 0; }
}

/* 17.09.2026, CEO: the four samples work like the hero manuscript */
.v2 .examples { padding-block: var(--section); }
.v2 .examples__head { color: var(--on-dark); }
.v2 .examples__head p { color: var(--on-dark-soft); }
.samples { display: grid; gap: var(--s9); margin-top: var(--s8); }
.ms--sample { padding-top: var(--s5); width: min(66rem, 100%); }
.ms--sample.ms--even { margin-left: auto; }
.ms--sample .ms__body { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: var(--s4); align-items: start; }
.ms--sample .ms__sheet { margin-right: 0; }
.ms__stack { position: relative; isolation: isolate; }
.ms--sample .ms__under { inset: 1.75rem 1.5rem -1.25rem -1.25rem; z-index: -1; background: #CEC3B1; }
.ms--sample.ms--even .ms__under { transform: rotate(2deg); inset: 1.75rem -1.25rem -1.25rem 1.5rem; }
.ms--sample .ms__text { font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem); }
.ms--sample .ms__notes { display: grid; gap: var(--s3); padding-top: 4.5rem; }
.ms--sample .ms__comment { position: relative; top: auto; right: auto; width: auto; }
.ms--sample .ms__text i .is-anchored, .ms--sample .ms__text .is-anchored { font-style: inherit; }
.ms--sample .ms__caption { margin-right: 34%; margin-top: calc(var(--s5) + 2.5rem); color: var(--on-dark-soft); }
.ms__fig { font-style: italic; font-family: var(--font-body, inherit); color: var(--on-dark); }
.ms__fig span { font-family: var(--font-ui); font-style: normal; font-weight: 700; font-size: 0.78rem; color: var(--copper-tint); margin-right: var(--s2); }
.ms__full { color: var(--on-dark); text-decoration-color: var(--copper-tint); text-underline-offset: 0.25em; }
.examples__end { margin-top: var(--s9); display: flex; flex-wrap: wrap; align-items: center; gap: var(--s4) var(--s6); }
.examples__end p { font-size: var(--t-lg); line-height: 1.3; font-style: italic; max-width: 32rem; color: var(--on-dark); }
@media (max-width: 999px) {
  .ms--sample .ms__body { grid-template-columns: 1fr; gap: 0; }
  .ms--sample .ms__notes { padding-top: 0; margin: calc(-1 * var(--s5)) var(--s4) 0 var(--s7); }
  .ms--sample .ms__under, .ms--sample.ms--even .ms__under { inset: 1.5rem -0.5rem -0.75rem 0.75rem; transform: rotate(1.6deg); }
  .ms--sample .ms__caption { margin-right: 0; margin-top: calc(var(--s5) + 1.5rem); }
  .samples { gap: var(--s8); }
}

/* 17.09.2026, CEO: full journal names (italic) and a longer publisher list; no todo column */
.v2 .refs__grid { grid-template-columns: 14rem minmax(0, 1fr); row-gap: var(--s4); }
.refs__names--journals { font-size: 1.15rem; line-height: 1.5; }
.refs__names--journals .nm { white-space: normal; }
@media (max-width: 900px) { .v2 .refs__grid { grid-template-columns: minmax(0, 1fr); row-gap: var(--s1); } .v2 .refs__names { margin-bottom: var(--s4); } }
/* the tilted sheets under the samples must not widen the page on phones */
.v2 .examples { overflow-x: clip; }

/* 17.09.2026, CEO: only the premium step rises a little; standard and extended stay where they were */
@media (min-width: 901px) {
  .v2 .rung[data-rung="premium"] { margin-top: -2.5rem; }
}

/* 17.09.2026, CEO: one shade for all light lettering on dark grounds, the hero headline's (--on-dark).
   Paper sheets, buttons and the [DO …] markers keep their own colours. */
.v2 :is(.topbar, .menu, .hero, .refs, .examples, .record, .voices, .journals, .about-home, .finale)
  :is(p, h1, h2, h3, h4, dt, dd, span, strong, i, em, a, li, blockquote, figcaption, address, .ms__toggle):not(.btn, .btn *, .todo, .todo *, .ms__sheet, .ms__sheet *, .ms__resolved) { color: var(--on-dark); }
.v2 .refs__names .nm:not(:last-child)::after { color: var(--on-dark); }

/* 17.09.2026, CEO: blue "Request a quote" on white, and white grounds for the process and the FAQ */
.btn--paper, .v2 .menu .btn--blue { background: #FFFFFF; }
.btn--paper:hover, .v2 .menu .btn--blue:hover { background: #F4F1EA; }
.v2 .process, .v2 .process__stage, .v2 .faq { background: #FFFFFF; }

/* 17.09.2026, CEO: "Since 2015" joins "How we work together" on white, laid out as in version 4 */
.v2 .process.is-flow .process__stage { padding-bottom: var(--s8); }
.v2 .tally { background: #FFFFFF; color: var(--ink); padding-block: var(--s6) var(--section); }
.tally__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: var(--s6); align-items: end; }
.tally__statement { font-size: clamp(1.6rem, 1rem + 1.6vw, 2.5rem); line-height: 1.3; max-width: 22ch; }
.tally__statement b { color: var(--copper); font-weight: 700; }
.tally__nums { display: grid; grid-template-columns: repeat(3, auto); gap: var(--s4) var(--s6); justify-content: end; margin: 0; }
.tally__nums div { border-top: 1px solid var(--copper); padding-top: var(--s2); max-width: 11rem; }
.tally__nums dt { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; line-height: 1; color: var(--copper); }
.tally__nums dd { margin: var(--s2) 0 0; font-family: var(--font-ui); font-size: 0.85rem; line-height: 1.45; color: var(--ink-soft); }
@media (max-width: 900px) {
  .tally__grid { grid-template-columns: 1fr; gap: var(--s6); }
  .tally__nums { grid-template-columns: repeat(3, minmax(0, 1fr)); justify-content: stretch; gap: var(--s4); }
  .tally__nums dt { font-size: 1.7rem; }
}

/* 17.09.2026, CEO: all recommendations. Three columns of cards that flow top to bottom. */
.v2 .voices__grid { display: block; columns: 3 20rem; column-gap: clamp(2rem, 4vw, 4rem); margin-top: var(--s8); }
.v2 .voice { break-inside: avoid; margin: 0 0 var(--s7); padding-top: var(--s4); border-top: 1px solid rgba(241, 234, 223, 0.22); }
.v2 .voice h3 { font-size: 1.35rem; margin-bottom: var(--s3); }
.v2 .voice blockquote { margin: 0; }
.v2 .voice blockquote p, .v2 .voice--lead blockquote p { font-size: 1.02rem; line-height: 1.6; }
.v2 .voice blockquote p + p { margin-top: var(--s3); }
.v2 .voice figcaption { margin-top: var(--s4); align-items: flex-start; }
.voice__book { display: block; margin-top: var(--s1); font-size: 0.82rem; }
.voices__todo { margin-top: var(--s4); }

/* 17.09.2026, CEO: the three figures one under another, a little larger */
.v2 .tally__nums { grid-template-columns: minmax(0, 1fr); justify-content: stretch; gap: var(--s4); }
.v2 .tally__nums div { max-width: none; display: grid; grid-template-columns: 8.5rem minmax(0, 1fr); align-items: baseline; gap: var(--s4); padding-top: var(--s3); }
.v2 .tally__nums dt { font-size: 3rem; }
.v2 .tally__nums dd { margin: 0; font-size: 1rem; }
@media (max-width: 900px) {
  .v2 .tally__nums dt { font-size: 2.4rem; }
  .v2 .tally__nums div { grid-template-columns: 7rem minmax(0, 1fr); }
}

/* 17.09.2026, CEO: "For journals and institutions" on the copper ground of the recommendations; new photo */
.v2 .journals { background: transparent; }
@media (max-width: 1200px) { .v2 .journals { background: transparent; } }
.journals__photo img { object-position: 50% 45%; }
/* "Since 2015" now stands alone between the recommendations and the journals */
.v2 .process.is-flow .process__stage { padding-bottom: var(--section); }
.v2 .tally { padding-block: var(--section); }

/* 18.09.2026, CEO: the samples and the recommendations open on a click */
.fold { border-top: 1px solid rgba(241, 234, 223, 0.25); }
.fold__head { list-style: none; cursor: pointer; display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: var(--s3) var(--s5); padding-block: var(--s5) var(--s4); }
.fold__head::-webkit-details-marker { display: none; }
.fold__head h2 { font-size: var(--t-xl); }
.fold__hint { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 700; color: var(--on-dark); display: inline-flex; align-items: center; gap: var(--s2); }
.fold__hint::after { content: ""; width: 0.6rem; height: 0.6rem; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-0.15em) rotate(45deg); transition: transform 200ms var(--ease-out); }
.fold[open] .fold__hint::after { transform: translateY(0.1em) rotate(-135deg); }
.fold__head:hover .fold__hint { color: var(--copper-tint); }
.fold__body { padding-bottom: var(--s6); }
.v2 .examples .fold__body .examples__head { margin-bottom: var(--s4); }

/* 18.09.2026, CEO: a level step is a choice, like the buttons above it */
.v2 .rung[data-rung-pick] { cursor: pointer; }
.v2 .ground-paper .ladder[data-selected] .rung[data-rung-pick]:hover { background: rgba(133, 56, 43, 0.12); }

/* 18.09.2026, CEO: one sample and the first three recommendations stand open; the rest fold */
.fold--more { margin-top: var(--s6); }
.fold__label { font-family: var(--font-display); font-size: var(--t-lg); font-style: italic; }
.v2 .examples > .wrap > h2, .v2 .voices > .wrap > h2 { font-size: var(--t-xl); }
.voices__first { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 4rem); margin-top: var(--s8); align-items: start; }
.voices__first .voice { padding-top: var(--s4); border-top: 1px solid rgba(241, 234, 223, 0.22); }
.v2 .fold--more .voices__grid { margin-top: var(--s5); }
@media (max-width: 900px) { .voices__first { grid-template-columns: 1fr; gap: var(--s6); } }
.v2 .examples > .wrap > h2 { margin-bottom: var(--s5); }
.v2 .examples .examples__head { display: block; max-width: 44rem; }
.v2 .examples .samples { margin-top: var(--s7); }

/* 18.09.2026, CEO: About us on the home page, on paper, without the team photo */
.v2 .about-home { background: #FFFFFF; color: var(--ink); padding-block: var(--section); }
.about-home__head { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--s6); align-items: end; }
.about-home h2 { font-size: var(--t-xl); }
.about-home__lead { font-size: var(--t-md); line-height: 1.5; color: var(--ink-soft); max-width: var(--measure); }
.about-home__mission { margin-top: var(--s7); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s6); max-width: 62rem; }
.about-home__mission p { font-size: 1.06rem; line-height: 1.6; color: var(--ink-soft); }
.v2 .about-home .founders { padding-bottom: 0; margin-top: var(--s8); }
.v2 .about-home .founder img { box-shadow: var(--shadow-1); }
@media (max-width: 900px) {
  .about-home__head, .about-home__mission { grid-template-columns: 1fr; gap: var(--s4); }
  .v2 .about-home .founders { margin-top: var(--s7); }
}

/* 18.09.2026, CEO: About us on the copper ground, like the hero; footer band in flat dark copper */
.v2 .about-home { background: transparent; color: var(--on-dark); }
.v2 .finale__footband { background: var(--copper-dark); margin-top: var(--s9); }
.v2 .finale__foot { margin-top: 0; }

/* 18.09.2026, CEO: flat dark copper for the closing screen and for the three tenets */
.v2 .finale__stage { background: var(--copper-dark); }
.v2 .finale__footband { background: var(--copper-dark); box-shadow: 0 -1px 0 rgba(241, 234, 223, 0.18); }
.tenets__band { background: var(--copper-dark); color: var(--on-dark); margin-top: var(--section); padding-block: var(--s7); }
.v2 .tenets__band .tenets { margin-top: 0; padding-top: 0; border-top: 0; }
.v2 .tenets__band :is(dt, dd) { color: var(--on-dark); }
.v2 .levels { padding-bottom: 0; }

/* 18.09.2026, CEO: subpages take the palette of the home page */
body.subpage.v2 { background: #FFFFFF; color: var(--ink); }
.v2.subpage .masthead { background: var(--night); }
.v2.subpage .footer { background: var(--copper-dark); color: var(--on-dark); }
.v2.subpage .footer :is(a, p, li, span, strong) { color: var(--on-dark); }
.v2.subpage :is(.page-head__lead, .prose, .prose p, .legal, .post__meta, .post-item__date) { color: var(--ink); }
/* 18.09.2026, CEO: the About us screen opens with the sentence itself */
.v2 .about-home__head { grid-template-columns: 1fr; }
.v2 .about-home h2 { font-size: clamp(1.7rem, 1.1rem + 1.8vw, 2.7rem); line-height: 1.2; max-width: 30ch; }
/* 18.09.2026, CEO: subpages carry the home page's fixed top bar and footer band */
body.subpage.v2 { padding-top: 4rem; }
.v2.subpage .topbar { background: var(--night); }
.v2.subpage .finale__footband { margin-top: var(--s9); }
/* 18.09.2026: a short subpage keeps its footer at the bottom of the screen */
body.subpage.v2 { min-height: 100svh; display: flex; flex-direction: column; }
body.subpage.v2 > main { flex: 1 0 auto; }

/* 18.09.2026: tabele we wpisach bloga */
.prose table { width: 100%; border-collapse: collapse; margin: var(--s5) 0; font-size: 0.95rem; }
.prose th, .prose td { border-top: 1px solid var(--rule); padding: var(--s3) var(--s3) var(--s3) 0; text-align: left; vertical-align: top; }
.prose thead th { font-family: var(--font-ui); font-size: 0.8rem; font-weight: 700; color: var(--copper); border-top: 2px solid var(--copper); }
.prose td:first-child { font-weight: 700; width: 12rem; }
/* ramka: tabela jako wyróżniony blok, jak w wersji polskiej */
.prose table { background: rgba(133, 56, 43, 0.05); border: 1px solid rgba(133, 56, 43, 0.35); border-radius: 2px; padding: var(--s4); }
.prose caption { caption-side: top; text-align: left; font-family: var(--font-display); font-style: italic; font-size: 1.2rem; padding-bottom: var(--s3); }
.prose table { width: min(52rem, calc(100vw - 2 * var(--gutter))); }
.prose td:first-child { width: 9rem; }
@media (max-width: 700px) { .prose table, .prose thead, .prose tbody, .prose tr, .prose th, .prose td { display: block; width: auto; }
  .prose thead { display: none; }
  .prose tr + tr { border-top: 1px solid var(--rule); margin-top: var(--s3); padding-top: var(--s3); }
  .prose td { border: 0; padding: 0 0 var(--s2); } }

/* 18.09.2026, CEO: przypisy we wpisach, jak w wersji polskiej */
.prose .fn { font-size: 0.7em; line-height: 0; }
.prose .fn a { text-decoration: none; color: var(--copper); font-weight: 700; padding-inline: 0.15em; }
.notes { max-width: var(--measure); margin-top: var(--s7); padding-top: var(--s5); border-top: 1px solid var(--rule); }
.notes h2 { font-size: 1.2rem; margin-bottom: var(--s4); }
.notes ol { padding-left: 1.4rem; font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); }
.notes li { margin-bottom: var(--s3); }
.notes a { color: var(--copper); }
.fn-back { text-decoration: none; margin-left: 0.3em; }
.notes ol { list-style: decimal; }
.notes ol li::marker { color: var(--copper); font-family: var(--font-ui); font-size: 0.85em; }

/* 18.09.2026, CEO: ilustracje i daty wpisów, jak w wersji polskiej */
.post__figure { margin: var(--s6) 0 var(--s7); }
.post__figure img { width: 100%; height: auto; box-shadow: var(--shadow-1); }
.post__figure figcaption { margin-top: var(--s2); font-family: var(--font-ui); font-size: 0.8rem; color: var(--ink-soft); }
.post-item a { display: grid; grid-template-columns: 10rem minmax(0, 1fr); gap: var(--s5); align-items: start; }
.post-item__thumb img { width: 100%; height: 7rem; object-fit: cover; }
.post-item__date { margin-bottom: var(--s1); }
@media (max-width: 600px) { .post-item a { grid-template-columns: 1fr; gap: var(--s3); } .post-item__thumb img { height: 10rem; } }

/* 18.09.2026, CEO: spis treści bloga na stronie głównej, na miedzi */
.v2 .klist { background: transparent; color: var(--on-dark); padding-block: var(--section); }
.v2 .klist h2 { font-size: clamp(1.5rem, 1rem + 1.4vw, 2.2rem); line-height: 1.25; max-width: 32ch; }
.klist__list { display: grid; gap: 0; margin-top: var(--s7); }
.klist__item + .klist__item { border-top: 1px solid rgba(241, 234, 223, 0.22); }
.klist__item a { display: grid; grid-template-columns: 7rem minmax(0, 1fr); gap: var(--s5); align-items: center; padding-block: var(--s4); text-decoration: none; }
.klist__thumb img { width: 100%; height: 4.5rem; object-fit: cover; }
.klist__date { font-family: var(--font-ui); font-size: 0.78rem; color: var(--on-dark); opacity: 0.8; }
.klist__title { display: block; font-size: var(--t-md); line-height: 1.3; margin-top: var(--s1); }
.klist__item a:hover .klist__title { text-decoration: underline; text-decoration-color: var(--copper-tint); text-underline-offset: 0.2em; }
.v2 .klist .fold--more { border-top: 1px solid rgba(241, 234, 223, 0.22); }
@media (max-width: 600px) { .klist__item a { grid-template-columns: 5rem minmax(0, 1fr); gap: var(--s4); } .klist__thumb img { height: 3.5rem; } }

/* 18.09.2026, CEO: zamknięcie znowu na fakturze miedzi, jak hero */
.v2 .finale__stage { background: transparent; }

/* 18.09.2026, CEO: spis treści bloga na białym tle */
.v2 .klist { background: #FFFFFF; color: var(--ink); }
.v2 .klist h2 { color: var(--ink); }
.v2 .klist .klist__item + .klist__item, .v2 .klist .fold--more, .v2 .klist .fold { border-top-color: var(--rule); }
.v2 .klist .klist__date { color: var(--ink-soft); opacity: 1; }
.v2 .klist .klist__title { color: var(--ink); }
.v2 .klist .fold__label { color: var(--ink); }
.v2 .klist .fold__hint { color: var(--blue); }
.v2 .klist .fold__head:hover .fold__hint { color: var(--copper); }
.v2 .klist .klist__item a:hover .klist__title { text-decoration-color: var(--copper); }
/* 18.09.2026, CEO: pas stopki na stronie głównej tak samo niski jak w notkach */
.v2 .finale.is-flow .finale__footband .finale__foot { margin-top: 0; }

/* 18.09.2026: „Read next” pod notką */
.post__next { max-width: var(--measure); margin-top: var(--s7); padding-top: var(--s5); border-top: 1px solid var(--rule); }
.post__next h2 { font-size: 1.2rem; margin-bottom: var(--s3); }
.post__next ul { display: grid; gap: var(--s2); }
.post__next a { color: var(--blue); text-decoration-color: var(--copper); text-underline-offset: 0.2em; }
.post__next p { margin-top: var(--s4); font-family: var(--font-ui); font-size: 0.9rem; }
/* 18.09.2026: akapit-odpowiedź na początku sekcji notki */
.post .prose p.lede { font-size: 1.15rem; line-height: 1.6; color: var(--ink); }
/* 18.09.2026, CEO: nota o podstawie liczb w rekordzie */
.tally__note { grid-column: 1 / -1; margin-top: var(--s5); font-family: var(--font-ui); font-size: 0.82rem; color: var(--ink-soft); max-width: 46rem; }
/* 21.09.2026: profile założycieli */
.founder__links { margin-top: var(--s3); font-family: var(--font-ui); font-size: 0.85rem; }
.founder__links a { color: inherit; text-decoration-color: var(--copper-tint); text-underline-offset: 0.2em; }

/* 21.09.2026, CEO: po rozwinięciu opinii nie zostaje pusty pas tła */
.v2 .voices .fold__body { padding-bottom: 0; }
.v2 .voices .fold--more .voices__grid { margin-bottom: calc(-1 * var(--s7)); }
.v2 .voices .fold[open] + * { margin-top: 0; }
