/* ============================================================
   Lucci Capri — la rivista dei giochi
   Editorial magazine stylesheet
   ============================================================ */

/* ---- Self-hosted fonts (variable woff2, one file per family) ---- */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/fraunces.woff2") format("woff2");
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/publicsans.woff2") format("woff2");
}

/* ---- Design tokens ---- */
:root {
  --paper: #f5f1e8;
  --paper-deep: #efe9db;
  --ink: #1a1a1a;
  --muted: #6b6a63;
  --hairline: #ddd7c8;
  --coral: #e0533d;
  --coral-deep: #c23e2b;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Public Sans", -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 90rem;
  --measure: 46rem;
  --gap: clamp(1.25rem, 3vw, 2.75rem);
  --rule: 1px solid var(--hairline);

  --shadow: 0 1.25rem 2.5rem -1.5rem rgba(26, 26, 26, .38);
}

/* ---- Reset / base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.01em;
  margin: 0;
}
p {
  margin: 0 0 1rem;
}
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

/* ---- Layout helpers ---- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}
.section {
  padding-block: clamp(3.25rem, 7vw, 6rem);
}
.hairline-top {
  border-top: var(--rule);
}

/* ---- Eyebrow / kicker ---- */
.kicker {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.kicker::before {
  content: "";
  width: 1.6rem;
  height: 1px;
  background: var(--coral);
}
.kicker.plain::before { display: none; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--ink);
}
.section-head h2 {
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
  max-width: 20ch;
}
.section-head .lead {
  color: var(--muted);
  max-width: 34ch;
  margin: 0;
  font-size: .98rem;
}

/* ============================================================
   Masthead / header
   ============================================================ */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: .5rem;
}
.topbar span { color: #cfc9bb; }
.topbar .coral { color: var(--coral); font-weight: 700; }
.topbar .hide-sm { display: none; }

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.masthead .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 1.05rem;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  font-family: var(--serif);
  line-height: 1;
}
.brand b {
  font-weight: 700;
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  letter-spacing: -.02em;
}
.brand i {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .2rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
.nav-desktop a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink);
  padding-block: .25rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--coral);
  border-color: var(--coral);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .2s;
}

/* ---- Centered modal nav (mobile) ---- */
.nav-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(20, 20, 19, .97);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.nav-modal.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.nav-modal a {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 2.9rem);
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -.01em;
  transition: color .2s;
}
.nav-modal a:hover { color: var(--coral); }
.nav-modal .num {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--coral);
  margin-right: .5rem;
  vertical-align: super;
}
.nav-modal .modal-foot {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9c968a;
}
.nav-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 48px;
  height: 48px;
  background: transparent;
  border: 1px solid #4a4843;
  color: var(--paper);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
}
body.no-scroll { overflow: hidden; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 1.6rem;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
.btn:hover { background: var(--coral); border-color: var(--coral); transform: translateY(-2px); }
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.coral {
  background: var(--coral);
  border-color: var(--coral);
}
.btn.coral:hover { background: var(--coral-deep); border-color: var(--coral-deep); }
.btn .arrow { font-size: 1rem; line-height: 0; }

/* ============================================================
   Hero (magazine cover)
   ============================================================ */
.hero {
  border-bottom: 2px solid var(--ink);
}
.hero .wrap {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 5vw, 4.25rem);
}
.hero-copy .issue-line {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  align-items: center;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 1.1rem;
  margin-bottom: 1.5rem;
  border-bottom: var(--rule);
}
.hero-copy .issue-line b { color: var(--coral); }
.hero h1 {
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
}
.hero .dek {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--muted);
  max-width: 46ch;
  margin: 1.5rem 0 0;
  line-height: 1.55;
}
.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}
.hero-figure {
  position: relative;
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--ink);
}
.hero-figure figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem .9rem;
}
.hero-figure .score-seal {
  position: absolute;
  top: -1.1rem;
  right: -1.1rem;
  width: 5.2rem;
  height: 5.2rem;
  background: var(--coral);
  color: var(--paper);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}
.hero-figure .score-seal b {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700;
}
.hero-figure .score-seal span {
  font-family: var(--sans);
  font-size: .5rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: block;
  margin-top: .15rem;
}

/* Stat ribbon under hero */
.ribbon {
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.ribbon .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #33322e;
  padding: 0;
}
.ribbon .cell {
  background: var(--ink);
  padding: 1.4rem clamp(1.15rem, 4vw, 2.75rem);
}
.ribbon .cell b {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--coral);
  display: block;
  line-height: 1;
}
.ribbon .cell span {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #cfc9bb;
}

/* ============================================================
   Editor's pick (featured split)
   ============================================================ */
