/* =========================================================
   REVIEWS / MAGAZINE INDEX PAGE
   Extends styles.css — uses the original color palette
   ========================================================= */

/* Utility bar (re-uses pattern from review.css) */
.utility-bar {
  background: var(--ink);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
}
.utility-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
}
.utility-bar .live::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--warm); margin-right: 8px; vertical-align: 1px;
}

/* Breadcrumb */
.crumbs { padding: 24px 0 0; font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--muted); transition: color 160ms; }
.crumbs a:hover { color: var(--teal); }
.crumbs .sep { margin: 0 10px; opacity: 0.5; }
.crumbs .here { color: var(--ink); font-weight: 500; }

/* =========================================================
   PAGE MASTHEAD
   ========================================================= */
.mag-mast {
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 56px;
}
.mag-mast .row {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 48px;
  flex-wrap: wrap;
}
.mag-mast .left { max-width: 720px; }
.mag-mast .eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.mag-mast .eyebrow .vol { color: var(--warm); font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: 0.04em; text-transform: none; font-size: 14px; }
.mag-mast h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.mag-mast h1 em { font-style: italic; color: var(--teal); font-weight: 500; }
.mag-mast .dek {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0;
  font-weight: 400;
}
.mag-mast .right {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-end;
  font-size: 13px; color: var(--muted); text-align: right;
  padding-bottom: 8px;
}
.mag-mast .right .stat {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.mag-mast .right .stat small { font-family: var(--sans); font-size: 13px; color: var(--muted); font-weight: 500; margin-left: 2px; }

/* =========================================================
   FILTER BAR
   ========================================================= */
.filter-bar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  padding: 16px 0;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 72px;
  background: var(--paper);
  z-index: 10;
}
.filter-bar .chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.filter-bar .chip {
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--rule);
  background: var(--paper);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 160ms ease;
  white-space: nowrap;
}
.filter-bar .chip:hover { border-color: var(--teal); color: var(--teal); }
.filter-bar .chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter-bar .chip .ct { color: var(--muted-2); margin-left: 6px; font-weight: 500; }
.filter-bar .chip.active .ct { color: rgba(255,255,255,0.55); }

.filter-bar .sort {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.filter-bar .sort select {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px dashed var(--ink);
  padding: 4px 22px 4px 4px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2314242C' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

/* =========================================================
   FEATURED EDITOR'S LETTER + LEAD
   ========================================================= */
.editors-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.editor-lead {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  cursor: pointer;
  background: var(--cream);
}
.editor-lead .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 600ms ease;
}
.editor-lead:hover .photo { transform: scale(1.03); }
.editor-lead .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,36,44,0) 35%, rgba(20,36,44,0.85) 100%);
}
.editor-lead .meta-top {
  position: absolute; top: 22px; left: 22px;
  display: flex; gap: 8px;
}
.editor-lead .pill {
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  padding: 6px 13px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.editor-lead .pill.warm { background: var(--warm); color: var(--ink); }
.editor-lead .body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 36px;
  color: var(--paper);
}
.editor-lead .body .meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.editor-lead .body .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.5); }
.editor-lead .body h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--paper);
  text-wrap: balance;
}
.editor-lead .body .dek {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 0 20px;
}
.editor-lead .body .by {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.editor-lead .body .by .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  border: 1.5px solid var(--paper);
}
.editor-lead .body .by strong { color: var(--paper); font-weight: 600; }

/* Editor's letter */
.editors-letter {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex; flex-direction: column;
  position: relative;
}
.editors-letter .stamp {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--warm);
  margin-bottom: 20px;
  font-weight: 500;
}
.editors-letter h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.editors-letter p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.editors-letter .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--teal);
  margin: 18px 0 4px;
  font-weight: 500;
}
.editors-letter .role {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.editors-letter .read-more {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
}

/* =========================================================
   HONESTY METER (key trust element)
   ========================================================= */
.honesty-strip {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px 40px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
.honesty-strip h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--paper);
  text-wrap: balance;
}
.honesty-strip h3 em { font-style: italic; color: var(--warm); font-weight: 500; }
.honesty-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.honesty-stat .num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 6px;
}
.honesty-stat .label {
  font-size: 12px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}

/* =========================================================
   ISSUE COVER (sectional break)
   ========================================================= */
