/* ==========================================================================
   Best by Lauren — editorial system
   Black stock, white ink, pink everywhere it can go.
   Values are lifted from "00 Editorial System.dc.html"; see CLAUDE.md.
   ========================================================================== */

:root {
  --ink: #0E0D0D;
  --paper: #F7F5F2;
  --pink: #F4B6C8;
  --raspberry: #9E2650;
  --gold: #9C6F2E;
  --gold-light: #C9A25C;
  --white: #FFFFFF;
  --ivory: #FBF8F1;

  --muted: rgba(247, 245, 242, .7);
  --hair: rgba(247, 245, 242, .18);

  --display: 'Bodoni Moda', 'Didot', 'Times New Roman', serif;
  --util: 'Archivo', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --hand: 'Caveat', 'Bradley Hand', cursive;
  --script: 'Pinyon Script', 'Snell Roundhand', cursive;

  /* Page gutter — one value drives every edge on the site. */
  --gut: clamp(18px, 3.5vw, 48px);
  --rule: 1px solid var(--paper);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--util);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain. Fixed overlay, never interactive. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .22;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .18 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--pink); }
/* height:auto keeps the intrinsic width/height attributes (which prevent layout
   shift) from fixing the rendered height when CSS sets only a width. Rules that
   need a real height — .cover-img, .strip-track img — come later and win. */
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--pink); color: var(--ink); padding: 12px 18px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Type primitives
   -------------------------------------------------------------------------- */

.u,
.kicker,
.folio { font-family: var(--util); text-transform: uppercase; letter-spacing: .22em; font-size: 10px; }

.kicker { color: var(--pink); }
.kicker--muted { color: var(--muted); }
.u-sm { font-size: 9px; letter-spacing: .24em; }
.u-md { font-size: 11px; letter-spacing: .22em; }

.d { font-family: var(--display); font-weight: 400; line-height: .9; letter-spacing: -.01em; }
.d-it { font-family: var(--display); font-style: italic; }

.hand {
  font-family: var(--hand);
  color: var(--pink);
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.05;
}

.muted { color: var(--muted); }
.pink { color: var(--pink); }

/* Prose — the magazine column. */
.prose { max-width: 62ch; }
.prose p {
  font-family: var(--display);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.6;
  margin: 0 0 1.15em;
}
.prose p:last-child { margin-bottom: 0; }
.prose h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.02;
  margin: 1.8em 0 .5em;
}
.prose h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.15;
  margin: 1.6em 0 .4em;
}
.prose ul, .prose ol { font-family: var(--display); font-size: clamp(17px, 1.3vw, 20px); line-height: 1.6; padding-left: 1.1em; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--paper); }
.prose em { font-style: italic; }
.prose blockquote {
  margin: 1.6em 0;
  padding-left: 22px;
  border-left: 2px solid var(--pink);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.3;
}

.dropcap::first-letter {
  font-size: 3.2em;
  float: left;
  line-height: .78;
  padding: 6px 10px 0 0;
  font-family: var(--display);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.wrap { padding-left: var(--gut); padding-right: var(--gut); }
.grid12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 16px; }
.section { padding-top: clamp(56px, 7vw, 112px); }
.section-tight { padding-top: clamp(34px, 4vw, 60px); }

/* Section header: rule + label left, meta right. */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-top: 2px solid var(--paper);
  padding-top: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.sec-head--hair { border-top-width: 1px; border-top-color: var(--hair); }

/* --------------------------------------------------------------------------
   Masthead
   -------------------------------------------------------------------------- */

.mast { padding: 14px var(--gut) 0; }

.mast-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.mast-top nav { display: flex; gap: 22px; }
.mast-top nav.right { justify-content: flex-end; }
.mast-issue { text-align: center; color: var(--muted); white-space: nowrap; }

.mast-logo {
  display: block;
  text-align: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 8.6vw, 136px);
  line-height: .9;
  letter-spacing: .06em;
  margin-top: 14px;
  white-space: nowrap;
}
.mast-logo:hover { color: inherit; }

.mast-tag {
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.mast-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.6vw, 40px);
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-top: var(--rule);
  border-bottom: var(--rule);
  padding: 12px 0;
  margin-top: 16px;
}
.mast-nav a[aria-current] { font-weight: 600; color: var(--pink); }