.pick {
  background: var(--paper-deep);
  border-bottom: 2px solid var(--ink);
}
.pick .wrap {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
.pick-figure {
  position: relative;
  border: 2px solid var(--ink);
  overflow: hidden;
}
.pick-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.pick-figure .tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--coral);
  color: var(--paper);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .4rem .8rem;
}
.pick-body .pick-score {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin: 0 0 1rem;
}
.pick-body .pick-score b {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.pick-body .pick-score span {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pick-body h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.pick-body h2 em { font-style: italic; font-weight: 300; }
.pick-body .meta {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: .9rem 0 1.4rem;
}
.pick-body .drop::first-letter {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 700;
  float: left;
  line-height: .78;
  padding: .35rem .55rem 0 0;
  color: var(--coral);
}
.pick-body p { color: #33322e; }

/* ============================================================
   Reviews grid
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.review {
  background: var(--paper);
  padding: clamp(1.4rem, 3vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .2s;
}
.review:hover { background: #fffdf7; }
.review-top {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.review-top img {
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  flex-shrink: 0;
}
.review-id {
  flex: 1;
  min-width: 0;
}
.review-id .num {
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-id h3 {
  font-size: 1.32rem;
  margin: .15rem 0 .3rem;
  overflow-wrap: break-word;
}
.review-id .genre {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}
.review-score {
  text-align: right;
  flex-shrink: 0;
}
.review-score b {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.review-score span {
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.review p {
  color: var(--muted);
  font-size: .93rem;
  margin: 0;
  flex: 1;
}
.review .stars {
  color: var(--coral);
  letter-spacing: .1em;
  font-size: .9rem;
}
.review .stars small {
  color: var(--muted);
  letter-spacing: .04em;
  font-size: .74rem;
  margin-left: .35rem;
}
.review-link {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding-top: .9rem;
  border-top: var(--rule);
  transition: color .2s, gap .2s;
}
.review-link:hover { color: var(--coral); gap: .8rem; }

.review-cta {
  background: var(--ink);
  color: var(--paper);
  justify-content: center;
}
.review-cta .num { color: var(--coral); letter-spacing: .2em; text-transform: uppercase; font-size: .66rem; }
.review-cta h3 { font-size: 1.65rem; color: var(--paper); margin: .5rem 0; }
.review-cta p { color: #cfc9bb; }
.review-cta:hover { background: #22211d; }
.review-cta .review-link { color: var(--paper); border-top-color: #33322e; }
.review-cta .review-link:hover { color: var(--coral); }

/* ============================================================
   Ratings breakdown (bars)
   ============================================================ */
.ratings {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.ratings .section-head { border-color: var(--coral); }
.ratings .section-head h2 { color: var(--paper); }
.ratings .section-head .lead { color: #cfc9bb; }
.bars {
  display: grid;
  gap: 1.3rem;
}
.bar-row {
  display: grid;
  grid-template-columns: 8.5rem 1fr 3rem;
  align-items: center;
  gap: 1rem;
}
.bar-row .lbl {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #e8e3d6;
}
.bar-track {
  height: .7rem;
  background: #33322e;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--coral);
  transform-origin: left;
  transform: scaleX(var(--v, .8));
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.bar-row .pct {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--coral);
  text-align: right;
  font-size: 1.05rem;
}

/* ============================================================
   Genres index strip
   ============================================================ */
.genres {
  border-bottom: 2px solid var(--ink);
}
.genre-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}
.genre-chip {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  border: 1px solid var(--ink);
  padding: .6rem 1.05rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.genre-chip:hover { background: var(--ink); color: var(--paper); }
.genre-chip small {
  font-family: var(--serif);
  color: var(--coral);
  font-weight: 700;
  font-size: .78rem;
}
.genre-chip:hover small { color: var(--paper); }

/* ============================================================
   Editoriale del mese (long-form column)
   ============================================================ */
.column {
  border-bottom: 2px solid var(--ink);
}
.column-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}
.column-side .column-tag {
  display: inline-block;
  border: 1px solid var(--ink);
  padding: .35rem .8rem;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.column-side h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
}
.column-side h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--coral);
}
.column-side .column-note {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: var(--rule);
  color: var(--muted);
  font-size: .92rem;
  max-width: 30ch;
}
.column-body {
  max-width: 42rem;
  font-size: 1.06rem;
  line-height: 1.75;
}
.column-body p { color: #2a2a28; }
.column-body .drop::first-letter {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  float: left;
  line-height: .74;
  padding: .35rem .6rem 0 0;
  color: var(--coral);
}
.column-body .pull {
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  line-height: 1.28;
  color: var(--ink);
}
.column-body .pull::before {
  content: "\201C";
  color: var(--coral);
  margin-right: .1em;
}
.column-body .byline {
  margin-top: 1.75rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--coral);
}

/* ============================================================
   I premi dell'anno (editorial awards)
   ============================================================ */
.awards {
  background: var(--paper-deep);
  border-bottom: 2px solid var(--ink);
}
.award-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
}
.award {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .3rem 1.15rem;
  padding: clamp(1.4rem, 3.2vw, 2rem) 0;
  border-bottom: var(--rule);
}
.award-medal {
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: start;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--coral);
  display: grid;
  place-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1;
}
.award-cat {
  grid-column: 2;
  margin: 0;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
}
.award-winner {
  grid-column: 2;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.6vw, 2.35rem);
  line-height: 1.05;
  margin: .15rem 0 0;
}
.award-winner .g {
  display: block;
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .45rem;
}
.award-motiv {
  grid-column: 2;
  margin: .55rem 0 0;
  color: #33322e;
  max-width: 62ch;
  font-size: .98rem;
}

