/* ==========================================================================
   webartmedia — core stylesheet
   Direction: "reattribution". Art sits on neutral lightbox panels; every
   image carries a credit slip. One accent: link blue.
   ========================================================================== */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { min-height: 100%; }
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

/* ---------- tokens ---------- */
:root {
  /* ground = cool paper, not cream. frame = lightbox gray. */
  --ground:      #E8E8EB;
  --ground-2:    #DEDEE3;
  --card:        #F4F4F6;
  --frame:       #232327;   /* the lightbox panel behind artwork */
  --frame-2:     #2C2C32;
  --ink:         #16161A;
  --ink-2:       #55555F;
  --ink-3:       #83838F;
  --edge:        #CBCBD3;
  --edge-2:      #B6B6C0;
  --signal:      #2B34FF;   /* link blue — the only accent */
  --signal-soft: #E0E1FF;
  --on-frame:    #EDEDF1;
  --on-frame-2:  #9A9AA6;

  --r:    3px;
  --r-lg: 5px;

  --shell: 1320px;
  --gutter: clamp(18px, 4vw, 48px);

  --ff-display: "Bricolage Grotesque", "Archivo", Helvetica, Arial, sans-serif;
  --ff-body:    "Archivo", Helvetica, Arial, sans-serif;
  --ff-serif:   "Source Serif 4", Georgia, serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --ease: cubic-bezier(.2, .7, .3, 1);
}

:root[data-theme="dark"],
html.dark {
  --ground:      #0E0E11;
  --ground-2:    #15151A;
  --card:        #17171C;
  --frame:       #1B1B20;
  --frame-2:     #23232A;
  --ink:         #ECECF0;
  --ink-2:       #A0A0AD;
  --ink-3:       #71717E;
  --edge:        #26262E;
  --edge-2:      #33333D;
  --signal:      #7C82FF;
  --signal-soft: #1D1E3D;
  --on-frame:    #ECECF0;
  --on-frame-2:  #8A8A97;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground:      #0E0E11;
    --ground-2:    #15151A;
    --card:        #17171C;
    --frame:       #1B1B20;
    --frame-2:     #23232A;
    --ink:         #ECECF0;
    --ink-2:       #A0A0AD;
    --ink-3:       #71717E;
    --edge:        #26262E;
    --edge-2:      #33333D;
    --signal:      #7C82FF;
    --signal-soft: #1D1E3D;
    --on-frame:    #ECECF0;
    --on-frame-2:  #8A8A97;
  }
}

/* ---------- base ---------- */
body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
}

::selection { background: var(--signal); color: #fff; }

:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: 2px;
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--signal);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  font-family: var(--ff-mono);
  font-size: 12px;
}
.skip:focus { left: 12px; }

/* ---------- type primitives ---------- */
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

.h-xl, .h-lg, .h-md, .h-sm {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.028em;
  text-wrap: balance;
}
.h-xl { font-size: clamp(38px, 6.4vw, 82px); }
.h-lg { font-size: clamp(30px, 4vw, 50px); }
.h-md { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.02; }
.h-sm { font-size: clamp(18px, 1.7vw, 23px); line-height: 1.1; letter-spacing: -.02em; }

.dek {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
}

.lede-link {
  color: var(--signal);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--signal) 35%, transparent);
}
.lede-link:hover { border-bottom-color: var(--signal); }

