@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Mono:wght@400;500&display=swap');

:root {
  --ink: #1a1714;
  --paper: #f5f0e8;
  --cream: #ede8dc;
  --accent: #c8392b;
  --accent2: #2b6cb0;
  --muted: #7a7060;
  --rule: #d4cfc3;
  --white: #fdfcfa;
  --col: 72rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; display: block; }

.container { max-width: var(--col); margin: 0 auto; padding: 0 2rem; }

/* ── HEADER ── */
.site-header {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--accent);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  max-width: var(--col);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}

.logo-name span { color: var(--accent); }

.logo-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.header-nav {
  background: #111;
  border-bottom: 1px solid #2a2a2a;
}

.nav-list {
  display: flex;
  list-style: none;
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-list a {
  display: block;
  padding: 0.75rem 1.1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b0a898;
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list a.active { color: var(--accent); }

.nav-list li:first-child a { padding-left: 0; }

/* ── HERO BAND ── */
.hero-band {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 2rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ── PAGE TITLES ── */
.page-head {
  border-bottom: 1px solid var(--rule);
  padding: 3.5rem 0 2rem;
  margin-bottom: 3rem;
}

.page-head .eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.page-head h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
}

.page-head .deck {
  font-size: 1.15rem;
  color: var(--muted);
  margin-top: 0.8rem;
  font-style: italic;
  max-width: 52rem;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  padding: 1.8rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(26,23,20,0.12);
  transform: translateY(-3px);
}

.card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.card h2, .card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.card-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1.2rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}

.rating-stars {
  color: var(--accent);
  font-size: 0.9rem;
}

/* ── ARTICLE BODY ── */
.article-body {
  max-width: 44rem;
}

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 2.5rem 0 0.8rem;
  color: var(--ink);
}

.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 0.6rem;
}

.article-body p { margin-bottom: 1.2rem; }

.article-body ul, .article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.article-body li { margin-bottom: 0.4rem; }

.article-body .lead {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.8rem;
  line-height: 1.65;
}

.pullquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink);
}

/* ── SCORE TABLE ── */
.score-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.9rem;
}

.score-table th {
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1rem;
  text-align: left;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.score-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--rule);
}

.score-table tr:nth-child(even) td { background: var(--cream); }

.score-bar {
  height: 8px;
  background: var(--rule);
  border-radius: 4px;
  overflow: hidden;
  min-width: 80px;
  display: inline-block;
  vertical-align: middle;
}

.score-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}

/* ── SIDEBAR ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--ink);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.sidebar-widget h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--muted);
}

.sidebar-widget ul { list-style: none; }

.sidebar-widget li {
  border-bottom: 1px solid var(--rule);
  padding: 0.6rem 0;
  font-size: 0.88rem;
}

.sidebar-widget li:last-child { border-bottom: none; }

/* ── CONTACT ── */
.contact-info {
  background: var(--ink);
  color: var(--paper);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.contact-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: #b0a898;
}

.contact-icon {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── LEGAL PAGES ── */
.legal-body {
  max-width: 46rem;
  font-size: 0.95rem;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.2rem 0 0.7rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}

.legal-body h2:first-of-type { border-top: none; padding-top: 0; }

.legal-body p { margin-bottom: 1rem; }

.legal-body ul { padding-left: 1.4rem; margin-bottom: 1rem; }

.legal-body li { margin-bottom: 0.35rem; }

.legal-date {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: #b0a898;
  padding: 3.5rem 0 0;
  margin-top: 5rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 2rem 3rem;
  border-bottom: 1px solid #2a2a2a;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand p { margin-top: 0.8rem; line-height: 1.6; max-width: 22rem; }

.footer-col h5 {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #b0a898; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }

.footer-disclaimer {
  background: #111;
  padding: 1.5rem 2rem;
  max-width: 100%;
}

.footer-disclaimer .container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.disclaimer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.disclaimer-text {
  font-size: 0.78rem;
  color: #6b6358;
  line-height: 1.6;
}

.footer-bottom {
  background: #0c0b0a;
  padding: 1rem 2rem;
  text-align: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: #4a453f;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2rem;
}

.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 0.4rem; }

/* ── UTILITY ── */
.section-rule {
  border: none;
  border-top: 2px solid var(--ink);
  margin: 0 0 0.4rem;
}
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover { background: #a52d21; color: var(--white); }

.btn-outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover { background: var(--ink); color: var(--paper); }

.verdict-box {
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.verdict-box .score-big {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.verdict-box .score-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.tag-pill {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 0.2rem 0.6rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.63rem;
  letter-spacing: 0.06em;
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

@media (max-width: 600px) {
  .nav-list { overflow-x: auto; }
  .header-top { flex-direction: column; gap: 1rem; text-align: center; }
  .card-grid { grid-template-columns: 1fr; }
}
