:root {
  --bg: #0b1018;
  --amber: #edae2e;
  --steel: #385f6b;
  --ivory: #f7f4ed;
  --muted: #c7ccd4;
  --card: #141820;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(1200px 600px at 10% -10%, #1a1408 0%, var(--bg) 55%);
  color: var(--ivory);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  line-height: 1.55;
}

.pill {
  position: fixed;
  z-index: 20;
  right: 18px;
  bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--amber);
  color: #1a1204;
  text-decoration: none;
  font: 600 13px/1 "Avenir Next", "Segoe UI", sans-serif;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}
.pill--two { bottom: 68px; background: var(--steel); color: var(--ivory); }
.pill--three { bottom: 114px; background: #2a2438; color: var(--ivory); }

.editorial {
  max-width: 42rem;
  padding: 18vh 8vw 8vh;
}
.kicker {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font: 600 11px/1 "Avenir Next", sans-serif;
  color: var(--amber);
}
.editorial h1 {
  margin: 0.2em 0 0;
  font-size: clamp(4.2rem, 14vw, 8.5rem);
  line-height: 0.85;
  font-weight: 700;
}
.deck {
  margin: 0.4em 0 0;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--amber);
  font-style: italic;
}
.lede {
  margin-top: 1.6rem;
  max-width: 34rem;
  font-size: 1.15rem;
  color: var(--muted);
}

.prose, .shots, .legal, .colophon {
  max-width: 42rem;
  padding: 0 8vw 4rem;
}
h2 {
  margin: 0 0 1rem;
  font-size: 1.7rem;
}
.prose p, .shots p, .legal p {
  color: var(--muted);
  font-size: 1.05rem;
}

.inline-row img {
  display: block;
  width: min(220px, 42vw);
  height: auto;
  margin: 1rem 0 1.4rem;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 56rem;
}
.legal a { color: var(--amber); }

.colophon {
  padding-bottom: 8rem;
  font: 500 13px/1.4 "Avenir Next", sans-serif;
  color: var(--muted);
}
.colophon a { color: var(--amber); }

@media (max-width: 720px) {
  .legal { grid-template-columns: 1fr; }
  .pill, .pill--two, .pill--three { right: 12px; }
}
