/* ===== AS Production: "Run of Show" (poster edition) ===== */

:root {
  --bg: #ffffff;
  --bg-alt: #fff8dd;
  --ink: #0a0a0a;
  --text: #0a0a0a;
  --text-dim: #4a4a46;
  --text-faint: #6b6a60;
  --border: rgba(10,10,10,0.14);

  --yellow: #ffd400;
  --yellow-soft: rgba(255,212,0,0.22);
  --yellow-deep: #e6bd00;

  --font-serif: "Fraunces", Georgia, serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --font-body: "Inter", -apple-system, sans-serif;

  --container: 1280px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --hard: 4px 4px 0 var(--ink);
  --hard-sm: 3px 3px 0 var(--ink);
  --hard-lg: 7px 7px 0 var(--ink);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== Highlighter-marker text ===== */
.mark-wrap .serif-italic {
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat;
  background-position: 0 80%;
  background-size: 0% 40%;
  transition: background-size 0.9s var(--ease) 0.35s;
  padding: 0 6px;
  color: var(--ink);
}
.reveal.in-view .mark-wrap .serif-italic { background-size: 100% 40%; }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 500; }
.serif-italic.on-dark { color: var(--yellow); }

/* ===== Scroll progress bar ===== */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--yellow);
  z-index: 110;
  transition: width 0.1s linear;
}

/* ===== Now-playing readout ===== */
.now-playing {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px 9px 12px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--yellow);
}
.now-playing .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
@media (max-width: 700px) { .now-playing { display: none; } }

/* ===== Top bar ===== */
.bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 2px solid transparent;
}
.bar.scrolled {
  padding: 14px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 2px solid var(--ink);
}
.bar-inner { display: flex; align-items: center; justify-content: space-between; }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.wordmark-icon { height: 22px; width: auto; display: block; }
.footer .wordmark-icon { height: 26px; }
.menu-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 9px 8px 9px 16px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
  box-shadow: var(--hard-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.menu-btn:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.menu-icon { display: flex; flex-direction: column; gap: 4px; width: 20px; background: var(--ink); border-radius: 50%; padding: 8px; }
.menu-icon i { display: block; height: 1.5px; width: 100%; background: var(--yellow); border-radius: 2px; transition: transform 0.35s var(--ease); }
body.nav-open .menu-icon i:first-child { transform: translateY(2.75px) rotate(45deg); }
body.nav-open .menu-icon i:last-child { transform: translateY(-2.75px) rotate(-45deg); }

/* ===== Fullscreen overlay nav ===== */
.overlay-nav {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 92px 40px 28px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s;
}
.overlay-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
.overlay-nav nav { display: flex; flex-direction: column; gap: 0; max-width: var(--container); margin: 0 auto; width: 100%; }
.overlay-nav a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 5.8vw, 64px);
  font-weight: 500;
  padding: 7px 16px;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
  transition: color 0.25s, background 0.25s, padding-left 0.3s var(--ease), opacity 0.4s var(--ease), transform 0.4s var(--ease);
  opacity: 0;
  transform: translateX(-16px);
}
.overlay-nav.open a { opacity: 1; transform: translateX(0); }
.overlay-nav a:nth-child(1) { transition-delay: 0.05s; }
.overlay-nav a:nth-child(2) { transition-delay: 0.1s; }
.overlay-nav a:nth-child(3) { transition-delay: 0.15s; }
.overlay-nav a:nth-child(4) { transition-delay: 0.2s; }
.overlay-nav a:nth-child(5) { transition-delay: 0.25s; }
.overlay-nav a:nth-child(6) { transition-delay: 0.3s; }
.overlay-nav a:hover { color: var(--yellow); background: var(--ink); padding-left: 32px; }
.overlay-nav a.current { color: var(--yellow); background: var(--ink); }
.overlay-nav a.current .onum { opacity: 1; }
.overlay-nav .onum { font-family: var(--font-mono); font-size: 14px; opacity: 0.6; }
/* hide the persistent top-bar wordmark while the fullscreen nav covers it, so
   the two text layers never visually collide */
body.nav-open .bar .wordmark { opacity: 0; transition: opacity 0.2s; pointer-events: none; }
.overlay-foot {
  max-width: var(--container);
  margin: 32px auto 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  padding: 0 16px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: clamp(112px, 15vw, 156px);
  overflow: hidden;
}
.hero-inner.container {
  position: relative;
  padding-bottom: 48px;
}

