:root {
  --bg: #f5f7f2;
  --panel: #ffffff;
  --text: #1e2a22;
  --muted: #56645b;
  --line: #d7ddd6;
  --accent: #204d35;
  --accent-2: #dfeadf;
  --shadow: 0 12px 35px rgba(21, 38, 28, 0.08);
  --radius: 20px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f5f7f2 0%, #eef2ee 100%);
  color: var(--text);
}
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { padding: 44px 0 20px; }
.brand-row {
  display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px;
}
.eyebrow { text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-size: 12px; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1; margin: 10px 0 14px; }
.lede { max-width: 760px; color: var(--muted); font-size: 1.1rem; }
.notice {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow);
}
.notice.strong { border-left: 6px solid var(--accent); }
.section-gap { padding: 34px 0; }
.intro-grid, .four-up { display: grid; gap: 18px; }
.intro-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.card.accent { background: #eef5ef; }
.clean-list { margin: 12px 0 0; padding-left: 18px; }
.section-heading { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 18px; }
.section-heading h2 { margin: 8px 0 0; font-size: 2rem; }
.section-copy { color: var(--muted); max-width: 520px; }
.review-grid { display: grid; gap: 22px; }
.review-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 250px 1fr; overflow: hidden;
}
.poster {
  min-height: 100%; color: white; display: flex; align-items: end; justify-content: start;
  padding: 22px; font-weight: 800; letter-spacing: .08em; line-height: 1.1; font-size: 1.4rem;
}
.poster-godfather { background: linear-gradient(180deg, #161515 0%, #4d3929 100%); }
.poster-shawshank { background: linear-gradient(180deg, #183149 0%, #5f7f9d 100%); }
.poster-forrest { background: linear-gradient(180deg, #4d5f70 0%, #b2c0cd 100%); }
.review-body { padding: 24px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.badge {
  display: inline-flex; align-items: center; border-radius: 999px; padding: 8px 12px; font-size: .9rem; font-weight: 700;
}
.primary-badge { background: #dbeedb; color: #1f4b32; }
.secondary-badge { background: #edf0ec; color: #39453d; }
h3 { margin: 0 0 10px; font-size: 1.55rem; }
.disclosure, .vote-note { color: var(--muted); font-size: .95rem; }
.summary { font-size: 1.05rem; line-height: 1.6; }
.vote-box {
  margin-top: 18px; border: 1px solid var(--line); border-radius: 18px; padding: 18px; background: #fafcf9;
}
.vote-box h4 { margin: 0 0 12px; font-size: 1rem; }
.vote-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.vote-btn {
  border: 1px solid #bfd0c2; background: white; color: var(--text); padding: 11px 14px; border-radius: 999px;
  cursor: pointer; font: inherit; transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
}
.vote-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(26, 50, 32, 0.08); }
.vote-btn.active { border-color: var(--accent); background: #eaf5ec; }
.count {
  display: inline-flex; align-items: center; justify-content: center; min-width: 28px; margin-left: 8px;
  padding: 2px 8px; border-radius: 999px; background: #f1f4f0; font-size: .9rem;
}
.social-card {
  margin-top: 16px; padding: 14px 16px; border-radius: 16px; background: #f1f6f1; border: 1px solid #d7e2d8;
}
.link-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text);
  background: white; border: 1px solid var(--line); padding: 12px 16px; border-radius: 999px; font-weight: 700;
}
.button.primary { background: var(--accent); color: white; border-color: var(--accent); }
.button.subtle { background: #f3f5f2; }
.footer-disclosure p { margin: 10px 0; }
.site-footer { padding: 30px 0 50px; }
.footer-row { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); }
.nowrap { white-space: nowrap; }

@media (max-width: 900px) {
  .intro-grid, .four-up, .review-card { grid-template-columns: 1fr; }
  .brand-row, .section-heading, .footer-row { flex-direction: column; align-items: start; }
  .poster { min-height: 220px; }
}