/* ---------- masthead ---------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--edge);
}
.masthead-in {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 62px;
}

.wordmark {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.045em;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  white-space: nowrap;
}
.wordmark i {
  width: 7px;
  height: 7px;
  background: var(--signal);
  border-radius: 50%;
  display: inline-block;
  flex: none;
  translate: 0 -1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.nav a {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--signal);
  scale: 0 1;
  transform-origin: left;
  transition: scale .28s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a:hover::after, .nav a[aria-current="page"]::after { scale: 1 1; }

.icon-btn {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: transparent;
  border: 1px solid var(--edge);
  border-radius: var(--r);
  cursor: pointer;
  color: var(--ink-2);
  transition: border-color .2s, color .2s;
}
.icon-btn:hover { border-color: var(--edge-2); color: var(--ink); }
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav {
    position: fixed;
    inset: 62px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ground);
    border-bottom: 1px solid var(--edge);
    padding: 8px var(--gutter) 20px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--edge); font-size: 13px; }
  .nav a::after { display: none; }
  .nav-toggle { display: grid; margin-left: 8px; }
  .theme-toggle { margin-left: auto; }
}
@media (min-width: 881px) { .theme-toggle { margin-left: 4px; } }

/* ==========================================================================
   THE CREDIT SLIP — the site's signature
   ========================================================================== */
.frame {
  background: var(--frame);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s var(--ease), scale .7s var(--ease);
}
.frame img.loaded { opacity: 1; }
/* generated placeholder — sits under the corner marks and any badge */
.frame > svg.ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
.frame::after {
  /* faint corner marks — viewer chrome, not decoration */
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  background:
    linear-gradient(var(--on-frame-2), var(--on-frame-2)) 0 0 / 9px 1px no-repeat,
    linear-gradient(var(--on-frame-2), var(--on-frame-2)) 0 0 / 1px 9px no-repeat,
    linear-gradient(var(--on-frame-2), var(--on-frame-2)) 100% 100% / 9px 1px no-repeat,
    linear-gradient(var(--on-frame-2), var(--on-frame-2)) 100% 100% / 1px 9px no-repeat;
  opacity: .34;
  z-index: 2;
}

.slip {
  display: block;
  padding-top: 12px;
}
.slip-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.slip-handle {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--signal);
  text-decoration: none;
}
.slip-handle:hover { text-decoration: underline; text-underline-offset: 3px; }
.slip-title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.slip-title em { font-style: italic; }

.slip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 14px;
  margin-top: 7px;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .04em;
  color: var(--ink-3);
}
.slip-meta div { display: flex; gap: 5px; }
.slip-meta dt { text-transform: uppercase; opacity: .62; }
.slip-meta dd { color: var(--ink-2); }
/* a remix credits the format's author too */
.slip-meta dd.lineage { color: var(--signal); }
/* the photograph standing in for the work has an author as well */
.slip-meta dd.photocred { color: var(--ink-3); }

/* ---------- image credits table ---------- */
.credit-table-wrap { overflow-x: auto; }
.credit-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14px;
}
.credit-table th {
  text-align: left;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  padding: 0 16px 10px 0;
  border-bottom: 1px solid var(--edge-2);
}
.credit-table td { padding: 13px 16px 13px 0; border-bottom: 1px solid var(--edge); vertical-align: top; }
.credit-table .c-work { font-weight: 600; color: var(--ink); }
.credit-table .c-shot { color: var(--ink-2); }
.credit-table .c-by { color: var(--ink-2); }
.credit-table .c-lic { font-family: var(--ff-mono); font-size: 11.5px; color: var(--ink-3); white-space: nowrap; }
.credit-table a { color: var(--signal); text-decoration: none; }
.credit-table a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* reach bar — how far it travelled */
.reach {
  margin-top: 9px;
  height: 2px;
  background: var(--edge);
  border-radius: 2px;
  overflow: hidden;
}
.reach i {
  display: block;
  height: 100%;
  width: calc(var(--p, .5) * 100%);
  background: var(--signal);
  transform-origin: left;
  scale: 0 1;
  animation: reachIn .9s var(--ease) forwards;
}
@keyframes reachIn { to { scale: 1 1; } }

/* ==========================================================================
   HERO — the thesis: an image, then its name arrives
   ========================================================================== */
