:root {
  color-scheme: dark;
  --ink: #090705;
  --paper: #f8efdc;
  --gold: #f4cf67;
  --hot: #ff4f8b;
  --red: #e63b2e;
  --blue: #7dd7ff;
  --muted: rgba(248, 239, 220, 0.68);
  --line: rgba(248, 239, 220, 0.18);
  --shadow: rgba(0, 0, 0, 0.62);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 79, 139, 0.22), transparent 28rem),
    radial-gradient(circle at 80% 12%, rgba(125, 215, 255, 0.18), transparent 30rem),
    linear-gradient(135deg, #120906 0%, #070707 46%, #120b17 100%);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(248, 239, 220, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 239, 220, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

img {
  display: block;
  width: 100%;
}

.ticker {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 32px;
  overflow: hidden;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background: var(--gold);
  color: #1b1206;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
}

.ticker span {
  animation: crawl 18s linear infinite;
}

@keyframes crawl {
  from {
    transform: translateX(28vw);
  }
  to {
    transform: translateX(-110vw);
  }
}

main {
  width: min(100%, 1220px);
  margin: 0 auto;
  padding: clamp(22px, 4vw, 56px);
}

.hero {
  min-height: calc(100vh - 44px);
  display: grid;
  align-items: center;
}

.stamp {
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.35);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

h1 {
  max-width: 8ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 13vw, 168px);
  line-height: 0.78;
  text-transform: uppercase;
}

h1 span {
  display: block;
  position: relative;
  z-index: 3;
  color: #ff5fb0;
  font-style: italic;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.42),
    0 0 28px rgba(255, 79, 139, 0.78),
    5px 5px 0 rgba(244, 207, 103, 0.82),
    9px 9px 0 rgba(0, 0, 0, 0.72);
  -webkit-text-stroke: clamp(1px, 0.18vw, 3px) rgba(255, 244, 218, 0.82);
  animation: zaddyPulse 5.8s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(255, 79, 139, 0.42));
}

h1 span::before {
  content: "";
  position: absolute;
  inset: 7% -3% 4% -3%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.55) 48%, transparent 72%);
  filter: blur(16px);
  animation: zaddyHalo 5.8s ease-in-out infinite;
}

@keyframes zaddyPulse {
  0%,
  100% {
    opacity: 0.76;
    transform: translateX(0) skewX(-8deg);
    filter: drop-shadow(0 0 10px rgba(255, 79, 139, 0.35));
  }

  45%,
  55% {
    opacity: 1;
    transform: translateX(0.018em) skewX(-8deg);
    filter: drop-shadow(0 0 30px rgba(255, 79, 139, 0.78));
  }
}

@keyframes zaddyHalo {
  0%,
  100% {
    opacity: 0.54;
    transform: scaleX(0.96);
  }

  50% {
    opacity: 0.94;
    transform: scaleX(1.03);
  }
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 7vw, 88px);
  line-height: 0.9;
}

.lede {
  max-width: 46rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.18;
}

.definition {
  max-width: 42rem;
  margin-top: 24px;
  padding: 18px;
  border: 1px dashed rgba(244, 207, 103, 0.58);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.32);
  color: rgba(248, 239, 220, 0.84);
  line-height: 1.5;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.definition strong {
  color: var(--gold);
}

.hero__card,
.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 239, 220, 0.24);
  background: #080706;
  box-shadow:
    0 36px 90px var(--shadow),
    0 0 0 8px rgba(255, 255, 255, 0.035);
}

.hero__card {
  border-radius: 28px;
  transform: rotate(2deg);
}

.hero__card::before,
.shot::before {
  content: "PAPARAZZI";
  position: absolute;
  top: 18px;
  left: -42px;
  z-index: 2;
  padding: 8px 48px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  transform: rotate(-18deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.hero__card img {
  aspect-ratio: 4 / 5;
  height: min(76vh, 760px);
  object-fit: cover;
}

.hero__card figcaption,
.caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px;
  border: 1px solid rgba(248, 239, 220, 0.18);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(14px);
  color: rgba(248, 239, 220, 0.82);
  font-size: 14px;
  line-height: 1.35;
}

.hero__card figcaption span,
.caption span {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.briefing,
.verdict {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin: 70px 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(248, 239, 220, 0.08), rgba(255, 79, 139, 0.08)),
    rgba(0, 0, 0, 0.24);
}

.briefing {
  min-height: min(72vh, 720px);
}

.briefing h2 {
  max-width: 8.8ch;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.88;
}

.briefing__evidence,
.verdict p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.35;
}

