/* ============================================================
   THE WORKSHOP LEDGER — Harness the Spark (final synthesis)
   Palette:  ink #241430 · paper #F3EFF6 · magenta #E42D6B
             violet #7B3FA0 (no gold/yellow — removed per client)
   Accent discipline (client redlines): NO lightning-bolt glyph,
   NO yellow/gold anywhere (2026-07-07). The three signature
   hair-thin 2px lines remain, now in magenta:
     1. hero "scratch of light" under the headline
     2. the single section-divider rule after Entry 000
     3. ledger-row hover/focus-within edge line
   Brand marks: real artwork only — images/logo.png (nav lockup),
   images/Square_white@2x.png (footer; file is black-on-alpha so
   it is rendered white via CSS filter for the dark footer).
   ============================================================ */

:root {
  --ink: #241430;
  --paper: #F3EFF6;
  --magenta: #E42D6B;
  --magenta-deep: #C11B57; /* AA-compliant (5.2:1 on paper) for small text; #E42D6B stays for large type + dark backgrounds */
  --violet: #7B3FA0;
  --spark: #E42D6B; /* client redline 2026-07-07: no yellow anywhere — accent lines now magenta */
  --hairline: rgba(36, 20, 48, 0.18);
  --hairline-strong: rgba(36, 20, 48, 0.55);
  --ink-soft: rgba(36, 20, 48, 0.72);
  --paper-soft: rgba(243, 239, 246, 0.78);
  --paper-faint: rgba(243, 239, 246, 0.62);
  --display: "Poppins", "Arial", sans-serif;
  --body: "DM Sans", "Arial", sans-serif;
  --mono: "DM Sans", "Arial", sans-serif;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: var(--ink); }

::selection { background: var(--magenta); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
}
.on-ink :focus-visible,
.on-ink:focus-visible {
  outline-color: var(--paper);
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  transition: top 120ms ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- mono utility voice ---------- */
.stamp {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
}

/* ================= NAV ================= */

.site-nav {
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  flex-wrap: wrap;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.nav-logo-link { display: inline-flex; text-decoration: none; }
.nav-logo {
  height: 88px;
  width: auto;
}
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  list-style: none;
}
.site-nav ul a {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
}
.site-nav ul a:hover { color: var(--magenta-deep); border-bottom-color: var(--magenta-deep); }

/* ================= HERO ================= */

.hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3.5rem, 9vw, 7.5rem) 0 clamp(3.5rem, 8vw, 6.5rem);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 6.25rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 13ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--magenta);
}

/* gold appearance no. 1 — the scratch of light (2px, draws once) */
.scratch {
  width: clamp(72px, 9vw, 120px);
  height: 2px;
  background: var(--spark);
  transform: rotate(-6deg);
  transform-origin: left center;
  margin: 2.1rem 0 2.4rem 0.2rem;
  animation: scratchdraw 600ms cubic-bezier(0.3, 0, 0.2, 1) 250ms backwards;
}
@keyframes scratchdraw {
  from { transform: rotate(-6deg) scaleX(0); }
  to   { transform: rotate(-6deg) scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .scratch { animation: none; }
}

.hero-lower {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 2.5rem clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.hero-sub {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.55;
  max-width: 34ch;
  color: rgba(243, 239, 246, 0.85);
}
.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-actions a {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-plate {
  background: var(--paper);
  color: var(--ink);
  padding: 0.95rem 1.6rem;
  border: 1px solid var(--paper);
}
.btn-plate:hover { background: var(--violet); border-color: var(--violet); color: #fff; }
.link-quiet {
  color: var(--paper-soft);
  border-bottom: 1px solid rgba(243, 239, 246, 0.35);
  padding-bottom: 0.2rem;
}
.link-quiet:hover { color: var(--paper); border-bottom-color: var(--paper); }


/* ================= SECTION HEADINGS ================= */

.section-head {
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(1.75rem, 4vw, 3rem);
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.008em;
  max-width: 22ch;
}
/* the ledger rule — a short magenta stroke above every heading,
   replacing the two-tone headline tic the judges flagged */
.section-head h2::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--magenta);
  margin-bottom: 1.1rem;
}
.section-head p.intro {
  margin-top: 1.25rem;
  max-width: 56ch;
  color: var(--ink-soft);
}

/* ================= STORY ================= */

.story { border-bottom: 1px solid var(--hairline); }
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}
.story-copy p {
  margin-bottom: 1.35rem;
  max-width: 58ch;
}
.story-copy p strong { font-weight: 600; }
.story-copy .kicker {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  line-height: 1.5;
}
.story-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--magenta-deep);
  border-bottom: 1px solid var(--magenta-deep);
  padding-bottom: 0.25rem;
}
.story-cta:hover { color: var(--ink); border-bottom-color: var(--ink); }
.story-figure { margin: 0; }
.story-figure img {
  width: 100%;
  height: auto;
  border: 1px solid var(--hairline-strong);
}
.story-figure figcaption {
  margin-top: 0.8rem;
  color: var(--ink-soft);
}

