/*
  Paparazzi Events / editorial refinement
  Loaded after event.css so the original interaction layer can stay intact
  while the visual language becomes quieter, lighter and more image-led.
*/

:root {
  --paper: #f4eddf;
  --paper-soft: #fffaf2;
  --paper-deep: #e8ddcc;
  --ink: #17120f;
  --ink-soft: #6d6157;
  --red: #cf2230;
  --red-bright: #e52b38;
  --red-deep: #891722;
  --rose: #e7bdb7;
  --blush: #ead8d2;
  --line: rgba(23, 18, 15, 0.14);
  --line-light: rgba(255, 250, 242, 0.22);
  --max: 1440px;
  --gutter: clamp(1.25rem, 4.2vw, 4.5rem);
  --header-h: 0rem;
}

html,
body {
  background: var(--paper);
}

body {
  color: var(--ink);
}

.site-head,
.mobile-menu,
.opening,
.event-ribbon {
  display: none !important;
}

.page-progress {
  width: 100%;
  height: 2px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 5000;
  background: transparent;
  pointer-events: none;
}

.page-progress i {
  width: 0;
  height: 100%;
  display: block;
  background: var(--red);
}

.section-shell {
  width: min(100%, var(--max));
}

.kicker {
  gap: 0.65rem;
  color: var(--red);
  font-size: 0.61rem;
  letter-spacing: 0.18em;
}

.kicker span {
  min-width: auto;
  padding: 0;
  border: 0;
}

.kicker-light {
  color: var(--red);
}

.reveal {
  transform: translateY(1.1rem);
}

/* Hero ---------------------------------------------------------------- */

.hero {
  min-height: 100svh;
  padding: clamp(1.6rem, 3vw, 2.8rem) var(--gutter) clamp(2.5rem, 5vw, 5rem);
  background: var(--paper);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(23, 18, 15, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 18, 15, 0.026) 1px, transparent 1px);
  background-size: clamp(5rem, 8vw, 8rem) clamp(5rem, 8vw, 8rem);
  mask-image: linear-gradient(to bottom, #000 0%, #000 76%, transparent 100%);
}

.hero-topline {
  min-height: 3.2rem;
  grid-template-columns: 1fr auto 1fr;
  color: rgba(23, 18, 15, 0.52);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}

.hero-brand {
  width: clamp(9rem, 12vw, 11.8rem);
  display: block;
}

.hero-brand img {
  width: 100%;
}

.hero-topline p:last-child {
  text-align: right;
}

.hero-heading {
  margin: clamp(4rem, 8vh, 6.8rem) auto 0;
}

.hero-eyebrow {
  margin-bottom: clamp(1.4rem, 2.5vw, 2rem);
  font-size: 0.61rem;
  letter-spacing: 0.24em;
}

.hero h1 {
  font-size: clamp(4.5rem, 8.2vw, 8.4rem);
  letter-spacing: -0.068em;
  line-height: 0.79;
}

.hero h1 em {
  margin-top: 0.03em;
}

.hero-deck {
  max-width: 35rem;
  margin-top: clamp(1.7rem, 3vw, 2.5rem);
  color: rgba(23, 18, 15, 0.62);
  font-size: clamp(1.02rem, 1.4vw, 1.28rem);
  line-height: 1.42;
}

.hero-start {
  min-height: 2.65rem;
  margin: 1.45rem auto 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.05rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper-soft);
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 220ms ease, transform 320ms var(--ease);
}

.hero-start span {
  color: var(--rose);
  font-size: 0.9rem;
  transition: transform 220ms ease;
}

.hero-start:hover {
  background: var(--red);
  transform: translateY(-2px);
}

.hero-start:hover span {
  transform: translate(0.16rem, -0.16rem);
}