/* ============================================================
   Diario di gioco (dated play-diary column)
   ============================================================ */
.diary {
  border-bottom: 2px solid var(--ink);
}
.diary-entry {
  max-width: 46rem;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-block: clamp(1.75rem, 4vw, 2.75rem);
}
.diary-dateline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .4rem 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: var(--rule);
}
.diary-dateline .d {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--coral);
}
.diary-dateline .g {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: auto;
}
.diary-body {
  font-size: 1.06rem;
  line-height: 1.75;
}
.diary-body p { color: #2a2a28; }
.diary-body .drop::first-letter {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 700;
  float: left;
  line-height: .78;
  padding: .35rem .55rem 0 0;
  color: var(--coral);
}
.diary-body .byline {
  margin-top: 1.6rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--coral);
}
.diary-body .byline span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}

/* ============================================================
   Testimonials (lettori)
   ============================================================ */
.voices {
  background: var(--paper-deep);
  border-bottom: 2px solid var(--ink);
}
.voice-grid {
  columns: 1;
  column-gap: 1.5rem;
}
.voice {
  break-inside: avoid;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--coral);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
}
.voice p {
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.5;
  font-style: italic;
  color: #2a2a28;
  margin: 0 0 1.1rem;
}
.voice .who {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.voice .who .av {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}
.voice .who b {
  font-family: var(--sans);
  font-size: .86rem;
  display: block;
}
.voice .who span {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.voice .who .rate { margin-left: auto; color: var(--coral); font-size: .82rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 2px solid var(--ink);
}
.faq-item {
  border-bottom: var(--rule);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 1.35rem 3rem 1.35rem 0;
  position: relative;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  gap: 1rem;
}
.faq-q .qnum {
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: .08em;
  flex-shrink: 0;
  padding-top: .35rem;
}
.faq-q .plus {
  position: absolute;
  right: .25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--coral);
  left: 50%;
  top: 50%;
}
.faq-q .plus::before { width: 1.5rem; height: 2px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 2px; height: 1.5rem; transform: translate(-50%,-50%); transition: transform .3s; }
.faq-q[aria-expanded="true"] .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 3rem 1.5rem 3rem;
  color: var(--muted);
  max-width: 68ch;
}

/* ============================================================
   Newsletter + contacts
   ============================================================ */
.signup {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.signup .wrap {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.25rem);
}
.signup .kicker { color: var(--coral); }
.signup h2 {
  color: var(--paper);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}
.signup .dek { color: #cfc9bb; max-width: 42ch; margin-top: 1rem; }
.signup-contacts {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}
.signup-contacts .row {
  display: flex;
  gap: .8rem;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid #33322e;
}
.signup-contacts .row .l {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  min-width: 6.5rem;
  flex-shrink: 0;
}
.signup-contacts .row a,
.signup-contacts .row span { color: #e8e3d6; }

.card-form {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--coral);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}
.card-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.field {
  margin-bottom: 1rem;
}
.field label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .4rem;
}
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"] {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: .8rem .9rem;
  border: 1px solid var(--hairline);
  background: var(--paper-deep);
  color: var(--ink);
}
.field input:focus {
  border-color: var(--coral);
  outline: none;
  background: #fffdf7;
}
.consent {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .82rem;
  color: var(--muted);
  margin: 1rem 0 1.25rem;
}
.consent input { margin-top: .25rem; width: 1.1rem; height: 1.1rem; accent-color: var(--coral); flex-shrink: 0; }
.consent a { color: var(--coral); text-decoration: underline; }
.card-form .btn { width: 100%; justify-content: center; }
.success-msg {
  display: none;
  margin-top: 1rem;
  padding: .85rem 1rem;
  background: #eaf3ea;
  border: 1px solid #b7d4b7;
  color: #2f6b34;
  font-size: .88rem;
  font-weight: 600;
}
.success-msg.show { display: block; }

/* ============================================================
   About strip
   ============================================================ */
