@charset "utf-8";

/* ==========================================================================
   Hard Money Studio — house stylesheet
   Editorial broadsheet: ink on bone, oxblood rules, ledger numbering.
   ========================================================================== */

/* --- 1. Fonts ------------------------------------------------------------ */

@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Bodoni Moda";
  src: url("../fonts/bodoni-moda-italic.woff2") format("woff2");
  font-weight: 400 900; /* variable italic — wght axis verified 400–900 */
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans.woff2") format("woff2");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* --- 2. Tokens ----------------------------------------------------------- */

:root {
  /* ink ramp */
  --ink: #14100e;
  --ink-80: #2e2924;
  --ink-65: #4a443d;
  --ink-45: #645d57;
  /* --ink-30 is the outline colour of the ghosted ledger numerals; it has to
     clear 3:1 on bone and paper because the stroke is the whole glyph */
  --ink-30: #7c746b;

  /* paper ramp */
  --bone: #f1ece1;
  --bone-deep: #e8e1d2;
  --paper: #faf7ef;
  --rule: #cec4b2;
  --rule-soft: #e0d8c8;

  /* accent
     --ox         oxblood, for ink-on-bone (9.18:1 on --bone)
     --ox-bright  brightened oxblood, still bone-side only (6.12:1 on --bone)
     --ox-on-ink  the ONLY red permitted as text/indicator on --ink (5.36:1) */
  --ox: #7b1220;
  --ox-bright: #a8202f;
  --ox-on-ink: #e4586a;
  --ox-wash: #f0e0dd;
  --brass: #9a7a3e;

  /* type */
  --display: "Bodoni Moda", "Didot", "Bodoni MT", Georgia, serif;
  --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --fs-mega: clamp(3.5rem, 13.2vw, 11.5rem);
  --fs-xxl: clamp(2.8rem, 7.6vw, 6.2rem);
  --fs-xl: clamp(2.1rem, 5vw, 3.9rem);
  --fs-lg: clamp(1.62rem, 3.1vw, 2.5rem);
  --fs-md: clamp(1.24rem, 1.9vw, 1.55rem);
  --fs-lede: clamp(1.08rem, 1.55vw, 1.32rem);
  --fs-body: 1.0125rem;
  --fs-sm: 0.9rem;
  --fs-xs: 0.78rem;
  --fs-micro: 0.695rem;

  /* space */
  --s1: 0.375rem;
  --s2: 0.75rem;
  --s3: 1.125rem;
  --s4: 1.75rem;
  --s5: 2.5rem;
  --s6: 3.5rem;
  --s7: 5rem;
  --s8: clamp(4.5rem, 9vw, 8.5rem);

  --wrap: 1340px;
  --wrap-narrow: 940px;
  --gutter: clamp(1.15rem, 4vw, 3.25rem);

  --r-sm: 2px;
  --r-md: 3px;

  --shadow-plate: 0 1px 0 rgba(20, 16, 14, 0.06), 0 18px 40px -28px rgba(20, 16, 14, 0.5);
  --shadow-lift: 0 28px 60px -34px rgba(20, 16, 14, 0.62);

  --ease: cubic-bezier(0.22, 0.68, 0.24, 1);
}

/* --- 3. Reset ------------------------------------------------------------ */

*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bone);
  color: var(--ink-65);
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  /* faint laid-paper texture */
  background-image:
    repeating-linear-gradient(0deg, rgba(20, 16, 14, 0.018) 0 1px, transparent 1px 4px),
    radial-gradient(120% 80% at 12% -10%, rgba(155, 122, 62, 0.09), transparent 60%);
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink);
  font-optical-sizing: auto;
  letter-spacing: -0.014em;
  line-height: 1.02;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: var(--ox); color: var(--bone); }

/* Focus. One system, two grounds. Nothing below may set `outline: none` —
   on-ink surfaces re-point the colour token rather than removing the ring. */
:focus-visible {
  outline: 2px solid var(--ox-bright);
  outline-offset: 3px;
}
.cta :focus-visible,
.quote-band :focus-visible,
.band-ink :focus-visible,
.folio :focus-visible,
.model--feature :focus-visible,
.specimen__head :focus-visible,
.studiomap__head :focus-visible {
  outline-color: var(--ox-on-ink);
}

/* --- 4. Utilities -------------------------------------------------------- */

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

.wrap-narrow { max-width: var(--wrap-narrow); }

.skip {
  position: absolute;
  left: var(--s3);
  top: -100px;
  z-index: 200;
  background: var(--ink);
  color: var(--bone);
  padding: 0.7rem 1.2rem;
  font: 500 var(--fs-xs)/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: top 0.18s var(--ease);
}
.skip:focus { top: var(--s3); }

.kicker {
  font-family: var(--mono);
  font-weight: 500;
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ox);
}

.kicker--on-ink { color: var(--ox-on-ink); }

.mono { font-family: var(--mono); font-weight: 500; font-variant-numeric: tabular-nums; }

.lede {
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: var(--ink-80);
}

.rule-heavy { border-top: 3px solid var(--ink); }
.rule-hair { border-top: 1px solid var(--rule); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Reveal — only engages when JS is present, so content is safe without it */
.js .reveal { opacity: 0; transform: translateY(16px); }
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* --- 5. Masthead --------------------------------------------------------- */

.masthead {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 1px 0 rgba(20, 16, 14, 0.04);
}

.folio {
  border-bottom: 1px solid var(--rule-soft);
  background: var(--ink);
  color: var(--bone-deep);
}
.folio__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s3);
  padding-block: 0.42rem;
  font: 500 var(--fs-micro)/1.4 var(--mono);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.folio__inner span:nth-child(2) { color: var(--ox-on-ink); }
.folio__inner span:last-child { text-align: right; }
@media (max-width: 700px) {
  .folio__inner span:nth-child(2) { display: none; }
}

.masthead__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding-block: 0.85rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.brand__mark { width: 28px; height: 28px; }
.brand__type {
  display: grid;
  line-height: 1;
}
.brand__name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.06rem;
  letter-spacing: 0.005em;
  color: var(--ink);
  text-transform: uppercase;
}
.brand__sub {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.56rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--ox);
  margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }

.nav__link {
  font-family: var(--mono);
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-80);
  padding-block: 0.35rem;
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--ox);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-weight: 500;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.78rem 1.35rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn:hover { background: var(--ox); border-color: var(--ox); transform: translateY(-1px); }
.btn__arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--bone); }

.btn--onink {
  background: var(--bone);
  color: var(--ink);
  border-color: var(--bone);
}
.btn--onink:hover { background: var(--ox-bright); border-color: var(--ox-bright); color: var(--bone); }