.hero-film {
  height: clamp(15rem, 22vw, 20rem);
  margin-top: clamp(3.5rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: 0.88fr 1.05fr 1.15fr 0.9fr 0.82fr;
  align-items: center;
  gap: clamp(0.65rem, 1.2vw, 1.15rem);
  padding: 0;
}

.hero-shot {
  width: 100%;
  height: 82%;
  margin: 0;
  border-radius: clamp(1rem, 1.8vw, 1.65rem);
  box-shadow: none;
}

.hero-shot-two {
  height: 94%;
}

.hero-shot-three {
  height: 100%;
}

.hero-shot-four {
  height: 88%;
}

.hero-shot-five {
  height: 76%;
}

.hero-shot img {
  object-position: center;
}

.hero-shot-two img {
  object-position: center 45%;
}

.hero-shot-three img {
  object-position: center 42%;
}

.hero-shot figcaption {
  padding: 2.8rem 0.85rem 0.7rem;
  background: linear-gradient(to bottom, transparent, rgba(15, 8, 5, 0.68));
}

.hero-shot figcaption span,
.hero-shot figcaption b {
  font-size: 0.48rem;
  letter-spacing: 0.1em;
}

.hero-foot {
  margin-top: clamp(2.2rem, 4vw, 3.5rem);
  font-size: 0.52rem;
}

.hero-foot i {
  width: 1.65rem;
  height: 1.65rem;
}

/* Shared editorial headings ------------------------------------------ */

.section-intro,
.moments-head,
.running-head,
.builder-head {
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
}

.section-intro h2,
.moments-head h2,
.worlds-head h2,
.builder-head h2,
.running-head h2,
.footer-top h2 {
  margin-top: 1.05rem;
  font-size: clamp(3.25rem, 5.6vw, 5.6rem);
  letter-spacing: -0.055em;
  line-height: 0.89;
}

.section-intro > p,
.moments-head-copy > p,
.running-head > p:last-child,
.builder-head > p:last-child {
  color: rgba(23, 18, 15, 0.58);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.5;
}

/* Upcoming concept events -------------------------------------------- */

.formats {
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(7rem, 12vw, 11rem);
}

.formats .section-intro {
  grid-template-columns: minmax(0, 1.45fr) minmax(16rem, 0.55fr);
}

.formats .section-intro > p {
  max-width: 24rem;
}

.lineup-toolbar {
  margin-top: clamp(3.8rem, 6vw, 5.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.lineup-toolbar > p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(23, 18, 15, 0.48);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lineup-toolbar > p span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0.23rem rgba(207, 34, 48, 0.12);
}

.lineup-filters {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.7rem);
}

.lineup-filters button {
  position: relative;
  padding: 0.25rem 0;
  background: transparent;
  color: rgba(23, 18, 15, 0.48);
  font-size: 0.62rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
}

.lineup-filters button::after {
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  bottom: -0.28rem;
  left: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms var(--ease);
}

.lineup-filters button:hover,
.lineup-filters button.is-active {
  color: var(--ink);
}

.lineup-filters button.is-active::after {
  transform: scaleX(1);
}

.event-lineup {
  margin-top: clamp(2rem, 3.5vw, 3.2rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.7vw, 1.6rem);
  align-items: start;
}

.event-card {
  min-width: 0;
  display: block;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: opacity 260ms ease, transform 420ms var(--ease);
}

.event-card-b,
.event-card-d {
  margin-top: clamp(1.8rem, 4vw, 3.6rem);
}

.event-card.is-hidden {
  display: none;
}

.event-card-media {
  aspect-ratio: 0.82;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: clamp(1.15rem, 2vw, 1.85rem);
  background: var(--paper-deep);
}

.event-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: inherit;
  pointer-events: none;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 420ms ease;
}

.event-card-b .event-card-media img {
  object-position: 57% center;
}

.event-card-d .event-card-media img {
  object-position: center 36%;
}

.event-card:hover {
  transform: translateY(-0.35rem);
}

.event-card:hover .event-card-media img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.event-date {
  width: 3.35rem;
  height: 3.35rem;
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.93);
  color: var(--red);
  text-align: center;
  backdrop-filter: blur(8px);
}

.event-date b {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 0.78;
}

