:root {
  --ink: #080605;
  --panel: #17100f;
  --panel-2: #221615;
  --blood: #b91922;
  --gold: #f0ad2d;
  --paper: #f2d6a2;
  --bone: #fff1d6;
  --muted: #dfbf86;
  --line: #5a332c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 12% 0%, #37100f, #080605 42%, #050404);
  color: var(--bone);
  font-family: Georgia, "Times New Roman", serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 1px, transparent 1px, transparent 5px);
  mix-blend-mode: overlay;
  z-index: 10;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }
.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 6vw;
  flex-wrap: wrap;
}
.topnav a:not(.brand) {
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}
.brand { display: inline-flex; margin-right: auto; }
.brand img {
  width: 104px;
  background: #fff;
  border-radius: 4px;
  padding: 4px;
}
.hero {
  min-height: 82vh;
  border-bottom: 6px solid var(--blood);
  background: linear-gradient(135deg, rgba(0,0,0,.15), rgba(185,25,34,.14));
}
.hero.short { min-height: 42vh; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 38px;
  align-items: center;
  padding: 7vh 8vw 8vh;
}
.kicker {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { overflow-wrap: anywhere; }
h1 {
  max-width: 1000px;
  margin: .08em 0 .18em;
  font-size: clamp(3rem, 8vw, 7.3rem);
  line-height: .86;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 #000, 8px 8px 0 var(--blood);
}
h2 {
  margin: .1em 0 .35em;
  font-size: clamp(1.85rem, 3.4vw, 3.5rem);
  line-height: .95;
  text-transform: uppercase;
}
h3 {
  margin: 0 0 .4rem;
  font-size: 1.35rem;
  line-height: 1.05;
}
p { line-height: 1.48; }
.lede {
  max-width: 760px;
  color: #ffe7b9;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
}
.seal {
  justify-self: center;
  display: grid;
  place-items: center;
  width: 190px;
  aspect-ratio: 1;
  border: 5px double var(--gold);
  border-radius: 50%;
  background: #160808;
  color: var(--gold);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transform: rotate(-10deg);
}
section { padding: 54px 8vw; }
.intro, .paper {
  background: var(--paper);
  color: #210b08;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
}
.intro p, .paper p { max-width: 860px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.actions, .buy-strip, .craving-strip, .chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.purchase-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.button {
  display: inline-block;
  margin: 8px 10px 8px 0;
  padding: 13px 17px;
  border: 3px solid #000;
  background: var(--gold);
  color: #130707;
  box-shadow: 5px 5px 0 var(--blood);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.button.ghost {
  background: transparent;
  border-color: var(--gold);
  color: var(--bone);
}
.button.secondary {
  background: var(--bone);
  color: #130707;
}
.button[aria-disabled="true"] {
  opacity: .62;
  pointer-events: none;
}
.text-link {
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.craving-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
  margin-top: 24px;
}
.craving-tile {
  display: block;
  min-height: 188px;
  padding: 22px;
  border: 2px solid var(--line);
  background: linear-gradient(#241817, #0d0808);
  box-shadow: 9px 9px 0 #000;
  color: var(--bone);
}
.craving-tile strong {
  display: block;
  margin: .45rem 0;
  color: var(--bone);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.craving-tile em {
  display: block;
  color: var(--paper);
  font-style: normal;
  line-height: 1.35;
}
.books, .mini-books {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--line);
  background: linear-gradient(#221716, #0d0808);
  box-shadow: 10px 10px 0 #000;
}
.cover-link {
  position: relative;
  display: block;
  overflow: hidden;
}
.card img, .mini-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
.card-body, .mini-card { padding: 18px; }
.line {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .08em;
  line-height: 1.25;
  text-transform: uppercase;
}
.chip, .tag {
  display: inline-block;
  border: 1px solid #6b4636;
  background: #150d0c;
  color: #ffd891;
  padding: 8px 10px;
  font-size: .84rem;
}
.tag {
  border-color: var(--blood);
  background: #2a1513;
  padding: 11px 14px;
}
.book-hero {
  display: grid;
  grid-template-columns: minmax(210px, 330px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding: 54px 8vw;
  border-bottom: 6px solid var(--blood);
}
.book-cover {
  width: 100%;
  border: 2px solid var(--line);
  box-shadow: 12px 12px 0 #000;
}
.dossier-title { font-size: clamp(2.6rem, 7vw, 6.2rem); }
.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.meta-box, .panel, .mini-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 7px 7px 0 #000;
}
.meta-box, .panel { padding: 20px; }
.meta-box h3 {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sample-reader {
  max-width: 880px;
  margin: 24px auto 0;
  color: #1b0d09;
  font-family: Georgia, "Times New Roman", serif;
}
.sample-reader .chapter {
  margin-bottom: 18px;
  border: 1px solid #b18445;
  background: #fff4dc;
  box-shadow: 6px 6px 0 rgba(0,0,0,.18);
}
.sample-reader summary {
  cursor: pointer;
  padding: 18px 20px;
  color: #210b08;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
}
.chapter-body {
  padding: 0 20px 22px;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.75;
}
.chapter-body p {
  margin: 0 0 1.15em;
}
.sample-note {
  max-width: 880px;
  margin: 0 auto 22px;
}
.series-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.series-item {
  min-height: 240px;
}
.series-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.series-book {
  border-top: 1px solid #3d2925;
  padding-top: 10px;
}
.series-status {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
footer {
  padding: 32px 8vw;
  background: #090707;
  color: #d9b478;
}
@media (max-width: 800px) {
  .brand { margin-right: 0; width: 100%; }
  .brand img { width: 92px; }
  .topnav { gap: 13px; padding: 14px 5vw; }
  .hero { min-height: auto; }
  .hero-grid, .book-hero, .split { grid-template-columns: 1fr; }
  .hero-grid { padding: 40px 6vw; }
  .seal { justify-self: start; width: 145px; font-size: 1.25rem; }
  h1 { font-size: clamp(2.5rem, 13vw, 4.6rem); text-shadow: 4px 4px 0 #000, 6px 6px 0 var(--blood); }
  section { padding: 42px 6vw; }
  .books, .mini-books { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); }
  .section-head { display: block; }
  .sample-reader { margin-top: 18px; }
  .sample-reader summary { padding: 16px; }
  .chapter-body { padding: 0 16px 20px; line-height: 1.68; }
}