.about {
  border-bottom: 2px solid var(--ink);
}
.about .wrap {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.about-figure {
  border: 2px solid var(--ink);
  overflow: hidden;
}
.about-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.about-body h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); }
.about-body h2 em { font-style: italic; font-weight: 300; color: var(--coral); }
.about-body .sig {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}
.about-body .sig span {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: #cfc9bb;
  padding-block: clamp(2.75rem, 6vw, 4.5rem);
}
.footer .wrap {
  display: grid;
  gap: 2.5rem;
}
.footer-brand .brand b,
.footer-brand .brand i { color: var(--paper); }
.footer-brand .brand i { color: var(--coral); }
.footer-brand p {
  margin-top: 1rem;
  max-width: 40ch;
  font-size: .92rem;
  color: #a8a296;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.footer-col a,
.footer-col address {
  display: block;
  font-style: normal;
  color: #cfc9bb;
  font-size: .9rem;
  margin-bottom: .6rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid #33322e;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  justify-content: space-between;
  font-size: .78rem;
  color: #857f74;
}

/* ============================================================
   Cookie banner
   ============================================================ */
.cookie {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.4rem;
  display: none;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  align-items: center;
  max-width: 46rem;
  margin-inline: auto;
}
.cookie.show { display: flex; }
.cookie p {
  margin: 0;
  font-size: .86rem;
  flex: 1 1 18rem;
  color: var(--muted);
}
.cookie p b { color: var(--ink); }
.cookie a { color: var(--coral); text-decoration: underline; }
.cookie .cookie-actions { display: flex; gap: .6rem; }
.cookie .btn { padding: .6rem 1.1rem; font-size: .72rem; }

/* ============================================================
   Interior page shell
   ============================================================ */
.page-head {
  border-bottom: 2px solid var(--ink);
  background: var(--paper-deep);
}
.page-head .wrap {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.page-head .crumbs {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.page-head .crumbs a:hover { color: var(--coral); }
.page-head h1 {
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  max-width: 18ch;
}
.page-head h1 em { font-style: italic; font-weight: 300; color: var(--coral); }
.page-head .dek {
  margin-top: 1.25rem;
  color: var(--muted);
  max-width: 52ch;
  font-size: 1.05rem;
}

.prose {
  max-width: 44rem;
}
.prose h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: var(--rule);
}
.prose h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.prose h3 {
  font-size: 1.2rem;
  margin: 1.75rem 0 .6rem;
}
.prose p, .prose li { color: #33322e; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1rem; }
.prose li { margin-bottom: .5rem; }
.prose a { color: var(--coral); text-decoration: underline; }
.prose .updated {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}
.prose .callout {
  background: var(--paper-deep);
  border-left: 3px solid var(--coral);
  padding: 1.1rem 1.3rem;
  margin: 1.5rem 0;
}
.prose .callout p:last-child { margin-bottom: 0; }

/* NAP block reused */
.nap {
  font-style: normal;
  line-height: 1.9;
}
.nap b { font-family: var(--serif); }

/* Contact page grid */
.contact-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}
.contact-info .info-row {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: var(--rule);
}
.contact-info .info-row .ic {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--ink);
  display: grid;
  place-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info .info-row h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.contact-info .info-row p { margin: 0; color: var(--muted); font-size: .92rem; }
.contact-info .info-row a:hover { color: var(--coral); }

/* Team / about cards */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 2rem;
}
.team-card {
  background: var(--paper);
  padding: 1.6rem;
}
.team-card .av {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--coral);
  color: var(--paper);
  display: grid;
  place-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.team-card h3 { font-size: 1.2rem; }
.team-card .role {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
  margin: .3rem 0 .8rem;
}
.team-card p { color: var(--muted); font-size: .9rem; margin: 0; }

/* 404 */
.notfound {
  min-height: 62vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.notfound .big {
  font-family: var(--serif);
  font-size: clamp(6rem, 22vw, 12rem);
  font-weight: 900;
  line-height: .9;
  color: var(--coral);
}
.notfound h1 { font-size: clamp(1.6rem, 5vw, 2.6rem); margin: 1rem 0; }
.notfound p { color: var(--muted); max-width: 40ch; margin-inline: auto; }
.notfound .btn { margin-top: 1.75rem; }

/* ============================================================
   Responsive (grouped)
   ============================================================ */
@media (min-width: 640px) {
  .topbar .hide-sm { display: inline; }
  .ribbon .wrap { grid-template-columns: repeat(4, 1fr); }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .voice-grid { columns: 2; }
  .contact-grid { grid-template-columns: 1.1fr .9fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .hero .wrap { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .pick .wrap { grid-template-columns: 1fr 1fr; }
  .pick.reverse .pick-figure { order: 2; }
  .signup .wrap { grid-template-columns: 1fr 1fr; align-items: start; }
  .about .wrap { grid-template-columns: .9fr 1.1fr; }
  .about.reverse .about-figure { order: 2; }
  .column-grid { grid-template-columns: .8fr 1.7fr; align-items: start; }
  .column-side { position: sticky; top: 6rem; }
  .grid { grid-template-columns: repeat(3, 1fr); }
  .voice-grid { columns: 3; }
  .footer .wrap { grid-template-columns: 1.3fr 2fr; align-items: start; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1100px) {
  .hero h1 { font-size: clamp(3.5rem, 6vw, 5.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .bar-fill { transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Sommario · contents strip (replaces the stat ribbon)
   ============================================================ */
.contents {
  background: var(--ink);
  color: #cfc9bb;
  border-bottom: 2px solid var(--ink);
  padding-block: clamp(2rem, 5vw, 3.25rem);
}
.contents-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #33322e;
}
.contents-head .kicker { color: var(--coral); margin: 0; }
.contents-head h2 {
  font-family: var(--serif);
  color: var(--paper);
  font-weight: 600;
  margin: 0;
  font-size: clamp(1.65rem, 3.6vw, 2.5rem);
  line-height: 1;
}
.contents-issue {
  margin-left: auto;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #857f74;
}
.contents-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0 3.5rem;
}
.contents-list li { border-top: 1px solid #2a2926; }
.contents-list a {
  display: flex;
  align-items: baseline;
  gap: .85rem;
  padding: .72rem .1rem;
  color: #cfc9bb;
  text-decoration: none;
  transition: color .2s;
}
.contents-list a:hover { color: var(--paper); }
.contents-list a:hover .folio { color: var(--coral); }
.contents-list .entry { font-size: .95rem; flex: 0 1 auto; }
.contents-list .leader {
  flex: 1 1 auto;
  min-width: 1.5rem;
  align-self: stretch;
  border-bottom: 1px dotted #4a4943;
  transform: translateY(-.18rem);
}
.contents-list .folio {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--coral);
  letter-spacing: .01em;
}

/* ============================================================
   Colophon / masthead footer
   ============================================================ */
.colophon .wrap { display: block; }
.colophon-mast {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #33322e;
}
.colophon-mast .brand { font-size: 1.65rem; }
.colophon-mast .brand b { color: var(--paper); }
.colophon-mast .brand i { color: var(--coral); }
.colophon-tag {
  margin: .95rem 0 0;
  max-width: 54ch;
  font-size: .92rem;
  color: #a8a296;
}
.colophon-issue {
  margin: .8rem 0 0;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral);
}
.colophon-credits {
  margin: 1.75rem 0;
  padding: 0;
  display: grid;
  gap: 1.4rem 2.5rem;
}
.colophon-credits dt {
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #857f74;
  margin-bottom: .35rem;
}
.colophon-credits dd {
  margin: 0;
  font-size: .9rem;
  line-height: 1.55;
  color: #cfc9bb;
}
.colophon-credits dd a { color: #cfc9bb; text-decoration: none; transition: color .2s; }
.colophon-credits dd a:hover { color: var(--paper); }
.colophon-foot {
  border-top: 1px solid #33322e;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.5rem;
  justify-content: space-between;
  align-items: baseline;
}
.colophon-legal { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.colophon-legal a {
  font-size: .78rem;
  color: #857f74;
  text-decoration: none;
  transition: color .2s;
}
.colophon-legal a:hover { color: var(--paper); }
.colophon-copy {
  margin: 0;
  font-size: .78rem;
  color: #857f74;
  max-width: 48ch;
}

@media (min-width: 640px) {
  .contents-list { grid-template-columns: 1fr 1fr; }
  .colophon-credits { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .colophon-credits { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   ============================================================
   MAGAZINE REDESIGN v2 — rhythm, rails, feature spread, folios
   (appended: wins on source order for equal specificity)
   ============================================================
   ============================================================ */

/* ---- Grid blowout guard: let review tracks shrink below content ---- */
.grid { grid-template-columns: minmax(0, 1fr); }
.signup-contacts .row a,
.signup-contacts .row span { min-width: 0; overflow-wrap: anywhere; }

/* ---- Shared running-head "rubric" (label, rule, folio) ---- */
.rubric {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: .7rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--ink);
}
.rubric .r-label {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral);
  white-space: nowrap;
}
.rubric .r-rule {
  flex: 1 1 auto;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--hairline) 0 4px, transparent 4px 8px);
}
.rubric .r-folio {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  white-space: nowrap;
}

/* ============================================================
   COVER (nameplate spread) — replaces old .hero markup
   ============================================================ */
.cover { border-bottom: 2px solid var(--ink); }
.cover .wrap { padding-block: clamp(2.4rem, 5vw, 4.5rem); }
.cover-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.cover-eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin: 0 0 1.4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.cover-eyebrow .sep { width: 2.2rem; height: 1px; background: var(--coral); }
.cover h1 {
  font-size: clamp(2.7rem, 7vw, 5rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.02;
}
.cover h1 em { font-style: italic; font-weight: 300; color: var(--coral); }
.cover .dek {
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  color: var(--muted);
  max-width: 48ch;
  margin: 1.5rem 0 0;
  line-height: 1.55;
}
.cover-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.cover-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 2.4rem 0 0;
  border-top: 1px solid var(--ink);
}
.cover-stats > div {
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--hairline);
}
.cover-stats dt {
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .3rem;
}
.cover-stats dd {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 1;
  color: var(--ink);
}
.cover-figure { position: relative; }
.cover-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--ink);
}
.cover-figure figcaption {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .55rem .9rem;
}
.cover-figure .score-seal {
  position: absolute;
  top: -1.1rem; right: -1.1rem;
  width: 5.2rem; height: 5.2rem;
  background: var(--coral);
  color: var(--paper);
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}
.cover-figure .score-seal b { font-family: var(--serif); font-size: 1.5rem; line-height: 1; font-weight: 700; }
.cover-figure .score-seal span { font-size: .5rem; letter-spacing: .16em; text-transform: uppercase; display: block; margin-top: .15rem; }

/* ============================================================
   L EDITORIALE — featured cover review (breaks the grid)
   ============================================================ */
.pick .wrap {
  display: block;
  align-items: initial;
  padding-block: clamp(3.25rem, 7vw, 6rem);
}
.pick-rubric {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 clamp(1.5rem, 4vw, 2.75rem);
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--ink);
}
.pick-rubric .r-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral);
}
.pick-rubric .r-folio { font-family: var(--serif); font-style: italic; color: var(--ink); }
.pick-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
.pick-pull {
  margin: 1.6rem 0;
  padding-left: 1.2rem;
  border-left: 3px solid var(--coral);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.3;
  color: var(--ink);
}

/* ============================================================
   REVIEWS — running head + asymmetric intro row
   ============================================================ */
.rubric-head { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.rubric-head h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 18ch;
}
.rubric-head .lead {
  color: var(--muted);
  max-width: 40ch;
  margin: 1rem 0 0;
  font-size: .98rem;
}

/* Next-issue ruled strip (breaks the grid rhythm) */
.next-issue {
  margin-top: 1px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 1rem 2rem;
  align-items: center;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
}
.next-issue .num { color: var(--coral); letter-spacing: .2em; text-transform: uppercase; font-size: .66rem; font-weight: 700; }
.next-issue h3 { color: var(--paper); font-size: clamp(1.4rem, 3vw, 1.9rem); margin: .35rem 0 0; }
.next-issue p { color: #cfc9bb; margin: 0; font-size: .95rem; max-width: 46ch; }
.next-issue .review-link { color: var(--paper); border-top: 0; padding-top: 0; }
.next-issue .review-link:hover { color: var(--coral); }

/* ============================================================
   AWARDS — asymmetric intro rail + list
   ============================================================ */
.awards-grid { display: grid; gap: clamp(1.75rem, 4vw, 3.5rem); }
.awards-intro .kicker { margin-bottom: 1rem; }
.awards-intro h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.awards-intro .lead { color: var(--muted); margin: 1.1rem 0 0; max-width: 32ch; font-size: .98rem; }
.awards-intro .awards-folio {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--coral);
}
.awards .award-list { border-top: 2px solid var(--ink); }

/* ============================================================
   RATINGS — asymmetric dark grid
   ============================================================ */
.ratings-grid { display: grid; gap: clamp(1.75rem, 4vw, 3.25rem); align-items: start; }
.ratings-intro .kicker { color: var(--coral); margin-bottom: 1rem; }
.ratings-intro h2 { color: var(--paper); font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.04; }
.ratings-intro .lead { color: #cfc9bb; margin: 1.1rem 0 0; max-width: 32ch; font-size: .98rem; }

/* ============================================================
   FEATURE SPREAD — In difesa del gioco lento (multi-column)
   ============================================================ */
.feature { border-bottom: 2px solid var(--ink); }
.feature-rubric {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--ink);
}
.feature-rubric .r-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--coral);
}
.feature-rubric .r-mid {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.feature-rubric .r-folio { margin-left: auto; font-family: var(--serif); font-style: italic; color: var(--ink); }
.feature-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.02;
  max-width: 22ch;
  margin-inline: auto;
  text-align: center;
}
.feature-title em { font-style: italic; font-weight: 300; color: var(--coral); }
.feature-standfirst {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.4;
  color: var(--muted);
  max-width: 58ch;
  margin: 1.25rem auto clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.feature-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2a2a28;
}
.feature-body p { color: #2a2a28; }
.feature-body .drop::first-letter {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  float: left;
  line-height: .72;
  padding: .35rem .55rem 0 0;
  color: var(--coral);
}
.feature-body .pull {
  margin: 1.75rem 0;
  padding: 1.4rem 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.26;
  color: var(--ink);
  text-align: center;
}
.feature-body .pull::before { content: "\201C"; color: var(--coral); }
.feature-body .byline {
  margin-top: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--coral);
}

