/* ============================================================
   MISSTER! - style.css
   Brooklyn Queer Party - DESIGNED CHAOS
   ============================================================ */

/* --------------------------------
   CUSTOM PROPERTIES
-------------------------------- */
:root {
  --black: #090d10;
  --white: #f7f5ef;
  --pink: #ff3fa4;
  --green: #63ff35;
  --yellow: #fff72e;

  --font-display: 'Bebas Neue', 'Arial Black', Impact, sans-serif;
  --font-body: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------
   RESET & BASE
-------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  overflow-x: hidden;
  background: var(--black);
  cursor: none;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* Hide default cursor on touch */
@media (hover: none) {

  html,
  body {
    cursor: auto;
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: none;
}

ul {
  list-style: none;
}

/* --------------------------------
   SMOOTH SCROLL WRAPPER
-------------------------------- */
/* ScrollSmoother sets position:fixed at runtime.
   Default is static so the page never scroll-locks before JS boots. */
#wrapper {
  overflow: hidden;
  width: 100%;
}

#content {
  overflow: visible;
}

/* --------------------------------
   NOISE OVERLAY
-------------------------------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  animation: noiseAnim 0.4s steps(2) infinite;
}

@keyframes noiseAnim {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-2px, 2px);
  }

  50% {
    transform: translate(3px, -1px);
  }

  75% {
    transform: translate(-1px, -3px);
  }

  100% {
    transform: translate(2px, 1px);
  }
}

/* --------------------------------
   FLASH LAYER
-------------------------------- */
.flash-layer {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
}

/* --------------------------------
   CUSTOM CURSOR
-------------------------------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor-circle {
  width: 14px;
  height: 14px;
  border: 2px solid var(--white);
  border-radius: 50%;
  transition: width 0.2s var(--ease-expo), height 0.2s var(--ease-expo), border-color 0.2s;
  will-change: transform;
}

.cursor--hover .cursor-circle {
  width: 36px;
  height: 36px;
  border-color: var(--pink);
}

.cursor--photo .cursor-circle {
  width: 72px;
  height: 72px;
  background: var(--pink);
  border-color: var(--pink);
}

.cursor-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--black);
  opacity: 0;
  transition: opacity 0.15s;
  white-space: nowrap;
  text-align: center;
}

.cursor--photo .cursor-text {
  opacity: 1;
}

/* --------------------------------
   NAVIGATION
-------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  transition: background 0.4s, padding 0.3s;
}

.nav--dark {
  background: rgba(9, 13, 16, 0.9);
  backdrop-filter: blur(6px);
  padding: 16px 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.2s;
}

.nav-logo:hover {
  color: var(--pink);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.nav-link:hover {
  opacity: 1;
  color: var(--pink);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-expo);
}

.mobile-nav-drawer.open {
  transform: translateX(0);
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-family: var(--font-body);
  font-size: 24px;
  color: var(--white);
  cursor: none;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(36px, 8vw, 56px);
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: var(--pink);
}

/* --------------------------------
   HERO
-------------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

/* Preloader smiley */
.hero-preloader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: var(--black);
}

.smiley--preloader {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  color: var(--yellow);
  animation: smileySpin 2s linear infinite;
  will-change: transform;
}

@keyframes smileySpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Flash images */
.hero-flash-images {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.hero-flash-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

/* Hero main content */
.hero-heading-wrap {
  position: relative;
  z-index: 6;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 0;
  perspective: 800px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
  opacity: 0;
}

/* The big title with RGB layers */
.hero-title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  user-select: none;
}

.hero-title-layer {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-family: var(--font-display);
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.hero-title-layer--main {
  position: relative;
}

.hero-title-layer--red {
  color: var(--pink);
  opacity: 0;
  mix-blend-mode: screen;
  transform: translate(-4px, 0);
}

.hero-title-layer--blue {
  color: #35d6ff;
  opacity: 0;
  mix-blend-mode: screen;
  transform: translate(4px, 0);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--pink);
  margin-top: 16px;
  opacity: 0;
}

