:root {
  --paper: #f0e4cf;
  --ink: #2a1e12;
  --muted: #7a6247;
  --rule: #c9b893;
  --card: #e6d5b3;
  --accent: #d9541e;
  --accent-2: #b33a66;
  --polaroid: #f8efdb;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-text: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, monospace;

  --rule-style: 1.5px dashed var(--rule);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-text);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  margin: 0;
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); }
img { max-width: 100%; display: block; }

.paper-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.32;
  mix-blend-mode: multiply;
  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='0.85' numOctaves='2' seed='7' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.3  0 0 0 0 0.2  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.page {
  max-width: 76rem;
  margin: 0 auto;
  padding: 1.5rem 2rem 4rem;
  position: relative;
  z-index: 1;
}

/* ---------- masthead ---------- */
.masthead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .5rem 0 1.25rem;
  border-bottom: var(--rule-style);
  margin-bottom: 2.5rem;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-weight: 700;
}
.wordmark em { font-style: italic; }
.wordmark .amp {
  font-style: normal;
  color: var(--ink);
  padding: 0 0.02em;
}
.nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}
.nav a {
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1.5px dashed transparent;
}
.nav a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.nav a.active { color: var(--accent); border-bottom-color: var(--accent); }
.issue {
  font-family: var(--font-text);
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 820px) {
  .masthead { flex-wrap: wrap; gap: 0.75rem; }
  .nav { order: 3; width: 100%; }
  .issue { order: 2; }
}
@media (max-width: 640px) {
  .nav { font-size: 0.7rem; gap: 1rem; flex-wrap: wrap; }
  .page { padding: 1.25rem 1rem 3rem; }
}

/* ---------- kicker (small, orange) ---------- */
.kicker {
  font-family: var(--font-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent);
  margin: 0 0 0.8rem;
}

/* ---------- cover story ---------- */
.cover-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 0.5rem 0 2rem;
}
.cover-kicker {
  display: inline-block;
  margin: 0 0 1.75rem;
  padding: 0.55rem 0.95rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  transform: rotate(-3deg);
  transform-origin: left center;
}
.cover-story h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.02;
  margin: 0 0 1.25rem;
  letter-spacing: -0.01em;
}
.cover-story h2 a { color: inherit; text-decoration: none; }
.cover-story h2 a:hover em { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 8px; }
.cover-story h2 em,
article.review h1 em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-display);
}
.dek--sans {
  font-family: var(--font-text);
  font-style: normal;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0 0 1.75rem;
  max-width: 38ch;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.4rem;
  background: var(--accent);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--font-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  border: 1.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}
.cta:active {
  transform: translate(5px, 5px);
  box-shadow: 0 0 0 var(--ink);
}
.cta-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 820px) {
  .cover-story { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- "Also on the table" ---------- */
.strip-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1.5rem 0 1.25rem;
  padding-top: 1.5rem;
  border-top: var(--rule-style);
  gap: 1rem;
  flex-wrap: wrap;
}
.strip-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  margin: 0;
  line-height: 1;
}
.strip-title em {
  font-style: italic;
  color: var(--accent-2);
}
.see-all {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-decoration: none;
}
.see-all:hover { color: var(--accent); }

.strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.strip li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0;
  border: 0;
}
.strip .strip-thumb {
  aspect-ratio: 1 / 1;
  background: var(--card);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 10px,
    rgba(201, 184, 147, 0.85) 10px,
    rgba(201, 184, 147, 0.85) 12px
  );
}
.strip .strip-meta .kicker {
  font-size: 0.64rem;
  margin: 0 0 0.25rem;
  letter-spacing: 0.16em;
}
.strip .strip-meta h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 0 0 0.3rem;
  line-height: 1.15;
}
.strip .strip-meta h3 a { color: var(--ink); text-decoration: none; }
.strip .strip-meta h3 a:hover { color: var(--accent); }
.strip .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.strip .meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.strip .score-box {
  display: inline-block;
  padding: 0.12rem 0.55rem;
  background: var(--card);
  border: 1.5px dashed var(--rule);
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  font-size: 0.88rem;
  line-height: 1.3;
  color: var(--ink);
}

