:root {
  --ink: #0a0a0a;
  --paper: #f1eee6;
  --green: #00a95c;
  --acid: #d8ff3e;
  --orange: #ff7a00;
  --pink: #d00056;
  --red: #c8102e;
  --line: rgba(10, 10, 10, 0.22);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: white;
  transform: translateY(-120%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1480px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 3.5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.brand-copy {
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

.nav-ticket {
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.75fr);
  gap: clamp(2rem, 7vw, 8rem);
  max-width: 1480px;
  min-height: calc(100svh - 97px);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 8rem) clamp(1.25rem, 4vw, 4rem);
  align-items: center;
}

.kicker {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 9ch;
  margin-bottom: 2rem;
  font-size: clamp(4.4rem, 10.5vw, 10rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.76;
  text-transform: uppercase;
}

h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-intro {
  max-width: 39rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 4rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: white;
}

.button-quiet {
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 45rem;
  margin: 0;
  border-top: 1px solid var(--line);
}

.quick-facts div {
  padding: 1rem 1rem 0 0;
}

.quick-facts dt {
  margin-bottom: 0.4rem;
  color: #595751;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.poster-wrap {
  position: relative;
  max-width: 32rem;
  margin: 0 auto;
  padding: 0.65rem;
  background: white;
  box-shadow: 1.25rem 1.25rem 0 var(--green);
  transform: rotate(1.5deg);
}

.poster-wrap::before {
  position: absolute;
  z-index: 1;
  top: -1.6rem;
  left: 50%;
  width: 7rem;
  height: 2.2rem;
  background: rgba(216, 255, 62, 0.88);
  content: "";
  transform: translateX(-50%) rotate(-2deg);
}

.poster-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.poster-wrap figcaption {
  padding: 0.65rem 0.25rem 0.15rem;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.advisory {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  padding: 1.2rem clamp(1.25rem, 4vw, 4rem);
  background: var(--ink);
  color: white;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.advisory span {
  padding: 0.3rem 1.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.advisory span:last-child {
  border-right: 0;
}

.advisory-label {
  color: var(--acid);
}

.classification {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 9rem);
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 10rem) clamp(1.25rem, 4vw, 4rem);
}

.section-heading {
  position: sticky;
  top: 3rem;
  align-self: start;
}

.section-heading h2,
.verdict h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 28rem;
  font-size: 1.1rem;
  line-height: 1.5;
}

.rating-list {
  border-top: 2px solid var(--ink);
}

.rating {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  min-height: 9.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.rating h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.rating p {
  margin-bottom: 0;
  color: #4a4844;
  font-size: 1rem;
  line-height: 1.4;
}

.verdict {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto clamp(1.25rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 5rem);
  background: var(--acid);
}

.verdict-mark {
  display: grid;
  width: clamp(7rem, 13vw, 12rem);
  aspect-ratio: 1;
  place-items: center;
  border: 0.45rem solid white;
  border-radius: 50%;
  outline: 3px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 950;
}

.verdict h2 {
  margin-bottom: 0.75rem;
}

.verdict p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  font-size: 1.05rem;
  line-height: 1.45;
}

.button-dark {
  background: var(--ink);
  color: white;
  white-space: nowrap;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1.25rem, 4vw, 4rem);
  background: var(--ink);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
}

@media (max-width: 850px) {
  nav > a:first-child {
    display: none;
  }

  .hero,
  .classification {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 5rem;
  }

  .hero-copy {
    order: 1;
  }

  .poster-wrap {
    order: 2;
    width: min(82vw, 28rem);
    margin-top: 1rem;
  }

  .section-heading {
    position: static;
  }

  .verdict {
    grid-template-columns: auto 1fr;
  }

  .verdict .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .brand-copy {
    display: none;
  }

  .nav-ticket {
    padding: 0.7rem 0.85rem;
  }

  h1 {
    font-size: clamp(4rem, 23vw, 7rem);
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .quick-facts div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-facts dt {
    margin: 0;
  }

  .advisory {
    justify-content: flex-start;
  }

  .advisory span {
    width: 100%;
    border-right: 0;
  }

  .rating {
    grid-template-columns: 4.8rem 1fr;
    gap: 1.3rem;
  }

  .rating .cff-certificate {
    --certificate-size: 4.8rem;
  }

  .verdict {
    grid-template-columns: 1fr;
  }

  .verdict-mark {
    width: 7rem;
  }

  footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
