:root {
  --bg-dark:    #070707;
  --bg-light:   #f0ece5;
  --bg-white:   #f8f6f2;
  --text-dark:  #f4efe8;
  --text-main:  #141414;
  --muted:      rgba(20,20,20,0.65);
  --dim:        rgba(20,20,20,0.48);
  --line:       rgba(20,20,20,0.10);
  --line-dark:  rgba(255,255,255,0.08);
  --ease:       cubic-bezier(.16,1,.3,1);
  --font-sans:  'Manrope', Arial, Helvetica, sans-serif;
  --font-mono:  'Manrope', Arial, Helvetica, sans-serif;
  --font-serif:  'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-dark);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
  overflow-x: hidden;
}

a, button { -webkit-tap-highlight-color: transparent; }
@media (pointer:fine) { body { cursor: none; } a, button { cursor: none !important; } }
@media (pointer:coarse) { body, a, button { cursor: auto !important; } }
a { color: inherit; text-decoration: none; }
img, video { display: block; }

/* ── Intro overlay ─────────────────────────────────── */

#intro-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  will-change: transform;
}
.intro-text {
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  letter-spacing: 0.04em; color: var(--text-main);
  margin: 0; text-align: center;
  min-height: 1em;
}

/* ── Skip link ────────────────────────────────────── */

.skip-link {
  position: fixed; top: -100%; left: 50%; z-index: 99999;
  transform: translateX(-50%);
  padding: 12px 28px;
  background: var(--text-main); color: var(--bg-white);
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
  transition: top 180ms ease;
}
.skip-link:focus { top: 0; outline: none; }

/* ── Focus styles ─────────────────────────────────── */

:focus-visible {
  outline: 2px solid rgba(244,239,232,0.95);
  outline-offset: 3px;
  border-radius: 2px;
  box-shadow: 0 0 0 4px rgba(20,20,20,0.6);
}
.manifesto-section :focus-visible,
.creators-section :focus-visible,
.wl-section :focus-visible {
  outline-color: rgba(20,20,20,0.9);
  box-shadow: 0 0 0 4px rgba(244,239,232,0.9);
}

/* ── Shared section heading (2-font mix) ──────────── */

.section-heading {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--text-main);
}
.section-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.03em;
}

/* ── Custom cursor ────────────────────────────────── */

.cursor-logo {
  position: fixed; top: 0; left: 0; z-index: 50;
  width: 34px; height: 34px;
  pointer-events: none;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}
.cursor-logo img { width: 100%; height: 100%; object-fit: contain; }
.cursor-logo.is-burst { animation: cursorBurst 460ms var(--ease); }
@media (pointer:coarse) { .cursor-logo { display: none; } }

/* ── Header ───────────────────────────────────────── */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
}
.brand { pointer-events: auto; }
.brand img { width: 40px; height: auto; }

.site-nav {
  display: flex; align-items: center; gap: 28px;
}
.nav-link {
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,239,232,0.5);
  transition: color 200ms ease;
}
.nav-link:hover { color: var(--text-dark); }
.nav-cta {
  font-family: var(--font-sans); font-size: 12px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  border: 1px solid rgba(244,239,232,0.22);
  padding: 9px 20px; border-radius: 100px;
  transition: background 220ms ease, border-color 220ms ease;
}
.nav-cta:hover {
  background: rgba(244,239,232,0.1);
  border-color: rgba(244,239,232,0.5);
}

/* ── Hero ─────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--bg-dark);
}

#yt-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg-dark);
}
#yt-bg iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  min-width: 100vw !important;
  min-height: 56.25vw !important;
  width: 177.78vh !important;
  height: 100vh !important;
  transform: translate(-50%, -50%) scale(1.08) !important;
  pointer-events: none !important;
  border: none !important;
  opacity: 0;
  transition: opacity 1.2s ease;
}
#yt-bg.is-ready iframe { opacity: 1; }

.wl-custom-controls {
  position: absolute;
  bottom: 10px; right: 10px;
  display: flex; gap: 8px;
  z-index: 10;
  opacity: 0;
  transition: opacity 200ms ease;
}
.wl-thumb:hover .wl-custom-controls,
.wl-thumb.is-playing .wl-custom-controls { opacity: 1; }
.wl-ctrl-btn {
  background: rgba(0,0,0,0.72);
  color: #fff; border: none;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 150ms ease;
  line-height: 1;
}
.wl-ctrl-btn:hover { background: rgba(0,0,0,0.92); }

.wl-thumb.is-scaled {
  position: fixed !important;
  top: 50% !important; left: 50% !important;
  width: min(75vw, 1100px) !important;
  height: auto !important;
  aspect-ratio: 16/9 !important;
  transform: translate(-50%, -50%) !important;
  z-index: 9000 !important;
  box-shadow: 0 32px 96px rgba(0,0,0,0.72);
  border-radius: 6px;
  overflow: hidden;
  flex: unset !important;
}
.wl-video-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 8999;
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.wl-load-more {
  display: block; width: 100%;
  margin-top: 32px;
  padding: 18px 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.wl-load-more:hover { border-color: rgba(20,20,20,0.28); color: var(--text-main); background: rgba(20,20,20,0.03); }

.wl-item--extra { display: none; }

/* ── Hero overlay ─────────────────────────────────── */