.hero { padding: clamp(30px, 5vw, 62px) 0 clamp(34px, 5vw, 58px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
  gap: clamp(22px, 3.4vw, 52px);
  align-items: end;
}
.hero-frame {
  aspect-ratio: 4 / 3;
  animation: riseIn .8s var(--ease) both;
}
.hero-slip {
  padding-top: 16px;
  animation: slipIn .7s var(--ease) .3s both;
}
.hero-slip .slip-title { font-size: clamp(19px, 2vw, 25px); }
.hero-slip .slip-handle { font-size: 13px; }

.hero-copy { padding-bottom: 4px; }
.hero-copy .eyebrow { display: block; margin-bottom: 14px; }
.hero-copy .h-xl { margin-bottom: 16px; }
.hero-copy .dek { margin-bottom: 20px; }

.hero-why {
  border-top: 1px solid var(--edge);
  padding-top: 14px;
  display: grid;
  gap: 6px;
}
.hero-why dt {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-why dd { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

@keyframes riseIn  { from { opacity: 0; translate: 0 18px; } to { opacity: 1; translate: 0; } }
@keyframes slipIn  { from { opacity: 0; translate: -14px 0; } to { opacity: 1; translate: 0; } }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .hero-copy { order: -1; }
  .hero-frame { aspect-ratio: 3 / 2; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 18px;
  border-radius: var(--r);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ground);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, translate .2s var(--ease);
}
.btn:hover { background: var(--signal); border-color: var(--signal); color: #fff; translate: 0 -1px; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--edge-2); }
.btn-ghost:hover { background: transparent; color: var(--signal); border-color: var(--signal); }
.btn span.arw { transition: translate .2s var(--ease); }
.btn:hover span.arw { translate: 3px 0; }

/* ---------- section furniture ---------- */
.section { padding: clamp(40px, 5.5vw, 74px) 0; border-top: 1px solid var(--edge); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.section-head p.dek { font-size: 16px; margin-top: 8px; }
.section-head .eyebrow { display: block; margin-bottom: 10px; }
.section-more {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--signal);
  white-space: nowrap;
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.section-more:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ==========================================================================
   THE COLLECTION — gallery wall
   ========================================================================== */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(20px, 3vw, 30px);
  align-items: center;
}
.filters .filter-label {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-right: 4px;
}
.chip {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .05em;
  padding: 7px 12px;
  border: 1px solid var(--edge);
  background: transparent;
  border-radius: 100px;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.chip:hover { border-color: var(--edge-2); color: var(--ink); }
.chip[aria-pressed="true"] {
  background: var(--signal);
  border-color: var(--signal);
  color: #fff;
}

.wall { columns: 3; column-gap: clamp(16px, 2vw, 28px); }
@media (max-width: 1000px) { .wall { columns: 2; } }
@media (max-width: 620px)  { .wall { columns: 1; } }

.work {
  break-inside: avoid;
  margin: 0 0 clamp(24px, 3vw, 38px);
  display: block;
  text-decoration: none;
  color: inherit;
}
.work .frame { transition: scale .4s var(--ease); }
.work:hover .frame img { scale: 1.025; }
.work .slip-title { transition: color .2s; }
.work:hover .slip-title { color: var(--signal); }

.work-badge {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 3;
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 2px;
  background: var(--signal);
  color: #fff;
}

.wall-empty {
  font-family: var(--ff-mono);
  font-size: 12.5px;
  color: var(--ink-3);
  padding: 40px 0;
  columns: 1;
}

/* ==========================================================================
   INTERVIEWS
   ========================================================================== */
.iv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(20px, 2.6vw, 34px);
}
.iv-card { text-decoration: none; color: inherit; display: block; }
.iv-card .frame { aspect-ratio: 3 / 4; }
.iv-card:hover .frame img { scale: 1.03; }
.iv-quote {
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.34;
  margin-top: 14px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.iv-card:hover .iv-quote { color: var(--signal); }
.iv-by {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .06em;
  color: var(--ink-3);
  margin-top: 9px;
}
.iv-by b { color: var(--ink-2); font-weight: 500; }

/* featured interview — wide */
.iv-lead {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  text-decoration: none;
  color: inherit;
  margin-bottom: clamp(28px, 3.4vw, 44px);
  padding-bottom: clamp(28px, 3.4vw, 44px);
  border-bottom: 1px solid var(--edge);
}
.iv-lead .frame { aspect-ratio: 1 / 1; }
.iv-lead:hover .frame img { scale: 1.03; }
.iv-lead .h-lg { margin: 12px 0 14px; }
.iv-lead:hover .h-lg { color: var(--signal); }
@media (max-width: 820px) { .iv-lead { grid-template-columns: 1fr; } }

/* ==========================================================================
   TALK — what people are saying
   ========================================================================== */
.talk {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 14px;
}
.talk-card {
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.talk-card p {
  font-family: var(--ff-serif);
  font-size: 15.5px;
  line-height: 1.45;
}
.talk-card footer {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .05em;
  color: var(--ink-3);
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.talk-card footer b { color: var(--signal); font-weight: 500; }

/* ==========================================================================
   STORIES / media rail
   ========================================================================== */
.story-list { display: grid; gap: 0; }
.story-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  gap: clamp(16px, 2.4vw, 30px);
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--edge);
  text-decoration: none;
  color: inherit;
}
.story-row:first-child { border-top: 1px solid var(--edge); }
.story-row .frame { aspect-ratio: 4 / 3; }
.story-row:hover .frame img { scale: 1.05; }
.story-row .h-sm { transition: color .2s; }
.story-row:hover .h-sm { color: var(--signal); }
.story-kicker {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 7px;
  display: block;
}
.story-row p {
  color: var(--ink-2);
  font-size: 14.5px;
  margin-top: 8px;
  max-width: 62ch;
}
.story-date {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--ink-3);
  white-space: nowrap;
}
@media (max-width: 720px) {
  .story-row { grid-template-columns: 92px minmax(0, 1fr); }
  .story-date { display: none; }
}

/* ==========================================================================
   ARTICLE (interviews + stories)
   ========================================================================== */
.article-head {
  padding: clamp(28px, 4.4vw, 58px) 0 clamp(22px, 3vw, 36px);
  max-width: 46rem;
}
.article-head .eyebrow { display: block; margin-bottom: 16px; }
.article-head .h-xl { margin-bottom: 18px; }
.article-head .dek { font-size: clamp(18px, 1.7vw, 21px); }
.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--edge);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--ink-3);
}
.byline b { color: var(--ink-2); font-weight: 500; }