.hero-descriptor {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.14em;
  font-weight: 400;
  color: rgba(247, 245, 239, 0.55);
  margin-top: 12px;
  opacity: 0;
  text-transform: uppercase;
}

.hero-cta {
  display: inline-block;
  margin-top: 32px;
  padding: 14px 32px;
  border: 1.5px solid var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  opacity: 0;
}

.hero-cta:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--black);
  transform: rotate(-1deg) scale(1.04);
}

/* Corner labels */
.hero-corner {
  position: absolute;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 245, 239, 0.4);
  opacity: 0;
}

.hero-corner--bl {
  bottom: 32px;
  left: 40px;
}

.hero-corner--br {
  bottom: 32px;
  right: 40px;
}

/* Parallax bg layer for mouse move */
.hero-parallax-bg {
  position: absolute;
  inset: -5%;
  z-index: 1;
  will-change: transform;
}

/* --------------------------------
   SECTION 02: LOGO ZOOM (redesigned - clean two-column layout)
-------------------------------- */
.logo-zoom {
  background: var(--black);
  padding: 100px 40px;
  overflow: hidden;
}

.logo-zoom__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT - big portrait photo */
.lz-left {
  position: relative;
}

.lz-photo-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  transform: rotate(-2deg);
  will-change: transform;
}

.lz-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-expo);
}

.lz-photo-main:hover img {
  transform: scale(1.04);
}

/* RIGHT - headline + two small photos */
.lz-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.lz-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  will-change: transform, opacity;
}

.lz-body {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.4vw, 17px);
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 245, 239, 0.5);
  will-change: opacity;
}

.lz-photos-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lz-photo-sm {
  overflow: hidden;
  aspect-ratio: 4/3;
  will-change: transform, opacity;
}

.lz-photo-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-expo);
}

.lz-photo-sm:hover img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 768px) {
  .logo-zoom {
    padding: 80px 24px;
  }

  .logo-zoom__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lz-photo-main {
    aspect-ratio: 4/3;
    transform: none;
  }
}

/* --------------------------------
   SECTION 03: PHOTO CHAOS
-------------------------------- */
.photo-chaos {
  position: relative;
  background: var(--black);
  padding: 80px 0 160px;
  min-height: 300vh;
  overflow: hidden;
}

/* Sticky word */
.sticky-word-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
  margin-bottom: -100vh;
}

.sticky-word {
  font-family: var(--font-display);
  font-size: clamp(80px, 22vw, 300px);
  line-height: 1;
  color: var(--white);
  mix-blend-mode: difference;
  user-select: none;
  will-change: transform, opacity;
  letter-spacing: -0.02em;
}

/* Chaos grid - intentionally irregular */
.chaos-grid {
  position: relative;
  padding: 80px 0;
}

.chaos-img {
  position: absolute;
  overflow: hidden;
  will-change: transform;
}

.chaos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.chaos-img:hover img {
  transform: scale(1.04);
}

/* Individual image placement */
.chaos-img--1 {
  width: 55vw;
  top: 0;
  left: -5vw;
  transform: rotate(-2deg);
  aspect-ratio: 4/3;
}

.chaos-img--2 {
  width: 25vw;
  top: 10vh;
  right: 2vw;
  transform: rotate(4deg);
  aspect-ratio: 3/4;
}

.chaos-img--3 {
  width: 40vw;
  top: 40vh;
  left: 20vw;
  transform: rotate(-4deg);
  aspect-ratio: 16/9;
}

.chaos-img--4 {
  width: 28vw;
  top: 50vh;
  left: 62vw;
  transform: rotate(6deg);
  aspect-ratio: 3/4;
}

.chaos-img--5 {
  width: 48vw;
  top: 80vh;
  left: -3vw;
  transform: rotate(-1deg);
  aspect-ratio: 4/3;
}

.chaos-img--6 {
  width: 30vw;
  top: 100vh;
  right: 5vw;
  transform: rotate(3deg);
  aspect-ratio: 3/4;
}

.chaos-img--7 {
  width: 22vw;
  top: 120vh;
  left: 40vw;
  transform: rotate(-5deg);
  aspect-ratio: 1;
}