.issue-cover {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px;
  margin: 96px 0 36px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.issue-cover .ttl {
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.issue-cover .ttl em { font-style: italic; color: var(--teal); font-weight: 500; }
.issue-cover .meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
}

/* =========================================================
   ARTICLE GRID
   ========================================================= */
.mag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  margin-bottom: 56px;
}
.mag-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.mag-card .photo-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream);
  margin-bottom: 18px;
}
.mag-card .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 500ms ease;
}
.mag-card:hover .photo { transform: scale(1.04); }
.mag-card .badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-transform: uppercase;
}
.mag-card .badge.score {
  left: auto; right: 14px;
  background: var(--teal);
  color: var(--paper);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0;
}
.mag-card .meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 10px;
}
.mag-card .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }
.mag-card .meta .read { color: var(--muted); font-weight: 500; }
.mag-card h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 10px;
  text-wrap: balance;
  transition: color 160ms;
}
.mag-card:hover h3 { color: var(--teal); }
.mag-card .blurb {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 14px;
}
.mag-card .by {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}
.mag-card .by .avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: var(--sand);
}
.mag-card .by strong { color: var(--ink); font-weight: 600; }

/* Wide variant — first card in a row spans 2 columns */
.mag-card.wide { grid-column: span 2; }
.mag-card.wide .photo-wrap { aspect-ratio: 16 / 9; }
.mag-card.wide h3 { font-size: 32px; line-height: 1.1; }
.mag-card.wide .blurb { font-size: 16px; }

/* =========================================================
   BIG PULL QUOTE (between sections)
   ========================================================= */
.pull-quote-band {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 80px 0;
  margin: 96px 0;
  text-align: center;
}
.pull-quote-band blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 0;
  text-wrap: balance;
}
.pull-quote-band blockquote::before { content: "“ "; color: var(--warm); }
.pull-quote-band blockquote::after  { content: " ”"; color: var(--warm); }
.pull-quote-band cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.pull-quote-band cite strong { color: var(--ink); }

/* =========================================================
   AUTHORS BAND
   ========================================================= */
.authors-band {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-bottom: 96px;
}
.authors-band .head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 28px;
}
.authors-band h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.authors-band h2 em { font-style: italic; color: var(--teal); font-weight: 500; }
.authors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.author-card {
  display: flex; flex-direction: column;
  text-align: left;
  cursor: pointer;
}
.author-card .ph {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: var(--sand);
  margin-bottom: 16px;
  max-width: 140px;
}
.author-card .name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  color: var(--ink);
}
.author-card .role {
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.author-card .bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.author-card .stats {
  display: flex; gap: 14px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}
.author-card .stats strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   ARCHIVE LIST (older issues)
   ========================================================= */
.archive {
  margin-bottom: 96px;
}
.archive .head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
}
.archive h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
.archive h2 em { font-style: italic; color: var(--teal); font-weight: 500; }
.archive .head .more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal); font-weight: 600; font-size: 14px;
}

.archive-list { display: flex; flex-direction: column; }
.archive-row {
  display: grid;
  grid-template-columns: 80px 1fr 200px 120px 80px;
  gap: 24px;
  align-items: center;
  padding: 18px 8px;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background 160ms ease;
}
.archive-row:hover { background: var(--cream); }
.archive-row .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--warm);
  font-weight: 500;
}
.archive-row .ttl {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.archive-row .ttl .eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.archive-row .author {
  font-size: 13px;
  color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
}
.archive-row .author .avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: var(--sand);
}
.archive-row .date {
  font-size: 13px;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}
.archive-row .read {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
}
.archive-row:hover .ttl { color: var(--teal); }

/* =========================================================
   NEWSLETTER MINI
   ========================================================= */
.mag-newsletter {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
  padding: 56px 48px;
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mag-newsletter .eyebrow { color: var(--warm); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.mag-newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0 0 14px;
  text-wrap: balance;
}
.mag-newsletter h2 em { font-style: italic; color: var(--warm); font-weight: 500; }
.mag-newsletter p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 460px;
}
.mag-newsletter form {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-pill);
  padding: 8px;
}
.mag-newsletter input {
  flex: 1; min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 18px;
}
.mag-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.mag-newsletter button {
  background: var(--warm);
  color: var(--ink);
  border: 0;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 160ms;
}
.mag-newsletter button:hover { background: var(--paper); }
.mag-newsletter .fine {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 980px) {
  .editors-grid { grid-template-columns: 1fr; }
  .honesty-strip { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .honesty-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .mag-grid { grid-template-columns: 1fr; }
  .mag-card.wide { grid-column: span 1; }
  .authors-grid { grid-template-columns: 1fr 1fr; }
  .archive-row { grid-template-columns: 40px 1fr; }
  .archive-row .author, .archive-row .date, .archive-row .read { display: none; }
  .mag-newsletter { grid-template-columns: 1fr; padding: 36px 28px; }
  .filter-bar { position: static; }
}