.event-date small {
  margin-top: 0.3rem;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.event-arrow {
  width: 2.35rem;
  height: 2.35rem;
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper-soft);
  font-size: 0.9rem;
  transition: transform 320ms var(--ease), background 220ms ease;
}

.event-card:hover .event-arrow {
  background: var(--ink);
  transform: rotate(45deg);
}

.event-card-meta {
  display: block;
  margin-top: 1rem;
  color: var(--red);
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.event-card > strong {
  display: block;
  margin-top: 0.42rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.028em;
  line-height: 1.08;
}

.event-card-note {
  min-height: 2.7rem;
  display: block;
  margin-top: 0.65rem;
  color: rgba(23, 18, 15, 0.52);
  font-size: 0.7rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 260ms ease, transform 320ms var(--ease);
}

.event-card:hover .event-card-note,
.event-card:focus-visible .event-card-note,
.event-card.is-open .event-card-note {
  opacity: 1;
  transform: none;
}

.event-card.is-open .event-arrow {
  background: var(--ink);
  transform: rotate(45deg);
}

.prototype-note {
  margin-top: 1.5rem;
  font-size: 0.53rem;
}

/* Running order ------------------------------------------------------- */

.running-order {
  background: var(--paper-soft);
  color: var(--ink);
}

.running-backdrop {
  display: none;
}

.running-inner {
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(7rem, 11vw, 10rem);
}

.running-head {
  grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.5fr);
}

.running-head .kicker,
.running-head h2,
.running-head > p:last-child {
  color: inherit;
}

.running-head .kicker {
  color: var(--red);
}

.running-head h2 em {
  color: var(--red);
}

.running-head > p:last-child {
  color: rgba(23, 18, 15, 0.58);
}

.show-console {
  min-height: 0;
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
  display: block;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.console-topbar {
  min-height: 3.7rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.console-topbar p {
  color: rgba(23, 18, 15, 0.52);
  font-size: 0.54rem;
  letter-spacing: 0.11em;
}

.console-topbar p b {
  color: var(--ink);
}

.live-dot {
  background: var(--red);
  box-shadow: 0 0 0 0.24rem rgba(207, 34, 48, 0.12);
}

.console-topbar button {
  min-height: 2.25rem;
  padding: 0 0.85rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 0.54rem;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.console-topbar button:hover,
.console-topbar button[aria-pressed="true"] {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-soft);
}

.cue-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 0;
  background: transparent;
}

.cue {
  min-width: 0;
  min-height: 7.7rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 0.62rem 0.5rem;
  align-content: center;
  padding: 1.2rem 0.8rem 1rem 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: rgba(23, 18, 15, 0.42);
  text-align: left;
}

.cue + .cue {
  padding-left: clamp(0.6rem, 1.4vw, 1.4rem);
}

.cue time {
  grid-column: 1;
  color: var(--red);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
}

.cue > span {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
}

.cue > span b {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1;
}

.cue > span small {
  max-width: 11rem;
  margin-top: 0.34rem;
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0;
}

.cue > i {
  width: 1.55rem;
  height: 1.55rem;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(23, 18, 15, 0.42);
  font-size: 0.47rem;
  font-style: normal;
}

.cue:hover,
.cue.is-active {
  background: transparent;
  color: var(--ink);
}

.cue.is-active {
  border-bottom-color: var(--red);
}

.cue.is-active > i {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-soft);
}

.cue-stage {
  min-height: 0;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(18rem, 0.62fr);
  grid-template-rows: auto;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  background: transparent;
}

.cue-media {
  height: clamp(25rem, 39vw, 34rem);
  border-radius: clamp(1.4rem, 2.5vw, 2.2rem);
  background: var(--paper-deep);
}

.cue-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.cue-media img {
  object-position: center;
}

.cue-frame {
  display: none;
}

.cue-media > p {
  right: 1rem;
  bottom: 1rem;
  left: auto;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.88);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.cue-media > p b {
  color: var(--red);
}

.cue-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

.cue-copy > p:first-child {
  color: var(--red);
  font-size: 0.55rem;
}