.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0,0,0,0.97) 0%, rgba(0,0,0,0.72) 22%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 22%, rgba(0,0,0,0) 44%);
}

/* Hero title — centered quote style */
.hero-title-wrap {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Inner container — sizes to text width so attr aligns to heading end */
.hero-copy {
  display: inline-flex;
  flex-direction: column;
  max-width: min(92vw, 860px);
}
.hero-heading-clip {
  overflow: hidden;
  line-height: 1.08;
}
.hero-heading {
  display: block;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: rgba(244, 239, 232, 0.96);
  margin: 0;
  white-space: nowrap;
  transform: translateY(110%);
  will-change: transform;
}
.hero-attr {
  align-self: flex-end;
  margin: 8px 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: -0.02em;
  color: rgba(244, 239, 232, 0.88);
  line-height: 1;
  opacity: 0; /* GSAP animates this in */
}

.hero-trusted {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-trusted-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,232,0.42);
  white-space: nowrap;
}
.hero-trusted-avatars {
  display: flex;
  align-items: center;
}
.hero-trusted-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(244,239,232,0.2);
  margin-left: -11px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.hero-trusted-avatar:first-child { margin-left: 0; }
.hero-tagline {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.5vw, 1.6rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  color: rgba(244,239,232,0.6);
  margin: 0;
}
.hero-punch {
  font-weight: 500;
  letter-spacing: -0.05em;
  color: rgba(244,239,232,0.9);
}

/* ── Creators section ─────────────────────────────── */

.creators-section {
  background: var(--bg-white);
  padding: 4px 0 36px;
  overflow: hidden;
}
.creators-label {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 20px 0 0;
}

.creators-marquee {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}
.creators-marquee::before,
.creators-marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; z-index: 2;
  width: 160px; pointer-events: none;
}
.creators-marquee::before { left: 0; background: linear-gradient(90deg,var(--bg-white) 30%,transparent); }
.creators-marquee::after  { right: 0; background: linear-gradient(270deg,var(--bg-white) 30%,transparent); }

.creators-track {
  display: flex; gap: 44px;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
  padding: 4px 0 8px;
}

.creator-chip {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  flex-shrink: 0;
  transition: opacity 220ms ease;
}
.creators-marquee:hover .creator-chip { opacity: 0.5; }
.creators-marquee:hover .creator-chip:hover { opacity: 1; }

.creator-avatar {
  width: 84px; height: 84px;
  border-radius: 50%; overflow: hidden;
  background: #ddd;
  border: 1px solid var(--line);
}
.creator-avatar img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.creator-handle {
  font-family: var(--font-sans); font-size: 10.5px;
  letter-spacing: 0.05em; color: var(--muted);
  white-space: nowrap;
  transition: color 180ms ease;
}
.creator-chip:hover .creator-handle { color: var(--text-main); }

/* ── Work list section ────────────────────────────── */

.wl-section {
  background: var(--bg-white);
  border-top: 1px solid var(--line);
  padding: 56px 0 80px;
}

.wl-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

.wl-inner > .section-heading {
  margin-bottom: 44px;
  color: var(--text-main);
}

.wl-item {
  border-bottom: 1px solid var(--line);
  transition: border-color 180ms ease;
}
.wl-item:first-child { border-top: 1px solid var(--line); }

.wl-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  cursor: none;
  user-select: none;
}
@media (pointer:coarse) { .wl-row { cursor: pointer; } }

.wl-num {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--dim); flex-shrink: 0; width: 24px;
  transition: color 200ms ease;
}
.wl-item.is-active .wl-num { color: var(--muted); }

.wl-row-meta {
  flex: 1; min-width: 0;
  display: flex;
  align-items: center;
}
.wl-row-meta::after {
  content: '';
  flex: 1;
  min-width: 20px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(20,20,20,0.16) 0,
    rgba(20,20,20,0.16) 3px,
    transparent 3px,
    transparent 9px
  );
  margin-left: 20px;
  flex-shrink: 0;
}