.btn--sm { padding: 0.6rem 1rem; font-size: var(--fs-micro); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  background: none;
  border: 1px solid var(--ink);
  padding: 0.52rem 0.9rem;
  cursor: pointer;
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-toggle__bars { display: grid; gap: 3px; }
.nav-toggle__bars i { display: block; width: 15px; height: 1.6px; background: var(--ink); }

.mobile-nav { display: none; }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav {
    display: block;
    border-top: 1px solid var(--rule);
    background: var(--paper);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.35s var(--ease), visibility 0s linear 0.35s;
  }
  /* closed: no second hairline under the masthead, and nothing focusable */
  .mobile-nav[data-open="false"] { border-top-color: transparent; }
  .mobile-nav[data-open="true"] {
    max-height: 460px;
    visibility: visible;
    transition: max-height 0.35s var(--ease), visibility 0s linear 0s;
  }
  .mobile-nav__list { padding: var(--s3) 0 var(--s4); }
  .mobile-nav__list li { border-bottom: 1px solid var(--rule-soft); }
  .mobile-nav__list a {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.95rem 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.55rem;
    color: var(--ink);
  }
  .mobile-nav__list a span {
    font: 500 var(--fs-micro)/1 var(--mono);
    letter-spacing: 0.16em;
    color: var(--ox);
  }
  .mobile-nav .btn { margin-top: var(--s4); width: 100%; justify-content: center; }
}

/* --- 6. Section furniture ------------------------------------------------ */

.section { padding-block: var(--s8); }
.section--tight { padding-block: var(--s7); }

/* full-bleed light band, ruled top and bottom */
.section--field {
  background: var(--paper);
  border-block: 3px solid var(--ink);
  background-image:
    repeating-linear-gradient(0deg, rgba(20, 16, 14, 0.016) 0 1px, transparent 1px 4px);
}

.sechead {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--s3);
  border-top: 3px solid var(--ink);
  padding-top: 0.6rem;
  margin-bottom: var(--s5);
}
.sechead__no {
  font-family: var(--mono);
  font-weight: 500;
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  color: var(--ox);
  text-transform: uppercase;
}
.sechead__label {
  font-family: var(--mono);
  font-weight: 500;
  font-size: var(--fs-micro);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-45);
  text-align: right;
}

.section-title { font-size: var(--fs-xl); }
.section-title em { font-style: italic; color: var(--ox); }

/* --- 7. Hero ------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3rem, 6vw, 5.5rem);
  border-bottom: 3px solid var(--ink);
}

.hero__rosette {
  position: absolute;
  top: 50%;
  right: -14%;
  width: min(760px, 74vw);
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  animation: rosette-in 1.6s var(--ease) both;
}
@keyframes rosette-in {
  from { opacity: 0; transform: translateY(-50%) scale(0.94) rotate(-6deg); }
  to { opacity: 0.5; transform: translateY(-50%) scale(1) rotate(0); }
}

@media (max-width: 900px) {
  .hero__rosette {
    top: auto;
    bottom: -18%;
    right: -34%;
    width: min(520px, 96vw);
    transform: none;
    opacity: 0.26;
    animation: none;
  }
}

.hero__inner { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  gap: var(--s5);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1000px) {
  .hero__grid { grid-template-columns: minmax(0, 1.32fr) minmax(0, 0.68fr); gap: var(--s6); align-items: end; }
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: var(--s4);
}
.hero__eyebrow span:not(.kicker) {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.hero__eyebrow i {
  display: block;
  width: 34px;
  height: 1px;
  background: var(--rule);
}
/* below 640px the eyebrow wraps — drop the rules so no fragment dangles at
   the end of a line */
@media (max-width: 639px) {
  .hero__eyebrow { gap: 0.35rem 1.15rem; }
  .hero__eyebrow i { display: none; }
}

.hero__title {
  font-size: var(--fs-mega);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: var(--s4);
}
.hero__title .line { display: block; }
.hero__title .ital { font-style: italic; font-weight: 700; letter-spacing: -0.02em; }
.hero__title .ox { color: var(--ox); }

.hero__body {
  max-width: 46ch;
  border-left: 3px solid var(--ox);
  padding-left: var(--s3);
}
.hero__body p + p { margin-top: var(--s2); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s4);
}

.hero__side {
  border-top: 1px solid var(--ink);
  padding-top: var(--s3);
}
.hero__side dl { display: grid; gap: 0; }
.hero__side .row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: var(--s3);
  padding-block: 0.72rem;
  border-bottom: 1px solid var(--rule-soft);
}
.hero__side dt {
  font: 500 var(--fs-micro)/1.3 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.hero__side dd {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.62rem;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero__side dd sup {
  font-family: var(--mono);
  font-size: 0.5em;
  color: var(--ox);
  vertical-align: super;
}

/* --- 8. Ticker band ------------------------------------------------------ */

.band-ink {
  background: var(--ink);
  color: var(--bone-deep);
  border-block: 3px solid var(--ink);
}
.band-ink h2, .band-ink h3 { color: var(--bone); }

.ticker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 860px) { .ticker { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.ticker__cell {
  padding: var(--s4) var(--s3);
  border-right: 1px solid rgba(241, 236, 225, 0.16);
  border-bottom: 1px solid rgba(241, 236, 225, 0.16);
}
.ticker__cell:nth-child(2n) { border-right: 0; }
@media (min-width: 860px) {
  .ticker__cell { border-bottom: 0; }
  .ticker__cell:nth-child(2n) { border-right: 1px solid rgba(241, 236, 225, 0.16); }
  .ticker__cell:last-child { border-right: 0; }
}
.ticker__fig {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1;
  color: var(--bone);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.ticker__fig span { color: var(--ox-on-ink); }
.ticker__label {
  margin-top: 0.6rem;
  font: 500 var(--fs-micro)/1.5 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(241, 236, 225, 0.62);
}

/* --- 9. Ledger rows (numbered services) ---------------------------------- */

.ledger { border-top: 1px solid var(--ink); }

.ledger__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s2);
  padding-block: var(--s4);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s var(--ease);
}
@media (min-width: 880px) {
  .ledger__row {
    grid-template-columns: 5.5rem minmax(0, 0.9fr) minmax(0, 1.25fr);
    gap: var(--s4);
    align-items: start;
  }
}
.ledger__row:hover { background: rgba(250, 247, 239, 0.7); }

.ledger__no {
  font-family: var(--mono);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--ox);
  letter-spacing: 0.08em;
  padding-top: 0.4rem;
}
.ledger__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--ink);
  line-height: 1.04;
}
.ledger__desc { max-width: 58ch; }
.ledger__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--s2);
}
.tag {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-45);
  border: 1px solid var(--rule);
  padding: 0.34rem 0.55rem;
  background: var(--paper);
}
/* --- 10. Work plates ----------------------------------------------------- */