/* ============================================================
   DIARY — narrow offset column with side rail
   ============================================================ */
.diary-grid { display: grid; gap: clamp(1.5rem, 4vw, 3rem); }
.diary-rail .kicker { margin-bottom: 1rem; }
.diary-rail h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.05; }
.diary-rail h2 em { font-style: italic; font-weight: 300; color: var(--coral); }
.diary-rail .diary-note {
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  max-width: 28ch;
}
.diary-rail .diary-folio {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--coral);
}
.diary-entry { max-width: var(--measure); }

/* ============================================================
   GENRES — running head + asymmetric lede / strip
   ============================================================ */
.genres-inner { display: grid; gap: clamp(1.5rem, 4vw, 2.75rem); align-items: start; }
.genres-lede h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.genres-lede .lead { color: var(--muted); margin: 1rem 0 0; max-width: 30ch; font-size: .98rem; }

/* ============================================================
   FAQ — running head + asymmetric lede / list
   ============================================================ */
.faq-grid { display: grid; gap: clamp(1.5rem, 4vw, 2.75rem); align-items: start; }
.faq-lede h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.faq-lede .lead { color: var(--muted); margin: 1rem 0 0; max-width: 30ch; font-size: .98rem; }
.faq .faq-list { border-top: 2px solid var(--ink); }