.wl-title {
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 400; letter-spacing: -0.038em; line-height: 1.3;
  color: rgba(20,20,20,0.52);
  transition: color 220ms ease, transform 260ms var(--ease);
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wl-item.is-active .wl-title {
  color: var(--text-main);
  transform: translateX(6px);
}

.wl-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: 40px;
  opacity: 1;
  background: rgba(20,20,20,0.1);
  border: 1px solid var(--line);
  transition: transform 220ms ease;
  display: block;
}
.wl-item.is-active .wl-avatar { transform: scale(1.06); }

.wl-sub-count {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(20,20,20,0.55);
  flex-shrink: 0;
  white-space: nowrap;
  transition: color 200ms ease;
}
.wl-item.is-active .wl-sub-count { color: var(--text-main); }

.wl-arrow {
  font-size: 1.2rem; color: var(--dim); flex-shrink: 0;
  opacity: 0; transform: translateX(-6px);
  transition: opacity 200ms ease, transform 240ms var(--ease), color 200ms ease;
}
.wl-item.is-active .wl-arrow { opacity: 1; transform: translateX(0); color: var(--muted); }

.wl-expand {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 420ms var(--ease);
}
.wl-item.is-active .wl-expand { grid-template-rows: 1fr; }

.wl-expand-inner {
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  padding: 0 4vw;
  transition: padding-top 420ms var(--ease), padding-bottom 420ms var(--ease);
  overflow: hidden;
}
.wl-item.is-active .wl-expand-inner { padding: 20px 4vw 44px; }

.wl-thumb {
  flex: 0 0 clamp(320px, 38vw, 560px);
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #141414;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  border-radius: 4px;
}
.wl-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
  display: block;
}
.wl-item.is-active .wl-thumb:hover img { transform: scale(1.04); }

.wl-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}
.wl-item.is-active .wl-thumb:hover::after { opacity: 1; }
.wl-thumb.is-playing::after { display: none; }

.wl-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
  display: block;
}

.wl-expand-content {
  flex: 0 1 360px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 10px; padding: 8px 0;
}
.wl-expand-num {
  font-family: var(--font-sans); font-size: 9px;
  letter-spacing: 0.12em; color: var(--dim);
  display: block; margin-bottom: 2px;
}
.wl-tag { display: none; }
.wl-expand-title {
  margin: 0;
  font-family: var(--font-sans); font-size: clamp(1.1rem,1.6vw,1.5rem);
  font-weight: 400; letter-spacing: -0.03em; line-height: 1.28;
  color: var(--text-main);
}
.wl-stats {
  display: flex;
  gap: 20px;
  margin-top: 6px;
}
.wl-stat {
  font-family: var(--font-sans); font-size: 9.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}

.wl-yt-link {
  font-family: var(--font-sans); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 5px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 150ms ease;
}
.wl-yt-link:hover { color: var(--text-main); }

/* ── Manifesto ────────────────────────────────────── */

.manifesto-section {
  background: var(--bg-white);
  padding: 88px 0 48px;
}
.manifesto-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  gap: 64px;
}

.manifesto-headline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.2vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
  color: var(--text-main);
  margin: 0 0 0.22em;
  white-space: nowrap;
}
.manifesto-headline em { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.manifesto-sub {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(1.1rem, 1.9vw, 2.2rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: rgba(20,20,20,0.32);
  margin: 0;
}

.manifesto-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
}
.manifesto-head-text { flex: 0 1 auto; min-width: 0; }

/* Manifesto headline block */
.manifesto-headline-block { max-width: 860px; }

/* Two-column row: text left (wider), services right */
.manifesto-two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}

.manifesto-text-col {
  display: grid;
  gap: 28px;
}

/* Services column */
.manifesto-services-col {
  border-left: 1px solid var(--line);
  padding-left: 40px;
  display: grid;
  gap: 20px;
  align-content: start;
}
.manifesto-services-kicker {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.manifesto-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.manifesto-services-list li {
  font-family: var(--font-sans);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text-main);
  padding-left: 20px;
  position: relative;
  line-height: 1.3;
}
.manifesto-services-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--dim);
  font-size: 0.65em;
  top: 0.25em;
}

.manifesto-body {
  margin: 0;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.82;
  letter-spacing: -0.02em;
  color: var(--muted);
}
.manifesto-emphasis {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem) !important;
  color: var(--text-main) !important;
  font-weight: 400;
  letter-spacing: -0.03em !important;
  line-height: 1.5 !important;
}