@media (max-width: 960px) {
  .strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .strip { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- home: fit to viewport ---------- */
@media (min-width: 820px) and (min-height: 620px) {
  body.home {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  body.home .page {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-bottom: 1rem;
  }
  body.home main {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  body.home .cover-story {
    flex: 1;
    min-height: 0;
    padding: 0 0 1rem;
  }
  body.home .cover-photo {
    min-height: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body.home .hero {
    max-width: min(400px, 52vh);
    margin: 0 auto;
  }
  body.home .strip-heading {
    margin: 0 0 0.75rem;
    padding-top: 1rem;
  }
  body.home footer {
    margin-top: 1rem;
    padding: 0.85rem 0;
  }
}

/* ---------- hero: polaroid frame ---------- */
.hero {
  position: relative;
  margin: 0.5rem auto 1rem;
  transform: rotate(-0.6deg);
  max-width: 400px;
}
.hero-frame {
  background: var(--polaroid);
  padding: 18px 18px 62px;
  box-shadow:
    0 14px 30px rgba(42, 30, 18, 0.18),
    0 2px 6px rgba(42, 30, 18, 0.08);
  position: relative;
}
.hero .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  background: #a64a2e;
  object-fit: cover;
}
.hero .photo-placeholder {
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 26px,
      rgba(248, 239, 219, 0.55) 26px,
      rgba(248, 239, 219, 0.55) 28px
    ),
    #a64a2e;
  display: grid;
  place-items: center;
  color: rgba(248, 239, 219, 0.85);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}
.hero figcaption {
  position: absolute;
  bottom: 22px;
  left: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.1;
}

.tape {
  position: absolute;
  width: 110px;
  height: 26px;
  background: rgba(217, 171, 78, 0.55);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 2;
  top: -12px;
}
.tape-top-l { left: 14%; transform: rotate(-3deg); }
.tape-top-r { right: 14%; transform: rotate(3deg); }
@media (max-width: 640px) {
  .tape { display: none; }
  .hero { transform: none; }
}

/* ---------- score sticker (three-line) ---------- */
.score-sticker {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 118px;
  height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--paper);
  border-radius: 50%;
  border: 1.5px dashed var(--paper);
  outline: 1.5px dashed var(--accent);
  outline-offset: 5px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transform: rotate(-6deg);
  z-index: 4;
  text-align: center;
  padding: 0.5rem;
  line-height: 1;
}
.score-sticker .label {
  font-family: var(--font-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.55rem;
  opacity: 0.9;
  display: block;
  line-height: 1;
}
.score-sticker .number {
  font-family: var(--font-display);
  font-size: 2.55rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin: -2px 0;
}
.score-sticker--rose {
  background: var(--accent-2);
  outline-color: var(--accent-2);
}

@media (max-width: 640px) {
  .score-sticker { width: 88px; height: 88px; top: -14px; right: -10px; }
  .score-sticker .number { font-size: 1.55rem; }
  .score-sticker .label { font-size: 0.48rem; }
}

/* ---------- archive (reviews / blog list) ---------- */
.archive { max-width: 56rem; margin: 0 auto; }
.archive-header {
  padding-bottom: 2rem;
  border-bottom: var(--rule-style);
  margin-bottom: 2rem;
}
.archive-header .kicker { margin-bottom: 0.75rem; color: var(--muted); }
.archive-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}
.archive-header .dek--sans { margin-bottom: 0.75rem; max-width: 44ch; }
.archive-count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: var(--rule-style);
  align-items: center;
}
.archive-list li:last-child { border-bottom: 0; }
.archive-thumb {
  aspect-ratio: 4 / 3;
  background: var(--card);
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0,
    transparent 12px,
    rgba(201, 184, 147, 0.85) 12px,
    rgba(201, 184, 147, 0.85) 14px
  );
}
.archive-meta .kicker { font-size: 0.7rem; margin: 0 0 0.4rem; }
.archive-meta h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.4rem;
  line-height: 1.15;
}
.archive-meta h2 a { color: var(--ink); text-decoration: none; }
.archive-meta h2 a:hover { color: var(--accent); }
.archive-dek {
  font-family: var(--font-text);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 0.6rem;
  max-width: 60ch;
}
.archive-meta .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.archive-meta .meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 640px) {
  .archive-list li { grid-template-columns: 84px 1fr; gap: 1rem; }
  .archive-meta h2 { font-size: 1.2rem; }
}

.archive-empty {
  padding: 3rem 1rem 4rem;
  text-align: center;
  border: 1.5px dashed var(--rule);
  background: rgba(230, 213, 179, 0.35);
}
.archive-empty-headline {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}
.archive-empty-sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0 auto;
  max-width: 34ch;
}

