:root {
  --paper: #f4f0e6;
  --card: #fcfaf4;
  --ink: #141619;
  --blue: #1b2e4f;
  --gold: #8a6620;
  --teal: #0b7c72;
  --rule: #d9d2c2;
  --body: #24272c;
  --muted: #565b64;
  --pale: #e8e2d3;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: Spectral, Georgia, serif;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--teal);
}
.shell {
  width: min(100% - 3rem, 1152px);
  margin-inline: auto;
}
.site-header {
  background: var(--ink);
  color: var(--paper);
}
.nav-shell {
  min-height: 78px;
  width: min(100% - 3rem, 1152px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}
.monogram {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 3px;
  background: var(--blue);
  color: var(--paper);
  font:
    600 12px Archivo,
    sans-serif;
}
.brand-name {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-mark {
  color: #19c2ae;
  font:
    10px Archivo,
    sans-serif;
}
.site-header nav {
  display: flex;
  gap: 1.6rem;
}
.site-header nav a,
.edition-bar,
.category,
.tags,
.section-heading,
.kicker,
.byline,
.outline-link,
.archive li span,
.archive li b,
.site-footer {
  font-family: Archivo, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.site-header nav a {
  color: var(--paper);
}
.edition-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 10px max(1.5rem, calc((100% - 1152px) / 2));
  background: var(--blue);
  color: #c8ceda;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.19em;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 3rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--rule);
}
.hero-copy {
  align-self: center;
}
.kicker {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.19em;
}
.kicker span {
  font-size: 11px;
  margin-right: 0.45rem;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  max-width: 14ch;
  margin: 0.95rem 0 1.1rem;
  color: var(--blue);
  font-size: clamp(2.75rem, 5vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.deck {
  max-width: 38rem;
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
}
.byline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.45rem 0 0;
  color: var(--body);
  font-size: 10px;
}
.byline span {
  width: 23px;
  height: 1px;
  background: var(--gold);
}
.byline small {
  color: var(--muted);
  font-size: 10px;
}
.hero-art {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(140deg, #d7d0be, #ebe4d5);
  color: var(--blue);
  isolation: isolate;
}
.hero-art:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 38px,
      rgba(27, 46, 79, 0.08) 39px 40px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 38px,
      rgba(27, 46, 79, 0.07) 39px 40px
    );
}
.art-label {
  position: absolute;
  top: 20px;
  left: 22px;
  color: var(--muted);
  font:
    600 9px Archivo,
    sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-art p {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 7%;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 0.87;
  letter-spacing: -0.06em;
  text-align: right;
}
.hero-art em {
  color: var(--gold);
  font-weight: 300;
}
.art-disc {
  position: absolute;
  border: 2px solid var(--blue);
  border-radius: 50%;
  opacity: 0.88;
}
.disc-one {
  width: 190px;
  height: 190px;
  left: 17%;
  top: 26%;
}
.disc-two {
  width: 92px;
  height: 92px;
  left: 42%;
  top: 48%;
  background: var(--teal);
  border-color: var(--teal);
}
.art-line {
  position: absolute;
  z-index: 1;
  width: 150%;
  height: 2px;
  left: -25%;
  top: 47%;
  background: var(--gold);
  transform: rotate(-34deg);
}
.latest {
  padding: 2.2rem 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
  color: var(--gold);
}
.section-heading h2 {
  margin: 0;
  font:
    700 11px Archivo,
    sans-serif;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.section-heading a {
  color: var(--teal);
  font-size: 9px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.story-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 1.1rem;
  border: 1px solid #e3dcca;
  border-radius: 3px;
  background: var(--card);
}
.category {
  margin: 0 0 0.75rem;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
}
.category.teal {
  color: var(--teal);
}
.card-art {
  display: grid;
  place-items: center;
  height: 128px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  background: var(--pale);
  color: var(--blue);
}
.card-art span {
  font:
    700 38px Archivo,
    sans-serif;
  letter-spacing: -0.1em;
  opacity: 0.5;
}
.blue-art {
  background: linear-gradient(135deg, #c8d3e5, #e9e2d4);
}
.red-art {
  background: linear-gradient(135deg, #dbc3ba, #eaded5);
}
.gold-art {
  background: linear-gradient(135deg, #d6c69e, #e6dfcc);
}
.story-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1.2;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.9rem 0;
}
.tags span {
  padding: 0.2rem 0.4rem;
  border: 1px solid #c3cbd8;
  border-radius: 2px;
  color: var(--blue);
  font-size: 8px;
}
.tags .accent-tag {
  border-color: var(--teal);
  color: var(--teal);
}
.story-card footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid #e3dcca;
  color: var(--muted);
  font:
    500 10px Archivo,
    sans-serif;
  line-height: 1.6;
}
.story-card footer p {
  margin: 0;
}
.story-card footer small {
  font-size: 10px;
}
.score {
  padding-left: 0.6rem;
  border-left: 3px solid var(--gold);
  color: var(--blue);
  font:
    700 1.6rem Spectral,
    serif;
  line-height: 1;
}
.channel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 3px;
  background: var(--ink);
  color: var(--paper);
}
.channel-avatar {
  display: grid;
  flex: none;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #23262c;
  color: #bcb8b2;
  font:
    700 9px Archivo,
    sans-serif;
  letter-spacing: 0.1em;
}
.channel-copy {
  max-width: 680px;
}
.channel-copy p {
  display: inline-block;
  margin: 0 0 0.45rem;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  background: #19c2ae;
  color: var(--ink);
  font:
    700 8px Archivo,
    sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.channel-copy h2 {
  display: inline;
  margin: 0 0.5rem;
  font-size: 1.3rem;
}
.channel-copy span {
  display: block;
  color: #c9c3b4;
  font-size: 0.96rem;
  font-style: italic;
  line-height: 1.45;
}
.outline-link {
  margin-left: auto;
  flex: none;
  padding: 0.7rem 1rem;
  border: 1px solid #19c2ae;
  border-radius: 2px;
  color: #19c2ae;
  font-size: 9px;
}
.archive {
  padding: 2.5rem 0 1.3rem;
}
.archive h2,
.creators h2 {
  margin: 0.8rem 0 1.15rem;
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.archive ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.archive li {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 150px 40px;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--rule);
}
.archive li:last-child {
  border-bottom: 1px solid var(--rule);
}
.archive li span,
.archive li b {
  color: var(--muted);
  font-size: 9px;
}
.archive li a {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 600;
}
.progress {
  height: 5px;
  overflow: hidden;
  border-radius: 5px;
  background: #e3dcca;
}
.progress i {
  display: block;
  height: 100%;
  background: var(--teal);
}

.progress .progress-62 { width: 62%; }
.progress .progress-28 { width: 28%; }
.progress .progress-14 { width: 14%; }
.archive li b {
  text-align: right;
}
.creators {
  margin-top: 1.5rem;
  padding: 2.2rem 0 3.2rem;
  border-top: 1px solid var(--rule);
}
.creators > p:last-child {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.55;
}
.site-footer {
  padding: 1.8rem 0;
  background: var(--ink);
  color: var(--paper);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}
.footer-inner strong {
  display: block;
  font:
    600 1.2rem Spectral,
    serif;
  letter-spacing: 0;
  text-transform: none;
}
.footer-inner span {
  display: block;
  margin-top: 0.4rem;
  color: #9a958a;
  font-size: 9px;
}
.site-footer nav {
  display: flex;
  gap: 1.4rem;
}
.site-footer a {
  font-size: 9px;
}
@media (max-width: 780px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }
  .hero-art {
    min-height: 245px;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .story-card {
    min-height: 0;
  }
  .card-art {
    height: 154px;
  }
  .channel {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .channel-copy {
    flex: 1 1 260px;
  }
  .outline-link {
    margin-left: 74px;
  }
  .archive li {
    grid-template-columns: 70px minmax(0, 1fr) 35px;
  }
  .archive .progress {
    display: none;
  }
}
@media (max-width: 500px) {
  .shell,
  .nav-shell {
    width: min(100% - 2rem, 1152px);
  }
  .edition-bar {
    padding-inline: 1rem;
  }
  .edition-bar div:last-child {
    display: none;
  }
  .brand-name {
    font-size: 21px;
  }
  .hero {
    gap: 1.8rem;
  }
  .channel {
    padding: 1.2rem;
  }
  .outline-link {
    margin-left: 0;
  }
  .archive li {
    grid-template-columns: 1fr 32px;
    gap: 0.5rem;
  }
  .archive li span {
    grid-column: 1/-1;
  }
  .archive li a {
    font-size: 1rem;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