/* Compact masthead used on article pages. */
.mast--compact { padding-bottom: 0; }
.mast--compact .mast-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: var(--rule);
  padding-bottom: 12px;
}
.mast--compact .mast-bar nav { display: flex; gap: clamp(10px, 2vw, 28px); flex-wrap: wrap; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; }
.mast--compact .mast-bar nav.right { justify-content: flex-end; }
.mast--compact .mast-logo {
  font-size: clamp(17px, 2.4vw, 32px);
  letter-spacing: .08em;
  margin-top: 0;
  line-height: 1;
}

/* Mobile masthead */
.mast-burger { display: none; }

@media (max-width: 860px) {
  .mast-top .hide-sm { display: none; }
  .mast-nav { gap: 14px 18px; font-size: 10px; }
  .mast--compact .mast-bar { grid-template-columns: auto 1fr auto; }
  .mast--compact .mast-bar nav { display: none; }
  .mast--compact .mast-bar nav.right { display: flex; }
  .mast--compact .mast-logo { text-align: center; }
  .mast-burger {
    display: block;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
  }
}

/* --------------------------------------------------------------------------
   Polaroid — the recurring device
   -------------------------------------------------------------------------- */

.pol { position: relative; background: var(--white); display: block; }
.pol img { width: 100%; height: 100%; object-fit: cover; }
.pol {
  border: 10px solid var(--white);
  border-bottom-width: 42px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .42);
}
.pol figcaption,
.pol .cap {
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: -34px;
  color: var(--ink);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  padding: 0 4px;
}
.pol--sm { border-width: 7px; border-bottom-width: 28px; }
.pol--sm .cap { bottom: -22px; font-size: 8px; letter-spacing: .14em; }
.pol--pink { border-color: var(--pink); }
.pol--pink .cap { color: var(--ink); }

.tilt-1 { transform: rotate(1.5deg); }
.tilt-2 { transform: rotate(-2deg); }
.tilt-3 { transform: rotate(3deg); }
.tilt-4 { transform: rotate(-4deg); }

/* Tape */
.tape {
  position: absolute;
  width: 74px; height: 22px;
  background: rgba(247, 245, 242, .22);
  border-left: 1px solid rgba(247, 245, 242, .3);
  border-right: 1px solid rgba(247, 245, 242, .3);
  top: -11px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  z-index: 3;
}

/* Stamp */
.stamp {
  display: inline-block;
  border: 2px solid var(--pink);
  color: var(--pink);
  padding: 6px 10px;
  font-size: 9px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  transform: rotate(-8deg);
  opacity: .92;
}
.stamp--paper { border-color: var(--white); color: var(--white); }

/* Lauren's note — pink ruled card */
.note {
  background: var(--pink);
  color: var(--ink);
  padding: 20px 22px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
  transform: rotate(1.5deg);
  background-image: repeating-linear-gradient(transparent 0 27px, rgba(247, 245, 242, .32) 27px 28px);
}
.note .kicker { color: var(--raspberry); }
.note-body { font-family: var(--hand); font-size: 24px; line-height: 28px; margin-top: 8px; color: var(--ink); }

/* --------------------------------------------------------------------------
   Pink spreads
   -------------------------------------------------------------------------- */

.pink-block { background: var(--pink); color: var(--ink); }
.pink-block a:hover { color: var(--raspberry); }
.pink-block .muted { color: rgba(14, 13, 13, .68); }
.pink-block .kicker { color: var(--raspberry); }
.pink-block .sec-head { border-top-color: var(--ink); }
.pink-block .hand { color: var(--raspberry); }
.pink-block .prose a { color: var(--raspberry); }

/* --------------------------------------------------------------------------
   The seal
   -------------------------------------------------------------------------- */

.seal-mark {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  justify-content: center;
  margin: clamp(56px, 7vw, 110px) 0 0;
}
.seal-mark::before,
.seal-mark::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hair);
  max-width: 300px;
}
.pink-block .seal-mark::before,
.pink-block .seal-mark::after { background: rgba(14, 13, 13, .22); }
.seal-mark img { width: clamp(64px, 8vw, 96px); height: auto; }

.seal-badge { width: 64px; height: auto; }
.seal-badge--sm { width: 44px; }