/* ---------- article (review) ---------- */
article.review { max-width: 44rem; margin: 0 auto; }
article.review h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  line-height: 1.03;
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
article.review .dek {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 1.5rem;
}
article.review .byline {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.9rem 0;
  border-top: var(--rule-style);
  border-bottom: var(--rule-style);
  margin-bottom: 1.5rem;
  font-variant-numeric: tabular-nums;
}
article.review .byline .author { color: var(--ink); font-weight: 500; }
article.review .byline .sep { color: var(--rule); }

/* ---------- tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 1.5rem 0 2rem; }
.tags a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--card);
  border: 1.5px dashed var(--rule);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-text);
  font-weight: 500;
}
.tags a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- drop cap ---------- */
article.review .body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  color: var(--accent);
  float: left;
  font-size: 4.6em;
  line-height: 0.85;
  padding: 0.08em 0.12em 0 0;
  margin-top: 0.08em;
}

/* ---------- body ---------- */
article.review .body {
  font-size: 1.06rem;
  line-height: 1.65;
}
article.review .body > h2,
article.review .body > h3 {
  font-family: var(--font-display);
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
article.review .body > h2 { font-size: 1.75rem; }
article.review .body > h3 { font-size: 1.3rem; }
article.review .body p { margin: 0 0 1.1rem; }
article.review .body a { color: var(--accent); }
article.review .body hr {
  border: 0;
  border-top: var(--rule-style);
  margin: 2rem 0;
}
article.review .body pre {
  background: rgba(42, 30, 18, 0.05);
  padding: 1rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  overflow-x: auto;
  border: 1.5px dashed var(--rule);
}
article.review .body code {
  font-family: var(--font-mono);
  font-size: 0.9em;
}
article.review .body ul,
article.review .body ol { padding-left: 1.2rem; }

/* ---------- pull quote ---------- */
.pullquote {
  margin: 2.75rem 0;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1.5px dashed var(--accent);
  position: relative;
  background: rgba(217, 84, 30, 0.04);
}
.pullquote::before {
  content: "Pull quote";
  position: absolute;
  top: -0.7rem;
  left: 1.25rem;
  padding: 0 0.5rem;
  background: var(--paper);
  color: var(--accent);
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.pullquote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.28;
  color: var(--ink);
}
.pullquote cite {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-text);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- verdict card ---------- */
.verdict {
  position: relative;
  margin: 3.5rem 0 2rem;
  padding: 2rem 1.75rem 2.25rem;
  background: var(--card);
  border: 1.5px dashed var(--rule);
  transform: rotate(-0.8deg);
  box-shadow: 0 6px 18px rgba(42, 30, 18, 0.08);
}
.verdict .score-sticker {
  right: -14px;
  top: -34px;
  bottom: auto;
}
.verdict-headline {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  max-width: 72%;
}
.verdict-headline span { display: block; }
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1rem 0 1.5rem;
  padding-top: 1.25rem;
  border-top: var(--rule-style);
}
.pros-cons h4 {
  font-family: var(--font-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin: 0 0 0.6rem;
}
.pros h4 { color: var(--ink); }
.cons h4 { color: var(--accent-2); }
.pros-cons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}
.pros-cons li {
  padding-left: 1.3rem;
  position: relative;
  margin-bottom: 0.45rem;
}
.pros li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.cons li::before {
  content: "!";
  position: absolute;
  left: 0.25rem;
  color: var(--accent-2);
  font-weight: 700;
}
.bottom-line {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.35;
  padding-top: 1rem;
  border-top: var(--rule-style);
  margin: 0;
}
@media (max-width: 640px) {
  .verdict { transform: none; }
  .verdict .score-sticker { right: -6px; top: -22px; }
  .pros-cons { grid-template-columns: 1fr; gap: 1rem; }
  .verdict-headline { max-width: 60%; font-size: 1.5rem; }
}

.location { color: var(--muted); font-size: 0.88rem; margin-top: 1rem; }

/* ---------- back link ---------- */
.back-link {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: var(--font-text);
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1.5px dashed var(--accent);
  padding-bottom: 3px;
  font-size: 0.88rem;
}

/* ---------- footer ---------- */
footer {
  margin-top: 4rem;
  padding: 1.5rem 0;
  border-top: var(--rule-style);
  color: var(--muted);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-text);
}