.work {
  display: grid;
  gap: var(--s5) var(--s4);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 760px) {
  .work { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s6) var(--s5); }
  .work__item:nth-child(1) { margin-top: 0; }
  .work__item:nth-child(2) { margin-top: var(--s6); }
  .work__item:nth-child(4) { margin-top: var(--s6); }
}

.work__item { display: grid; gap: var(--s3); }

.plate {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c1);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-plate);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.work__item:hover .plate { transform: translateY(-5px); box-shadow: var(--shadow-lift); }

.plate::before, .plate::after { content: ""; position: absolute; inset: 0; }

/* art A — concentric ring turning */
.art-a::before {
  background:
    repeating-radial-gradient(circle at 68% 74%, transparent 0 13px, var(--c2) 13px 14px);
  opacity: 0.85;
}
.art-a::after {
  background:
    linear-gradient(115deg, transparent 46%, var(--c3) 46% 51%, transparent 51%),
    linear-gradient(115deg, transparent 62%, var(--c3) 62% 63.4%, transparent 63.4%);
}

/* art B — instrument bars standing on a baseline they actually touch */
.art-b::before {
  background:
    linear-gradient(to top, var(--c2) 0 9%, transparent 9%),
    repeating-linear-gradient(90deg, transparent 0 26px, var(--c3) 26px 27px);
  opacity: 0.9;
}
.art-b::after {
  background:
    linear-gradient(var(--c3), var(--c3)) 14% 100% / 12% 54% no-repeat,
    linear-gradient(var(--c3), var(--c3)) 32% 100% / 12% 72% no-repeat,
    linear-gradient(var(--c2), var(--c2)) 50% 100% / 12% 43% no-repeat,
    linear-gradient(var(--c3), var(--c3)) 68% 100% / 12% 85% no-repeat,
    linear-gradient(var(--c2), var(--c2)) 86% 100% / 12% 61% no-repeat;
}

/* art C — naming: a dense field of candidate tallies narrowed, frame by
   frame, to a single mark. Inset shadows are ordered smallest-first, so each
   pair paints one concentric hairline rectangle. */
.art-c::before {
  background: repeating-linear-gradient(90deg, transparent 0 9px, var(--c2) 9px 11px);
  opacity: 0.5;
}
.art-c::after {
  inset: 11% 9%;
  border: 1px solid var(--c3);
  background:
    linear-gradient(var(--c3), var(--c3)) 50% 50% / 44% 13% no-repeat,
    var(--c1);
  box-shadow:
    inset 0 0 0 7px var(--c1),
    inset 0 0 0 8px var(--c3),
    inset 0 0 0 19px var(--c1),
    inset 0 0 0 20px var(--c3),
    inset 0 0 0 33px var(--c1),
    inset 0 0 0 34px var(--c3),
    inset 0 0 0 49px var(--c1),
    inset 0 0 0 50px var(--c3);
}

/* art D — halftone field + sweep */
.art-d::before {
  background-image: radial-gradient(var(--c2) 1.7px, transparent 1.8px);
  background-size: 13px 13px;
  opacity: 0.9;
}
.art-d::after {
  background:
    radial-gradient(circle at 100% 0%, var(--c3) 0 40%, transparent 40.5%),
    radial-gradient(circle at 100% 0%, transparent 0 56%, var(--c3) 56% 58%, transparent 58.5%),
    radial-gradient(circle at 100% 0%, transparent 0 72%, var(--c3) 72% 73.4%, transparent 74%);
}

.plate__stamp {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: var(--ink);
  color: var(--bone);
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
}

.work__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s2);
  border-top: 1px solid var(--ink);
  padding-top: 0.55rem;
}
.work__cat {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.work__year { font: 500 var(--fs-micro)/1 var(--mono); color: var(--ox); letter-spacing: 0.1em; }
.work__title { font-size: var(--fs-lg); line-height: 1.05; }
.work__outcome { font-size: var(--fs-sm); max-width: 46ch; }
.work__outcome strong { color: var(--ink); font-weight: 600; }

/* --- 11. Essay / argument ------------------------------------------------ */

.argument {
  display: grid;
  gap: var(--s5);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1000px) {
  .argument { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: var(--s7); }
}
@media (min-width: 1200px) {
  /* the aside carries a display-size headline — give it enough measure that
     short words are not stranded on their own line */
  .argument { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
}

.argument__aside { align-self: start; }
@media (min-width: 1000px) {
  .argument__aside { position: sticky; top: 122px; }
}
.argument__head { font-size: var(--fs-xxl); line-height: 0.94; letter-spacing: -0.03em; }
.argument__head em { font-style: italic; color: var(--ox); }

.prose { max-width: 62ch; }
.prose p + p { margin-top: var(--s3); }
/* Drop cap: float box is deliberately kept just under two body line boxes
   (2 × 1.62em = 3.24em) so the glyph indents exactly the lines it fills.
   4.55 × 0.7 = 3.185em. Do not raise line-height past 0.71 or it takes a
   third line the glyph cannot reach. */
.prose p:first-of-type::first-letter {
  float: left;
  font-family: var(--display);
  font-weight: 900;
  font-size: 4.55em;
  line-height: 0.7;
  padding: 0 0.09em 0 0;
  color: var(--ox);
}
.prose strong { color: var(--ink); font-weight: 600; }

.notes {
  margin-top: var(--s5);
  border-top: 3px solid var(--ink);
  padding-top: var(--s3);
  display: grid;
  gap: var(--s3);
}
@media (min-width: 640px) { .notes { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s4); } }
.note__no {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.16em;
  color: var(--ox);
  display: block;
  margin-bottom: 0.4rem;
}
.note h3 { font-size: 1.08rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; margin-bottom: 0.28rem; }
.note p { font-size: var(--fs-sm); }

/* --- 12. Client types ---------------------------------------------------- */

/* Asymmetric ruled block — 5/7 then 7/5, so no two cells in the composition
   carry the same weight and the band reads as set type rather than four
   identical cards. */
.clients {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 3px solid var(--ink);
  border-left: 1px solid var(--rule);
}
@media (min-width: 620px) { .clients { grid-template-columns: repeat(12, minmax(0, 1fr)); } }
@media (min-width: 620px) {
  .client:nth-child(1) { grid-column: span 5; }
  .client:nth-child(2) { grid-column: span 7; }
  .client:nth-child(3) { grid-column: span 7; }
  .client:nth-child(4) { grid-column: span 5; }
}

.client {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s4) var(--s3);
  background: var(--paper);
  transition: background 0.3s var(--ease);
  display: grid;
  align-content: start;
}
.client:hover { background: var(--bone-deep); }
.client .client__no {
  font: 500 var(--fs-micro)/1 var(--mono);
  color: var(--ox);
  letter-spacing: 0.16em;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.55rem;
}
.client h3 {
  font-family: var(--display);
  font-size: 1.42rem;
  margin: 0.85rem 0 0.5rem;
  line-height: 1.02;
}
.client p { font-size: var(--fs-sm); max-width: 42ch; }
/* the wide cells in each row take the larger display size */
@media (min-width: 620px) {
  .client:nth-child(2) h3,
  .client:nth-child(3) h3 { font-size: clamp(1.5rem, 2.5vw, 2.05rem); }
  .client:nth-child(2) p,
  .client:nth-child(3) p { font-size: var(--fs-body); }
}