/* --------------------------------------------------------------------------
   Cards / rails
   -------------------------------------------------------------------------- */

.card-title {
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.06;
  margin-top: 10px;
}
.card-deck {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 8px;
}
.card-meta { margin-top: 12px; }

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: clamp(16px, 2.2vw, 34px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: thin;
}
.rail > * { scroll-snap-align: start; }
.rail::-webkit-scrollbar { height: 3px; }
.rail::-webkit-scrollbar-thumb { background: var(--hair); }

.cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(22px, 3vw, 46px);
}
.cols-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 3.5vw, 56px); }

/* --------------------------------------------------------------------------
   Article — best-of product modules
   -------------------------------------------------------------------------- */

.art-cover {
  position: relative;
  padding: clamp(18px, 3vw, 40px) var(--gut) 20px;
}
.art-cover-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.art-title {
  font-family: var(--display);
  font-size: clamp(46px, 10vw, 180px);
  line-height: .84;
  letter-spacing: -.02em;
  margin: 26px 0 0;
  font-weight: 400;
}
.art-deck {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(19px, 2.1vw, 32px);
  line-height: 1.22;
  margin-top: 24px;
  max-width: 30ch;
}

.art-rail-meta {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  line-height: 2.2;
  color: var(--muted);
}
.art-rail-meta span.kicker { display: block; }

.disclosure {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair);
  margin-bottom: 30px;
}

/* Cover insets — absolute over the photo on desktop, a row beneath it on phones. */
.art-insets { position: static; }
.art-inset { position: absolute; z-index: 2; }
.art-hand {
  position: absolute; right: 2%; bottom: -11%; z-index: 4;
  text-align: right; transform: rotate(3deg);
}
.art-stamp { position: absolute; left: 2%; top: -4%; z-index: 4; }

/* Shortlist */
.shortlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  column-gap: clamp(24px, 4vw, 48px);
  margin-top: 18px;
}
.shortlist a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--hair);
  align-items: baseline;
}
.shortlist .n { font-family: var(--display); font-size: 22px; }
.shortlist .nm { font-family: var(--display); font-size: 17px; line-height: 1.2; }
.shortlist .badge {
  font-size: 10px; font-family: var(--util); letter-spacing: .14em;
  text-transform: uppercase; color: var(--pink); margin-left: 6px; white-space: nowrap;
}
.shortlist .pr { font-size: 11px; letter-spacing: .14em; white-space: nowrap; }

/* Product module */
.pmod {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 24px;
  padding-top: clamp(64px, 9vw, 140px);
  align-items: start;
}
.pmod-fig { grid-column: 1 / 6; position: relative; }
.pmod-body { grid-column: 6 / 13; padding-top: clamp(10px, 3vw, 54px); }
.pmod--flip .pmod-fig { grid-column: 8 / 13; order: 2; }
.pmod--flip .pmod-body { grid-column: 1 / 8; order: 1; }

.pmod-rank {
  font-family: var(--display);
  font-size: clamp(74px, 13vw, 220px);
  line-height: .78;
  letter-spacing: -.04em;
  position: relative;
  z-index: 2;
  color: var(--paper);
}
.pmod--flip .pmod-rank {
  font-size: clamp(48px, 6vw, 96px);
  color: var(--muted);
}
.pmod-rank-row { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }

.pmod-photo { width: 80%; margin: -34px 0 0 20%; position: relative; z-index: 1; }
.pmod--flip .pmod-photo { width: 100%; margin: 0; }

.pmod-brand { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: 20px; }
.pmod-name { font-family: var(--display); font-size: clamp(32px, 4.4vw, 76px); line-height: .94; margin-top: 8px; }
.pmod-review { font-family: var(--display); font-size: clamp(18px, 1.4vw, 21px); line-height: 1.55; margin: 24px 0 0; max-width: 56ch; }

.pmod-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 22px;
  margin-top: 32px;
  border-top: var(--rule);
  padding-top: 18px;
}
.pmod-specs dt { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--pink); }
.pmod-specs dd { font-family: var(--display); font-size: 16px; line-height: 1.5; margin: 8px 0 0; }
.pmod-specs dd.it { font-style: italic; }

