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

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

:root {
  --ink: #1a1714;
  --paper: #faf8f4;
  --accent: #8b4a2f;
  --gold: #b8962e;
  --gold-light: #d4b86a;
  --rule: #d9d2c5;
  --ink-muted: #5a534d;
  --prose: 860px;
  --wide: 1140px;
}

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

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

/* ── Typography ── */

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; margin-bottom: 0.75rem; }
h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; font-weight: 600; font-family: 'DM Sans', sans-serif; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

strong { font-weight: 600; }
em { font-style: italic; }

ul, ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
li { margin-bottom: 0.4rem; }

/* ── Layout ── */

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

.prose {
  max-width: var(--prose);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Site Header ── */

.site-header {
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
  background: var(--paper);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

.site-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.site-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
}

.site-nav a:hover { color: var(--accent); }

/* ── Hero ── */

.hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--rule);
}

.hero-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.hero h1 { margin-bottom: 1rem; }

.hero-dek {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Section divider ── */

.section-rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 3rem 0;
}

/* ── Section label ── */

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  display: block;
}

/* ── Cards ── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.card {
  border: 1px solid var(--rule);
  padding: 1.75rem;
  background: #fff;
}

.card-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}

.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; color: var(--ink-muted); margin-bottom: 0; }

/* ── Featured / Editor's Pick card ── */

.card-featured {
  border: none;
  background: var(--ink);
  color: var(--paper);
  padding: 2rem;
}

.card-featured .card-label { color: var(--gold-light); }
.card-featured h3 { color: var(--paper); }
.card-featured p { color: #c9c2b8; }

.card-featured .card-cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.card-featured .card-cta:hover { color: #fff; border-color: #fff; }

/* ── Callout box ── */

.callout {
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  background: rgba(184, 150, 46, 0.07);
  margin: 2rem 0;
}

.callout-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.callout h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.callout p { font-size: 0.95rem; margin-bottom: 0.6rem; }
.callout p:last-child { margin-bottom: 0; }

.callout a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ── Venue list item ── */

.venue-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}

.venue-item:last-child { border-bottom: none; }

.venue-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
  display: block;
}

.venue-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.venue-meta span::before {
  content: '·';
  margin-right: 0.5rem;
  color: var(--rule);
}

.venue-meta span:first-child::before { display: none; }

/* ── Tier section ── */

.tier-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tier-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}

/* ── Table ── */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.data-table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 2px solid var(--rule);
}

.data-table td {
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(0,0,0,0.02); }

/* ── Checklist ── */

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--rule);
  font-size: 0.97rem;
}

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

.checklist li::before {
  content: '□';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* ── Timeline ── */

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}

.timeline-item:last-child { border-bottom: none; }

.timeline-when {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  padding-top: 0.2rem;
  letter-spacing: 0.02em;
}

/* ── Comparison grid ── */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.compare-col {
  border: 1px solid var(--rule);
  padding: 1.5rem;
}

.compare-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--rule);
}

.compare-col ul { margin-bottom: 0; }
.compare-col li { font-size: 0.95rem; }

/* ── Breadcrumb ── */

.breadcrumb {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--rule); }

/* ── Article meta ── */

.article-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ── Pull quote ── */

.pull-quote {
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 0;
  margin: 2.5rem 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
}

/* ── Footer ── */

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.footer-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--ink-muted);
  max-width: 280px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--ink-muted);
  text-decoration: none;
}

.footer-nav a:hover { color: var(--accent); }

.footer-legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

/* ── Responsive ── */

@media (max-width: 680px) {
  html { font-size: 16px; }

  .site-header .container { flex-direction: column; align-items: flex-start; }
  .site-nav { gap: 1rem; }

  .card-grid { grid-template-columns: 1fr; }

  .compare-grid { grid-template-columns: 1fr; }

  .timeline-item { grid-template-columns: 1fr; gap: 0.25rem; }
  .timeline-when { padding-top: 0; }

  .data-table { font-size: 0.82rem; }
  .data-table th, .data-table td { padding: 0.6rem 0.5rem; }

  .footer-inner { flex-direction: column; }
}