/* --- 13. Pull quote ------------------------------------------------------ */

.quote-band {
  background: var(--ink);
  color: var(--bone);
  padding-block: var(--s8);
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(241, 236, 225, 0.045) 0 1px, transparent 1px 5px);
  pointer-events: none;
}
.quote { position: relative; max-width: 24ch; }
.quote__grid {
  display: grid;
  gap: var(--s5);
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  z-index: 1;
}
@media (min-width: 940px) {
  .quote__grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr); gap: var(--s7); align-items: end; }
}
.quote blockquote {
  font-family: var(--display);
  font-weight: 700;
  font-style: italic;
  font-size: var(--fs-xxl);
  line-height: 1.02;
  letter-spacing: -0.026em;
  color: var(--bone);
  max-width: 18ch;
}
.quote blockquote span { color: var(--ox-on-ink); font-style: normal; }
.quote figcaption {
  margin-top: var(--s4);
  border-top: 1px solid rgba(241, 236, 225, 0.28);
  padding-top: var(--s2);
  font: 500 var(--fs-xs)/1.6 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241, 236, 225, 0.68);
  max-width: 34ch;
}
.quote-stats { display: grid; gap: var(--s3); }
.quote-stat { border-top: 1px solid rgba(241, 236, 225, 0.28); padding-top: 0.7rem; }
.quote-stat b {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.1rem;
  color: var(--bone);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.quote-stat span {
  font: 500 var(--fs-micro)/1.5 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(241, 236, 225, 0.6);
}

/* --- 14. Product interfaces (CSS-composed UI) ------------------------------- */

.frame {
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-plate);
  overflow: hidden;
  font-family: var(--sans);
}
.frame__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  background: var(--ink);
  color: var(--bone-deep);
  padding: 0.55rem 0.8rem;
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.frame__dots { display: flex; gap: 5px; }
.frame__dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(241, 236, 225, 0.35); display: block; }
.frame__dots i:first-child { background: var(--ox-on-ink); }

.portal { display: grid; grid-template-columns: minmax(0, 1fr); }
@media (min-width: 720px) { .portal { grid-template-columns: 148px minmax(0, 1fr); } }

.portal__side {
  background: var(--bone-deep);
  border-right: 1px solid var(--rule);
  padding: var(--s3) 0.85rem;
  display: none;
}
@media (min-width: 720px) { .portal__side { display: block; } }
.portal__side p {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: 0.85rem;
}
.portal__side li {
  font-size: 0.78rem;
  color: var(--ink-65);
  padding: 0.36rem 0.5rem;
  margin-inline: -0.5rem;
  border-radius: var(--r-sm);
}
.portal__side li[data-active] {
  background: var(--ink);
  color: var(--bone);
  font-weight: 500;
}
.portal__side hr { border: 0; border-top: 1px solid var(--rule); margin: 0.85rem 0; }

.portal__main { padding: var(--s3); display: grid; gap: var(--s3); min-width: 0; }

.portal__crumb {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s2);
  flex-wrap: wrap;
}
.portal__crumb .portal__name {
  font-family: var(--display);
  font-size: 1.34rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.portal__crumb span {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.12em;
  color: var(--ink-45);
  text-transform: uppercase;
}

.portal__kpis { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (min-width: 560px) { .portal__kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.kpi { background: var(--bone); padding: 0.7rem 0.75rem; }
.kpi span {
  display: block;
  font: 500 0.58rem/1.4 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.kpi b {
  display: block;
  margin-top: 0.28rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.28rem;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kpi i { font-style: normal; font: 500 0.6rem/1 var(--mono); color: var(--ox); }

.portal__chart {
  border: 1px solid var(--rule);
  background: var(--bone);
  padding: 0.85rem;
}
.chart__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.6rem;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
  font: 500 0.6rem/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.chart__head b { color: var(--ink); font-family: var(--display); font-size: 1.05rem; letter-spacing: 0; }
.chart__svg { width: 100%; height: auto; display: block; }

.portal__table { border: 1px solid var(--rule); background: var(--bone); overflow-x: auto; }
.portal__table table { width: 100%; border-collapse: collapse; min-width: 420px; }
.portal__table caption {
  text-align: left;
  padding: 0.6rem 0.75rem;
  font: 500 0.58rem/1 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-45);
  border-bottom: 1px solid var(--rule);
}
.portal__table th, .portal__table td {
  text-align: left;
  padding: 0.48rem 0.75rem;
  font-size: 0.74rem;
  border-bottom: 1px solid var(--rule-soft);
}
.portal__table th {
  font: 500 0.58rem/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-45);
}
.portal__table td:not(:first-child) { font-family: var(--mono); font-weight: 500; font-variant-numeric: tabular-nums; color: var(--ink); }
.portal__table tr:last-child td { border-bottom: 0; }
.portal__table .pos { color: var(--ox); }

/* handset frame */
.phone {
  width: 260px;
  max-width: 100%;
  border: 1px solid var(--ink);
  background: var(--ink);
  padding: 8px 8px 12px;
  border-radius: 26px;
  box-shadow: var(--shadow-lift);
}
.phone__screen {
  background: var(--paper);
  border-radius: 19px;
  overflow: hidden;
}
.phone__status {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0.85rem 0.3rem;
  font: 500 0.55rem/1 var(--mono);
  color: var(--ink-45);
  letter-spacing: 0.06em;
}
.phone__body { padding: 0.7rem 0.85rem 1rem; display: grid; gap: 0.7rem; }
.phone__hello { font: 500 0.58rem/1 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-45); }
.phone__balance {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.85rem;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.phone__delta { font: 500 0.6rem/1 var(--mono); color: var(--ox); }
.phone__card {
  background: var(--ink);
  color: var(--bone);
  border-radius: 8px;
  padding: 0.7rem 0.75rem;
  position: relative;
  overflow: hidden;
}
.phone__card::after {
  content: "";
  position: absolute;
  right: -30px; top: -34px;
  width: 110px; height: 110px;
  border: 1px solid rgba(241, 236, 225, 0.22);
  border-radius: 50%;
}
.phone__card span { font: 500 0.55rem/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: rgba(241, 236, 225, 0.6); }
.phone__card b { display: block; margin-top: 0.35rem; font: 500 0.82rem/1 var(--mono); letter-spacing: 0.14em; }
.phone__card em { font-style: normal; font: 500 0.55rem/1 var(--mono); color: rgba(241, 236, 225, 0.6); }
.phone__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding-block: 0.42rem;
  border-bottom: 1px solid var(--rule-soft);
}
.phone__row:last-child { border-bottom: 0; }
.phone__row strong { display: block; font-size: 0.72rem; font-weight: 500; color: var(--ink); }
.phone__row small { font: 500 0.55rem/1.3 var(--mono); color: var(--ink-45); letter-spacing: 0.06em; }
.phone__amt { font: 500 0.74rem/1 var(--mono); color: var(--ink); font-variant-numeric: tabular-nums; }
.phone__amt.in { color: var(--ox); }
.phone__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border-top: 1px solid var(--rule);
  padding-top: 0.5rem;
  margin-top: 0.15rem;
}
.phone__nav i {
  display: block;
  height: 3px;
  background: var(--rule);
}
.phone__nav i:first-child { background: var(--ox); }

/* showcase framing */
.showcase {
  display: grid;
  gap: var(--s5);
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
}
@media (min-width: 1000px) {
  .showcase { grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr); gap: var(--s6); }
  /* the flipped variant lives inside an already-narrow column, so the prose
     takes the larger track and the handset is capped rather than centred in
     a mostly-empty one */
  .showcase--flip { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: var(--s5); }
  .showcase--flip .showcase__copy { order: -1; }
}
.showcase--flip .phone { width: 260px; max-width: 300px; }
.showcase__caption {
  margin-top: var(--s2);
  font: 500 var(--fs-micro)/1.6 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-45);
}