.chaos-img--8 {
  width: 52vw;
  top: 140vh;
  right: -4vw;
  transform: rotate(2deg);
  aspect-ratio: 16/9;
}

.chaos-img--9 {
  width: 32vw;
  top: 160vh;
  left: 5vw;
  transform: rotate(-3deg);
  aspect-ratio: 4/5;
}

.chaos-img--10 {
  width: 65vw;
  top: 185vh;
  left: 15vw;
  transform: rotate(1deg);
  aspect-ratio: 16/9;
}

.chaos-img--11 {
  width: 26vw;
  top: 210vh;
  left: -2vw;
  transform: rotate(-6deg);
  aspect-ratio: 3/4;
}

.chaos-img--12 {
  width: 38vw;
  top: 220vh;
  right: 3vw;
  transform: rotate(4deg);
  aspect-ratio: 4/3;
}

/* Floating copy */
.chaos-copy {
  position: absolute;
  font-family: var(--font-display);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  z-index: 15;
  pointer-events: none;
}

.chaos-copy--1 {
  font-size: clamp(18px, 3vw, 42px);
  color: var(--white);
  top: 35vh;
  right: 5vw;
  transform: rotate(-3deg);
}

.chaos-copy--2 {
  font-size: clamp(16px, 2.5vw, 36px);
  color: var(--pink);
  top: 115vh;
  left: 5vw;
  transform: rotate(2deg);
}

.chaos-copy--3 {
  font-size: clamp(14px, 2vw, 28px);
  color: var(--green);
  top: 190vh;
  right: 10vw;
  transform: rotate(-4deg);
}

/* Color accent blocks */
.chaos-accent {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.chaos-accent--pink {
  width: 100%;
  height: 25vh;
  top: 72vh;
  left: 0;
  background: var(--pink);
  mix-blend-mode: multiply;
  opacity: 0.4;
}

.chaos-accent--green {
  width: 100%;
  height: 20vh;
  top: 168vh;
  left: 0;
  background: var(--green);
  mix-blend-mode: multiply;
  opacity: 0.3;
}

/* Grid spacer to give height for absolute children */
.chaos-grid::after {
  content: '';
  display: block;
  height: 310vh;
}

/* --------------------------------
   SECTION 04: PARTY TRANSITION
-------------------------------- */
.party-transition {
  position: relative;
  height: 350vh;
  background: var(--black);
}

.pt-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pt-eyebrow {
  font-family: var(--font-body);
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 245, 239, 0.4);
  margin-bottom: 24px;
}

.pt-text-wrap {
  text-align: center;
  will-change: transform;
}

.pt-line {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  will-change: transform;
}

.pt-line--left {
  transform: translateX(0);
}

.pt-line--right {
  transform: translateX(0);
}

.pt-line--again {
  font-size: clamp(60px, 14vw, 200px);
  color: var(--pink);
  will-change: transform;
  transform-origin: center;
}

/* Clip-path reveal - starts fully hidden (wipes in from bottom on scroll) */
.pt-event-reveal {
  position: absolute;
  inset: 0;
  clip-path: inset(0% 0% 100% 0%);
  background: var(--green);
  will-change: clip-path;
  pointer-events: none;
}

/* --------------------------------
   SECTION 05: EVENT FLYER
-------------------------------- */
.event-flyer {
  position: relative;
  min-height: 100vh;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 40px;
}

.ef-content {
  position: relative;
  text-align: center;
  color: var(--black);
  max-width: 800px;
  width: 100%;
}

.ef-piece {
  display: block;
  text-transform: uppercase;
  font-family: var(--font-display);
  line-height: 1;
  will-change: transform, opacity;
  opacity: 0;
}

.ef-piece--eyebrow {
  font-size: clamp(12px, 1.5vw, 18px);
  letter-spacing: 0.18em;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 12px;
}

.ef-piece--title {
  font-size: clamp(64px, 14vw, 190px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--black);
  font-family: var(--font-display);
}

