/* ————————————————————————————————
   SEIF-ALI UMAAR
   white / helvetica / ledger index + media wall
———————————————————————————————— */

:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --ink-soft: #8a8a8a;
  --line: #e6e6e6;
  --red: #e8290c;
  --blue: #1d3bff;
  --helv: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--helv);
  font-size: 14px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

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

::selection { background: var(--ink); color: var(--bg); }

/* ————— header ————— */
.site-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  z-index: 50;
}

.wordmark {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.03em;
}

/* view toggle — pill switch */
.view-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--helv);
}

.vt-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

body[data-view="index"] .vt-index,
body[data-view="media"] .vt-media { color: var(--ink); }

.vt-pill {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #ebebeb;
  position: relative;
  transition: background 0.25s ease;
  display: inline-block;
}

body[data-view="media"] .vt-pill { background: var(--ink); }

.vt-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  transition: transform 0.25s cubic-bezier(0.5, 0, 0.2, 1.4);
}

body[data-view="media"] .vt-knob { transform: translateX(20px); }

/* ————— main ————— */
#app { flex: 1; width: 100%; }

/* index view: band + ledger stay pinned; the page scrolls a virtual
   space behind them which drives the featured project */
.index-stage {
  position: sticky;
  top: 57px;
  height: calc(100dvh - 57px - 44px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--bg);
}

.index-stage .band { flex: none; }

/* compact table pinned to the bottom of the stage — consul proportions */
.index-stage .ledger {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-bottom: 6px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* ————— top band: info columns / hover preview ————— */
.band {
  position: relative;
  min-height: 292px;
  padding: 8px 20px 26px;
  overflow: hidden;
}

.info-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1500px;
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 0.65, 0.25, 1);
}

.band.previewing .info-cols {
  opacity: 0;
  pointer-events: none;
  animation: none;
  transform: translateY(-18px);
}

.info-cols h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.info-cols p, .info-cols li {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.005em;
  max-width: 30ch;
}

.info-cols ul { list-style: none; }

.info-cols a { text-decoration: underline; text-underline-offset: 2px; }

.info-cols a:hover { opacity: 0.55; }