/* gold appearance no. 2 — the single hair-thin divider rule */
.gold-rule {
  width: 64px;
  height: 2px;
  background: var(--spark);
  margin: clamp(2.5rem, 6vw, 4.5rem) auto 0;
}

/* ================= BUILD LEDGER ================= */

.ledger-list {
  list-style: none;
  border-top: 1px solid var(--hairline-strong);
  margin-bottom: clamp(3.5rem, 8vw, 6.5rem);
}
.ledger-row {
  position: relative;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr) minmax(0, 300px);
  gap: 1.5rem clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2rem, 5vw, 3.25rem) 0;
  align-items: start;
}
/* gold appearance no. 3 — hover/focus edge line (2px, inset-safe) */
.ledger-row::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: clamp(2.2rem, 5vw, 3.45rem);
  height: 2.6rem;
  width: 2px;
  background: var(--spark);
  opacity: 0;
  transition: opacity 160ms ease;
}
.ledger-row:hover::before,
.ledger-row:focus-within::before { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .ledger-row::before { transition: none; }
}
.ledger-meta .entry-no {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 0.6rem;
}
.ledger-meta .stamp { display: block; }
.stamp-live {
  display: inline-block;
  background: var(--violet);
  color: #fff;
  padding: 0.3rem 0.55rem;
}
.stamp-beta { color: var(--violet); }
.stamp-dev { color: var(--ink-soft); }
.ledger-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
}
.ledger-body h3 a { text-decoration: none; }
.ledger-body h3 a:hover { color: var(--magenta); }
.ledger-body p { max-width: 52ch; color: var(--ink-soft); }
.ledger-body .sub-stamp { margin-top: 0.9rem; color: var(--violet); }
.ledger-body .sub-stamp a { color: inherit; }
.store-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}
.store-row img { height: 42px; width: auto; }
.ledger-art { justify-self: end; align-self: center; margin: 0; width: 100%; max-width: 300px; }
.ledger-art img { width: 100%; height: auto; }
.ledger-art.framed img { border: 1px solid var(--hairline-strong); }

/* Dave: mascot stands beside his app */
.ledger-art.dave-duo {
  display: flex;
  align-items: flex-end;
  gap: 0.9rem;
}
.dave-duo .mascot { width: 38%; flex-shrink: 0; }
.dave-duo .phone { width: 56%; border: 1px solid var(--hairline-strong); }

/* Barney: opaque-black artwork presented as a deliberate dark tile */
.ledger-art.dark-tile {
  background: #000;
  border: 1px solid var(--hairline-strong);
  padding: 0.6rem;
  max-width: 240px;
}