/* --- 15. Detail blocks (capabilities) ------------------------------------ */

.disc { border-top: 3px solid var(--ink); padding-top: var(--s4); }
.disc + .disc { margin-top: var(--s7); }
.disc__grid {
  display: grid;
  gap: var(--s4);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 980px) {
  .disc__grid { grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr); gap: var(--s6); }
}
.disc__label { align-self: start; }
@media (min-width: 980px) { .disc__label { position: sticky; top: 128px; } }
.disc__no {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.2em;
  color: var(--ox);
  text-transform: uppercase;
}
.disc__title { font-size: var(--fs-xl); margin: 0.7rem 0 var(--s2); line-height: 0.98; }
.disc__title em { font-style: italic; color: var(--ox); }

.speclist { border-top: 1px solid var(--ink); }
.speclist li {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: var(--s2);
  padding-block: var(--s3);
  border-bottom: 1px solid var(--rule);
}
.speclist b {
  font: 500 var(--fs-micro)/1.9 var(--mono);
  color: var(--ox);
  letter-spacing: 0.1em;
}
.speclist h4 { font-family: var(--sans); font-weight: 600; font-size: 1.03rem; letter-spacing: 0; margin-bottom: 0.22rem; }
.speclist p { font-size: var(--fs-sm); }

.deliverables {
  margin-top: var(--s4);
  border: 1px solid var(--rule);
  background: var(--paper);
  padding: var(--s3);
}
.deliverables h4 {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: var(--s2);
  font-family: var(--mono);
}
.deliverables ul {
  display: grid;
  gap: 0.34rem var(--s3);
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.deliverables li {
  font-size: var(--fs-sm);
  padding-left: 1.1rem;
  position: relative;
}
.deliverables li::before {
  content: "§";
  position: absolute;
  left: 0;
  color: var(--ox);
  font-family: var(--mono);
  font-size: 0.72rem;
  top: 0.14rem;
}

/* --- 16. Process ledger -------------------------------------------------- */

.phases { border-top: 3px solid var(--ink); }
.phase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s2);
  padding-block: var(--s4);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 900px) {
  .phase { grid-template-columns: 4rem minmax(0, 0.85fr) minmax(0, 1.35fr) 8.5rem; gap: var(--s4); align-items: start; }
}
.phase__no {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 0.85;
  color: var(--bone-deep);
  -webkit-text-stroke: 1px var(--ink-30);
}
.phase__name { font-family: var(--display); font-weight: 700; font-size: var(--fs-lg); line-height: 1.02; }
.phase__desc { font-size: var(--fs-sm); max-width: 60ch; }
.phase__desc ul { margin-top: 0.6rem; display: grid; gap: 0.24rem; }
.phase__desc li { padding-left: 0.95rem; position: relative; font-size: var(--fs-sm); }
.phase__desc li::before { content: "—"; position: absolute; left: 0; color: var(--ox); }
.phase__dur {
  font: 500 var(--fs-micro)/1.6 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-top: 2px solid var(--ox);
  padding-top: 0.4rem;
}

/* --- 17. Engagement models ----------------------------------------------- */

.models {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid var(--ink);
}
@media (min-width: 900px) {
  .models { grid-template-columns: repeat(3, minmax(0, 1fr)); border-left: 1px solid var(--rule); }
}
.model {
  border-bottom: 1px solid var(--rule);
  padding: var(--s4) 0;
  display: grid;
  gap: var(--s2);
  align-content: start;
}
@media (min-width: 900px) {
  .model { border-right: 1px solid var(--rule); padding: var(--s4) var(--s3); }
}
.model--feature { background: var(--ink); color: rgba(241, 236, 225, 0.78); }
.model--feature h3, .model--feature .model__price { color: var(--bone); }
.model--feature .model__tag { color: var(--ox-on-ink); }
.model--feature .model__list li { border-color: rgba(241, 236, 225, 0.2); }
@media (max-width: 899px) {
  .model--feature { padding-inline: var(--s3); }
}
.model__tag { font: 500 var(--fs-micro)/1 var(--mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ox); }
.model h3 { font-size: var(--fs-lg); line-height: 1.02; }
.model__price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.model__price small { font: 500 var(--fs-micro)/1 var(--mono); color: var(--ink-45); display: block; margin-top: 0.4rem; letter-spacing: 0.12em; text-transform: uppercase; }
.model--feature .model__price small { color: rgba(241, 236, 225, 0.6); }
.model__list { display: grid; gap: 0; margin-top: var(--s1); }
.model__list li { font-size: var(--fs-sm); padding-block: 0.5rem; border-bottom: 1px solid var(--rule-soft); }
.model__list li:last-child { border-bottom: 0; }