/* hover preview */
.preview {
  position: absolute;
  inset: 8px 20px auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.band.previewing .preview { opacity: 1; pointer-events: auto; }

/* consul geometry: number at the left margin, title indented into a column */
.preview .p-no {
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 15px;
  font-weight: 700;
}

.preview .p-title {
  font-size: clamp(40px, 6.2vw, 104px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  overflow: hidden;
  margin-left: 16vw;
  max-width: 60vw;
}

.preview .p-title span {
  display: inline-block;
  animation: rise 0.55s cubic-bezier(0.22, 0.65, 0.25, 1) both;
}

@keyframes rise {
  from { transform: translateY(105%); }
  to { transform: none; }
}

.preview .p-desc {
  margin-top: 14px;
  margin-left: 16vw;
  font-size: clamp(15px, 1.55vw, 21px);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 52vw;
  line-height: 1.15;
  animation: riseup 0.65s cubic-bezier(0.22, 0.65, 0.25, 1) 0.12s both;
}

@keyframes riseup {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}

.preview .p-side {
  position: absolute;
  top: 14px;
  right: 0;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.preview .p-side .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  margin-left: 7px;
}

/* LINK button + semi-circle picker */
.link-wrap {
  position: absolute;
  top: 158px;
  right: 0;
  z-index: 5;
}

.link-btn {
  font-family: var(--helv);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--blue, #1d3bff);
  border: 0;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  animation: riseup 0.4s cubic-bezier(0.2, 0.6, 0.2, 1) 0.14s both;
  transition: transform 0.15s ease, background 0.15s ease;
}

.link-btn:hover { transform: scale(1.06); background: #0026e0; }

.link-arc {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 0;
  height: 0;
}

.arc-item {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
  translate: -100% -50%;
  transition: transform 0.3s cubic-bezier(0.2, 0.6, 0.2, 1), opacity 0.3s ease, color 0.2s ease;
}

.arc-item.sel { color: var(--blue, #1d3bff); }

/* ————— ledger ————— */
.ledger {
  padding: 0 20px 90px;
}

.ledger .l-cap {
  font-size: 7px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 2px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(120px, 21vw) minmax(200px, 23vw) 1fr 60px 80px 70px;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ledger ul { list-style: none; }

.ledger a.row {
  display: grid;
  grid-template-columns: minmax(120px, 21vw) minmax(200px, 23vw) 1fr 60px 80px 70px;
  gap: 14px;
  align-items: center;
  padding: 1px 0;
  font-size: 7px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: rowin 0.4s ease both;
  transition: background 0.12s ease, padding-left 0.12s ease;
}

@keyframes rowin {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

/* hover: only the title text turns red */
.ledger a.row:hover .c-title { color: var(--red); }

/* clicked / selected: the whole row's text turns red */
.ledger a.row.active,
.ledger a.row.active .c-title { color: var(--red); }

.ledger .c-no { color: var(--ink-soft); }

.ledger a.row.active .c-no,
.ledger a.row.active .c-meta { color: var(--red); opacity: 0.75; }

.ledger .c-title { font-weight: 700; }

.ledger .c-meta { color: var(--ink-soft); }

.ledger .c-desc {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ————— media wall — zoom ladder ————— */
.wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 2px;
  padding: 0 0 60px;
}

.wall[data-level="1"] { grid-template-columns: repeat(8, 1fr); gap: 3px; }
.wall[data-level="2"] { grid-template-columns: repeat(4, 1fr); gap: 4px; }
.wall[data-level="3"] { grid-template-columns: repeat(2, 1fr); gap: 6px; }

.wall[data-level="4"] {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}

.wall[data-level="4"] a {
  aspect-ratio: auto;
  height: calc(100dvh - 57px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  cursor: default;
}

/* fullscreen: edge-to-edge cover */
.wall[data-level="4"] img,
.wall[data-level="4"] video {
  object-fit: cover;
  background: var(--bg);
}

/* first zoom-out click: same asset, fitted with margins (consul-style) */
.wall[data-level="4"].fit a { padding: 5vh 5vw; background: var(--bg); }

.wall[data-level="4"].fit img,
.wall[data-level="4"].fit video {
  object-fit: contain;
}

.wall[data-level="4"] a:hover img { transform: none; }

.wall.zoom-pulse { animation: zoompulse 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); }

@keyframes zoompulse {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

.wall a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: tilein 0.5s ease both;
  cursor: default;
}

.wall video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f2f2f2;
}

@keyframes tilein { from { opacity: 0; } to { opacity: 1; } }

.wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f2f2f2;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.wall a:hover img { transform: scale(1.06); }

/* media hover caption bar */
.wall-caption {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 20px 14px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  font-size: clamp(20px, 3.4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1;
  z-index: 60;
  transform: translateY(101%);
  transition: transform 0.22s cubic-bezier(0.2, 0.6, 0.2, 1);
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
}

.wall-caption.on { transform: none; }

.wall-caption small {
  font-size: 0.4em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 14px;
  letter-spacing: 0;
}

/* ————— project page ————— */
.project { padding: 6px 20px 80px; }

.project .back {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  display: inline-block;
  margin-bottom: 30px;
}

.project .back:hover { color: var(--ink); }

.project header.p-head { margin-bottom: 34px; }

.project h2 {
  font-size: clamp(40px, 6.4vw, 104px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -0.045em;
}

.project .p-meta {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.project .p-detail {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.project .p-blurb {
  margin-top: 16px;
  max-width: 520px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.p-links { margin-top: 18px; display: flex; flex-direction: column; gap: 5px; }

.p-links a {
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.p-links a:hover { opacity: 0.55; }

/* uniform tiles — 5 per row */
.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, 1fr); } }

.grid figure {
  margin: 0;
  cursor: zoom-in;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  opacity: 0;
  animation: tilein 0.5s ease both;
}

.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f2f2f2;
  transition: transform 0.4s ease;
}

.grid figure:hover img { transform: scale(1.025); }

/* video blocks */
.videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.videos .v:first-child:nth-last-child(odd) { grid-column: 1 / -1; }

.videos video {
  width: 100%;
  max-height: 80vh;
  display: block;
  background: #000;
}

.videos .yt { aspect-ratio: 16 / 9; }

.videos .yt iframe { width: 100%; height: 100%; display: block; border: 0; background: #000; }

@media (max-width: 800px) { .videos { grid-template-columns: 1fr; } }

/* prev / next */
.pn {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pn a:hover { opacity: 0.5; }

/* ————— lightbox ————— */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  animation: tilein 0.15s ease both;
}

.lightbox img,
.lightbox video {
  max-width: 94vw;
  max-height: 86vh;
  object-fit: contain;
  animation: lbzoom 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

@keyframes lbzoom {
  from { transform: scale(0.35); opacity: 0; }
  to { transform: none; opacity: 1; }
}

.lightbox .lb-cap {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-size: clamp(18px, 2.6vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.lightbox .lb-cap small {
  font-size: 0.42em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 12px;
}

/* ————— footer ————— */
.site-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* always visible on the homepage */
body[data-view="index"] .site-foot {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 45;
}

/* ————— header controls ————— */
.head-controls { display: flex; align-items: center; gap: 18px; }

.sound-btn {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  padding: 2px;
}

.sound-btn[hidden] { display: none; }

.sound-btn .snd-waves { opacity: 0; transition: opacity 0.2s ease; }
.sound-btn .snd-slash { opacity: 1; transition: opacity 0.2s ease; stroke: var(--blue); }
.sound-btn.on .snd-waves { opacity: 1; }
.sound-btn.on .snd-slash { opacity: 0; }
.sound-btn:hover { opacity: 0.6; }

/* curated collection note */
.col-note {
  padding: 6px 20px 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
}

.col-note a { text-decoration: underline; text-underline-offset: 2px; color: var(--ink-soft); }

.col-note a:hover { color: var(--ink); }

/* ————— number rail + mobile flow (mobile index) ————— */
.num-rail { display: none; }
.m-flow { display: none; }

/* ————— responsive ————— */
@media (max-width: 700px) {
  .wordmark { font-size: 14px; }
  .site-head { padding: 14px 16px; }

  /* index: the whole page is a natural flow — info first, then each
     project as a full-height section rising from the bottom (consul) */
  .index-stage, .scroll-space { display: none; }

  .m-flow { display: block; padding: 4px 44px 40px 16px; }

  .m-info h3 { font-size: 13px; font-weight: 700; margin: 20px 0 6px; }
  .m-info p { font-size: 13px; font-weight: 500; max-width: 40ch; }
  .m-info a { text-decoration: underline; text-underline-offset: 2px; }

  .m-info {
    min-height: calc(100dvh - 51px);
  }

  /* stop pull-to-refresh / bounce fighting the snap */
  body { overscroll-behavior-y: contain; }

  .m-proj {
    min-height: calc(100dvh - 51px);
    padding-top: 20px;
    scroll-margin-top: 51px;
  }

  /* project text switches into frame as it snaps up */
  .m-proj .p-no, .m-proj h2, .m-proj .m-desc, .m-proj .m-side, .m-proj .m-links {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.22, 0.65, 0.25, 1);
  }

  .m-proj.on .p-no, .m-proj.on h2, .m-proj.on .m-desc, .m-proj.on .m-side, .m-proj.on .m-links {
    opacity: 1;
    transform: none;
  }

  .m-proj.on h2 { transition-delay: 0.05s; }
  .m-proj.on .m-desc { transition-delay: 0.12s; }
  .m-proj.on .m-side { transition-delay: 0.2s; }
  .m-proj.on .m-links { transition-delay: 0.26s; }

  .m-proj .p-no { font-size: 14px; font-weight: 700; }

  .m-proj h2 {
    font-size: clamp(34px, 12.5vw, 60px);
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    margin: 2px 0 14px;
  }

  .m-proj .m-desc {
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.18;
  }

  .m-proj .m-side {
    margin-top: 26px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
  }

  .m-proj .m-side .dot {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ink);
    margin-left: 5px;
  }

  .m-links { margin-top: 26px; display: flex; flex-direction: column; gap: 8px; }

  .m-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
    width: fit-content;
    background: none;
    border: 0;
    padding: 0;
    font-family: var(--helv);
    text-align: left;
    cursor: pointer;
  }

  .m-linklist {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 6px;
    padding-left: 14px;
  }

  .m-linklist[hidden] { display: none; }

  .m-linklist .m-link { font-size: 13px; opacity: 0.85; }

  .num-rail {
    display: flex;
    flex-direction: column;
    gap: 1px;
    position: fixed;
    top: 60px;
    right: 10px;
    z-index: 45;
  }

  .num-rail span {
    font-size: 8px;
    line-height: 1.35;
    font-weight: 500;
    color: #b5b5b5;
    text-align: right;
    cursor: pointer;
  }

  .num-rail span.cur { color: var(--ink); font-weight: 700; }

  body[data-view="media"] .num-rail { display: none; }

  /* media wall: dense 8-across like consul mobile; 3 clicks → fullscreen */
  .wall { grid-template-columns: repeat(8, 1fr); gap: 1.5px; }
  .wall[data-level="1"] { grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .wall[data-level="2"] { grid-template-columns: repeat(2, 1fr); gap: 3px; }

  .wall[data-level="3"] { grid-template-columns: 1fr; gap: 0; padding: 0; }

  .wall[data-level="3"] a {
    aspect-ratio: auto;
    height: calc(100dvh - 51px);
    cursor: default;
  }

  .wall[data-level="3"] img,
  .wall[data-level="3"] video {
    object-fit: cover;
    background: var(--bg);
  }

  /* staged mode: asset centred at its actual format, white bars above/below */
  .wall[data-level="3"].fit a { padding: 14vh 3vw; }

  .wall[data-level="3"].fit img,
  .wall[data-level="3"].fit video {
    object-fit: contain;
  }

  .wall-caption { font-size: 17px; padding: 8px 16px 12px; }
  .wall-caption small { display: block; margin-left: 0; margin-top: 2px; }

  .foot-note { display: none; }
  .site-foot { padding: 12px 16px; }

  .grid { grid-template-columns: repeat(2, 1fr); }
}

/* shorter viewports: tighten so the full index fits with no inner scroll */
@media (max-height: 860px) {
  .band { min-height: 236px; padding-bottom: 18px; }
  .ledger a.row { font-size: 6.5px; padding: 0.5px 0; }
}

@media (max-height: 740px) {
  .band { min-height: 210px; padding-bottom: 12px; }
  .preview .p-title { font-size: clamp(34px, 5.4vw, 84px); }
  .info-cols p, .info-cols li { font-size: 12px; }
  .info-cols h3 { margin-bottom: 14px; }
}

.fade { animation: fade 0.3s ease both; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ————— pitch deck viewer ————— */

body[data-view="deck"] { overflow: hidden; }
body[data-view="deck"] .site-foot { display: none; }
body[data-view="deck"] .view-toggle { display: none; }

.deck {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 40;
  animation: fade 0.3s ease both;
}

.deck-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px 56px;
  cursor: e-resize;
}

.deck-stage img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.09);
}

.deck-hud {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 24px;
  font-size: 9px;
  letter-spacing: 0.08em;
  z-index: 42;
  pointer-events: none;
}

.deck-title small {
  display: inline-block;
  margin-left: 10px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.deck-count { font-variant-numeric: tabular-nums; }

.deck-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  background: none;
  border: 0;
  z-index: 41;
  cursor: w-resize;
}

.deck-prev { left: 0; }
.deck-next { right: 0; cursor: e-resize; }

@media (max-width: 700px) {
  .deck-stage { padding: 54px 12px 48px; }
  .deck-hud { padding: 12px 16px; }
  .deck-nav { width: 22%; }
}

/* subheading line inside the preview / mobile description */
.p-subhead { color: var(--ink); }