.sticker { position: absolute; pointer-events: none; user-select: none; }
/* Positioned clear of the headline's text box (confirmed via measured box model),
   clustered in the open area right of the chips / above the spin badge. */
.sticker-star { top: 118px; right: 210px; font-size: 30px; color: var(--yellow-deep); animation: bob 5s ease-in-out infinite; }
.sticker-dot { top: 178px; right: 280px; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); animation: bob 3.6s ease-in-out infinite 0.3s; }
.sticker-bolt { top: 300px; right: 60px; font-size: 26px; animation: bob 4.5s ease-in-out infinite 0.6s; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(8deg); } }

.spin-badge {
  position: absolute;
  top: 96px;
  right: 40px;
  width: 118px;
  height: 118px;
  z-index: 2;
}
.spin-badge-text {
  width: 100%;
  height: 100%;
  animation: spin 16s linear infinite;
}
.spin-badge-text text { font-family: var(--font-mono); font-size: 13.5px; font-weight: 700; letter-spacing: 0.05em; fill: var(--ink); }
.spin-badge-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--yellow);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 900px) { .spin-badge { display: none; } }

.hero-stat-card {
  position: absolute;
  top: 210px;
  right: 64px;
  width: 176px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--hard);
  transform: rotate(-2.5deg);
  transition: transform 0.3s var(--ease);
  z-index: 2;
}
.hero-stat-card:hover { transform: rotate(0deg) translate(-2px, -2px); }
.hero-stat-num { display: block; font-family: var(--font-serif); font-weight: 600; font-size: 34px; line-height: 1; }
.hero-stat-label { display: block; margin-top: 8px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; color: var(--text-dim); text-transform: uppercase; line-height: 1.4; }
@media (max-width: 1080px) { .hero-stat-card { right: 40px; width: 160px; } }
@media (max-width: 900px) { .hero-stat-card { display: none; } }

/* ===== Polaroid photo elements ===== */
.polaroid {
  display: inline-flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 4px;
  padding: 10px 10px 30px;
  box-shadow: var(--hard);
  position: relative;
}
.polaroid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
}
.polaroid figcaption {
  position: absolute;
  bottom: 8px; left: 10px; right: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-align: center;
}
.polaroid .tape {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 70px; height: 24px;
  background: rgba(255,212,0,0.75);
  border: 1px solid rgba(10,10,10,0.25);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.chip {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 100px;
  box-shadow: var(--hard-sm);
  transform: rotate(-1.5deg);
}
.chip:nth-child(2) { transform: rotate(1deg); }
.chip:nth-child(3) { transform: rotate(-1deg); }
.chip-flip { background: var(--ink); color: var(--yellow); }

.hero-head {
  font-weight: 800;
  font-size: clamp(50px, 9.6vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.02em;
}
.hero-head .sans { display: block; font-family: var(--font-body); font-weight: 800; }
.hero-head .mark-wrap { display: block; }
.hero-head .serif-italic { font-weight: 500; }

.hero-row {
  margin-top: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 2px solid var(--ink);
  padding-top: 28px;
}
.hero-sub { max-width: 420px; font-size: 16px; color: var(--text-dim); line-height: 1.65; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== Buttons (hard-shadow poster style) ===== */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: var(--hard);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
  will-change: transform;
}
.btn-line .arrow { transition: transform 0.3s var(--ease); }
.btn-line:hover { box-shadow: var(--hard-lg); }
.btn-line:hover .arrow { transform: translateX(4px) rotate(-8deg); }
.btn-line.ghost { background: #fff; }
.btn-line.dark { background: var(--ink); color: var(--yellow); box-shadow: 4px 4px 0 var(--yellow); }
.btn-line.dark:hover { box-shadow: 7px 7px 0 var(--yellow); }
.mailto-cta .btn-label-copied { display: none; }
.mailto-cta.copied .btn-label { display: none; }
.mailto-cta.copied .btn-label-copied { display: inline; }
.mailto-cta.copied { background: var(--yellow-deep); }

/* ===== Marquee ===== */
.marquee {
  overflow: hidden;
  background: var(--ink);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  animation: scroll-left 84s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--yellow);
}
.dot-sep { color: var(--yellow); opacity: 0.6; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.hero-marquee { position: relative; z-index: 1; border-bottom: none; }

/* ===== Showreel video ===== */
.hero-video { padding: 48px 0; }
.hero-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--hard);
  background: var(--ink);
}
.hero-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 640px) { .hero-video { padding: 32px 0; } }