/* --- 18. Standards grid -------------------------------------------------- */

.standards {
  display: grid;
  gap: var(--s4);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 720px) { .standards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s5); } }
@media (min-width: 1100px) {
  .standards { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: var(--s5); }
  /* a wide opener, three equals, a wide closer — the grid gets a focal point
     instead of six identically-weighted boxes */
  .standard--wide:first-child { grid-column: span 2; }
  .standard--wide:last-child { grid-column: span 3; }
  .standard--wide {
    display: grid;
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
    column-gap: var(--s5);
    align-items: start;
    border-top-width: 3px;
  }
  .standard--wide > b { grid-column: 1; grid-row: 1; }
  .standard--wide > .standard__fig {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(3.4rem, 5.6vw, 5rem);
    margin: 0.4rem 0 0;
  }
  .standard--wide > h3 { grid-column: 2; grid-row: 1; margin-top: 0; }
  .standard--wide > p:last-child { grid-column: 2; grid-row: 2; font-size: var(--fs-body); max-width: 62ch; }
}
.standard { border-top: 1px solid var(--ink); padding-top: var(--s3); }
.standard b {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.16em;
  color: var(--ox);
  text-transform: uppercase;
}
.standard h3 { font-family: var(--sans); font-weight: 600; font-size: 1.1rem; letter-spacing: 0; margin: 0.6rem 0 0.4rem; }
.standard p { font-size: var(--fs-sm); }
.standard .standard__fig {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0.5rem 0 0.1rem;
  font-variant-numeric: tabular-nums;
}

/* --- 19. FAQ ------------------------------------------------------------- */

.faq { border-top: 3px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr) 1.5rem;
  gap: var(--s2);
  align-items: baseline;
  padding-block: var(--s3);
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.16rem, 2vw, 1.5rem);
  color: var(--ink);
  line-height: 1.14;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary b { font: 500 var(--fs-micro)/1.9 var(--mono); color: var(--ox); letter-spacing: 0.1em; }
.faq summary i {
  font-style: normal;
  justify-self: end;
  font-family: var(--mono);
  font-size: 1.1rem;
  color: var(--ox);
  transition: transform 0.3s var(--ease);
  line-height: 1.2;
}
.faq details[open] summary i { transform: rotate(45deg); }
.faq__answer { padding: 0 0 var(--s4) 2.8rem; max-width: 72ch; }
.faq__answer p + p { margin-top: var(--s2); }
@media (max-width: 640px) {
  .faq summary { grid-template-columns: 2rem minmax(0, 1fr) 1.2rem; }
  .faq__answer { padding-left: 2rem; }
}

/* --- 20. About-specific -------------------------------------------------- */

.pagehead {
  border-bottom: 3px solid var(--ink);
  padding-block: clamp(2.5rem, 5.5vw, 4.5rem) clamp(2.2rem, 4.5vw, 3.6rem);
  position: relative;
  overflow: hidden;
}
.pagehead__grid {
  display: grid;
  gap: var(--s4);
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
}
@media (min-width: 940px) {
  .pagehead__grid { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr); gap: var(--s6); }
}
.pagehead h1 { font-size: var(--fs-xxl); font-weight: 900; line-height: 0.9; letter-spacing: -0.032em; }
.pagehead h1 em { font-style: italic; font-weight: 700; color: var(--ox); }
.pagehead__lede { border-left: 3px solid var(--ox); padding-left: var(--s3); max-width: 52ch; }

.facts { border-top: 1px solid var(--ink); }
.facts .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s3);
  align-items: baseline;
  padding-block: 0.68rem;
  border-bottom: 1px solid var(--rule-soft);
}
.facts dt { font: 500 var(--fs-micro)/1.4 var(--mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-45); }
.facts dd { font-family: var(--display); font-weight: 700; font-size: 1.06rem; color: var(--ink); text-align: right; }

.split {
  display: grid;
  gap: var(--s5);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 980px) { .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s7); } }

.discipline-list { border-top: 1px solid var(--ink); }
.discipline-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s3);
  align-items: baseline;
  padding-block: var(--s3);
  border-bottom: 1px solid var(--rule);
}
.discipline-list h3 { font-family: var(--sans); font-weight: 600; font-size: 1.02rem; letter-spacing: 0; }
.discipline-list p { font-size: var(--fs-sm); margin-top: 0.2rem; max-width: 52ch; }
.discipline-list span { font: 500 var(--fs-micro)/1 var(--mono); letter-spacing: 0.14em; color: var(--ox); white-space: nowrap; }

.recognition { display: grid; gap: 0; border-top: 3px solid var(--ink); }
.recognition li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.25rem;
  padding-block: var(--s3);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 780px) {
  .recognition li { grid-template-columns: 7rem minmax(0, 1fr) minmax(0, 0.85fr); gap: var(--s4); align-items: baseline; }
}
.recognition .yr { font: 500 var(--fs-micro)/1.7 var(--mono); letter-spacing: 0.14em; color: var(--ox); }
.recognition h3 { font-family: var(--display); font-weight: 700; font-size: 1.26rem; line-height: 1.1; }
.recognition p { font-size: var(--fs-sm); }

/* --- 21. Contact / CTA --------------------------------------------------- */

.cta {
  background: var(--ink);
  color: rgba(241, 236, 225, 0.76);
  padding-block: var(--s8);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -46%;
  width: min(620px, 72vw);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(241, 236, 225, 0.14);
  box-shadow:
    0 0 0 26px rgba(241, 236, 225, 0.04),
    inset 0 0 0 26px rgba(241, 236, 225, 0.04);
  pointer-events: none;
}
.cta__grid {
  display: grid;
  gap: var(--s5);
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  z-index: 1;
}
@media (min-width: 980px) {
  .cta__grid { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); gap: var(--s7); }
}
.cta h2 { font-size: var(--fs-xxl); color: var(--bone); line-height: 0.92; letter-spacing: -0.03em; }
.cta h2 em { font-style: italic; color: var(--ox-on-ink); }
.cta__copy p { margin-top: var(--s3); max-width: 42ch; }
.cta__mail {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: var(--s4);
  font: 500 var(--fs-sm)/1 var(--mono);
  letter-spacing: 0.08em;
  color: var(--bone);
  border-bottom: 1px solid var(--ox-on-ink);
  padding-bottom: 4px;
}
.cta__mail:hover { color: var(--ox-on-ink); }