/* Stats — single horizontal lane below para */
.manifesto-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.mstat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 56px;
}
.mstat-item:first-child { padding-left: 0; }
.mstat-item:last-child  { padding-right: 0; }
.mstat-num {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3.2rem);
  letter-spacing: -0.055em;
  line-height: 1;
  color: var(--text-main);
}
.mstat-label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: var(--dim);
}
.mstat-vdiv {
  width: 1px;
  height: 40px;
  background: var(--line);
  flex-shrink: 0;
  align-self: center;
}

.manifesto-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.m-service {
  padding: 36px 0;
  display: grid; gap: 12px; align-content: start;
  border-bottom: 1px solid var(--line);
}
.m-service:first-child { padding-right: 64px; border-right: 1px solid var(--line); }
.m-service:last-child  { padding-left: 64px; }
.m-service-tag {
  font-family: var(--font-sans); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim);
}
.m-service-name {
  font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(3.2rem, 5.5vw, 7rem);
  line-height: 0.88; letter-spacing: -0.06em;
  color: var(--text-main); margin: 0;
}
.m-service-desc {
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
  line-height: 1.72; letter-spacing: -0.02em;
  color: var(--muted); max-width: 44ch; margin: 0;
}
.m-service-tagline {
  font-style: italic; font-size: clamp(0.82rem, 1vw, 0.9rem);
  letter-spacing: -0.01em; color: var(--dim); margin: 0;
}

/* ── Closing statement ────────────────────────────── */

.yt-manifesto-section {
  background: var(--bg-white);
  color: var(--text-main);
  padding: 96px 0 108px;
  border-top: 1px solid var(--line);
}
.yt-manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  gap: 36px;
  text-align: center;
  justify-items: center;
}
.yt-manifesto-headline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  color: var(--text-main);
  margin: 0;
}
.yt-manifesto-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
.yt-manifesto-body {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.75;
  letter-spacing: -0.02em;
  color: var(--muted);
  margin: 0;
  max-width: 56ch;
}
.yt-manifesto-inner .cta-btn {
  justify-self: center;
  background: var(--text-main) !important;
  color: #f8f6f2 !important;
  border: 1px solid var(--text-main) !important;
  padding: 16px 36px;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  opacity: 1 !important;
}
.yt-manifesto-inner .cta-btn:hover {
  background: transparent !important;
  color: var(--text-main) !important;
  border-color: var(--text-main) !important;
}
.yt-manifesto-inner .manifesto-services { margin-top: 8px; }
.yt-services-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0;
}

