@import url('https://fonts.googleapis.com/css2?family=Anton&family=Newsreader:ital,wght@0,400;0,500;1,400&family=Inter:wght@500;600&display=swap');

:root {
  --bg: #FAF8F4;
  --ink: #17140F;
  --rust: #A8431C;
  --taupe: #8C8272;
  --line: #E4DFD4;
  --measure: 65ch;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Newsreader', serif;
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rust); text-decoration: none; border-bottom: 1px solid currentColor; }
a:hover { opacity: 0.7; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* --- top nav --- */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1rem;
}
.nav .brand {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}
.nav a { border-bottom: none; }
.nav .back {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taupe);
  border-bottom: none;
}

/* --- cover card (signature element, "magazine cover") --- */
.cover {
  position: relative;
  display: block;
  min-height: 260px;
  border-radius: 2px;
  background: linear-gradient(155deg, #22201B 0%, #3A2E24 55%, var(--rust) 130%);
  color: #FAF8F4;
  padding: 2rem 1.75rem 1.5rem;
  overflow: hidden;
  isolation: isolate;
}
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(255,255,255,0.12), transparent 45%);
  z-index: -1;
}
.cover .eyebrow { color: rgba(250,248,244,0.65); margin-bottom: 1.1rem; display: block; }
.cover h2, .cover h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0;
}
.cover h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); }
.cover h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
.cover .dek {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(250,248,244,0.8);
  margin-top: 0.9rem;
  max-width: 32ch;
}

/* --- article list --- */
.list {
  max-width: 900px;
  margin: 1rem auto 6rem;
  padding: 0 1.5rem;
  display: grid;
  gap: 1.1rem;
}
.list .cover { text-decoration: none; }
.intro {
  max-width: var(--measure);
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
  color: var(--taupe);
  font-style: italic;
}

/* --- article page --- */
main.article {
  max-width: var(--measure);
  margin: 2.5rem auto 6rem;
  padding: 0 1.5rem;
}
main.article p { margin: 1.3em 0; }
main.article h2 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rust);
  margin-top: 2.8rem;
  margin-bottom: 0.6rem;
}
main.article blockquote {
  margin: 2rem 0;
  padding-left: 1.2rem;
  border-left: 3px solid var(--rust);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}
main.article strong { color: var(--rust); font-weight: 500; }
.cta {
  margin-top: 3rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #FFFFFF;
}
.cta a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

footer {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  color: var(--taupe);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
}

@media (max-width: 560px) {
  body { font-size: 17px; }
  .cover { min-height: 200px; padding: 1.5rem 1.25rem 1.25rem; }
}