/* Shop buttons */
.shop-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  align-items: center;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.btn {
  display: inline-block;
  border: var(--rule);
  padding: 13px 20px;
  transition: background .18s ease, color .18s ease;
}
.btn:hover { background: var(--pink); color: var(--ink); border-color: var(--pink); }
.btn--fill { background: var(--pink); color: var(--ink); padding: 14px 22px; border-color: var(--pink); }
.btn--fill:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.pink-block .btn { border-color: var(--ink); }
.pink-block .btn:hover { background: var(--ink); color: var(--pink); }
.pink-block .btn--fill { background: var(--ink); color: var(--pink); }
.pink-block .btn--fill:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.award-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pink);
}

/* --------------------------------------------------------------------------
   The film — the in-article photo spread
   -------------------------------------------------------------------------- */

.film {
  /* Little photos: as many ~210px frames as fit, whatever the screen. Every
     third one takes a double column so the spread has a rhythm, and `dense`
     backfills the gap that a double column would otherwise leave. */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  grid-auto-flow: dense;
  gap: clamp(30px, 3.2vw, 52px) clamp(14px, 1.6vw, 24px);
  margin-top: 40px;
  align-items: start;
}
.film-cell { margin: 0; }
.film-cell:nth-child(3n + 2) { grid-column: span 2; }
/* A double-width frame keeping a portrait ratio towers over its row, so the
   wide ones go landscape. !important because the ratio is set inline per image. */
.film-cell:nth-child(3n + 2) img { aspect-ratio: 3 / 2 !important; }
/* Every other frame sits a little lower, so the spread never lines up flat. */
.film-cell:nth-child(even) { margin-top: clamp(16px, 2.2vw, 40px); }

@media (max-width: 620px) {
  .film { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 28px 10px; }
  .film-cell:nth-child(3n + 2) { grid-column: span 2; }
  .film-cell:nth-child(3n + 2) img { aspect-ratio: 4 / 3 !important; }
/* A double-width frame keeping a portrait ratio towers over its row, so the
   wide ones go landscape. !important because the ratio is set inline per image. */
.film-cell:nth-child(3n + 2) img { aspect-ratio: 3 / 2 !important; }
  .film-cell:nth-child(even) { margin-top: 0; }
  /* A tilt on a frame this close to the gutter clips, so the spread sits straight. */
  .film-cell { transform: none; }
}

/* --------------------------------------------------------------------------
   The List (filterable directory)
   -------------------------------------------------------------------------- */

.filters { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: 22px; }
.chip {
  border: 1px solid var(--hair);
  padding: 9px 15px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .16s ease;
}
.chip:hover { border-color: var(--pink); color: var(--pink); }
.chip[aria-pressed="true"] { background: var(--pink); color: var(--ink); border-color: var(--pink); }

.search-field {
  flex: 1 1 220px;
  min-width: 180px;
  background: transparent;
  border: 0;
  border-bottom: var(--rule);
  color: var(--paper);
  font-family: var(--display);
  font-size: 19px;
  padding: 10px 2px;
}
.search-field::placeholder { color: var(--muted); font-style: italic; }