/* ===== Sections ===== */
.section { padding: 104px 0; }
.section-alt { background: var(--bg-alt); }
.cue {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 22px;
  box-shadow: var(--hard-sm);
}
.section-head { max-width: 720px; margin-bottom: 64px; }
.h2-serif {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.h2-serif.big { font-size: clamp(34px, 5.4vw, 66px); }

/* ===== Intro ===== */
.intro-grid { display: grid; grid-template-columns: 0.8fr 1fr; gap: 80px; }
.intro-left .h2-serif { margin-top: 12px; }
.intro-right { margin-top: 52px; }
.intro-right .lead { font-family: var(--font-serif); font-size: 22px; font-weight: 500; margin-bottom: 20px; }
.intro-right p { color: var(--text-dim); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.stat-row { margin-top: 96px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--ink); }
.stat-item { padding: 34px 24px 0 24px; border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 12px; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-num, .stat-num-text { font-family: var(--font-serif); font-weight: 600; font-size: 40px; color: var(--text); }
.stat-num-text { font-size: 26px; }
.stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--text-faint); text-transform: uppercase; }

/* ===== Rundown (services) ===== */
.rundown { border-top: 2px solid var(--ink); }
.rundown-row {
  display: grid;
  grid-template-columns: 44px 280px 1fr;
  align-items: center;
  gap: 32px;
  padding: 26px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.rundown-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: var(--yellow);
  transform: scaleY(0);
  transition: transform 0.3s var(--ease);
}
.rundown-row:hover { background: #fff; transform: translateX(6px); }
.rundown-row:hover::before { transform: scaleY(1); }
.rn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.rundown-row:hover .rn { background: var(--ink); color: var(--yellow); }
.rundown-row h3 { font-family: var(--font-serif); font-weight: 500; font-size: 20px; }
.rundown-row p { color: var(--text-dim); font-size: 15px; line-height: 1.6; }

/* ===== Timeline (approach) ===== */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  top: 26px; left: 0; right: 0;
  height: 0;
  border-top: 2px dashed var(--border);
}
.tl-item { position: relative; }
.tl-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 22px;
  background: var(--bg);
  position: relative;
  z-index: 1;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.tl-item:hover .tl-num { background: var(--yellow); transform: rotate(-8deg) scale(1.05); }
.tl-item h3 { font-family: var(--font-body); font-weight: 700; font-size: 16px; margin-bottom: 10px; }
.tl-item p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* ===== Work stack ===== */
.work-stack { padding-bottom: 40px; }
.work-stack .section-head { padding-top: 0; margin-bottom: 64px; }
.work-panel {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 40px;
  border-top: 2px solid var(--ink);
}
.work-panel:last-of-type { border-bottom: 2px solid var(--ink); }
.work-panel.reverse { flex-direction: row-reverse; }
.wp-visual-box {
  position: relative;
  flex: 0 0 42%;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--hard);
  background: var(--bg-alt);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.work-panel:hover .wp-visual-box { transform: translate(-2px,-2px); box-shadow: var(--hard-lg); }
.wp-visual-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wp-badge {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 380px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 10px 16px 10px 10px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: var(--hard-sm);
}
.wp-badge img { width: 26px; height: 26px; object-fit: contain; display: block; flex-shrink: 0; }
.wp-info { flex: 1 1 auto; min-width: 0; }
.wp-index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 4px 12px;
  transform: rotate(-3deg);
  box-shadow: var(--hard-sm);
}
.work-panel.reverse .wp-index { transform: rotate(3deg); }
.wp-info h3 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15; margin: 16px 0 8px; }
.wp-info h3 .wp-years { display: block; font-size: 0.4em; font-family: var(--font-mono); font-weight: 700; letter-spacing: 0.04em; color: var(--text-dim); margin-top: 6px; }
.wp-tag { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); margin-bottom: 14px; }
.wp-info p { max-width: 420px; color: var(--text-dim); font-size: 15px; line-height: 1.6; }


/* ===== Reel (event types) ===== */
#events.section { padding-bottom: 64px; }
.reel {
  margin-top: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(to right, #000 calc(100% - 48px), transparent 100%);
}
.reel-track { display: flex; width: max-content; }
.reel-item {
  min-width: 260px;
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  border-top: 2px solid var(--ink);
  scroll-snap-align: start;
  transition: background 0.3s, color 0.3s;
}
.reel-item:first-child { border-left: 1px solid var(--border); }
.reel-item:hover { background: var(--ink); color: var(--yellow); }
.reel-item:hover p { color: rgba(255,212,0,0.7); }
.reel-num { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); }
.reel-item:hover .reel-num { color: var(--yellow); opacity: 0.7; }
.reel-item h4 { font-family: var(--font-serif); font-weight: 500; font-size: 21px; margin: 14px 0 8px; }
.reel-item p { color: var(--text-dim); font-size: 14px; }

