:root {
  --ink: #1b1815;
  --ink-soft: #4a433c;
  --ink-faint: #8b8378;
  --paper: #faf7f2;
  --paper-raised: #ffffff;
  --line: #e5ded2;
  --accent: #8a3324;
  --accent-dark: #6f271b;
  --accent-soft: #f1e3dc;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .logo, .kicker, .card h3 {
  font-family: "Fraunces", Georgia, "Iowan Old Style", serif;
}

/* ---------- Header ---------- */
header.site {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 10;
}
header.site .wrap-wide { display: flex; justify-content: space-between; align-items: center; }
header.site a.logo {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 21px;
  color: var(--ink);
  text-decoration: none;
}
header.site nav a {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  margin-left: 26px;
  transition: color 0.15s ease;
}
header.site nav a:hover { color: var(--accent); }

main { padding: 0 0 90px; }

/* ---------- Typography ---------- */
h1 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 1.55rem;
  font-weight: 600;
  margin: 2.3em 0 0.6em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}
h3 { font-size: 1.1rem; margin: 1.6em 0 0.4em; font-weight: 600; }

.dek {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.55;
  margin-bottom: 1.6em;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0 0 1.8em;
  display: block;
  box-shadow: 0 6px 24px -8px rgba(27, 24, 21, 0.25);
}

.byline {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12.5px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2em;
}

/* Breadcrumb */
.breadcrumb {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12.5px;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.6; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.3em; padding-left: 1.4em; }
li { margin-bottom: 0.5em; }

a { color: var(--accent); }

.pick {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 22px;
  margin: 1.6em 0;
  box-shadow: 0 2px 10px -6px rgba(27, 24, 21, 0.15);
}
.pick .pick-label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.pick a.buy {
  display: inline-block;
  margin-top: 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 5px;
  transition: background 0.15s ease;
}
.pick a.buy:hover { background: var(--accent-dark); }

/* ---------- Card grid (homepage) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 1.2em 0 2.8em;
}
.card {
  border: 1px solid var(--line);
  background: var(--paper-raised);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -14px rgba(27, 24, 21, 0.3);
}
.card .card-thumb {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  background: var(--accent-soft);
}
.card .card-body { padding: 16px 18px 18px; }
.card h3 { margin: 0 0 8px; font-size: 1.02rem; line-height: 1.3; font-weight: 600; }
.card a { text-decoration: none; color: var(--ink); }
.card a:hover h3 { color: var(--accent); }
.card p { font-family: "Helvetica Neue", Arial, sans-serif; font-size: 13.5px; color: var(--ink-soft); margin-bottom: 0; line-height: 1.5; }

.section-label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 2.6em 0 0.5em;
}
.section-label:first-of-type { margin-top: 0.4em; }

/* ---------- Hero (homepage) ---------- */
.hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.hero .kicker {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 { font-size: 3.1rem; max-width: 16ch; }
.hero p.lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 58ch; margin-top: 14px; }

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.hero-strip img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  padding: 44px 0 28px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--paper-raised);
}
footer.site .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 30px;
}
footer.site .foot-brand { font-size: 13px; color: var(--ink-soft); line-height: 1.6; max-width: 32ch; }
footer.site .foot-brand .logo {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 10px;
}
footer.site h4 {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin: 0 0 12px;
  font-weight: 700;
}
footer.site ul { list-style: none; margin: 0; padding: 0; }
footer.site li { margin-bottom: 9px; }
footer.site a { color: var(--ink-soft); text-decoration: none; font-size: 13px; }
footer.site a:hover { color: var(--accent); }
footer.site .foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-faint);
}
footer.site .foot-bottom a { color: var(--ink-faint); }

.disclosure {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12.5px;
  color: var(--ink-faint);
  background: var(--accent-soft);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 1.8em 0;
}

@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  footer.site .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 1.7rem; }
  .hero h1 { font-size: 2.1rem; }
  header.site nav a { margin-left: 14px; }
  footer.site .foot-grid { grid-template-columns: 1fr; gap: 22px; }
  footer.site .foot-bottom { flex-direction: column; gap: 8px; }
}