.article-lead { margin-bottom: clamp(26px, 3.4vw, 44px); }
.article-lead .frame { aspect-ratio: 16 / 9; }
.article-lead .slip { max-width: 46rem; }

.prose { max-width: 40rem; font-family: var(--ff-serif); font-size: 18.5px; line-height: 1.66; }
.prose > * + * { margin-top: 1.15em; }
.prose p { color: var(--ink); }
.prose h2 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-top: 1.9em;
  font-weight: 700;
}
.prose a { color: var(--signal); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose ul { padding-left: 1.1em; }
.prose li + li { margin-top: .4em; }

/* Q&A — the interview's own grammar */
.qa { max-width: 40rem; }
.qa > * + * { margin-top: 26px; }
.q {
  font-family: var(--ff-mono);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
  letter-spacing: -.005em;
}
.q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--signal);
  font-weight: 700;
  font-size: 12px;
}
.a {
  font-family: var(--ff-serif);
  font-size: 18.5px;
  line-height: 1.66;
  padding-left: 22px;
  margin-top: 12px;
}
.a + .a { margin-top: 14px; }

.pull {
  max-width: 46rem;
  margin: clamp(30px, 4vw, 48px) 0;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(23px, 2.8vw, 36px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
  border-left: 2px solid var(--signal);
  padding-left: clamp(16px, 2vw, 26px);
  text-wrap: balance;
}

figure.inline-fig { max-width: 46rem; margin: clamp(28px, 3.4vw, 42px) 0; }
figure.inline-fig .frame { aspect-ratio: 3 / 2; }

/* influences — the chain of what an artist was looking at */
.influences {
  max-width: 46rem;
  margin: clamp(30px, 4vw, 46px) 0;
  padding: 20px 20px 18px;
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
}
.influences .eyebrow { display: block; margin-bottom: 14px; }
.influences ol {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 11px;
}
.influences li {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--ink-2);
}
.influences li .frame { aspect-ratio: 1 / 1; border-radius: var(--r); }
.influences li b { color: var(--ink); font-weight: 600; display: block; font-size: 14.5px; }