/* honest art-plates for entries with nothing to show (grafted) */
.art-plate {
  justify-self: end;
  align-self: center;
  width: 100%;
  max-width: 300px;
  min-height: 9.5rem;
  border: 1px dashed var(--hairline-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1.75rem;
}
.art-plate .stamp { color: var(--ink-soft); }
.art-plate a { color: inherit; }

/* ================= SPECIMEN SHELF ================= */

.shelf { border-top: 1px solid var(--hairline-strong); }
.shelf .section-head p.shelf-intro {
  margin-top: 1.25rem;
  max-width: 56ch;
  color: var(--ink-soft);
}
.shelf-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}
.specimen { margin: 0; }
.specimen button.shot {
  display: block;
  width: 100%;
  border: 1px solid var(--hairline-strong);
  border-bottom: 3px solid var(--ink); /* each specimen stands on its shelf */
  padding: 0;
  background: rgba(36, 20, 48, 0.05);
  cursor: zoom-in;
}
.specimen button.shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 1206 / 2622;
  object-fit: cover;
}
.specimen button.shot.ratio-alt img { aspect-ratio: 1320 / 2868; }
.specimen figcaption { margin-top: 0.85rem; }
.specimen .spec-no {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.specimen .spec-name {
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  margin: 0.3rem 0 0.35rem;
}
.specimen .stamp { color: var(--violet); }
.specimen .spec-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

/* ================= FIELD REPORTS ================= */

.testimony { border-top: 1px solid var(--hairline-strong); }
.testimony-inner { padding-bottom: clamp(3.5rem, 8vw, 6.5rem); }
.pull-quote {
  margin: 0 0 clamp(2.75rem, 6vw, 4.5rem);
  max-width: 52ch;
}
.pull-quote:last-child { margin-bottom: 0; }
.pull-quote.offset { margin-left: auto; }
.pull-quote .report-no {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}
.pull-quote blockquote p {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.5;
  font-style: italic;
  font-weight: 400;
}
.pull-quote blockquote p::before { content: "\201C"; color: var(--magenta); }
.pull-quote blockquote p::after { content: "\201D"; color: var(--magenta); }
.pull-quote figcaption { margin-top: 1.1rem; }
.pull-quote figcaption .stamp { color: var(--ink-soft); }

/* ================= COACHING ================= */

.coaching {
  background: var(--ink);
  color: var(--paper);
}
.coaching .wrap {
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}
.coaching h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.008em;
  max-width: 20ch;
}
.coaching h2 em { font-style: normal; color: var(--magenta); }
.coaching p {
  margin-top: 1.5rem;
  max-width: 54ch;
  color: rgba(243, 239, 246, 0.82);
}
.coaching .btn-plate { display: inline-block; margin-top: 2.25rem; }

/* ================= TOOLKIT ================= */

.toolkit { border-bottom: 1px solid var(--hairline); }
.toolkit-grid {
  display: grid;
  grid-template-columns: minmax(0, 110px) minmax(0, 1fr) auto;
  gap: 1.5rem clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.toolkit-thumb { display: block; }
.toolkit-thumb img { border: 1px solid var(--hairline-strong); width: 100%; height: auto; }
.toolkit-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.006em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.toolkit-copy p { max-width: 52ch; color: var(--ink-soft); font-size: 0.975rem; }
.btn-download {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.95rem 1.5rem;
  white-space: nowrap;
}
.btn-download:hover { background: var(--violet); border-color: var(--violet); }

/* ================= CONTACT ================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}
.contact-info h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.008em;
  margin-bottom: 1.25rem;
}
.contact-info h2::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--magenta);
  margin-bottom: 1.1rem;
}
.contact-info > p { max-width: 42ch; color: var(--ink-soft); margin-bottom: 2.25rem; }
.contact-lines { list-style: none; border-top: 1px solid var(--hairline); }
.contact-lines li {
  border-bottom: 1px solid var(--hairline);
  padding: 0.9rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
}
.contact-lines .stamp { color: var(--ink-soft); width: 6.5rem; flex-shrink: 0; }
.contact-lines a {
  font-family: var(--mono);
  font-size: 0.8125rem;
  text-decoration: none;
  border-bottom: 1px solid var(--hairline-strong);
  padding-bottom: 0.15rem;
  overflow-wrap: anywhere;
}
.contact-lines a:hover { color: var(--magenta-deep); border-bottom-color: var(--magenta-deep); }

.contact-form > .stamp { color: var(--violet); margin-bottom: 1.75rem; }
.contact-form label {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}
.contact-form .field { margin-bottom: 1.75rem; }
.contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-family: var(--mono);
  font-size: 0.9375rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  border-radius: 0;
  padding: 0.6rem 0;
}
.contact-form select { appearance: none; -webkit-appearance: none; }
.contact-form textarea { min-height: 8.5rem; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--magenta);
  box-shadow: 0 1px 0 0 var(--magenta);
}
.contact-form ::placeholder { color: rgba(36, 20, 48, 0.45); }
.btn-submit {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 1rem 1.75rem;
  cursor: pointer;
}
.btn-submit:hover { background: var(--violet); border-color: var(--violet); }
.btn-submit[disabled] { opacity: 0.6; cursor: wait; }
.form-status {
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.hidden-check { display: none; }

/* ================= FOOTER ================= */

.site-footer {
  background: var(--ink);
  color: var(--paper);
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}
.footer-brand { display: flex; align-items: center; gap: 1.25rem; }
/* Square_white@2x.png ships as black artwork on transparency —
   filtered to pure white here so a corrected asset swap still works */
.footer-logo {
  width: 76px;
  height: auto;
  filter: brightness(0) invert(1);
}
.site-footer p {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--paper-soft);
}
.site-footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.site-footer nav a {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--paper-soft);
}
.site-footer nav a:hover { color: var(--paper); }
.site-footer a:focus-visible { outline-color: var(--paper); }