/* ===== Clients / Trusted by communities ===== */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--ink);
  border: 2px solid var(--ink);
}
.logo-slot {
  background: #fff;
  padding: 30px 24px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.logo-slot:hover { background: var(--bg-alt); }
.logo-slot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
}
.logo-slot:hover img { filter: grayscale(0) opacity(1); transform: scale(1.04); }
@media (max-width: 900px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } .logo-slot { height: 96px; padding: 22px 18px; } }

/* ===== CTA final ===== */
.cta-final { text-align: center; max-width: 780px; }
.cta-sub { margin: 24px auto 36px; color: var(--text-dim); font-size: 17px; }
.credits { margin-top: 64px; display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; font-family: var(--font-mono); }
.credits div { font-size: 13px; color: var(--text); }
.credits span { display: block; color: var(--text-faint); font-size: 10px; letter-spacing: 0.1em; margin-bottom: 6px; text-transform: uppercase; }
.copy-email {
  font: inherit;
  font-family: var(--font-mono);
  color: var(--text);
  background: none;
  border: none;
  padding: 12px 0;
  margin: -12px 0;
  cursor: pointer;
  border-bottom: 1px dashed var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.copy-email:hover { color: var(--ink); border-color: var(--ink); }
.copy-email.copied { color: var(--yellow-deep); border-color: var(--yellow-deep); }

/* ===== Cursor-follow accent (hero only, fine-pointer devices) ===== */
.cursor-dot {
  position: absolute;
  top: 0; left: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s, width 0.2s, height 0.2s, background 0.2s;
}
.cursor-dot.active { opacity: 1; }
.cursor-dot.on-target { background: var(--yellow); width: 34px; height: 34px; }
@media (pointer: coarse) { .cursor-dot { display: none; } }

/* ===== Footer ===== */
.footer { background: var(--ink); border-top: 2px solid var(--ink); padding: 56px 0 0; color: #fff; }
.footer .wordmark { color: var(--yellow); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-bottom: 40px; }
.footer-links { display: flex; gap: 28px; font-size: 14px; color: rgba(255,255,255,0.7); flex-wrap: wrap; }
.footer-links a, .footer-social a { display: inline-block; padding: 12px 0; }
.footer-links a:hover { color: var(--yellow); }
.footer-social { display: flex; gap: 20px; font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-social a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-right { margin-top: 0; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; padding-left: 0; }
  .rundown-row { grid-template-columns: 40px 1fr; row-gap: 6px; column-gap: 20px; align-items: start; }
  .rn { margin-top: 3px; }
  .rundown-row p { grid-column: 2 / -1; margin-top: 2px; }
  .timeline { grid-template-columns: 1fr; gap: 0; max-width: 480px; }
  .timeline::before { display: none; }
  .tl-item { display: flex; gap: 20px; padding-bottom: 32px; }
  .tl-item::before {
    content: "";
    position: absolute;
    top: 52px; bottom: -6px; left: 25px;
    width: 0;
    border-left: 2px dashed var(--border);
  }
  .tl-item:last-child::before { display: none; }
  .tl-item:last-child { padding-bottom: 0; }
  .tl-num { margin-bottom: 0; flex-shrink: 0; }
  .tl-item-body { padding-top: 12px; }
  .work-panel, .work-panel.reverse { flex-direction: column; align-items: stretch; gap: 28px; padding: 40px 24px; }
  .wp-visual-box { flex: none; width: 100%; aspect-ratio: 16 / 11; }
  .work-panel.reverse .wp-index { transform: rotate(-3deg); }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 112px; }
  .hero-inner.container { padding-bottom: 32px; }
  .container { padding: 0 24px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .credits { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; text-align: center; }
  .credits div:first-child { grid-column: 1 / -1; }
  .footer-row, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sticker-star, .sticker-bolt, .sticker-dot { display: none; }
  .work-stack { padding-bottom: 0; }
  .work-stack .section-head { padding-top: 0; margin-bottom: 40px; }
  .work-panel { gap: 20px; padding: 32px 24px; }
  .wp-badge { font-size: 10px; padding: 8px 14px 8px 9px; margin-top: 12px; max-width: 100%; }
  .wp-badge img { width: 22px; height: 22px; }
  #events.section { padding-bottom: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .spin-badge-text, .sticker { animation: none !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