.ef-piece--date {
  font-size: clamp(22px, 4vw, 56px);
  margin-top: 16px;
}

.ef-piece--venue {
  font-size: clamp(14px, 2vw, 24px);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-top: 16px;
  opacity: 0.75;
}

.ef-piece--time {
  font-size: clamp(13px, 1.5vw, 18px);
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  margin-top: 12px;
}

.ef-piece--dress {
  font-size: clamp(28px, 5vw, 72px);
  color: var(--black);
  margin-top: 16px;
}

.ef-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  opacity: 0;
  will-change: transform;
}

.ef-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  cursor: none;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}

.ef-cta--primary {
  background: var(--black);
  color: var(--green);
}

.ef-cta--primary:hover {
  transform: rotate(-1.5deg) scale(1.05);
}

.ef-cta--secondary {
  border: 2px solid var(--black);
  color: var(--black);
}

.ef-cta--secondary:hover {
  transform: rotate(1deg) scale(1.04);
}

.ef-disclaimer {
  margin-top: 24px;
  font-size: 10px;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  opacity: 0.5;
  text-transform: uppercase;
  color: var(--black);
}

/* Smiley decorations on flyer */
.ef-smiley {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 120px);
  color: var(--black);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
}

.ef-smiley--1 {
  top: 8%;
  left: 5%;
  transform: rotate(-15deg);
  font-size: clamp(60px, 10vw, 160px);
}

.ef-smiley--2 {
  bottom: 8%;
  right: 5%;
  transform: rotate(12deg);
  font-size: clamp(40px, 8vw, 100px);
}

/* --------------------------------
   SECTION 06: WHO TF IS MISSTER?
-------------------------------- */
.who-tf {
  background: var(--black);
  padding: clamp(80px, 12vw, 160px) clamp(24px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}

.wtf-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.wtf-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}