.cta-btn {
  display: inline-block; margin-top: 8px;
  padding: 14px 28px;
  background: rgba(244,239,232,0.07);
  color: var(--text-dark);
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 2px;
  font-family: var(--font-sans); font-size: 0.84rem;
  font-weight: 500; letter-spacing: 0.01em;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.cta-btn:hover { background: var(--text-dark); color: #141414; border-color: var(--text-dark); }

/* ── Footer ───────────────────────────────────────── */

.site-footer {
  background: #050505;
  color: var(--text-dark);
  min-height: 46vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 -28px 72px rgba(0,0,0,0.22);
}

.footer-layout {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 46vh;
  padding: 36px 24px 20px;
  overflow: hidden;
}

.footer-email {
  position: absolute;
  top: 20px; left: 24px; z-index: 2;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  transition: opacity 160ms ease;
}
.footer-email:hover,
.footer-email:focus-visible { opacity: 0.52; }

.footer-links {
  position: absolute;
  top: 36px; right: 24px; z-index: 2;
  display: grid; gap: 10px;
  text-align: right;
  font-family: var(--font-sans);
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.03em;
}
.footer-links a { transition: opacity 160ms ease; }
.footer-links a:hover,
.footer-links a:focus-visible { opacity: 0.52; }

.footer-wordmark {
  width: 100%;
  text-align: center;
  display: block;
}
.footer-wordmark span {
  display: inline-block;
  font-family: var(--font-sans); font-weight: 300;
  font-size: 31rem; line-height: 0.78;
  letter-spacing: -0.065em; white-space: nowrap;
  color: var(--text-dark);
}

/* ── Reveal ───────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────── */

@media (max-width: 800px) {
  .wl-expand-inner { flex-direction: column; align-items: center; }
  .wl-thumb { flex: 0 0 auto; width: 100%; max-width: 480px; }
  .wl-expand-content { flex: 1; max-width: 480px; }
  .manifesto-two-col { grid-template-columns: 1fr; gap: 32px; }
  .manifesto-services-col { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 28px; }
}

@media (max-width: 600px) {
  body { cursor: auto; }
  .cursor-logo { display: none; }

  /* Header */
  .site-header { padding: 16px 20px; }
  .brand img { width: 32px; }
  .nav-link { display: none; }
  .nav-cta { font-size: 11px; padding: 7px 14px; }

  /* Hero */
  .hero-copy { max-width: 94vw; }
  .hero-heading {
    white-space: nowrap;
    text-align: center;
    font-size: clamp(0.6rem, 4.2vw, 1.9rem);
    letter-spacing: -0.04em;
  }

  /* Manifesto */
  .manifesto-section { padding: 44px 0 52px; }
  .manifesto-inner { padding: 0 20px; gap: 32px; }
  .manifesto-headline { white-space: normal; font-size: clamp(1.4rem, 6vw, 2.2rem); }
  .manifesto-sub { font-size: clamp(0.95rem, 4vw, 1.3rem); }
  .manifesto-headline-block { max-width: 100%; }
  .manifesto-two-col { gap: 24px; }
  .manifesto-body { font-size: 0.93rem; line-height: 1.7; }
  .manifesto-emphasis { font-size: 1rem !important; }
  .manifesto-services-list { gap: 10px; }
  .manifesto-services-list li { font-size: 0.95rem; padding-left: 16px; }

  /* Stats */
  .manifesto-stats-row { padding: 18px 0; }
  .mstat-num { font-size: clamp(1.4rem, 6.5vw, 2.2rem); }
  .mstat-label { font-size: 8px; letter-spacing: 0.08em; }
  .mstat-item { padding-right: 16px; }
  .mstat-vdiv { margin-right: 16px; height: 24px; }

  /* Creators */
  .creators-section { padding: 28px 0 16px; }
  .creator-avatar { width: 56px; height: 56px; }
  .creators-track { gap: 24px; }
  .creators-marquee::before,
  .creators-marquee::after { width: 40px; }
  .creator-handle { font-size: 8.5px; }
  .creators-label { font-size: 8.5px; margin-top: 12px; }

  /* Work list */
  .wl-section { padding: 40px 0 52px; }
  .wl-inner { padding: 0 20px; }
  .section-heading { font-size: clamp(1.6rem, 7.5vw, 2.6rem); }
  .wl-row { gap: 10px; padding: 16px 0; }
  .wl-num { font-size: 9px; width: 16px; }
  .wl-title { font-size: clamp(0.85rem, 3.8vw, 1.1rem); white-space: normal; }
  .wl-avatar { display: none; }
  .wl-arrow { opacity: 0; }
  .wl-item.is-active .wl-arrow { opacity: 1; font-size: 0.9rem; }
  .wl-expand-inner { padding: 0 !important; flex-direction: column; align-items: stretch; gap: 0; }
  .wl-item.is-active .wl-expand-inner { padding: 12px 0 24px !important; }
  .wl-thumb { max-width: 100%; flex: none; width: 100%; border-radius: 3px; }
  .wl-expand-content { max-width: 100%; padding: 10px 0 0; gap: 6px; }
  .wl-expand-title { font-size: 0.95rem; }
  .wl-stats { gap: 12px; }
  .wl-stat { font-size: 8.5px; }

  /* Closing */
  .yt-manifesto-section { padding: 44px 0 52px; }
  .yt-manifesto-inner { padding: 0 20px; gap: 22px; text-align: left; justify-items: start; }
  .yt-manifesto-headline { font-size: clamp(1.4rem, 6.5vw, 2.2rem); }
  .yt-manifesto-body { font-size: 0.93rem; }
  .cta-btn { display: block; text-align: center; width: 100%; padding: 15px; box-sizing: border-box; }

  /* Footer */
  .site-footer { min-height: 32vh; }
  .footer-layout { min-height: 32vh; padding: 18px 20px 14px; }
  .footer-email { top: 18px; left: 20px; font-size: 12px; }
  .footer-links { top: 18px; right: 20px; font-size: 12px; gap: 6px; }
  .footer-wordmark span { font-size: clamp(4rem, 20vw, 7rem); }
}

/* ── Reduced motion ───────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal.is-visible { opacity: 1; transform: none; }
  .creators-track { animation-play-state: paused !important; }
}

/* ── Keyframes ────────────────────────────────────── */

@keyframes cursorBurst {
  0%   { transform: translate(-50%,-50%) scale(1); }
  45%  { transform: translate(-50%,-50%) scale(1.42); }
  100% { transform: translate(-50%,-50%) scale(1); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