.form { display: grid; gap: var(--s3); }
.form__row { display: grid; gap: var(--s3); grid-template-columns: minmax(0, 1fr); }
@media (min-width: 620px) { .form__row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.field { display: grid; gap: 0.4rem; }
.field label {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 236, 225, 0.66);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(241, 236, 225, 0.3);
  padding: 0.6rem 0;
  color: var(--bone);
  font-size: var(--fs-body);
  border-radius: 0;
  width: 100%;
}
.field select {
  appearance: none;
  cursor: pointer;
  padding-right: 1.5rem;
  /* chevron drawn from two gradients — no image, no font glyph */
  background-image:
    linear-gradient(45deg, transparent 50%, var(--bone) 50%),
    linear-gradient(135deg, var(--bone) 50%, transparent 50%);
  background-size: 6px 6px, 6px 6px;
  background-position: right 7px top 55%, right 1px top 55%;
  background-repeat: no-repeat;
}
.field select option { background: var(--ink); color: var(--bone); }
.field select:invalid { color: rgba(241, 236, 225, 0.5); }
.field textarea { resize: vertical; min-height: 108px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-bottom-color: var(--ox-on-ink);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(241, 236, 225, 0.5); }
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-bottom-color: var(--ox-on-ink); }
.field__err {
  font: 500 var(--fs-micro)/1.5 var(--mono);
  letter-spacing: 0.08em;
  color: var(--ox-on-ink);
  min-height: 0;
}
/* No rule here: a full-width hairline at the same weight as the field
   underlines directly beneath the textarea reads as a fifth, empty field.
   The submit row is separated by space alone. */
.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s3);
  margin-top: var(--s4);
}
.form__note { font: 500 var(--fs-micro)/1.6 var(--mono); letter-spacing: 0.08em; color: rgba(241, 236, 225, 0.5); max-width: 34ch; }

.form-success {
  border: 1px solid rgba(241, 236, 225, 0.32);
  padding: var(--s5) var(--s4);
  display: grid;
  gap: var(--s2);
  background: rgba(241, 236, 225, 0.04);
}
.form-success .kicker { color: var(--ox-on-ink); }
.form-success h3 { color: var(--bone); font-size: var(--fs-lg); }
.form-success p { max-width: 42ch; }
.form-success dl {
  margin-top: var(--s2);
  border-top: 1px solid rgba(241, 236, 225, 0.22);
  padding-top: var(--s2);
  display: grid;
  gap: 0.3rem;
  font: 500 var(--fs-micro)/1.7 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(241, 236, 225, 0.6);
}
.form-success dl div { display: flex; justify-content: space-between; gap: var(--s2); }
.form-success dl dd { color: var(--bone); }

/* --- 22. Footer ---------------------------------------------------------- */

.foot {
  background: var(--bone-deep);
  border-top: 3px solid var(--ink);
  padding-block: var(--s6) var(--s4);
}
.foot__grid {
  display: grid;
  gap: var(--s5);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 780px) {
  .foot__grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.8fr) minmax(0, 0.8fr); gap: var(--s6); }
}
.foot__brand { display: grid; gap: var(--s3); }
.foot__statement { font-family: var(--display); font-weight: 700; font-size: 1.34rem; color: var(--ink); line-height: 1.12; max-width: 24ch; }
.foot h3 {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: var(--s2);
  font-family: var(--mono);
}
.foot__list { display: grid; gap: 0.1rem; justify-items: start; }
.foot__list a {
  font-size: var(--fs-sm);
  color: var(--ink-65);
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding-block: 0.15rem;
}
.foot__list a:hover { color: var(--ox); }
.foot__bar {
  margin-top: var(--s5);
  border-top: 1px solid var(--rule);
  padding-top: var(--s3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s2);
  font: 500 var(--fs-micro)/1.6 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-45);
}

/* --- 23. Misc ------------------------------------------------------------ */

.marquee-rule {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-block: 0.7rem;
  overflow: hidden;
  background: var(--paper);
}
/* Ticker band: set edge-to-edge like a rule of standing type. A wrapped row
   left-aligns under the first, so a short final row reads as a continuation
   rather than a stranded centred item. */
.marquee-rule ul {
  display: flex;
  gap: 0.75rem 1.7rem;
  white-space: nowrap;
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-45);
  justify-content: space-between;
  flex-wrap: wrap;
}
.marquee-rule li::before { content: "◆ "; color: var(--ox); }
/* Narrow screens: a long entry set nowrap would run past the viewport and be
   silently clipped by the band's own overflow. Let entries wrap instead. */
@media (max-width: 600px) {
  .marquee-rule ul { white-space: normal; justify-content: flex-start; }
}

.callout {
  border: 1px solid var(--ink);
  background: var(--paper);
  padding: var(--s4);
  display: grid;
  gap: var(--s2);
  box-shadow: var(--shadow-plate);
}
.callout h3 { font-size: var(--fs-md); }
.callout p { font-size: var(--fs-sm); }

/* --- 24. Specimen sheet (custom graphic) --------------------------------- */

.specimen {
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-plate);
  overflow: hidden;
  position: relative;
}
.specimen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(20, 16, 14, 0.02) 0 1px, transparent 1px 5px);
}
.specimen__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s2);
  background: var(--ink);
  color: rgba(241, 236, 225, 0.72);
  padding: 0.55rem 0.9rem;
  font: 500 var(--fs-micro)/1.4 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.specimen__head span:first-child { color: var(--bone); }

.specimen__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
}
@media (min-width: 720px) {
  .specimen__body { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .specimen__lockup { grid-column: 1 / -1; }
  .specimen__block:last-child { grid-column: 1 / -1; }
}

/* lockup panel */
.specimen__lockup {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.2rem);
  padding: clamp(1.5rem, 4vw, 2.75rem) var(--s4);
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(120% 140% at 88% 10%, rgba(155, 122, 62, 0.13), transparent 62%),
    var(--bone);
}
.specimen__mark {
  position: relative;
  display: block;
  width: clamp(58px, 9vw, 84px);
  aspect-ratio: 1;
  flex: none;
}
.specimen__mark i,
.specimen__mark b { position: absolute; display: block; }
.specimen__mark i {
  top: 6%;
  width: 13.5%;
  height: 88%;
  background: var(--ink);
}
.specimen__mark i:nth-child(1) { left: 21%; }
.specimen__mark i:nth-child(2) { left: 65.5%; }
.specimen__mark b {
  left: 0;
  width: 100%;
  height: 8%;
  background: var(--ox);
}
.specimen__mark b:nth-of-type(1) { top: 34%; }
.specimen__mark b:nth-of-type(2) { top: 53%; }