.wtf-heading {
  font-family: var(--font-display);
  font-size: clamp(64px, 13vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 56px;
  color: var(--white);
}

.wtf-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wtf-p {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 28px);
  line-height: 1.5;
  font-weight: 400;
  color: rgba(247, 245, 239, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wtf-come {
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  margin-top: 8px;
}

/* Censor blocks */
.censor-wrap {
  position: relative;
  display: inline-block;
}

.censor-block {
  position: absolute;
  top: 0;
  left: -2px;
  right: -2px;
  bottom: 0;
  background: var(--pink);
  will-change: transform;
  transform-origin: left;
}

.wtf-ex .censor-block {
  background: var(--green);
}

/* Strike-through on UR EX */
.strike-line {
  position: absolute;
  top: 50%;
  left: -4px;
  right: -4px;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

/* Heart float */
.heart-float {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 20px;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Eyes */
.wtf-eyes {
  display: flex;
  gap: 24px;
  margin: 48px 0 0;
  justify-content: flex-start;
}

.eye {
  width: clamp(60px, 8vw, 100px);
  height: clamp(40px, 5.5vw, 68px);
  background: var(--white);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eye-pupil {
  width: 40%;
  height: 60%;
  background: var(--black);
  border-radius: 50%;
  transition: transform 0.05s linear;
  will-change: transform;
}

/* BLM / Queer lives matter */
.wtf-blm {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wtf-blm p {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 52px);
  letter-spacing: 0.02em;
  color: var(--white);
}

.wtf-cta {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1.5px solid var(--pink);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.wtf-cta:hover {
  color: var(--pink);
}

/* --------------------------------
   SECTION 07: MARQUEE
-------------------------------- */
.marquee-section {
  background: var(--pink);
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

/* Smileys */
.marquee-smileys {
  display: flex;
  justify-content: space-around;
  padding: 0 5vw;
  margin-bottom: 32px;
}

.msmiley {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  color: var(--yellow);
  will-change: transform;
  animation: smileyBounce 2s ease-in-out infinite;
}

.msmiley--1 {
  animation-delay: 0s;
}

.msmiley--2 {
  animation-delay: 0.3s;
}

.msmiley--3 {
  animation-delay: 0.6s;
}

.msmiley--4 {
  animation-delay: 0.9s;
}

.msmiley--5 {
  animation-delay: 1.2s;
}

@keyframes smileyBounce {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(10deg);
  }
}

.marquee-row {
  overflow: hidden;
  margin-bottom: 8px;
}

.marquee-track {
  display: flex;
  gap: 0;
  will-change: transform;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 100px);
  color: var(--black);
  padding: 0 24px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

/* --------------------------------
   SECTION 08: RECEIPTS
-------------------------------- */
.receipts {
  background: var(--black);
  padding-top: clamp(60px, 10vw, 120px);
  padding-bottom: 80px;
}

.receipts-header {
  text-align: center;
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: clamp(40px, 6vw, 80px);
}

.receipts-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 245, 239, 0.45);
  margin-bottom: 12px;
}

.receipts-heading {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 130px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* Pinned gallery */
.receipts-pin-wrap {
  overflow: hidden;
}

.receipts-track-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}

.receipts-row {
  display: flex;
  gap: 20px;
  will-change: transform;
}

.receipts-row--1 {
  padding-left: 40px;
}

.receipts-row--2 {
  padding-left: 40px;
}

.receipt-img {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: none;
  transition: transform 0.3s var(--ease-expo);
}

.receipt-img:hover {
  transform: scale(1.03);
}

.receipt-img:nth-child(odd) {
  width: clamp(280px, 30vw, 440px);
  aspect-ratio: 4/3;
}

.receipt-img:nth-child(even) {
  width: clamp(220px, 24vw, 360px);
  aspect-ratio: 3/4;
}

.receipt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Footer after gallery */
.receipts-footer {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 24px;
}

.receipts-still {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 245, 239, 0.4);
  margin-bottom: 12px;
}

.receipts-insta {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 80px);
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.receipts-insta:hover {
  color: var(--pink);
  transform: rotate(-1deg) scale(1.02);
}

/* --------------------------------
   SECTION 09: FINAL CTA
-------------------------------- */
.final-cta {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.fc-smiley {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 160px);
  color: var(--yellow);
  will-change: transform, opacity;
  z-index: 1;
}

.fc-content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
}

.fc-heading {
  font-family: var(--font-display);
  font-size: clamp(52px, 12vw, 170px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: flex;
  gap: clamp(12px, 2vw, 32px);
  flex-wrap: wrap;
  justify-content: center;
}

.fc-word {
  display: inline-block;
  will-change: transform;
}

.fc-word--left {
  color: var(--white);
}

.fc-word--right {
  color: var(--pink);
}

.fc-sub {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.5vw, 16px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 245, 239, 0.45);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(16px);
  will-change: transform;
}

.fc-main-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 40px;
  background: var(--pink);
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 36px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  scale: 0.9;
  transition: transform 0.15s, background 0.15s;
  will-change: transform;
}

.fc-main-cta:hover {
  transform: rotate(-1deg) scale(1.04);
  background: var(--yellow);
}

/* Footer */
.site-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 40px;
  border-top: 1px solid rgba(247, 245, 239, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 245, 239, 0.4);
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 245, 239, 0.25);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* --------------------------------
   PHOTO VIEWER
-------------------------------- */
.photo-viewer {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-viewer[hidden] {
  display: none;
}

.pv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 13, 16, 0.96);
  cursor: none;
}