.briefing__evidence {
  align-self: center;
  padding: clamp(18px, 2.5vw, 28px);
  border: 1px solid rgba(248, 239, 220, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(244, 207, 103, 0.12), transparent 42%),
    rgba(0, 0, 0, 0.26);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.briefing__evidence::before {
  content: "Exhibits 01–05";
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.briefing__evidence p {
  margin: 0;
  max-width: 30rem;
}

.evidence-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px);
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.evidence-strip img {
  aspect-ratio: 3 / 4;
  height: clamp(148px, 14vw, 196px);
  object-fit: cover;
  border: 1px solid rgba(248, 239, 220, 0.2);
  border-radius: 16px;
  filter: saturate(1.08) contrast(1.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.evidence-strip img:nth-child(2n) {
  transform: translateY(8px) rotate(1.5deg);
}

.evidence-strip img:nth-child(2n + 1) {
  transform: rotate(-1.2deg);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.shot {
  min-height: 360px;
  border-radius: 28px;
}

.shot:nth-child(1) {
  grid-column: span 4;
  transform: rotate(-1.5deg);
}

.shot:nth-child(2) {
  grid-column: span 4;
  transform: translateY(40px) rotate(1deg);
}

.shot:nth-child(3) {
  grid-column: span 4;
  transform: rotate(-0.5deg);
}

.shot:nth-child(4) {
  grid-column: span 5;
  transform: translateY(18px) rotate(1.2deg);
}

.shot:nth-child(5) {
  grid-column: span 7;
  transform: rotate(-1deg);
}

.shot img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.shot:hover img {
  transform: scale(1.045);
  filter: saturate(1.18) contrast(1.08);
}

.verdict {
  position: relative;
  display: block;
  margin-bottom: 0;
  text-align: center;
}

.verdict h2 {
  max-width: 900px;
  margin: 0 auto 18px;
}

.verdict p:last-child {
  max-width: 720px;
  margin: 0 auto;
}

@media (max-width: 880px) {
  main {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .hero__grid,
  .briefing {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 28px;
  }

  .lede {
    max-width: 100%;
  }

  .briefing {
    min-height: auto;
  }

  .briefing h2 {
    max-width: 9.5ch;
  }

  .hero__card {
    transform: none;
  }

  .hero__card img {
    height: auto;
    max-height: 68vh;
  }

  .hero__card figcaption,
  .caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }

  .gallery {
    display: grid;
    grid-template-columns: 1fr;
  }

  .evidence-strip {
    grid-template-columns: repeat(5, 92px);
    overflow-x: auto;
    padding-bottom: 16px;
  }

  .evidence-strip img {
    height: 122px;
  }

  .shot,
  .shot:nth-child(n) {
    grid-column: auto;
    transform: none;
  }

  .shot img {
    max-height: 78vh;
  }
}

@media (max-width: 540px) {
  main {
    padding: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(54px, 18vw, 76px);
    line-height: 0.84;
    letter-spacing: -0.058em;
  }

  h1 span {
    display: inline-block;
    max-width: 100%;
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    white-space: nowrap;
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.35),
      0 0 20px rgba(255, 79, 139, 0.72),
      3px 3px 0 rgba(244, 207, 103, 0.72),
      6px 6px 0 rgba(0, 0, 0, 0.7);
    -webkit-text-stroke: 1px rgba(255, 244, 218, 0.78);
  }

  h1 span::before {
    inset: 0 -2% -2%;
    filter: blur(12px);
  }

  h2 {
    font-size: clamp(35px, 12vw, 54px);
    line-height: 0.94;
    letter-spacing: -0.055em;
  }

  .stamp {
    margin-bottom: 18px;
    font-size: 10px;
    line-height: 1.35;
  }

  .ticker {
    font-size: 10px;
  }

  .lede {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.28;
  }

  .definition {
    margin-top: 18px;
    padding: 15px;
    border-radius: 18px;
    font-size: 14px;
  }

  .hero__card,
  .shot {
    border-radius: 22px;
  }

  .hero__card::before,
  .shot::before {
    top: 14px;
    left: -46px;
    padding: 7px 46px;
    font-size: 9px;
  }

  .hero__card img {
    max-height: 58vh;
  }

  .briefing,
  .verdict {
    border-radius: 24px;
    margin: 44px 0;
    padding: 18px;
  }

  .briefing h2 {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 52px);
  }

  .briefing__evidence,
  .verdict p:last-child {
    font-size: 16px;
    line-height: 1.45;
  }

  .briefing__evidence {
    padding: 16px;
    border-radius: 22px;
  }

  .evidence-strip {
    grid-template-columns: repeat(5, minmax(58px, 1fr));
    gap: 7px;
    overflow: visible;
    padding-bottom: 0;
  }

  .evidence-strip img {
    width: 100%;
    height: auto;
    min-height: 92px;
    border-radius: 11px;
  }

  .gallery {
    gap: 18px;
  }

  .shot {
    min-height: auto;
  }

  .shot img {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .caption {
    position: static;
    border: 0;
    border-top: 1px solid rgba(248, 239, 220, 0.16);
    border-radius: 0;
    background: rgba(5, 5, 5, 0.86);
    backdrop-filter: none;
  }
}