/* ============================================================
   Responsive — magazine grids
   ============================================================ */
@media (min-width: 640px) {
  .cover-stats { grid-template-columns: repeat(4, 1fr); }
  .cover-stats > div { padding-right: 1.25rem; }
}
@media (min-width: 900px) {
  .cover-grid { grid-template-columns: 1.12fr .88fr; }

  .pick-grid { grid-template-columns: 1.05fr .95fr; }

  .rubric-head { display: grid; grid-template-columns: 1fr 24rem; align-items: end; gap: 2rem; }
  .rubric-head .lead { margin-top: 0; }

  .next-issue { grid-template-columns: minmax(14rem, .9fr) 1.4fr auto; }

  .awards-grid { grid-template-columns: .82fr 1.85fr; align-items: start; }
  .awards-intro { position: sticky; top: 6rem; }

  .ratings-grid { grid-template-columns: .8fr 1.6fr; }
  .ratings-intro { position: sticky; top: 6rem; }

  .feature-body { columns: 2; column-gap: clamp(2rem, 4vw, 3.5rem); column-rule: 1px solid var(--hairline); }
  .feature-body .pull { column-span: all; margin: 2rem auto; max-width: 40ch; }
  .feature-body > p:first-child { margin-top: 0; }

  .diary-grid { grid-template-columns: 15rem minmax(0, 46rem); justify-content: center; align-items: start; }
  .diary-rail {
    position: sticky;
    top: 6rem;
    padding-right: 2rem;
    border-right: 1px solid var(--hairline);
  }

  .genres-inner { grid-template-columns: 17rem 1fr; }
  .faq-grid { grid-template-columns: 17rem 1fr; }
  .faq-lede { position: sticky; top: 6rem; }
}