.pv-close {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 28px;
  color: var(--white);
  cursor: none;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

.pv-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.pv-flash {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.pv-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  will-change: transform;
}

.pv-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

/* --------------------------------
   RESPONSIVE
-------------------------------- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav {
    padding: 20px 24px;
  }

  .nav--dark {
    padding: 14px 24px;
  }

  /* Hero */
  .hero-corner {
    display: none;
  }

  .hero-title {
    font-size: clamp(64px, 22vw, 160px);
  }

  /* Logo zoom */
  .logo-zoom {
    height: 250vh;
  }

  .logo-zoom__text {
    font-size: clamp(64px, 22vw, 160px);
  }

  /* Chaos layout - simplified for mobile */
  .chaos-img--1 {
    width: 85vw;
    top: 0;
    left: 0;
    transform: rotate(-1deg);
  }

  .chaos-img--2 {
    width: 60vw;
    top: 45vh;
    right: 0;
    transform: rotate(2deg);
  }

  .chaos-img--3 {
    width: 80vw;
    top: 85vh;
    left: 0;
    transform: rotate(-1deg);
  }

  .chaos-img--4 {
    width: 55vw;
    top: 130vh;
    right: 5vw;
    transform: rotate(3deg);
  }

  .chaos-img--5 {
    width: 85vw;
    top: 165vh;
    left: 0;
    transform: rotate(-2deg);
  }

  .chaos-img--6 {
    display: none;
  }

  .chaos-img--7 {
    display: none;
  }

  .chaos-img--8 {
    width: 90vw;
    top: 205vh;
    right: 0;
    transform: none;
  }

  .chaos-img--9 {
    display: none;
  }

  .chaos-img--10 {
    display: none;
  }

  .chaos-img--11 {
    display: none;
  }

  .chaos-img--12 {
    display: none;
  }

  .chaos-copy--1 {
    font-size: clamp(16px, 4vw, 28px);
    right: 5vw;
    top: 38vh;
  }

  .chaos-copy--2 {
    font-size: clamp(14px, 3.5vw, 22px);
    top: 120vh;
  }

  .chaos-copy--3 {
    font-size: clamp(12px, 3vw, 18px);
    top: 195vh;
  }

  /* Party transition */
  .party-transition {
    height: 280vh;
  }

  .pt-line {
    font-size: clamp(36px, 10vw, 80px);
  }

  .pt-line--again {
    font-size: clamp(52px, 14vw, 120px);
  }

  /* Event flyer */
  .ef-piece--title {
    font-size: clamp(56px, 18vw, 130px);
  }

  .event-flyer {
    padding: 60px 24px;
  }

  /* Who TF */
  .who-tf {
    padding: 60px 24px;
  }

  .wtf-heading {
    font-size: clamp(52px, 16vw, 120px);
  }

  .wtf-p {
    font-size: clamp(14px, 3.5vw, 20px);
  }

  .wtf-eyes {
    display: none;
  }

  /* Receipts */
  .receipts-heading {
    font-size: clamp(44px, 13vw, 100px);
  }

  /* Final CTA */
  .fc-heading {
    font-size: clamp(44px, 14vw, 120px);
    flex-direction: column;
    gap: 0;
  }

  .site-footer {
    padding: 20px 24px;
  }

  /* Marquee */
  .marquee-track span {
    font-size: clamp(32px, 8vw, 70px);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: min(22vw, 140px);
  }

  .nav {
    padding: 16px 20px;
  }

  .sticky-word {
    font-size: min(26vw, 180px);
  }

  .receipts-row--1,
  .receipts-row--2 {
    padding-left: 16px;
  }

  .receipt-img:nth-child(odd) {
    width: clamp(200px, 70vw, 340px);
  }

  .receipt-img:nth-child(even) {
    width: clamp(160px, 55vw, 280px);
  }
}

/* --------------------------------
   REDUCED MOTION
-------------------------------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .noise-overlay {
    animation: none;
  }

  .smiley--preloader {
    animation: none;
  }

  .msmiley {
    animation: none;
  }

  .hero-preloader {
    display: none;
  }

  .hero-heading-wrap {
    opacity: 1 !important;
  }

  .hero-eyebrow,
  .hero-sub,
  .hero-descriptor,
  .hero-cta,
  .hero-corner {
    opacity: 1 !important;
  }

  .logo-zoom__reveal {
    opacity: 1 !important;
  }

  .ef-piece {
    opacity: 1 !important;
  }

  .ef-ctas {
    opacity: 1 !important;
  }

  .fc-content {
    opacity: 1 !important;
  }

  .fc-sub,
  .fc-main-cta {
    opacity: 1 !important;
  }
}

/* --------------------------------
   FOCUS STYLES
-------------------------------- */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* --------------------------------
   UTILITIES
-------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}