:root {
  --red: #c73345;
  --red-dark: #66131e;
  --cream: #fff2df;
  --milk: #f7f4ee;
  --ink: #111;
  --pink: #f2a6aa;
  --yellow: #f3d35f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--red-dark);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  display: grid;
  width: min(1180px, calc(100% - 56px));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  transform: translateX(-50%);
  padding: 12px;
  border: 4px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 242, 223, 0.92);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.45);
}

.brand,
.site-header a,
.contract-strip a,
.contract-strip button,
.buy-panel a,
.buy-panel button {
  font-weight: 950;
  text-transform: uppercase;
}

.brand {
  font-size: clamp(20px, 2vw, 32px);
}

.site-header nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header nav {
  justify-content: center;
}

.site-header nav a,
.header-actions a {
  padding: 10px 14px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--milk);
  box-shadow: 4px 4px 0 var(--ink);
}

.header-actions a:last-child {
  background: var(--yellow);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 126px max(22px, calc((100vw - 1180px) / 2)) 54px;
  isolation: isolate;
}

.hero-video,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.28) 45%, rgba(0, 0, 0, 0.54)),
    radial-gradient(circle at 70% 32%, rgba(255, 242, 223, 0.12), transparent 30rem);
}

.hero-copy {
  width: min(780px, 100%);
  color: var(--cream);
}

.tag {
  display: inline-block;
  margin: 0 0 16px;
  padding: 9px 13px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(88px, 14vw, 220px);
  -webkit-text-stroke: 4px var(--ink);
  text-shadow: 8px 8px 0 var(--red), 15px 15px 0 rgba(0, 0, 0, 0.42);
}

.lead {
  width: min(680px, 100%);
  margin: 28px 0 18px;
  padding: 18px;
  border: 4px solid var(--ink);
  border-radius: 10px;
  background: rgba(255, 242, 223, 0.94);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 850;
  line-height: 1.08;
}

.contract-strip {
  display: flex;
  width: min(720px, 100%);
}

.contract-strip button,
.contract-strip a,
.buy-panel button,
.buy-panel a {
  min-height: 58px;
  border: 4px solid var(--ink);
  background: var(--milk);
  box-shadow: 5px 5px 0 var(--ink);
}

.contract-strip button {
  flex: 1;
  min-width: 0;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  padding: 0 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-strip a {
  display: inline-flex;
  align-items: center;
  border-left: 0;
  border-radius: 0 10px 10px 0;
  background: var(--yellow);
  padding: 0 20px;
}

.hero-note {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 64px;
  width: 210px;
  padding: 18px;
  transform: rotate(3deg);
  border: 4px solid var(--ink);
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 7px 7px 0 var(--ink);
  text-transform: uppercase;
}

.hero-note span,
.hero-note em {
  display: block;
  font-size: 14px;
  font-weight: 950;
  font-style: normal;
}

.hero-note strong {
  display: block;
  margin: 8px 0;
  color: var(--red);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 88px;
  line-height: 0.8;
}

.incident,
.book,
.buy-panel,
.footer {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.incident {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
  padding: 70px 0;
}

.incident h2,
.book h2,
.buy-panel h2 {
  color: var(--cream);
  font-size: clamp(54px, 7vw, 110px);
  text-shadow: 5px 5px 0 var(--ink);
}

.incident article {
  display: grid;
  gap: 16px;
}

.incident article p,
.main-card p,
.buy-panel p {
  margin: 0;
  border: 4px solid var(--ink);
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 20px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.12;
}

.book {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  padding-bottom: 76px;
}

.book-card,
.book-grid article {
  border: 4px solid var(--ink);
  border-radius: 14px;
  background: var(--milk);
  box-shadow: 7px 7px 0 var(--ink);
}

.main-card {
  padding: 26px;
}

.main-card span,
.book-grid b {
  font-weight: 950;
  text-transform: uppercase;
}

.main-card h2 {
  margin: 16px 0 20px;
  color: var(--red);
  text-shadow: 4px 4px 0 var(--ink);
}

.book-grid {
  display: grid;
  gap: 16px;
}

.book-grid article {
  padding: 20px;
  transform: rotate(-1deg);
}

.book-grid article:nth-child(2) {
  background: var(--pink);
  transform: rotate(1deg);
}

.book-grid article:nth-child(3) {
  background: var(--yellow);
  transform: rotate(-0.4deg);
}

.book-grid b {
  display: block;
  margin-bottom: 8px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 42px;
}

.book-grid span {
  font-size: 22px;
  font-weight: 850;
}

.buy-panel {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: center;
  margin-bottom: 58px;
  padding: 28px;
  border: 5px solid var(--ink);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), #eb7b84);
  box-shadow: 9px 9px 0 var(--ink);
}

.buy-panel aside {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.buy-panel button,
.buy-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border-radius: 10px;
  padding: 0 18px;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.buy-panel a:nth-child(2) {
  background: var(--yellow);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0 44px;
  border-top: 4px solid rgba(255, 242, 223, 0.4);
  color: var(--cream);
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .site-header,
  .incident,
  .book,
  .buy-panel {
    grid-template-columns: 1fr;
  }

  .site-header nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    justify-content: flex-start;
  }

  .hero-note {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
  }

  .site-header nav a,
  .header-actions a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .hero {
    padding-top: 180px;
  }

  h1 {
    font-size: 76px;
    -webkit-text-stroke-width: 2px;
  }

  .contract-strip {
    flex-direction: column;
  }

  .contract-strip button,
  .contract-strip a {
    border-radius: 10px;
    border-left: 4px solid var(--ink);
  }

  .footer {
    flex-direction: column;
  }
}