/* ================= LIGHTBOX ================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(36, 20, 48, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.5rem 1.5rem;
  z-index: 60;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-height: 88vh;
  max-width: 90vw;
  width: auto;
  height: auto;
  border: 1px solid rgba(243, 239, 246, 0.3);
  cursor: zoom-out;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--paper);
  padding: 0.7rem 1.1rem;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--violet); border-color: var(--violet); color: #fff; }
.lightbox-close:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }

/* ================= RESPONSIVE ================= */

@media (max-width: 980px) {
  .hero-lower { grid-template-columns: 1fr; }
  .hero-index { max-width: 420px; }
  .shelf-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ledger-row { grid-template-columns: 8.5rem minmax(0, 1fr); }
  .ledger-art, .art-plate { grid-column: 2; justify-self: start; }
}

@media (max-width: 760px) {
  .nav-logo { height: 54px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-figure { max-width: 380px; }
  .shelf-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .toolkit-grid { grid-template-columns: minmax(0, 90px) minmax(0, 1fr); }
  .btn-download { grid-column: 1 / -1; justify-self: start; }
  .pull-quote.offset { margin-left: 0; }
}

@media (max-width: 560px) {
  .site-nav ul { gap: 0.3rem 1.05rem; }
  .site-nav ul a { font-size: 0.65rem; }
  .ledger-row { grid-template-columns: 1fr; gap: 1rem; }
  .ledger-art, .art-plate { grid-column: 1; }
  .art-plate { min-height: 0; }
  .ledger-meta { display: flex; gap: 1rem 1.25rem; align-items: baseline; flex-wrap: wrap; }
  .ledger-meta .entry-no { margin-bottom: 0; }
  .contact-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form .field-row .field { margin-bottom: 1.75rem; }
  .contact-lines li { flex-direction: column; gap: 0.35rem; }
}

@media (max-width: 420px) {
  .shelf-grid { grid-template-columns: 1fr; }
  .specimen { max-width: 280px; }
}

/* ---------- phone fan (№ 005 bespoke tools art) ---------- */
.phone-fan { display: block; text-decoration: none; }
.phone-fan .fan { display: flex; align-items: flex-end; justify-content: center; }
.phone-fan picture {
  display: block;
  width: 38%;
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 160ms ease;
}
.phone-fan img { border-radius: 11px; }
.phone-fan picture:nth-child(1) { transform: rotate(-5deg) translateY(6px); z-index: 1; }
.phone-fan picture:nth-child(2) { transform: translateY(-6px); z-index: 2; margin: 0 -8%; }
.phone-fan picture:nth-child(3) { transform: rotate(5deg) translateY(6px); z-index: 1; }
.phone-fan img { width: 100%; height: auto; display: block; }
.phone-fan:hover picture:nth-child(2),
.phone-fan:focus-visible picture:nth-child(2) { transform: translateY(-12px); }
.phone-fan .fan-caption {
  display: block;
  text-align: center;
  margin-top: 1.2rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.phone-fan:hover .fan-caption,
.phone-fan:focus-visible .fan-caption { color: var(--magenta-deep); }
@media (prefers-reduced-motion: reduce) {
  .phone-fan picture { transition: none; }
}