.cue-copy h3 {
  margin-top: 1.05rem;
  font-size: clamp(3rem, 5vw, 5.2rem);
  letter-spacing: -0.05em;
}

.cue-copy > p:not(:first-child) {
  max-width: 25rem;
  margin-top: 1.4rem;
  color: rgba(23, 18, 15, 0.6);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
}

.cue-copy dl {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.cue-copy dl div {
  min-height: 2.8rem;
  border-bottom: 1px solid var(--line);
}

.cue-copy dt {
  color: rgba(23, 18, 15, 0.44);
}

.cue-copy dd {
  color: var(--ink);
}

.console-progress {
  height: 1px;
  margin-top: clamp(2.5rem, 4vw, 4rem);
  background: var(--line);
}

.console-progress i {
  background: var(--red);
}

.console-hint {
  padding: 0.8rem 0 0;
  color: rgba(23, 18, 15, 0.4);
  font-size: 0.49rem;
  letter-spacing: 0.09em;
}

/* Best-shot moments --------------------------------------------------- */

.moments {
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(7rem, 11vw, 10rem);
}

.moments-head {
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.55fr);
}

.moments-head-copy {
  padding-bottom: 0.3rem;
}

.rail-controls {
  margin-top: 1.4rem;
  gap: 0.5rem;
}

.rail-controls button {
  width: 2.5rem;
  height: 2.5rem;
  border-color: var(--line);
  background: transparent;
}

.rail-controls button:hover {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-soft);
}

.moment-filters {
  margin-top: clamp(2.7rem, 4vw, 3.8rem);
  gap: clamp(0.65rem, 1.6vw, 1.25rem);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}