@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
  .feature-body { columns: 3; }
}

/* ============================================================
   ============================================================
   BOLD REDESIGN v3 — newsstand cover, big scale, coral spreads
   Concept: a games-culture magazine you'd pick off a newsstand.
   Identity kept: Fraunces + Public Sans, paper/ink + coral.
   (appended last — wins source order at equal specificity)
   ============================================================
   ============================================================ */

/* ---- Paper/film grain (material, not flat) ---- */
.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .05;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 5;
}

/* ---- Ghost button that reads on dark grounds ---- */
.btn.ghost.light {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn.ghost.light:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  transform: translateY(-2px);
}

/* ============================================================
   COVER — full-bleed newsstand cover
   ============================================================ */
.cover {
  position: relative;
  display: flex;
  min-height: min(94vh, 58rem);
  background: #17131d;               /* matches dark image edges */
  border-bottom: 3px solid var(--ink);
  overflow: hidden;
  padding: 0;
}
.cover-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  z-index: 0;
}
.cover-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(18,14,24,.62) 0%, rgba(18,14,24,.06) 20%, rgba(18,14,24,.10) 50%, rgba(18,14,24,.90) 100%),
    linear-gradient(90deg, rgba(18,14,24,.55) 0%, rgba(18,14,24,0) 58%);
}
.cover-inner {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
}
.cover-inner .wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 3.75rem);
  width: 100%;
  color: var(--paper);
  padding-block: clamp(1.4rem, 3.5vw, 2.4rem) clamp(1.4rem, 3vw, 2rem);
}

.cover-flag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .9rem;
  margin: 0 0 clamp(.6rem, 2vw, 1rem);
  padding-bottom: .95rem;
  border-bottom: 1px solid rgba(245,241,232,.34);
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--paper);
}
.cover-flag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }
.cover-flag .cover-place { margin-left: auto; color: #e9c9c0; letter-spacing: .18em; }

.cover-mast {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(3rem, 14vw, 12.5rem);
  line-height: .82;
  letter-spacing: -.035em;
  color: var(--paper);
  text-shadow: 0 3px 34px rgba(0,0,0,.4);
}
.cover-mast em { font-style: italic; font-weight: 300; color: var(--coral); }
.cover-sub {
  margin: clamp(.55rem, 1.6vw, .95rem) 0 0;
  font-family: var(--sans);
  font-size: clamp(.66rem, 1.3vw, .82rem);
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #ece1d6;
}

.cover-main {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
}
.cover-rubric {
  margin: 0 0 1rem;
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral);
}
.cover-lead h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 6.2vw, 4.7rem);
  line-height: 1.0;
  letter-spacing: -.02em;
  color: var(--paper);
  text-shadow: 0 2px 26px rgba(0,0,0,.38);
}
.cover-lead h1 em { font-style: italic; font-weight: 300; color: var(--coral); }
.cover-lead .dek {
  max-width: 42ch;
  margin: 1.25rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
  color: #e8ded3;
}
.cover-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }

.coverlines {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(245,241,232,.32);
}
.coverlines li {
  display: flex;
  gap: .8rem;
  align-items: baseline;
  padding: .72rem 0;
  border-bottom: 1px solid rgba(245,241,232,.18);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.22;
  color: var(--paper);
}
.coverlines b {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--coral);
  padding-top: .18rem;
}
.coverlines em { font-style: italic; color: #f2c3ba; }
.coverlines .cl-score {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--coral);
  font-style: normal;
  margin-left: .15em;
}

/* Cover stats — glassy newsstand footer strip */
.cover .cover-stats {
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  background: rgba(245,241,232,.24);
  border: 1px solid rgba(245,241,232,.26);
}
.cover .cover-stats > div {
  background: rgba(18,14,24,.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 0;
  padding: .9rem 1.15rem;
}
.cover .cover-stats dt { color: #ded2c6; }
.cover .cover-stats dd { color: var(--paper); }

@media (min-width: 560px) {
  .cover .cover-stats { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .cover-main { grid-template-columns: 1.55fr 1fr; align-items: end; }
  .cover-lead { padding-right: clamp(1rem, 3vw, 2.5rem); }
}

/* ============================================================
   EDITOR'S PICK (Stardew cover story) — bolder, image-led
   ============================================================ */
.pick-body h2 { font-size: clamp(2.2rem, 5.6vw, 4rem); line-height: 1.0; }
.pick-body .pick-score b { font-size: clamp(3.4rem, 7vw, 5rem); }
.pick-figure { border-width: 3px; }
.pick-figure img { aspect-ratio: 3 / 4; }
.pick-figure .tag { font-size: .7rem; padding: .5rem .9rem; }
@media (min-width: 900px) {
  .pick-grid { grid-template-columns: .95fr 1.05fr; }
  .pick-figure img { aspect-ratio: 4 / 5; }
}

/* ============================================================
   Big scale — feature openers get real display headlines
   ============================================================ */
.rubric-head h2 { font-size: clamp(2.3rem, 6vw, 4.3rem); line-height: 1.0; max-width: 15ch; letter-spacing: -.02em; }
.awards-intro h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.02; }
.award-winner { font-size: clamp(1.7rem, 4vw, 2.8rem); }
.diary-rail h2 { font-size: clamp(2rem, 4.6vw, 3rem); }
.genres-lede h2,
.faq-lede h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.signup h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.02; }
.about-body h2 { font-size: clamp(2.1rem, 5vw, 3.3rem); }

/* Contents (sommario) heading a touch bigger for rhythm */
.contents-head h2 { font-size: clamp(1.8rem, 3.8vw, 2.9rem); }

/* ============================================================
   FEATURE — full-bleed CORAL spread (big color field)
   ============================================================ */
.feature {
  padding-block: 0;
  border-bottom: 3px solid var(--ink);
}
.feature-head {
  background: var(--coral);
  color: var(--paper);
  border-bottom: 3px solid var(--ink);
  padding-block: clamp(2.75rem, 6.5vw, 5.5rem);
}
.feature-head .feature-rubric {
  border-bottom-color: rgba(245,241,232,.45);
  justify-content: center;
  margin-inline: auto;
  max-width: 60rem;
}
.feature-head .feature-rubric .r-label { color: var(--paper); }
.feature-head .feature-rubric .r-mid { color: #fbe0da; }
.feature-head .feature-rubric .r-folio { color: var(--paper); }
.feature-title {
  color: var(--paper);
  font-size: clamp(2.7rem, 8.5vw, 6rem);
  line-height: .98;
  letter-spacing: -.025em;
  max-width: 18ch;
}
.feature-title em { font-style: italic; font-weight: 300; color: var(--ink); }
.feature-standfirst {
  color: #fce9e4;
  border-bottom-color: rgba(245,241,232,.42);
}
.feature-wrap { padding-block: clamp(2.75rem, 6.5vw, 5rem); }

/* ============================================================
   Heavier frames on key sections (material, not shadow)
   ============================================================ */
.contents,
.pick,
.reviews,
.awards,
.ratings,
.signup { border-bottom-width: 3px; }
.grid { border-width: 2px; border-color: var(--ink); }

/* ============================================================
   Reduced motion / print safety
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .cover .cover-stats > div { backdrop-filter: none; }
}