/* the repost chain — a real sequence, so it gets a real sequence's furniture */
.chain {
  max-width: 46rem;
  margin: clamp(28px, 3.6vw, 46px) 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--edge);
}
.chain li {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) auto;
  gap: 6px 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--edge);
  align-items: baseline;
}
.chain .t {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.chain .who { font-family: var(--ff-body); font-size: 14.5px; color: var(--ink-2); }
.chain .who b { color: var(--ink); font-weight: 600; }
.chain .n {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-3);
  white-space: nowrap;
}
.chain li.drop {
  background: var(--signal-soft);
  /* let the tint breathe past the text column without shifting alignment */
  box-shadow: -14px 0 0 var(--signal-soft), 14px 0 0 var(--signal-soft);
}
.chain li.drop .who b { color: var(--signal); }
.chain li.drop .n { color: var(--signal); }
.chain .flag {
  grid-column: 2 / -1;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--signal);
}
@media (max-width: 620px) {
  .chain li { grid-template-columns: 66px minmax(0, 1fr); }
  .chain .n { grid-column: 2; }
}

/* ---------- newsletter ---------- */
.sub {
  background: var(--frame);
  color: var(--on-frame);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
}
.sub .eyebrow { color: var(--on-frame-2); display: block; margin-bottom: 12px; }
.sub h2 { font-family: var(--ff-display); font-size: clamp(24px, 2.8vw, 36px); line-height: 1.02; letter-spacing: -.03em; font-weight: 700; }
.sub p { color: var(--on-frame-2); margin-top: 12px; font-size: 15px; max-width: 44ch; }
.sub form { display: flex; gap: 8px; flex-wrap: wrap; }
.sub input {
  flex: 1 1 220px;
  background: var(--frame-2);
  border: 1px solid #3A3A44;
  border-radius: var(--r);
  padding: 12px 14px;
  color: var(--on-frame);
  font-size: 14px;
}
.sub input::placeholder { color: #74747F; }
.sub input:focus-visible { outline-color: var(--signal); border-color: var(--signal); }
.sub .btn { background: var(--signal); border-color: var(--signal); color: #fff; }
.sub .btn:hover { background: #fff; border-color: #fff; color: var(--frame); }
.sub .note { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .05em; color: #74747F; margin-top: 12px; }
.sub .ok { color: #8CE0B0; font-family: var(--ff-mono); font-size: 12px; margin-top: 12px; }
@media (max-width: 820px) { .sub { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--edge); padding: clamp(34px, 4vw, 54px) 0 40px; margin-top: clamp(30px, 4vw, 50px); }
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}
.foot-grid h3 {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
  margin-bottom: 12px;
}
.foot-grid ul { list-style: none; padding: 0; display: grid; gap: 8px; }
.foot-grid a { text-decoration: none; color: var(--ink-2); font-size: 14px; }
.foot-grid a:hover { color: var(--signal); }
.foot-blurb { color: var(--ink-2); font-size: 14.5px; max-width: 38ch; margin-top: 12px; }
.foot-bottom {
  margin-top: clamp(28px, 3.4vw, 44px);
  padding-top: 18px;
  border-top: 1px solid var(--edge);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .05em;
  color: var(--ink-3);
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   EMBEDDED POSTS
   A real viral post, served by the platform it lives on. The artist keeps
   control; delete it there and it leaves here too.
   ========================================================================== */
.embed {
  max-width: 605px;
  margin: clamp(24px, 3.2vw, 40px) 0;
}
.article-lead .embed { max-width: 720px; }
.embed blockquote { margin: 0; }
.embed iframe { width: 100%; border: 0; display: block; }
.embed-16x9 {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--frame);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.embed-16x9 iframe { position: absolute; inset: 0; height: 100%; }
.embed-tall { min-height: 420px; background: var(--frame); border-radius: var(--r-lg); overflow: hidden; }
.embed-tall iframe { height: 480px; }

/* used when a platform can't be embedded — still credited, still linked */
.embed-card {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border: 1px solid var(--edge-2);
  border-radius: var(--r-lg);
  background: var(--card);
  text-decoration: none;
  transition: border-color .2s;
}
.embed-card:hover { border-color: var(--signal); }
.embed-card-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--signal);
}
.embed-card-url { font-size: 14.5px; color: var(--ink); word-break: break-all; }
.embed-card-by { font-family: var(--ff-mono); font-size: 11px; color: var(--ink-3); }

/* the slip can carry a link back to the original post */
.slip-meta dd a { color: var(--signal); text-decoration: none; }
.slip-meta dd a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- forms ---------- */
[id] { scroll-margin-top: 84px; }

.form-block {
  max-width: 44rem;
  padding: clamp(20px, 3vw, 30px);
  background: var(--card);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
}
.form-block + .form-block { margin-top: clamp(24px, 3vw, 38px); }
.form-block > h2 {
  font-family: var(--ff-display);
  font-size: clamp(21px, 2.2vw, 27px);
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 700;
}
.form-block > p.intro { color: var(--ink-2); font-size: 15px; margin: 10px 0 22px; max-width: 54ch; }

.field { display: grid; gap: 6px; margin-bottom: 15px; }
.field label {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field textarea, .field select {
  background: var(--ground);
  border: 1px solid var(--edge-2);
  border-radius: var(--r);
  padding: 11px 13px;
  font-size: 15px;
  font-family: var(--ff-body);
  width: 100%;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible, .field select:focus-visible { border-color: var(--signal); }
.field .hint { font-family: var(--ff-mono); font-size: 10.5px; color: var(--ink-3); letter-spacing: .02em; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 14px;
  letter-spacing: .02em;
}
.form-note.ok { color: var(--signal); }

/* ---------- editorial columns (about) ---------- */
.cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}
@media (max-width: 860px) { .cols { grid-template-columns: 1fr; } }
/* the section label rides along with the text it belongs to */
@media (min-width: 861px) { .cols > :first-child { position: sticky; top: 92px; } }

.rules { list-style: none; padding: 0; max-width: 40rem; border-top: 1px solid var(--edge); }
.rules li { padding: 16px 0; border-bottom: 1px solid var(--edge); }
.rules b {
  display: block;
  font-family: var(--ff-display);
  font-size: 17px;
  letter-spacing: -.02em;
  font-weight: 700;
  margin-bottom: 5px;
}
.rules span { color: var(--ink-2); font-size: 14.5px; }

/* ---------- misc pages ---------- */
.page-head { padding: clamp(30px, 4.6vw, 64px) 0 clamp(20px, 3vw, 32px); }
.page-head .eyebrow { display: block; margin-bottom: 14px; }
.page-head .dek { margin-top: 16px; }

.count {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ink-3);
  text-transform: uppercase;
}

/* reveal on scroll */
.reveal { opacity: 0; translate: 0 16px; transition: opacity .6s var(--ease), translate .6s var(--ease); }
.reveal.in { opacity: 1; translate: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; translate: 0; }
  .reach i { scale: 1 1; }
}