.moment-filters button {
  min-height: auto;
  padding: 0.25rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(23, 18, 15, 0.45);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.moment-filters button:hover,
.moment-filters button.is-active {
  background: transparent;
  color: var(--red);
}

.moments-rail {
  min-height: 28rem;
  margin-top: 1.6rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(14rem, 21vw, 19rem);
  align-items: center;
  gap: clamp(0.75rem, 1.3vw, 1.2rem);
  padding: 1rem 0 1.4rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.moment-card,
.moment-card-tall,
.moment-card-wide {
  width: auto;
  height: clamp(21rem, 30vw, 27rem);
  align-self: center;
  border-radius: clamp(1.1rem, 1.8vw, 1.65rem);
  scroll-snap-align: start;
}

.moment-card:nth-child(3n + 2) {
  height: clamp(19rem, 27vw, 24rem);
}

.moment-card:nth-child(3n) {
  height: clamp(20rem, 29vw, 25.5rem);
}

.moment-card img {
  transition: transform 700ms var(--ease), filter 420ms ease;
}

.moment-card:hover img {
  transform: scale(1.045);
}

.moment-card > span {
  padding: 3.2rem 0.85rem 0.8rem;
}

.moment-card > span b {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 400;
}

.moment-card > span small {
  font-size: 0.47rem;
}

.drag-hint {
  color: rgba(23, 18, 15, 0.42);
  font-size: 0.52rem;
}

.drag-hint i {
  background: var(--line);
}

/* Event point-of-view story ------------------------------------------ */

.event-note {
  min-height: clamp(46rem, 72vw, 66rem);
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-top: clamp(8rem, 13vw, 12rem);
  padding-bottom: clamp(8rem, 13vw, 12rem);
}

.event-note::before {
  content: "";
  position: absolute;
  inset: 8% 0;
  z-index: -1;
  border-radius: 2.4rem;
  background: rgba(255, 250, 242, 0.52);
}

.event-note-copy {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
  position: relative;
  z-index: 3;
}

.event-note-copy h2 {
  margin: 1.2rem 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5.4vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.91;
}

.event-note-copy h2 em {
  color: var(--red);
  font-weight: 400;
}

.event-note-copy > p:not(.kicker) {
  max-width: 25rem;
  margin: 1.7rem 0 0;
  color: rgba(23, 18, 15, 0.58);
  font-family: var(--serif);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.48;
}

.event-note-copy .text-link {
  margin-top: 2rem;
  color: var(--ink);
}

.event-note-main,
.event-note-float {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.event-note-main {
  height: clamp(30rem, 50vw, 46rem);
  grid-column: 6 / 11;
  grid-row: 1 / 3;
  border-radius: 8rem 8rem 1.6rem 1.6rem;
}

.event-note-float {
  height: clamp(15rem, 23vw, 21rem);
  grid-column: 10 / 13;
  grid-row: 2;
  z-index: 2;
  align-self: end;
  margin-bottom: 2rem;
  border: 0.65rem solid var(--paper);
  border-radius: 1.4rem;
}

.event-note-main img,
.event-note-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms var(--ease);
}

.event-note-main img {
  object-position: 46% center;
}

.event-note-float img {
  object-position: center 38%;
}

.event-note-main:hover img,
.event-note-float:hover img {
  transform: scale(1.04);
}

.event-note-main figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.8rem 0.8rem 0.75rem;
  background: linear-gradient(to bottom, transparent, rgba(15, 8, 5, 0.62));
  color: var(--paper-soft);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-note-main figcaption b {
  font-weight: 500;
}

.event-note-float figcaption {
  position: absolute;
  right: 0.7rem;
  bottom: 0.65rem;
  left: 0.7rem;
  color: var(--paper-soft);
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-note-sticker {
  width: clamp(6rem, 8vw, 7.7rem);
  aspect-ratio: 1;
  grid-column: 5 / 7;
  grid-row: 1;
  z-index: 4;
  align-self: start;
  justify-self: center;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper-soft);
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  font-style: italic;
  line-height: 1;
  text-align: center;
  transform: rotate(-8deg);
}

/* Production desk ----------------------------------------------------- */

.event-worlds {
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(7rem, 12vw, 11rem);
}

.worlds-head {
  max-width: 62rem;
  margin-inline: auto;
  text-align: center;
}

.worlds-head .kicker {
  justify-content: center;
}

.worlds-head h2 {
  font-size: clamp(3.5rem, 6vw, 6.3rem);
}

.worlds-layout {
  margin-top: clamp(3.8rem, 7vw, 6.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.72fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.worlds-list {
  border-top: 1px solid var(--line);
}

.world-row {
  min-height: 5.7rem;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) 2.2rem;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0.25rem 0.8rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: rgba(23, 18, 15, 0.43);
}

.world-row > span {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 0.38rem;
  color: var(--red);
  font-size: 0.49rem;
}

.world-row strong {
  grid-column: 2;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.world-row p {
  max-width: 35rem;
  grid-column: 2;
  margin: 0;
  overflow: hidden;
  color: rgba(23, 18, 15, 0.48);
  font-size: 0.66rem;
  line-height: 1.45;
  opacity: 0;
  max-height: 0;
  transition: opacity 280ms ease, max-height 380ms var(--ease);
}

.world-row > b {
  width: 1.85rem;
  height: 1.85rem;
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 0.75rem;
  opacity: 1;
}

.world-row:hover,
.world-row.is-active {
  padding-inline: 0;
  color: var(--ink);
}

.world-row.is-active p {
  max-height: 3rem;
  opacity: 1;
}

.world-row:hover > b,
.world-row.is-active > b {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-soft);
}

.world-visual {
  min-height: 35rem;
  top: 1.5rem;
  border-radius: 1.8rem;
}

.world-visual p {
  max-width: 23rem;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
}

/* Brief builder ------------------------------------------------------- */

.builder {
  background: var(--blush);
  color: var(--ink);
}

.builder::before {
  display: none;
}

.builder-inner {
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(7rem, 11vw, 10rem);
}

.builder-head {
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.5fr);
}

.builder-head .kicker,
.builder-head h2 {
  color: inherit;
}

.builder-head .kicker {
  color: var(--red);
}

.builder-head h2 em {
  color: var(--red);
}

.builder-head > p:last-child {
  color: rgba(23, 18, 15, 0.58);
}

.builder-workspace {
  margin-top: clamp(3.8rem, 6vw, 5.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.72fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.brief-builder {
  padding: clamp(1.6rem, 3vw, 2.8rem);
  border-radius: 1.7rem;
  background: var(--paper-soft);
  box-shadow: 0 1.4rem 4rem rgba(65, 35, 30, 0.06);
}

.brief-builder fieldset {
  padding: 1.45rem 0;
}

.brief-builder legend {
  margin-bottom: 0.9rem;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
}

.choice-pills {
  gap: 0.42rem;
}

.choice-pills button {
  padding: 0.6rem 0.85rem;
  background: transparent;
  font-size: 0.62rem;
}

.choice-pills button:hover,
.choice-pills button.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-soft);
}

.event-pass {
  top: 1.5rem;
  overflow: hidden;
  border-radius: 1.7rem;
  background: var(--ink);
  color: var(--paper-soft);
  box-shadow: 0 1.4rem 4rem rgba(65, 35, 30, 0.11);
}

.event-pass::before {
  background: radial-gradient(circle at 70% 10%, rgba(207, 34, 48, 0.35), transparent 35%);
}

.pass-top,
.pass-title,
.event-pass dl,
.pass-desks,
.pass-actions,
.pass-local {
  position: relative;
  z-index: 1;
}

.event-pass dl div,
.pass-desks {
  border-color: var(--line-light);
}

.pass-actions button:first-child {
  border-color: var(--line-light);
}

.pass-actions button:last-child {
  background: var(--red);
}

/* Footer -------------------------------------------------------------- */

.event-footer {
  background: #100e0d;
  color: var(--paper-soft);
}

.footer-top {
  min-height: 0;
  padding-top: clamp(7rem, 11vw, 10rem);
  padding-bottom: clamp(8rem, 13vw, 12rem);
}

.footer-top .kicker {
  color: var(--rose);
}

.footer-top h2 {
  max-width: 72rem;
  font-size: clamp(4rem, 7.8vw, 8rem);
}

.footer-cta {
  width: auto;
  height: 3rem;
  aspect-ratio: auto;
  right: var(--gutter);
  bottom: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: var(--red);
}

.footer-cta::before {
  display: none;
}

.footer-cta span {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.footer-contact {
  border-top-color: var(--line-light);
}

.footer-contact > div {
  min-height: 8.5rem;
}

.footer-brand {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* Responsive ---------------------------------------------------------- */

@media (max-width: 1100px) {
  .hero-film {
    grid-template-columns: repeat(5, minmax(12rem, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  .hero-film::-webkit-scrollbar {
    display: none;
  }

  .event-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.2rem 1rem;
  }

  .event-card-b,
  .event-card-d {
    margin-top: 0;
  }

  .event-card-media {
    aspect-ratio: 1.12;
  }

  .event-card-note {
    opacity: 1;
    transform: none;
  }

  .cue-stage {
    grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.65fr);
    gap: 2.5rem;
  }

  .event-note-copy {
    grid-column: 1 / 6;
  }

  .event-note-main {
    grid-column: 6 / 11;
  }

  .worlds-layout {
    gap: 3rem;
  }
}

@media (max-width: 820px) {
  :root {
    --gutter: clamp(1rem, 4vw, 2rem);
  }

  .hero {
    padding: 1.2rem var(--gutter) 2.4rem;
  }

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

  .hero-topline-center {
    display: none;
  }

  .hero-heading {
    margin-top: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 7rem);
    line-height: 0.82;
  }

  .hero-film {
    width: calc(100% + var(--gutter) * 2);
    height: 20rem;
    margin-left: calc(var(--gutter) * -1);
    padding: 0 var(--gutter);
    grid-template-columns: repeat(5, minmax(13rem, 1fr));
    scroll-snap-type: x proximity;
  }

  .hero-shot {
    height: 88%;
    scroll-snap-align: center;
  }

  .hero-shot-two,
  .hero-shot-three,
  .hero-shot-four {
    height: 100%;
  }

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

  .hero-foot p:last-child {
    display: none;
  }

  .section-intro,
  .moments-head,
  .running-head,
  .builder-head {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  .running-head > p:last-child,
  .builder-head > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .lineup-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }

  .lineup-filters {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .lineup-filters::-webkit-scrollbar {
    display: none;
  }

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

  .console-topbar > p:nth-child(2) {
    display: none;
  }

  .cue-list {
    grid-template-columns: repeat(5, minmax(8.5rem, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }

  .cue-list::-webkit-scrollbar {
    display: none;
  }

  .cue {
    min-height: 6.6rem;
  }

  .cue > span small {
    display: none;
  }

  .cue-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 2.4rem;
  }

  .cue-media {
    height: clamp(22rem, 72vw, 33rem);
  }

  .cue-copy {
    display: block;
  }

  .moments-head-copy {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1rem;
  }

  .event-note {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 2rem 0.8rem;
  }

  .event-note::before {
    inset: 5% 0;
  }

  .event-note-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-inline: 1rem;
  }

  .event-note-main {
    height: clamp(28rem, 95vw, 42rem);
    grid-column: 1 / 6;
    grid-row: 2 / 4;
    border-radius: 6rem 6rem 1.4rem 1.4rem;
  }

  .event-note-float {
    height: clamp(12rem, 38vw, 18rem);
    grid-column: 4 / 7;
    grid-row: 3;
  }

  .event-note-sticker {
    grid-column: 5 / 7;
    grid-row: 2;
  }

  .worlds-layout,
  .builder-workspace {
    grid-template-columns: 1fr;
  }

  .world-visual,
  .event-pass {
    position: relative;
    top: auto;
  }

  .world-visual {
    min-height: 30rem;
  }
}

@media (max-width: 600px) {
  .hero-brand {
    width: 8.7rem;
  }

  .hero-topline {
    font-size: 0.46rem;
  }

  .hero-heading {
    margin-top: 4rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  .hero-deck {
    max-width: 22rem;
    font-size: 1rem;
  }

  .hero-foot {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .hero-foot > p {
    display: none;
  }

  .section-intro h2,
  .moments-head h2,
  .worlds-head h2,
  .builder-head h2,
  .running-head h2,
  .footer-top h2 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .event-lineup {
    margin-right: calc(var(--gutter) * -1);
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding-right: var(--gutter);
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .event-lineup::-webkit-scrollbar {
    display: none;
  }

  .event-card {
    min-width: 78vw;
    scroll-snap-align: center;
  }

  .event-card-media {
    aspect-ratio: 0.93;
  }

  .event-card-note {
    min-height: 0;
    opacity: 1;
    transform: none;
  }

  .console-topbar {
    gap: 0.7rem;
  }

  .console-topbar button span {
    display: inline;
  }

  .cue-media {
    height: 22rem;
  }

  .cue-copy h3 {
    font-size: 3.5rem;
  }

  .moments-head-copy {
    grid-template-columns: 1fr;
  }

  .moments-rail {
    grid-auto-columns: 74vw;
  }

  .moment-card,
  .moment-card-tall,
  .moment-card-wide,
  .moment-card:nth-child(3n + 2),
  .moment-card:nth-child(3n) {
    height: 25rem;
  }

  .event-note {
    padding-inline: 0;
  }

  .event-note-copy {
    padding-inline: var(--gutter);
  }

  .event-note-main {
    grid-column: 1 / 7;
    border-radius: 4.5rem 4.5rem 1.2rem 1.2rem;
  }

  .event-note-float {
    grid-column: 4 / 7;
    margin-right: 0.5rem;
  }

  .world-row strong {
    font-size: 1.32rem;
  }

  .world-row p {
    display: block;
  }

  .world-visual {
    min-height: 25rem;
  }

  .brief-builder {
    padding: 1.25rem;
  }

  .footer-top {
    padding-bottom: 10rem;
  }

  .footer-cta {
    right: auto;
    bottom: 4.5rem;
    left: var(--gutter);
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-card-note {
    opacity: 1;
    transform: none;
  }
}