.list-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}
.list-row .n { font-family: var(--display); font-size: 20px; color: var(--muted); }
.list-row .nm { font-family: var(--display); font-size: clamp(19px, 1.8vw, 26px); line-height: 1.12; }
.list-row .brand { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.list-row .verdict { font-family: var(--display); font-style: italic; font-size: 15px; color: var(--muted); margin-top: 5px; }
.list-row .right { text-align: right; font-size: 11px; letter-spacing: .16em; white-space: nowrap; }
.list-row .tag { display: block; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; margin-top: 6px; }

/* --------------------------------------------------------------------------
   Newsletter
   -------------------------------------------------------------------------- */

.nl-form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; max-width: 520px; }
.nl-form input[type="email"] {
  flex: 1 1 240px;
  background: transparent;
  border: 1px solid var(--ink);
  padding: 14px 16px;
  font-family: var(--util);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--ink);
}
.nl-form input::placeholder { color: rgba(14, 13, 13, .5); }
.nl-note { font-size: 10px; letter-spacing: .16em; text-transform: uppercase; margin-top: 14px; }
.form-msg { font-family: var(--display); font-style: italic; font-size: 16px; margin-top: 14px; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.foot { padding: clamp(50px, 6vw, 90px) var(--gut) 40px; border-top: var(--rule); margin-top: clamp(56px, 7vw, 110px); }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; }
.foot h3 { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--pink); margin: 0 0 14px; font-weight: 400; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot li { margin-bottom: 9px; font-size: 12px; }
.foot-legal {
  margin-top: clamp(36px, 4vw, 58px);
  padding-top: 20px;
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot-disclosure {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 70ch;
  margin-top: 18px;
  text-transform: none;
  letter-spacing: 0;
}

/* --------------------------------------------------------------------------
   Scrolling strip ("Lately")
   -------------------------------------------------------------------------- */

@keyframes bbl-strip { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.strip { overflow: hidden; }
.strip-track { display: flex; gap: 14px; width: max-content; animation: bbl-strip 60s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-track img { height: clamp(150px, 20vw, 260px); width: auto; object-fit: cover; }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.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;
}
.center { text-align: center; }
.mt-s { margin-top: 12px; }
.mt-m { margin-top: 24px; }
.mt-l { margin-top: 44px; }
.stack > * + * { margin-top: 14px; }

.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-34 { aspect-ratio: 3 / 4; }
.ratio-11 { aspect-ratio: 1 / 1; }
.ratio-32 { aspect-ratio: 3 / 2; }
.ratio-169 { aspect-ratio: 16 / 9; }
.cover-img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   Mobile compositions
   The designs are desktop spreads; these are their phone counterparts,
   not a single-column squash. Break at 900 and again at 620.
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .grid12 > * { grid-column: 1 / 13 !important; grid-row: auto !important; }

  .pmod { grid-template-columns: 1fr; row-gap: 18px; }
  .pmod-fig,
  .pmod-body,
  .pmod--flip .pmod-fig,
  .pmod--flip .pmod-body { grid-column: 1 / -1; order: initial; padding-top: 0; }
  .pmod-photo { width: 78%; margin: -26px 0 0 22%; }
  .pmod--flip .pmod-photo { width: 78%; margin: -26px 0 0 22%; }
  .pmod-rank, .pmod--flip .pmod-rank { font-size: clamp(64px, 20vw, 130px); }

  .art-title { font-size: clamp(42px, 13vw, 90px); }

  .seal-mark::before, .seal-mark::after { max-width: 60px; }
}

@media (max-width: 620px) {
  :root { --gut: 18px; }

  /* The scattered cover collage becomes a tidy row under the main photo. */
  .art-insets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 52px; }
  .art-inset { position: static; width: auto !important; left: auto !important; right: auto !important; top: auto !important; bottom: auto !important; }
  .art-inset:nth-child(1) { transform: rotate(-2deg); }
  .art-inset:nth-child(2) { transform: rotate(1.5deg); }
  .art-inset:nth-child(3) { transform: rotate(-1deg); }
  .art-hand { position: static; text-align: left; transform: rotate(-2deg); margin-top: 22px; display: block; }
  .art-stamp { top: auto; bottom: -26px; left: auto; right: 2%; }

  .mast-top { grid-template-columns: 1fr auto; }
  .mast-top .mast-issue { display: none; }
  .mast-logo { font-size: clamp(26px, 9.2vw, 44px); }
  .mast-nav { gap: 10px 14px; font-size: 9.5px; letter-spacing: .16em; padding: 10px 0; }

  .list-row { grid-template-columns: 34px 1fr; }
  .list-row .right { grid-column: 2; text-align: left; margin-top: 6px; }

  .pol { border-width: 7px; border-bottom-width: 30px; }
  .pol .cap { bottom: -24px; font-size: 8px; letter-spacing: .12em; }

  .rail { grid-auto-columns: minmax(200px, 78vw); }

  .note { transform: rotate(0.6deg); }
  .hand { font-size: 20px; }

  .shop-row { gap: 8px; }
  .btn { padding: 11px 15px; font-size: 10px; }

  .foot-legal { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
  * { transition: none !important; }
}

/* Print — it is a magazine, after all. */
@media print {
  body { background: #fff; color: #000; }
  body::after, .mast-nav, .foot, .shop-row, .strip { display: none; }
  a { color: #000; }
}