.specimen__word { display: grid; gap: 0.35rem; min-width: 0; }
.specimen__word span {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.5rem, 4.4vw, 2.5rem);
  line-height: 0.94;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  color: var(--ink);
}
.specimen__word em {
  font-style: normal;
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.62em;
  text-transform: uppercase;
  color: var(--ox);
}

/* panels */
.specimen__block {
  padding: var(--s4);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 720px) {
  .specimen__block:nth-of-type(2) { border-right: 1px solid var(--rule); }
}
.specimen__block:last-child { border-bottom: 0; }
.specimen__block h5 {
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-45);
  margin-bottom: var(--s3);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ink);
}

/* palette */
/* Four swatches: a 2×2 or a single row of four — never 3 + 1. */
.swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s2);
}
@media (min-width: 480px) {
  .swatches { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.swatch { display: grid; gap: 0.3rem; min-width: 0; }
.swatch i {
  display: block;
  height: 54px;
  background: var(--sw);
  border: 1px solid var(--rule);
}
.swatch b {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.swatch em {
  font-style: normal;
  font: 500 0.6rem/1 var(--mono);
  letter-spacing: 0.1em;
  color: var(--ink-45);
}

/* rule-weight specimen */
.ruleset { display: grid; gap: 0.7rem; }
.ruleset li {
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  gap: var(--s2);
  align-items: center;
}
.ruleset i {
  display: block;
  height: var(--rw);
  background: var(--rc);
}
.ruleset em {
  font-style: normal;
  font: 500 0.6rem/1.4 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-45);
}

/* type scale rows */
.typerow {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.15rem;
  padding-block: 0.62rem;
  border-bottom: 1px solid var(--rule-soft);
  align-items: baseline;
}
.typerow:last-child { border-bottom: 0; }
@media (min-width: 480px) {
  .typerow { grid-template-columns: 8.5rem minmax(0, 1fr); gap: var(--s2); }
}
.typerow__spec {
  font: 500 0.6rem/1.4 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ox);
}
/* Each row must literally render its own spec — the numbers on this sheet are
   the one place on the site that has to be true. Weight/tracking/leading are
   set per row below, not inherited. */
.typerow__set {
  font-family: var(--display);
  color: var(--ink);
  min-width: 0;
  overflow-wrap: anywhere;
}
.typerow__set--display { font-weight: 900; font-size: 2.1rem; letter-spacing: -0.032em; line-height: 1.04; }
.typerow__set--subhead { font-weight: 700; font-size: 1.35rem; letter-spacing: -0.014em; line-height: 1.08; }
.typerow__set--body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
}
.typerow__set--figures {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.94rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

/* disclosure legend */
.specimen__legend {
  font-size: 0.76rem;
  line-height: 1.62;
  color: var(--ink-65);
  max-width: 82ch;
  border-left: 2px solid var(--ox);
  padding-left: var(--s2);
}
.specimen__note {
  margin-top: var(--s2);
  font: 500 var(--fs-micro)/1.7 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-45);
}

/* --- 25. Studio map (about) ---------------------------------------------- */

.studiomap {
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-plate);
  overflow: hidden;
}
.studiomap__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s2);
  background: var(--ink);
  color: rgba(241, 236, 225, 0.72);
  padding: 0.55rem 0.9rem;
  font: 500 var(--fs-micro)/1.4 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.studiomap__head span:first-child { color: var(--bone); }
.studiomap__body { padding: var(--s4) var(--s4) var(--s3); }

.tiers {
  position: relative;
  display: grid;
  gap: var(--s3);
}
.tier {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--s2);
  align-items: start;
  padding-block: var(--s3);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 560px) {
  .tier { grid-template-columns: 7.5rem minmax(0, 1fr); gap: var(--s3); }
}
.tier:last-child { border-bottom: 0; }
.tier__key {
  font: 500 var(--fs-micro)/1.6 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ox);
  border-top: 2px solid var(--ox);
  padding-top: 0.4rem;
  justify-self: start;
  min-width: 7.5rem;
}
.tier__seats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.seat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--ink);
  background: var(--bone);
  padding: 0.42rem 0.6rem;
  font: 500 var(--fs-micro)/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink);
}
.seat::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--ox);
  flex: none;
}
.seat--hollow { background: transparent; border-style: dashed; color: var(--ink-45); }
.seat--hollow::before { background: var(--ink-30); }
.tier__note { font-size: var(--fs-sm); margin-top: 0.35rem; }

.headcount {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  border-top: 1px solid var(--ink);
  margin-top: var(--s3);
}
.headcount div {
  padding: var(--s3) var(--s2) 0;
  border-right: 1px solid var(--rule);
}
.headcount div:last-child { border-right: 0; }
.headcount b {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.headcount span {
  display: block;
  margin-top: 0.32rem;
  font: 500 var(--fs-micro)/1.5 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-45);
}

/* --- 26. Timeline (about) ------------------------------------------------ */

.timeline { border-top: 3px solid var(--ink); }
.timeline li {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.3rem;
  padding-block: var(--s4);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 820px) {
  .timeline li {
    grid-template-columns: 6rem minmax(0, 0.8fr) minmax(0, 1.4fr);
    gap: var(--s4);
    align-items: baseline;
  }
}
.timeline .yr {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--ox);
  font-variant-numeric: tabular-nums;
}
.timeline h3 { font-family: var(--display); font-weight: 700; font-size: 1.36rem; line-height: 1.08; }
.timeline p { font-size: var(--fs-sm); max-width: 62ch; }

/* --- 27. Values (about) -------------------------------------------------- */

.values { display: grid; gap: 0; border-top: 1px solid var(--ink); }
@media (min-width: 900px) {
  .values { grid-template-columns: repeat(3, minmax(0, 1fr)); border-left: 1px solid var(--rule); }
}
.value {
  border-bottom: 1px solid var(--rule);
  padding: var(--s4) 0;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}
@media (min-width: 900px) {
  .value { border-right: 1px solid var(--rule); padding: var(--s4) var(--s3); }
}
.value .value__no {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.35rem;
  line-height: 0.9;
  color: var(--bone-deep);
  -webkit-text-stroke: 1px var(--ink-30);
}
.value h3 { font-family: var(--display); font-weight: 700; font-size: 1.3rem; line-height: 1.06; }
.value p { font-size: var(--fs-sm); }
